Posted by
jacopoc on
Oct 08, 2006; 7:12am
URL: http://ofbiz.116.s1.nabble.com/svn-commit-r454085-2-2-in-incubator-ofbiz-trunk-applications-content-config-script-org-ofbiz-content-tp209281.html
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedcomplexprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedcomplexprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedcomplexprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedcomplexprep.bsh Sat Oct 7 23:12:42 2006
@@ -29,30 +29,23 @@
import javax.servlet.http.*;
import java.sql.Timestamp;
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 2.2
- */
-
-LocalDispatcher dispatcher = (LocalDispatcher)request.getAttribute("dispatcher");
+LocalDispatcher dispatcher = (LocalDispatcher)request.getAttribute("dispatcher");
GenericDelegator delegator = (GenericDelegator) request.getAttribute("delegator");
// Get permission from pagedef config file
-String permission = page.getProperty("permission");
-String entityName = page.getProperty("entityName");
-String currentEntityName = page.getProperty("currentEntityName");
-String formDefFile = page.getProperty("formDefFile");
-String defaultMapName = page.getProperty("defaultMapName");
-if( defaultMapName == null) defaultMapName = "valueObject";
+String permission = page.getProperty("permission");
+String entityName = page.getProperty("entityName");
+String currentEntityName = page.getProperty("currentEntityName");
+String formDefFile = page.getProperty("formDefFile");
+String defaultMapName = page.getProperty("defaultMapName");
+if( defaultMapName == null) defaultMapName = "valueObject";
-security = request.getAttribute("security");
+security = request.getAttribute("security");
if(security.hasEntityPermission(permission, "_VIEW", session)) {
- context.put("hasPermission", Boolean.TRUE);
+ context.put("hasPermission", Boolean.TRUE);
} else {
- context.put("hasPermission", Boolean.FALSE);
+ context.put("hasPermission", Boolean.FALSE);
}
HtmlFormWrapper editWrapper = null;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedoneprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedoneprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedoneprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedoneprep.bsh Sat Oct 7 23:12:42 2006
@@ -14,10 +14,6 @@
* under the License.
*/
/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 2.2
* Finds the one-to-one related entity (such as ElectronicText or ImageDataResource)
* that is associated with the current entity (such as Content or DataResource).
* If it exists, an editFormWrapper is created and populated, else an addFromWrapper.
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/relatedprep.bsh Sat Oct 7 23:12:42 2006
@@ -15,11 +15,6 @@
*/
/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 2.2
-
* Finds the one-to-many related entities (such as ContentRoles or DataResourceAttributes)
* that is associated with the current entity (such as Content or DataResource).
* Builds a listFormWrapper and puts the list in "contentList".
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/requiredrole.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/requiredrole.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/requiredrole.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/requiredrole.bsh Sat Oct 7 23:12:42 2006
@@ -13,13 +13,6 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
- */
import java.util.ArrayList;
import java.util.Collection;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/staticfind.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/staticfind.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/staticfind.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/staticfind.bsh Sat Oct 7 23:12:42 2006
@@ -14,11 +14,6 @@
* under the License.
*/
/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 2.1
-
* Calls performFind service to return an EntityListIterator of the
* entities found from the parameter map selection criteria.
* Also builds a query form wrapper.
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/uploadprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/uploadprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/uploadprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/includes/uploadprep.bsh Sat Oct 7 23:12:42 2006
@@ -13,14 +13,6 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 2.2
-
- */
-
import java.util.ArrayList;
import java.util.Collection;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/addcontentidto.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/addcontentidto.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/addcontentidto.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/addcontentidto.bsh Sat Oct 7 23:12:42 2006
@@ -14,11 +14,6 @@
* under the License.
*/
/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
* This is a hack of includes/pagelistprep.bsh, whose only change is to
* add the "contentIdTo" field/value to the passed structures.
*/
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editimageprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editimageprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editimageprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editimageprep.bsh Sat Oct 7 23:12:42 2006
@@ -14,14 +14,6 @@
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
- */
-
import org.ofbiz.base.util.*;
import org.ofbiz.entity.*;
import org.ofbiz.security.*;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editlayoutprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editlayoutprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editlayoutprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editlayoutprep.bsh Sat Oct 7 23:12:42 2006
@@ -14,14 +14,6 @@
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
- */
-
import org.ofbiz.base.util.*;
import org.ofbiz.entity.*;
import org.ofbiz.security.*;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editsubcontentprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editsubcontentprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editsubcontentprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/editsubcontentprep.bsh Sat Oct 7 23:12:42 2006
@@ -14,14 +14,6 @@
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
- */
-
import org.ofbiz.base.util.*;
import org.ofbiz.entity.*;
import org.ofbiz.security.*;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/findrelatedlayouts.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/findrelatedlayouts.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/findrelatedlayouts.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/findrelatedlayouts.bsh Sat Oct 7 23:12:42 2006
@@ -14,14 +14,6 @@
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
- */
-
import org.ofbiz.base.util.*;
import org.ofbiz.entity.*;
import org.ofbiz.security.*;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/htmlareaprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/htmlareaprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/htmlareaprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/htmlareaprep.bsh Sat Oct 7 23:12:42 2006
@@ -14,14 +14,6 @@
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
- */
-
import org.ofbiz.base.util.*;
import org.ofbiz.entity.*;
import org.ofbiz.security.*;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/layoutprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/layoutprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/layoutprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/layoutprep.bsh Sat Oct 7 23:12:42 2006
@@ -14,14 +14,6 @@
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
- */
-
import org.ofbiz.base.util.*;
import org.ofbiz.entity.*;
import org.ofbiz.security.*;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/lookupprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/lookupprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/lookupprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/lookupprep.bsh Sat Oct 7 23:12:42 2006
@@ -13,13 +13,7 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
- */
import org.ofbiz.widget.html.*;
import org.ofbiz.base.util.*;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/wrapprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/wrapprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/wrapprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/layout/wrapprep.bsh Sat Oct 7 23:12:42 2006
@@ -14,14 +14,6 @@
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
- */
-
import org.ofbiz.base.util.*;
import org.ofbiz.entity.*;
import org.ofbiz.security.*;
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/currentmenuval.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/currentmenuval.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/currentmenuval.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/currentmenuval.bsh Sat Oct 7 23:12:42 2006
@@ -15,11 +15,6 @@
*/
/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
* A commonly called script to find the "current" entity (either Content or DataResource
* usually) from either a cached key or overridden by current values in the parameter map
* or request attributes.
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setcurrentmenuitem.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setcurrentmenuitem.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setcurrentmenuitem.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setcurrentmenuitem.bsh Sat Oct 7 23:12:42 2006
@@ -15,11 +15,6 @@
*/
/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
* A commonly called script to find the "current" entity (either Content or DataResource
* usually) from either a cached key or overridden by current values in the parameter map
* or request attributes.
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setmainmenuitem.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setmainmenuitem.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setmainmenuitem.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setmainmenuitem.bsh Sat Oct 7 23:12:42 2006
@@ -15,11 +15,6 @@
*/
/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
* A commonly called script to find the "current" entity (either Content or DataResource
* usually) from either a cached key or overridden by current values in the parameter map
* or request attributes.
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setmenuitem.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setmenuitem.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setmenuitem.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setmenuitem.bsh Sat Oct 7 23:12:42 2006
@@ -15,11 +15,6 @@
*/
/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
* A commonly called script to find the "current" entity (either Content or DataResource
* usually) from either a cached key or overridden by current values in the parameter map
* or request attributes.
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setpagelistparams.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setpagelistparams.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setpagelistparams.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/setpagelistparams.bsh Sat Oct 7 23:12:42 2006
@@ -15,11 +15,6 @@
*/
/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
* A commonly called script to find the "current" entity (either Content or DataResource
* usually) from either a cached key or overridden by current values in the parameter map
* or request attributes.
Modified: incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/storecurrentmenuval.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/storecurrentmenuval.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/storecurrentmenuval.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/webapp/content/WEB-INF/actions/menu/storecurrentmenuval.bsh Sat Oct 7 23:12:42 2006
@@ -16,10 +16,6 @@
/**
*
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 3.0
-
* A commonly called script to find the "current" entity (either Content or DataResource
* usually) from either a cached key or overridden by current values in the parameter map
* or request attributes.
Modified: incubator/ofbiz/trunk/applications/content/widget/cms/cmseditaddprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/cms/cmseditaddprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/cms/cmseditaddprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/cms/cmseditaddprep.bsh Sat Oct 7 23:12:42 2006
@@ -46,13 +46,6 @@
import javax.servlet.*;
import javax.servlet.http.*;
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Revision$
- * @since 3.0
-
- */
delegator = (GenericDelegator) request.getAttribute("delegator");
userLogin = session.getAttribute("userLogin");
Modified: incubator/ofbiz/trunk/applications/content/widget/cms/contentaddprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/cms/contentaddprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/cms/contentaddprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/cms/contentaddprep.bsh Sat Oct 7 23:12:42 2006
@@ -41,13 +41,6 @@
import javax.servlet.*;
import javax.servlet.http.*;
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Revision$
- * @since 3.0
-
- */
delegator = (GenericDelegator) request.getAttribute("delegator");
Modified: incubator/ofbiz/trunk/applications/content/widget/cms/contentprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/cms/contentprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/cms/contentprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/cms/contentprep.bsh Sat Oct 7 23:12:42 2006
@@ -14,13 +14,6 @@
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Revision$
- * @since 3.0
-
- */
import org.ofbiz.base.util.*;
import org.ofbiz.entity.*;
Modified: incubator/ofbiz/trunk/applications/content/widget/cms/editaddprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/cms/editaddprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/cms/editaddprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/cms/editaddprep.bsh Sat Oct 7 23:12:42 2006
@@ -41,13 +41,6 @@
import javax.servlet.*;
import javax.servlet.http.*;
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Revision$
- * @since 3.0
-
- */
delegator = (GenericDelegator) request.getAttribute("delegator");
userLogin = session.getAttribute("userLogin");
Modified: incubator/ofbiz/trunk/applications/content/widget/cms/featureprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/cms/featureprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/cms/featureprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/cms/featureprep.bsh Sat Oct 7 23:12:42 2006
@@ -14,13 +14,6 @@
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Revision$
- * @since 3.0
-
- */
import org.ofbiz.base.util.*;
import org.ofbiz.entity.*;
Modified: incubator/ofbiz/trunk/applications/content/widget/cms/mostrecentprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/cms/mostrecentprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/cms/mostrecentprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/cms/mostrecentprep.bsh Sat Oct 7 23:12:42 2006
@@ -46,13 +46,6 @@
import javax.servlet.*;
import javax.servlet.http.*;
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Revision$
- * @since 3.0
-
- */
Debug.logInfo("in mostrecentprep(1):","");
Modified: incubator/ofbiz/trunk/applications/content/widget/cms/ownercontentprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/cms/ownercontentprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/cms/ownercontentprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/cms/ownercontentprep.bsh Sat Oct 7 23:12:42 2006
@@ -14,13 +14,6 @@
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Revision$
- * @since 3.0
-
- */
import org.ofbiz.base.util.*;
import org.ofbiz.entity.*;
Modified: incubator/ofbiz/trunk/applications/content/widget/cms/userpermprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/cms/userpermprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/cms/userpermprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/cms/userpermprep.bsh Sat Oct 7 23:12:42 2006
@@ -41,14 +41,6 @@
import javax.servlet.*;
import javax.servlet.http.*;
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Revision$
- * @since 2.1
-
- */
-
delegator = request.getAttribute("delegator");
paramMap = UtilHttp.getParameterMap(request);
Modified: incubator/ofbiz/trunk/applications/content/widget/cms/userpermprepold.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/cms/userpermprepold.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/cms/userpermprepold.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/cms/userpermprepold.bsh Sat Oct 7 23:12:42 2006
@@ -41,15 +41,8 @@
import javax.servlet.*;
import javax.servlet.http.*;
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Revision$
- * @since 2.1
- */
-
-dispatcher = (LocalDispatcher)request.getAttribute("dispatcher");
+dispatcher = (LocalDispatcher)request.getAttribute("dispatcher");
delegator = (GenericDelegator) request.getAttribute("delegator");
paramMap = UtilHttp.getParameterMap(request);
Modified: incubator/ofbiz/trunk/applications/content/widget/contentsetup/userpermprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/contentsetup/userpermprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/contentsetup/userpermprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/contentsetup/userpermprep.bsh Sat Oct 7 23:12:42 2006
@@ -41,14 +41,6 @@
import javax.servlet.*;
import javax.servlet.http.*;
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 2.1
-
- */
-
delegator = request.getAttribute("delegator");
paramMap = UtilHttp.getParameterMap(request);
Modified: incubator/ofbiz/trunk/applications/content/widget/findprep.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/widget/findprep.bsh?view=diff&rev=454085&r1=454084&r2=454085==============================================================================
--- incubator/ofbiz/trunk/applications/content/widget/findprep.bsh (original)
+++ incubator/ofbiz/trunk/applications/content/widget/findprep.bsh Sat Oct 7 23:12:42 2006
@@ -13,14 +13,6 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
-/**
- *
- * @author <a href="mailto:
[hidden email]">Al Byers</a>
- * @version $Rev$
- * @since 2.1
-
- */
-
import org.ofbiz.base.util.*;