Author: chrisg
Date: Thu Mar 6 03:31:15 2008 New Revision: 634224 URL: http://svn.apache.org/viewvc?rev=634224&view=rev Log: Setting svn properties (svn:eol-style,svn:mime-type,svn:keywords) Modified: ofbiz/trunk/specialpurpose/oagis/build.xml (contents, props changed) ofbiz/trunk/specialpurpose/oagis/config/oagis.properties (props changed) ofbiz/trunk/specialpurpose/oagis/data/OagisSecurityData.xml (contents, props changed) ofbiz/trunk/specialpurpose/oagis/ofbiz-component.xml (contents, props changed) ofbiz/trunk/specialpurpose/oagis/script/org/ofbiz/oagis/OagisMessageServices.xml (contents, props changed) ofbiz/trunk/specialpurpose/oagis/servicedef/secas.xml (props changed) ofbiz/trunk/specialpurpose/oagis/servicedef/services.xml (props changed) ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisInventoryServices.java (props changed) ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java (props changed) ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java (props changed) ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml (contents, props changed) ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml (contents, props changed) ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml (contents, props changed) ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml (contents, props changed) ofbiz/trunk/specialpurpose/oagis/widget/Menus.xml (contents, props changed) ofbiz/trunk/specialpurpose/oagis/widget/MessageInfoScreens.xml (contents, props changed) ofbiz/trunk/specialpurpose/oagis/widget/forms/MessageInfoForms.xml (contents, props changed) Modified: ofbiz/trunk/specialpurpose/oagis/build.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/build.xml?rev=634224&r1=634223&r2=634224&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/build.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/build.xml Thu Mar 6 03:31:15 2008 @@ -1,123 +1,123 @@ -<?xml version="1.0"?> -<!-- -Licensed to the Apache Software Foundation (ASF) under one -or more contributor license agreements. See the NOTICE file -distributed with this work for additional information -regarding copyright ownership. The ASF licenses this file -to you under the Apache License, Version 2.0 (the -"License"); you may not use this file except in compliance -with the License. You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied. See the License for the -specific language governing permissions and limitations -under the License. ---> - -<project name="OFBiz - Oagis" default="jar" basedir="."> - - <!-- ================================================================== --> - <!-- Initialization of all property settings --> - <!-- ================================================================== --> - - <target name="init"> - <property environment="env"/> - <property name="desc" value="Oagis Implementation Component"/> - <property name="name" value="ofbiz-oagis"/> - <property name="ofbiz.home.dir" value="../.."/> - <property name="src.dir" value="src"/> - <property name="build.dir" value="build"/> - </target> - - <target name="classpath"> - <path id="local.class.path"> - <fileset dir="../../framework/base/lib" includes="*.jar"/> - <fileset dir="../../framework/base/lib/commons" includes="*.jar"/> - <fileset dir="../../framework/base/lib/j2eespecs" includes="*.jar"/> - <fileset dir="../../framework/base/lib/scripting" includes="*.jar"/> - <fileset dir="../../framework/base/build/lib" includes="*.jar"/> - <fileset dir="../../framework/entity/lib" includes="*.jar"/> - <fileset dir="../../framework/entity/build/lib" includes="*.jar"/> - <fileset dir="../../framework/security/build/lib" includes="*.jar"/> - <fileset dir="../../framework/service/lib" includes="*.jar"/> - <fileset dir="../../framework/service/build/lib" includes="*.jar"/> - <fileset dir="../../framework/entityext/build/lib" includes="*.jar"/> - <fileset dir="../../framework/guiapp/lib" includes="*.jar"/> - <fileset dir="../../framework/guiapp/build/lib" includes="*.jar"/> - <fileset dir="../../framework/webapp/build/lib" includes="*.jar"/> - <fileset dir="../../framework/widget/build/lib" includes="*.jar"/> - <fileset dir="../../applications/party/build/lib" includes="*.jar"/> - <fileset dir="../../applications/product/build/lib" includes="*.jar"/> - <fileset dir="../../applications/order/build/lib" includes="*.jar"/> - </path> - </target> - - <!-- ================================================================== --> - <!-- Removes all created files and directories --> - <!-- ================================================================== --> - - <target name="clean" depends="clean-lib"> - <delete dir="${build.dir}"/> - </target> - - <target name="clean-lib" depends="init"> - <delete dir="${build.dir}/lib"/> - </target> - - <!-- ================================================================== --> - <!-- Makes sure the needed directory structure is in place --> - <!-- ================================================================== --> - - <target name="prepare" depends="clean-lib"> - <mkdir dir="${build.dir}/classes"/> - <mkdir dir="${build.dir}/lib"/> - </target> - - <target name="prepare-docs" depends="init"> - <mkdir dir="${build.dir}/javadocs"/> - </target> - - <!-- ================================================================== --> - <!-- Compilation of the source files --> - <!-- ================================================================== --> - - <target name="classes" depends="prepare,classpath"> - <javac debug="on" source="1.5" deprecation="on" destdir="${build.dir}/classes"> - <classpath> - <path refid="local.class.path"/> - </classpath> - <src path="${src.dir}"/> - </javac> - <copy todir="${build.dir}/classes"> - <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> - </copy> - - <!-- now add the NOTICE and LICENSE files to allow the jar file to be distributed alone --> - <copy todir="${build.dir}/classes/META-INF"> - <fileset dir="${ofbiz.home.dir}" includes="NOTICE,LICENSE"/> - </copy> - </target> - - <target name="jar" depends="classes"> - <jar jarfile="${build.dir}/lib/${name}.jar" basedir="${build.dir}/classes"/> - </target> - - <!-- ================================================================== --> - <!-- Build JavaDoc --> - <!-- ================================================================== --> - - <target name="docs" depends="prepare-docs,classpath"> - <javadoc packagenames="org.ofbiz.oagis.*" - classpathref="local.class.path" - destdir="${build.dir}/javadocs" - Windowtitle="Open for Business - ${desc}"> - <sourcepath path="${src.dir}"/> - </javadoc> - </target> - - <target name="all" depends="jar,docs"/> -</project> +<?xml version="1.0"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> + +<project name="OFBiz - Oagis" default="jar" basedir="."> + + <!-- ================================================================== --> + <!-- Initialization of all property settings --> + <!-- ================================================================== --> + + <target name="init"> + <property environment="env"/> + <property name="desc" value="Oagis Implementation Component"/> + <property name="name" value="ofbiz-oagis"/> + <property name="ofbiz.home.dir" value="../.."/> + <property name="src.dir" value="src"/> + <property name="build.dir" value="build"/> + </target> + + <target name="classpath"> + <path id="local.class.path"> + <fileset dir="../../framework/base/lib" includes="*.jar"/> + <fileset dir="../../framework/base/lib/commons" includes="*.jar"/> + <fileset dir="../../framework/base/lib/j2eespecs" includes="*.jar"/> + <fileset dir="../../framework/base/lib/scripting" includes="*.jar"/> + <fileset dir="../../framework/base/build/lib" includes="*.jar"/> + <fileset dir="../../framework/entity/lib" includes="*.jar"/> + <fileset dir="../../framework/entity/build/lib" includes="*.jar"/> + <fileset dir="../../framework/security/build/lib" includes="*.jar"/> + <fileset dir="../../framework/service/lib" includes="*.jar"/> + <fileset dir="../../framework/service/build/lib" includes="*.jar"/> + <fileset dir="../../framework/entityext/build/lib" includes="*.jar"/> + <fileset dir="../../framework/guiapp/lib" includes="*.jar"/> + <fileset dir="../../framework/guiapp/build/lib" includes="*.jar"/> + <fileset dir="../../framework/webapp/build/lib" includes="*.jar"/> + <fileset dir="../../framework/widget/build/lib" includes="*.jar"/> + <fileset dir="../../applications/party/build/lib" includes="*.jar"/> + <fileset dir="../../applications/product/build/lib" includes="*.jar"/> + <fileset dir="../../applications/order/build/lib" includes="*.jar"/> + </path> + </target> + + <!-- ================================================================== --> + <!-- Removes all created files and directories --> + <!-- ================================================================== --> + + <target name="clean" depends="clean-lib"> + <delete dir="${build.dir}"/> + </target> + + <target name="clean-lib" depends="init"> + <delete dir="${build.dir}/lib"/> + </target> + + <!-- ================================================================== --> + <!-- Makes sure the needed directory structure is in place --> + <!-- ================================================================== --> + + <target name="prepare" depends="clean-lib"> + <mkdir dir="${build.dir}/classes"/> + <mkdir dir="${build.dir}/lib"/> + </target> + + <target name="prepare-docs" depends="init"> + <mkdir dir="${build.dir}/javadocs"/> + </target> + + <!-- ================================================================== --> + <!-- Compilation of the source files --> + <!-- ================================================================== --> + + <target name="classes" depends="prepare,classpath"> + <javac debug="on" source="1.5" deprecation="on" destdir="${build.dir}/classes"> + <classpath> + <path refid="local.class.path"/> + </classpath> + <src path="${src.dir}"/> + </javac> + <copy todir="${build.dir}/classes"> + <fileset dir="${src.dir}" includes="**/*.properties,**/*.xml,**/*.bsh,**/*.logic,**/*.js,**/*.jacl,**/*.py"/> + </copy> + + <!-- now add the NOTICE and LICENSE files to allow the jar file to be distributed alone --> + <copy todir="${build.dir}/classes/META-INF"> + <fileset dir="${ofbiz.home.dir}" includes="NOTICE,LICENSE"/> + </copy> + </target> + + <target name="jar" depends="classes"> + <jar jarfile="${build.dir}/lib/${name}.jar" basedir="${build.dir}/classes"/> + </target> + + <!-- ================================================================== --> + <!-- Build JavaDoc --> + <!-- ================================================================== --> + + <target name="docs" depends="prepare-docs,classpath"> + <javadoc packagenames="org.ofbiz.oagis.*" + classpathref="local.class.path" + destdir="${build.dir}/javadocs" + Windowtitle="Open for Business - ${desc}"> + <sourcepath path="${src.dir}"/> + </javadoc> + </target> + + <target name="all" depends="jar,docs"/> +</project> Propchange: ofbiz/trunk/specialpurpose/oagis/build.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/build.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/build.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: ofbiz/trunk/specialpurpose/oagis/config/oagis.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/config/oagis.properties ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/config/oagis.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: ofbiz/trunk/specialpurpose/oagis/data/OagisSecurityData.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/data/OagisSecurityData.xml?rev=634224&r1=634223&r2=634224&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/data/OagisSecurityData.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/data/OagisSecurityData.xml Thu Mar 6 03:31:15 2008 @@ -1,30 +1,30 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -Licensed to the Apache Software Foundation (ASF) under one -or more contributor license agreements. See the NOTICE file -distributed with this work for additional information -regarding copyright ownership. The ASF licenses this file -to you under the Apache License, Version 2.0 (the -"License"); you may not use this file except in compliance -with the License. You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied. See the License for the -specific language governing permissions and limitations -under the License. ---> - -<entity-engine-xml> - <!-- Oagis component security --> - <SecurityPermission description="View operations in the Oagis application." permissionId="OAGIS_VIEW"/> - - <SecurityGroupPermission groupId="FLEXADMIN" permissionId="OAGIS_VIEW"/> - <SecurityGroupPermission groupId="FULLADMIN" permissionId="OAGIS_VIEW"/> - <SecurityGroupPermission groupId="VIEWADMIN" permissionId="OAGIS_VIEW"/> - <SecurityGroupPermission groupId="BIZADMIN" permissionId="OAGIS_VIEW"/> - -</entity-engine-xml> +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> + +<entity-engine-xml> + <!-- Oagis component security --> + <SecurityPermission description="View operations in the Oagis application." permissionId="OAGIS_VIEW"/> + + <SecurityGroupPermission groupId="FLEXADMIN" permissionId="OAGIS_VIEW"/> + <SecurityGroupPermission groupId="FULLADMIN" permissionId="OAGIS_VIEW"/> + <SecurityGroupPermission groupId="VIEWADMIN" permissionId="OAGIS_VIEW"/> + <SecurityGroupPermission groupId="BIZADMIN" permissionId="OAGIS_VIEW"/> + +</entity-engine-xml> Propchange: ofbiz/trunk/specialpurpose/oagis/data/OagisSecurityData.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/data/OagisSecurityData.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/data/OagisSecurityData.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: ofbiz/trunk/specialpurpose/oagis/ofbiz-component.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/ofbiz-component.xml?rev=634224&r1=634223&r2=634224&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/ofbiz-component.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/ofbiz-component.xml Thu Mar 6 03:31:15 2008 @@ -1,46 +1,46 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -Licensed to the Apache Software Foundation (ASF) under one -or more contributor license agreements. See the NOTICE file -distributed with this work for additional information -regarding copyright ownership. The ASF licenses this file -to you under the Apache License, Version 2.0 (the -"License"); you may not use this file except in compliance -with the License. You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied. See the License for the -specific language governing permissions and limitations -under the License. ---> - -<ofbiz-component name="oagis" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd"> - <resource-loader name="main" type="component"/> - <classpath type="dir" location="script"/> - <classpath type="dir" location="config"/> - <classpath type="jar" location="build/lib/*"/> - - <entity-resource type="model" reader-name="main" loader="main" location="entitydef/entitymodel.xml"/> - <entity-resource type="group" reader-name="main" loader="main" location="entitydef/entitygroup.xml"/> - <entity-resource type="data" reader-name="seed" loader="main" location="data/OagisTypeData.xml"/> - <entity-resource type="data" reader-name="seed" loader="main" location="data/OagisSecurityData.xml"/> - - <service-resource type="model" loader="main" location="servicedef/services.xml"/> - <!-- Uncomment To activate automatic messaging to the partner - <service-resource type="eca" loader="main" location="servicedef/secas.xml"/> - --> - - <webapp name="oagis" - title="Oagis" - server="default-server" - location="webapp/oagis" - base-permission="OFBTOOLS,OAGIS" - mount-point="/oagis" - app-bar-display="true"/> -</ofbiz-component> +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> + +<ofbiz-component name="oagis" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd"> + <resource-loader name="main" type="component"/> + <classpath type="dir" location="script"/> + <classpath type="dir" location="config"/> + <classpath type="jar" location="build/lib/*"/> + + <entity-resource type="model" reader-name="main" loader="main" location="entitydef/entitymodel.xml"/> + <entity-resource type="group" reader-name="main" loader="main" location="entitydef/entitygroup.xml"/> + <entity-resource type="data" reader-name="seed" loader="main" location="data/OagisTypeData.xml"/> + <entity-resource type="data" reader-name="seed" loader="main" location="data/OagisSecurityData.xml"/> + + <service-resource type="model" loader="main" location="servicedef/services.xml"/> + <!-- Uncomment To activate automatic messaging to the partner + <service-resource type="eca" loader="main" location="servicedef/secas.xml"/> + --> + + <webapp name="oagis" + title="Oagis" + server="default-server" + location="webapp/oagis" + base-permission="OFBTOOLS,OAGIS" + mount-point="/oagis" + app-bar-display="true"/> +</ofbiz-component> Propchange: ofbiz/trunk/specialpurpose/oagis/ofbiz-component.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/ofbiz-component.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/ofbiz-component.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: ofbiz/trunk/specialpurpose/oagis/script/org/ofbiz/oagis/OagisMessageServices.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/script/org/ofbiz/oagis/OagisMessageServices.xml?rev=634224&r1=634223&r2=634224&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/script/org/ofbiz/oagis/OagisMessageServices.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/script/org/ofbiz/oagis/OagisMessageServices.xml Thu Mar 6 03:31:15 2008 @@ -1,79 +1,79 @@ -<?xml version="1.0" encoding="UTF-8" ?> -<!-- -Licensed to the Apache Software Foundation (ASF) under one -or more contributor license agreements. See the NOTICE file -distributed with this work for additional information -regarding copyright ownership. The ASF licenses this file -to you under the Apache License, Version 2.0 (the -"License"); you may not use this file except in compliance -with the License. You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied. See the License for the -specific language governing permissions and limitations -under the License. ---> - -<simple-methods xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd"> - - <simple-method method-name="createOagisMessageInfo" short-description="Create MessageInfo"> - <make-value entity-name="OagisMessageInfo" value-name="newEntity"/> - <set-pk-fields map-name="parameters" value-name="newEntity" /> - - <!-- make sure it doesn't already exist: motivation: if it already exists we'll get a HUGE error message on the create with the whole XML file in it if debug is on for that, so we want a smaller error message --> - <find-by-primary-key map-name="newEntity" value-name="currentOagisMessageInfo"/> +<?xml version="1.0" encoding="UTF-8" ?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> + +<simple-methods xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd"> + + <simple-method method-name="createOagisMessageInfo" short-description="Create MessageInfo"> + <make-value entity-name="OagisMessageInfo" value-name="newEntity"/> + <set-pk-fields map-name="parameters" value-name="newEntity" /> + + <!-- make sure it doesn't already exist: motivation: if it already exists we'll get a HUGE error message on the create with the whole XML file in it if debug is on for that, so we want a smaller error message --> + <find-by-primary-key map-name="newEntity" value-name="currentOagisMessageInfo"/> <if-not-empty field-name="currentOagisMessageInfo"> - <add-error><fail-message message="This message was already received, ie we have a duplicate combined ID for the message: ${newEntity}"/></add-error> + <add-error><fail-message message="This message was already received, ie we have a duplicate combined ID for the message: ${newEntity}"/></add-error> <check-errors/> - </if-not-empty> - - <set-nonpk-fields map-name="parameters" value-name="newEntity"/> - <create-value value-name="newEntity"/> - <!--if-compare value="1" field-name="newEntity.confirmation" operator="equals" type="Integer"> - <set-service-fields to-map-name="oagisMessageErrorInfoMap" service-name="createOagisMessageErrorInfo" map-name="parameters"/> - <call-service service-name="createOagisMessageErrorInfo" in-map-name="oagisMessageErrorInfoMap"/> - </if-compare--> - </simple-method> - - <simple-method method-name="updateOagisMessageInfo" short-description="Update Oagis MessageInfo"> - <entity-one entity-name="OagisMessageInfo" value-name="lookedUpValue"/> - <set-nonpk-fields value-name="lookedUpValue" map-name="parameters"/> - <store-value value-name="lookedUpValue"/> - </simple-method> - - <simple-method method-name="createOagisMessageErrorInfo" short-description="Create MessageErrorInfo"> - <make-value entity-name="OagisMessageErrorInfo" value-name="newEntity"/> - <set-pk-fields map-name="parameters" value-name="newEntity" /> - <make-next-seq-id value-name="newEntity" seq-field-name="errorSeqId"/> - <set-nonpk-fields map-name="parameters" value-name="newEntity"/> - <create-value value-name="newEntity"/> - </simple-method> - - <simple-method method-name="updateOagisMessageErrorInfo" short-description="Update Oagis MessageErrorInfo"> - <entity-one entity-name="OagisMessageErrorInfo" value-name="lookedUpValue"/> - <set-nonpk-fields value-name="lookedUpValue" map-name="parameters"/> - <store-value value-name="lookedUpValue"/> - </simple-method> - - <simple-method method-name="createOagisMsgErrInfosFromErrMapList" short-description="Create MessageErrorInfo From Error Map List"> - <set field="createOagisMsgErrCtx.logicalId" from-field="parameters.logicalId"/> - <set field="createOagisMsgErrCtx.component" from-field="parameters.component"/> - <set field="createOagisMsgErrCtx.task" from-field="parameters.task"/> - <set field="createOagisMsgErrCtx.referenceId" from-field="parameters.referenceId"/> - <if-not-empty field-name="parameters.errorMapList"> - <iterate list-name="parameters.errorMapList" entry-name="errorMap"> - <set field="createOagisMsgErrCtx.description" from-field="errorMap.description"/> - <set field="createOagisMsgErrCtx.reasonCode" from-field="errorMap.reasonCode"/> - <call-service service-name="createOagisMessageErrorInfo" in-map-name="createOagisMsgErrCtx"/> - </iterate> - <else> - <call-service service-name="createOagisMessageErrorInfo" in-map-name="createOagisMsgErrCtx"/> - </else> - </if-not-empty> - </simple-method> -</simple-methods> + </if-not-empty> + + <set-nonpk-fields map-name="parameters" value-name="newEntity"/> + <create-value value-name="newEntity"/> + <!--if-compare value="1" field-name="newEntity.confirmation" operator="equals" type="Integer"> + <set-service-fields to-map-name="oagisMessageErrorInfoMap" service-name="createOagisMessageErrorInfo" map-name="parameters"/> + <call-service service-name="createOagisMessageErrorInfo" in-map-name="oagisMessageErrorInfoMap"/> + </if-compare--> + </simple-method> + + <simple-method method-name="updateOagisMessageInfo" short-description="Update Oagis MessageInfo"> + <entity-one entity-name="OagisMessageInfo" value-name="lookedUpValue"/> + <set-nonpk-fields value-name="lookedUpValue" map-name="parameters"/> + <store-value value-name="lookedUpValue"/> + </simple-method> + + <simple-method method-name="createOagisMessageErrorInfo" short-description="Create MessageErrorInfo"> + <make-value entity-name="OagisMessageErrorInfo" value-name="newEntity"/> + <set-pk-fields map-name="parameters" value-name="newEntity" /> + <make-next-seq-id value-name="newEntity" seq-field-name="errorSeqId"/> + <set-nonpk-fields map-name="parameters" value-name="newEntity"/> + <create-value value-name="newEntity"/> + </simple-method> + + <simple-method method-name="updateOagisMessageErrorInfo" short-description="Update Oagis MessageErrorInfo"> + <entity-one entity-name="OagisMessageErrorInfo" value-name="lookedUpValue"/> + <set-nonpk-fields value-name="lookedUpValue" map-name="parameters"/> + <store-value value-name="lookedUpValue"/> + </simple-method> + + <simple-method method-name="createOagisMsgErrInfosFromErrMapList" short-description="Create MessageErrorInfo From Error Map List"> + <set field="createOagisMsgErrCtx.logicalId" from-field="parameters.logicalId"/> + <set field="createOagisMsgErrCtx.component" from-field="parameters.component"/> + <set field="createOagisMsgErrCtx.task" from-field="parameters.task"/> + <set field="createOagisMsgErrCtx.referenceId" from-field="parameters.referenceId"/> + <if-not-empty field-name="parameters.errorMapList"> + <iterate list-name="parameters.errorMapList" entry-name="errorMap"> + <set field="createOagisMsgErrCtx.description" from-field="errorMap.description"/> + <set field="createOagisMsgErrCtx.reasonCode" from-field="errorMap.reasonCode"/> + <call-service service-name="createOagisMessageErrorInfo" in-map-name="createOagisMsgErrCtx"/> + </iterate> + <else> + <call-service service-name="createOagisMessageErrorInfo" in-map-name="createOagisMsgErrCtx"/> + </else> + </if-not-empty> + </simple-method> +</simple-methods> Propchange: ofbiz/trunk/specialpurpose/oagis/script/org/ofbiz/oagis/OagisMessageServices.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/script/org/ofbiz/oagis/OagisMessageServices.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/script/org/ofbiz/oagis/OagisMessageServices.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: ofbiz/trunk/specialpurpose/oagis/servicedef/secas.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/servicedef/secas.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/servicedef/secas.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: ofbiz/trunk/specialpurpose/oagis/servicedef/services.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/servicedef/services.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/servicedef/services.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisInventoryServices.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisInventoryServices.java ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisInventoryServices.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Propchange: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Propchange: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml?rev=634224&r1=634223&r2=634224&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml Thu Mar 6 03:31:15 2008 @@ -1,208 +1,208 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. ---> - -<site-conf xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd"> - <include location="component://common/webcommon/WEB-INF/common-controller.xml"/> - <description>Oagis Component Site Configuration File</description> - - <!-- event handlers --> - <handler name="stream" type="request" class="org.ofbiz.webapp.event.ServiceStreamHandler"/> - - <!-- view handlers --> - <handler name="screenxml" type="view" class="org.ofbiz.widget.screen.ScreenXmlViewHandler"/> - - <!-- Events to run on every request before security (chains exempt) --> - <!-- - <preprocessor> - </preprocessor> - --> - <!-- Events to run on every request after all other processing (chains exempt) --> - <!-- - <postprocessor> - <event type="java" path="org.ofbiz.webapp.event.TestEvent" invoke="test"/> - </postprocessor> - --> - - - <request-map uri="main"> - <security https="true" auth="true"/> - <response name="success" type="view" value="main"/> - </request-map> - - <request-map uri="FindMessageInfo"> - <security https="true" auth="true"/> - <response name="success" type="view" value="FindMessageInfo"/> - </request-map> - - <request-map uri="EditMessageInfo"> - <security https="true" auth="true"/> - <response name="success" type="view" value="EditMessageInfo"/> - </request-map> - - <request-map uri="createOagisMessageInfo"> - <security https="true" auth="true"/> - <event type="service" path="" invoke="createOagisMessageInfo"/> - <response name="success" type="view" value="EditMessageInfo"/> - <response name="error" type="view" value="EditMessageInfo"/> - </request-map> - - <request-map uri="updateOagisMessageInfo"> - <security https="true" auth="true"/> - <event type="service" path="" invoke="updateOagisMessageInfo"/> - <response name="success" type="view" value="EditMessageInfo"/> - <response name="error" type="view" value="EditMessageInfo"/> - </request-map> - - <request-map uri="FindMessageErrorInfo"> - <security https="true" auth="true"/> - <response name="success" type="view" value="FindMessageErrorInfo"/> - </request-map> - - <request-map uri="EditMessageErrorInfo"> - <security https="true" auth="true"/> - <response name="success" type="view" value="EditMessageErrorInfo"/> - </request-map> - - <request-map uri="createOagisMessageErrorInfo"> - <security https="true" auth="true"/> - <event type="service" path="" invoke="createOagisMessageErrorInfo"/> - <response name="success" type="view" value="EditMessageErrorInfo"/> - <response name="error" type="view" value="EditMessageErrorInfo"/> - </request-map> - - <request-map uri="updateOagisMessageErrorInfo"> - <security https="true" auth="true"/> - <event type="service" path="" invoke="updateOagisMessageErrorInfo"/> - <response name="success" type="view" value="EditMessageErrorInfo"/> - <response name="error" type="view" value="EditMessageErrorInfo"/> - </request-map> - - <request-map uri="UploadOagisMessage"> - <security https="true" auth="true" /> - <response name="success" type="view" value="UploadOagisMessage" /> - <response name="error" type="view" value="UploadOagisMessage"/> - </request-map> - - <request-map uri="importConfirmBODOagisMessage"> - <security https="true" auth="true" /> - <event type="service" path="" invoke="importConfirmBOD" /> - <response name="success" type="view" value="UploadOagisMessage" /> - <response name="error" type="view" value="UploadOagisMessage"/> - </request-map> - - <request-map uri="importSyncInventoryOagisMessage"> - <security https="true" auth="true" /> - <event type="service" path="" invoke="importConfirmBOD" /> - <response name="success" type="view" value="UploadOagisMessage" /> - <response name="error" type="view" value="UploadOagisMessage"/> - </request-map> - - <request-map uri="importAcknowledgementDeliveryOagisMessage"> - <security https="true" auth="true" /> - <event type="service" path="" invoke="importConfirmBOD" /> - <response name="success" type="view" value="UploadOagisMessage" /> - <response name="error" type="view" value="UploadOagisMessage"/> - </request-map> - - <request-map uri="importProcessShipmentOagisMessage"> - <security https="true" auth="true" /> - <event type="service" path="" invoke="importConfirmBOD" /> - <response name="success" type="view" value="UploadOagisMessage" /> - <response name="error" type="view" value="UploadOagisMessage"/> - </request-map> - - <request-map uri="importShowShipmentOagisMessage"> - <security https="true" auth="true" /> - <event type="service" path="" invoke="importConfirmBOD" /> - <response name="success" type="view" value="UploadOagisMessage" /> - <response name="error" type="view" value="UploadOagisMessage"/> - </request-map> - - <request-map uri="importAcknowledgementDeliveryOagisMessage"> - <security https="true" auth="true" /> - <event type="service" path="" invoke="importConfirmBOD" /> - <response name="success" type="view" value="UploadOagisMessage" /> - <response name="error" type="view" value="UploadOagisMessage"/> - </request-map> - - <request-map uri="importReceiveDeliveryOagisMessage"> - <security https="true" auth="true" /> - <event type="service" path="" invoke="importConfirmBOD" /> - <response name="success" type="view" value="UploadOagisMessage" /> - <response name="error" type="view" value="UploadOagisMessage"/> - </request-map> - - <request-map uri="oagisReceiveShowShipment"> - <security https="true" auth="false"/> - <event type="stream" invoke="oagisReceiveShowShipment"/> - <response name="success" type="none"/> - </request-map> - - <request-map uri="oagisReceiveConfirmBod"> - <security https="true" auth="false"/> - <event type="stream" invoke="oagisReceiveConfirmBod"/> - <response name="success" type="none"/> - </request-map> - - <request-map uri="oagisReceiveSyncInventory"> - <security https="true" auth="false"/> - <event type="stream" invoke="oagisReceiveSyncInventory"/> - <response name="success" type="none"/> - </request-map> - - <request-map uri="oagisReceiveAcknowledgeDeliveryPo"> - <security https="true" auth="false"/> - <event type="stream" invoke="oagisReceiveAcknowledgeDeliveryPo"/> - <response name="success" type="none"/> - </request-map> - - <request-map uri="oagisReceiveAcknowledgeDeliveryRma"> - <security https="true" auth="false"/> - <event type="stream" invoke="oagisReceiveAcknowledgeDeliveryRma"/> - <response name="success" type="none"/> - </request-map> - - <request-map uri="oagisMessageHandler"> - <security https="true" auth="false" cert="true"/> - <event type="stream" invoke="oagisMessageHandler"/> - <response name="success" type="none"/> - </request-map> - <!-- this doesn't require a cert and is for testing; should be removed or blocked in production --> - <!-- commented out by default for more securiry - <request-map uri="oagisMessageHandlerTest"> - <security https="false" auth="false" cert="false"/> - <event type="stream" invoke="oagisMessageHandler"/> - <response name="success" type="none"/> - </request-map> - --> - - <!-- end of request mappings --> - - <!-- View Mappings --> - <view-map name="main" type="screen" page="component://oagis/widget/MessageInfoScreens.xml#FindMessageInfo"/> - - <view-map name="FindMessageInfo" type="screen" page="component://oagis/widget/MessageInfoScreens.xml#FindMessageInfo"/> - <view-map name="EditMessageInfo" type="screen" page="component://oagis/widget/MessageInfoScreens.xml#EditMessageInfo"/> - <view-map name="FindMessageErrorInfo" type="screen" page="component://oagis/widget/MessageInfoScreens.xml#FindMessageErrorInfo"/> - <view-map name="EditMessageErrorInfo" type="screen" page="component://oagis/widget/MessageInfoScreens.xml#EditMessageErrorInfo"/> - - <!-- end of view mappings --> -</site-conf> +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> + +<site-conf xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd"> + <include location="component://common/webcommon/WEB-INF/common-controller.xml"/> + <description>Oagis Component Site Configuration File</description> + + <!-- event handlers --> + <handler name="stream" type="request" class="org.ofbiz.webapp.event.ServiceStreamHandler"/> + + <!-- view handlers --> + <handler name="screenxml" type="view" class="org.ofbiz.widget.screen.ScreenXmlViewHandler"/> + + <!-- Events to run on every request before security (chains exempt) --> + <!-- + <preprocessor> + </preprocessor> + --> + <!-- Events to run on every request after all other processing (chains exempt) --> + <!-- + <postprocessor> + <event type="java" path="org.ofbiz.webapp.event.TestEvent" invoke="test"/> + </postprocessor> + --> + + + <request-map uri="main"> + <security https="true" auth="true"/> + <response name="success" type="view" value="main"/> + </request-map> + + <request-map uri="FindMessageInfo"> + <security https="true" auth="true"/> + <response name="success" type="view" value="FindMessageInfo"/> + </request-map> + + <request-map uri="EditMessageInfo"> + <security https="true" auth="true"/> + <response name="success" type="view" value="EditMessageInfo"/> + </request-map> + + <request-map uri="createOagisMessageInfo"> + <security https="true" auth="true"/> + <event type="service" path="" invoke="createOagisMessageInfo"/> + <response name="success" type="view" value="EditMessageInfo"/> + <response name="error" type="view" value="EditMessageInfo"/> + </request-map> + + <request-map uri="updateOagisMessageInfo"> + <security https="true" auth="true"/> + <event type="service" path="" invoke="updateOagisMessageInfo"/> + <response name="success" type="view" value="EditMessageInfo"/> + <response name="error" type="view" value="EditMessageInfo"/> + </request-map> + + <request-map uri="FindMessageErrorInfo"> + <security https="true" auth="true"/> + <response name="success" type="view" value="FindMessageErrorInfo"/> + </request-map> + + <request-map uri="EditMessageErrorInfo"> + <security https="true" auth="true"/> + <response name="success" type="view" value="EditMessageErrorInfo"/> + </request-map> + + <request-map uri="createOagisMessageErrorInfo"> + <security https="true" auth="true"/> + <event type="service" path="" invoke="createOagisMessageErrorInfo"/> + <response name="success" type="view" value="EditMessageErrorInfo"/> + <response name="error" type="view" value="EditMessageErrorInfo"/> + </request-map> + + <request-map uri="updateOagisMessageErrorInfo"> + <security https="true" auth="true"/> + <event type="service" path="" invoke="updateOagisMessageErrorInfo"/> + <response name="success" type="view" value="EditMessageErrorInfo"/> + <response name="error" type="view" value="EditMessageErrorInfo"/> + </request-map> + + <request-map uri="UploadOagisMessage"> + <security https="true" auth="true" /> + <response name="success" type="view" value="UploadOagisMessage" /> + <response name="error" type="view" value="UploadOagisMessage"/> + </request-map> + + <request-map uri="importConfirmBODOagisMessage"> + <security https="true" auth="true" /> + <event type="service" path="" invoke="importConfirmBOD" /> + <response name="success" type="view" value="UploadOagisMessage" /> + <response name="error" type="view" value="UploadOagisMessage"/> + </request-map> + + <request-map uri="importSyncInventoryOagisMessage"> + <security https="true" auth="true" /> + <event type="service" path="" invoke="importConfirmBOD" /> + <response name="success" type="view" value="UploadOagisMessage" /> + <response name="error" type="view" value="UploadOagisMessage"/> + </request-map> + + <request-map uri="importAcknowledgementDeliveryOagisMessage"> + <security https="true" auth="true" /> + <event type="service" path="" invoke="importConfirmBOD" /> + <response name="success" type="view" value="UploadOagisMessage" /> + <response name="error" type="view" value="UploadOagisMessage"/> + </request-map> + + <request-map uri="importProcessShipmentOagisMessage"> + <security https="true" auth="true" /> + <event type="service" path="" invoke="importConfirmBOD" /> + <response name="success" type="view" value="UploadOagisMessage" /> + <response name="error" type="view" value="UploadOagisMessage"/> + </request-map> + + <request-map uri="importShowShipmentOagisMessage"> + <security https="true" auth="true" /> + <event type="service" path="" invoke="importConfirmBOD" /> + <response name="success" type="view" value="UploadOagisMessage" /> + <response name="error" type="view" value="UploadOagisMessage"/> + </request-map> + + <request-map uri="importAcknowledgementDeliveryOagisMessage"> + <security https="true" auth="true" /> + <event type="service" path="" invoke="importConfirmBOD" /> + <response name="success" type="view" value="UploadOagisMessage" /> + <response name="error" type="view" value="UploadOagisMessage"/> + </request-map> + + <request-map uri="importReceiveDeliveryOagisMessage"> + <security https="true" auth="true" /> + <event type="service" path="" invoke="importConfirmBOD" /> + <response name="success" type="view" value="UploadOagisMessage" /> + <response name="error" type="view" value="UploadOagisMessage"/> + </request-map> + + <request-map uri="oagisReceiveShowShipment"> + <security https="true" auth="false"/> + <event type="stream" invoke="oagisReceiveShowShipment"/> + <response name="success" type="none"/> + </request-map> + + <request-map uri="oagisReceiveConfirmBod"> + <security https="true" auth="false"/> + <event type="stream" invoke="oagisReceiveConfirmBod"/> + <response name="success" type="none"/> + </request-map> + + <request-map uri="oagisReceiveSyncInventory"> + <security https="true" auth="false"/> + <event type="stream" invoke="oagisReceiveSyncInventory"/> + <response name="success" type="none"/> + </request-map> + + <request-map uri="oagisReceiveAcknowledgeDeliveryPo"> + <security https="true" auth="false"/> + <event type="stream" invoke="oagisReceiveAcknowledgeDeliveryPo"/> + <response name="success" type="none"/> + </request-map> + + <request-map uri="oagisReceiveAcknowledgeDeliveryRma"> + <security https="true" auth="false"/> + <event type="stream" invoke="oagisReceiveAcknowledgeDeliveryRma"/> + <response name="success" type="none"/> + </request-map> + + <request-map uri="oagisMessageHandler"> + <security https="true" auth="false" cert="true"/> + <event type="stream" invoke="oagisMessageHandler"/> + <response name="success" type="none"/> + </request-map> + <!-- this doesn't require a cert and is for testing; should be removed or blocked in production --> + <!-- commented out by default for more securiry + <request-map uri="oagisMessageHandlerTest"> + <security https="false" auth="false" cert="false"/> + <event type="stream" invoke="oagisMessageHandler"/> + <response name="success" type="none"/> + </request-map> + --> + + <!-- end of request mappings --> + + <!-- View Mappings --> + <view-map name="main" type="screen" page="component://oagis/widget/MessageInfoScreens.xml#FindMessageInfo"/> + + <view-map name="FindMessageInfo" type="screen" page="component://oagis/widget/MessageInfoScreens.xml#FindMessageInfo"/> + <view-map name="EditMessageInfo" type="screen" page="component://oagis/widget/MessageInfoScreens.xml#EditMessageInfo"/> + <view-map name="FindMessageErrorInfo" type="screen" page="component://oagis/widget/MessageInfoScreens.xml#FindMessageErrorInfo"/> + <view-map name="EditMessageErrorInfo" type="screen" page="component://oagis/widget/MessageInfoScreens.xml#EditMessageErrorInfo"/> + + <!-- end of view mappings --> +</site-conf> Propchange: ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml?rev=634224&r1=634223&r2=634224&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml Thu Mar 6 03:31:15 2008 @@ -1,94 +1,94 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> -<!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. ---> - -<web-app> - <display-name>Open Oagis - Oagis Implementation</display-name> - <description>Oagis Implementation component of the Open For Business Project</description> - - <context-param> - <param-name>entityDelegatorName</param-name> - <param-value>default</param-value> - <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> - </context-param> - <context-param> - <param-name>localDispatcherName</param-name> - <param-value>oagismgr</param-value> - <description>A unique name used to identify/recognize the local dispatcher for the Service Engine</description> - </context-param> - <context-param> - <param-name>mainDecoratorLocation</param-name> - <param-value>component://oagis/widget/CommonScreens.xml</param-value> - <description>The location of the main-decorator screen to use for this webapp; referred to as a context variable in screen def XML files.</description> - </context-param> - - <filter> - <filter-name>ContextFilter</filter-name> - <display-name>ContextFilter</display-name> - <filter-class>org.ofbiz.webapp.control.ContextFilter</filter-class> - <init-param> - <param-name>disableContextSecurity</param-name> - <param-value>N</param-value> - </init-param> - <init-param> - <param-name>allowedPaths</param-name> - <param-value>/control:/select:/index.html:/index.jsp:/default.html:/default.jsp:/images:/includes/maincss.css:/js</param-value> - </init-param> - <init-param> - <param-name>errorCode</param-name> - <param-value>403</param-value> - </init-param> - <init-param> - <param-name>redirectPath</param-name> - <param-value>/control/main</param-value> - </init-param> - </filter> - <filter-mapping> - <filter-name>ContextFilter</filter-name> - <url-pattern>/*</url-pattern> - </filter-mapping> - - <listener><listener-class>org.ofbiz.webapp.control.ControlEventListener</listener-class></listener> - <listener><listener-class>org.ofbiz.webapp.control.LoginEventListener</listener-class></listener> - <!-- NOTE: not all app servers support mounting implementations of the HttpSessionActivationListener interface --> - <!-- <listener><listener-class>org.ofbiz.webapp.control.ControlActivationEventListener</listener-class></listener> --> - - <servlet> - <servlet-name>ControlServlet</servlet-name> - <display-name>ControlServlet</display-name> - <description>Main Control Servlet</description> - <servlet-class>org.ofbiz.webapp.control.ControlServlet</servlet-class> - <load-on-startup>1</load-on-startup> - </servlet> - <servlet-mapping> - <servlet-name>ControlServlet</servlet-name> - <url-pattern>/control/*</url-pattern> - </servlet-mapping> - - <session-config> - <session-timeout>60</session-timeout> <!-- in minutes --> - </session-config> - - <welcome-file-list> - <welcome-file>index.jsp</welcome-file> - <welcome-file>index.html</welcome-file> - <welcome-file>index.htm</welcome-file> - </welcome-file-list> -</web-app> +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> + +<web-app> + <display-name>Open Oagis - Oagis Implementation</display-name> + <description>Oagis Implementation component of the Open For Business Project</description> + + <context-param> + <param-name>entityDelegatorName</param-name> + <param-value>default</param-value> + <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> + </context-param> + <context-param> + <param-name>localDispatcherName</param-name> + <param-value>oagismgr</param-value> + <description>A unique name used to identify/recognize the local dispatcher for the Service Engine</description> + </context-param> + <context-param> + <param-name>mainDecoratorLocation</param-name> + <param-value>component://oagis/widget/CommonScreens.xml</param-value> + <description>The location of the main-decorator screen to use for this webapp; referred to as a context variable in screen def XML files.</description> + </context-param> + + <filter> + <filter-name>ContextFilter</filter-name> + <display-name>ContextFilter</display-name> + <filter-class>org.ofbiz.webapp.control.ContextFilter</filter-class> + <init-param> + <param-name>disableContextSecurity</param-name> + <param-value>N</param-value> + </init-param> + <init-param> + <param-name>allowedPaths</param-name> + <param-value>/control:/select:/index.html:/index.jsp:/default.html:/default.jsp:/images:/includes/maincss.css:/js</param-value> + </init-param> + <init-param> + <param-name>errorCode</param-name> + <param-value>403</param-value> + </init-param> + <init-param> + <param-name>redirectPath</param-name> + <param-value>/control/main</param-value> + </init-param> + </filter> + <filter-mapping> + <filter-name>ContextFilter</filter-name> + <url-pattern>/*</url-pattern> + </filter-mapping> + + <listener><listener-class>org.ofbiz.webapp.control.ControlEventListener</listener-class></listener> + <listener><listener-class>org.ofbiz.webapp.control.LoginEventListener</listener-class></listener> + <!-- NOTE: not all app servers support mounting implementations of the HttpSessionActivationListener interface --> + <!-- <listener><listener-class>org.ofbiz.webapp.control.ControlActivationEventListener</listener-class></listener> --> + + <servlet> + <servlet-name>ControlServlet</servlet-name> + <display-name>ControlServlet</display-name> + <description>Main Control Servlet</description> + <servlet-class>org.ofbiz.webapp.control.ControlServlet</servlet-class> + <load-on-startup>1</load-on-startup> + </servlet> + <servlet-mapping> + <servlet-name>ControlServlet</servlet-name> + <url-pattern>/control/*</url-pattern> + </servlet-mapping> + + <session-config> + <session-timeout>60</session-timeout> <!-- in minutes --> + </session-config> + + <welcome-file-list> + <welcome-file>index.jsp</welcome-file> + <welcome-file>index.html</welcome-file> + <welcome-file>index.htm</welcome-file> + </welcome-file-list> +</web-app> Propchange: ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml?rev=634224&r1=634223&r2=634224&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml Thu Mar 6 03:31:15 2008 @@ -1,63 +1,63 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -Licensed to the Apache Software Foundation (ASF) under one -or more contributor license agreements. See the NOTICE file -distributed with this work for additional information -regarding copyright ownership. The ASF licenses this file -to you under the Apache License, Version 2.0 (the -"License"); you may not use this file except in compliance -with the License. You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied. See the License for the -specific language governing permissions and limitations -under the License. ---> - -<screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd"> - <screen name="main-decorator"> - <section> - <actions> - <property-map resource="OagisUiLabels" map-name="uiLabelMap" global="true"/> - <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/> - - <!-- The two default (global) stylesheets are added to the list - of stylesheets to the first and second position --> - <set field="layoutSettings.styleSheets[+0]" value="/images/maincss.css" global="true"/> - <set field="layoutSettings.companyName" value="OFBiz Oagis" global="true"/> +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> + +<screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd"> + <screen name="main-decorator"> + <section> + <actions> + <property-map resource="OagisUiLabels" map-name="uiLabelMap" global="true"/> + <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/> + + <!-- The two default (global) stylesheets are added to the list + of stylesheets to the first and second position --> + <set field="layoutSettings.styleSheets[+0]" value="/images/maincss.css" global="true"/> + <set field="layoutSettings.companyName" value="OFBiz Oagis" global="true"/> <set field="layoutSettings.companySubtitle" value="OFBiz Oagis Impl" global="true"/> <set field="layoutSettings.companyName" from-field="uiLabelMap.OagisCompanyName" global="true"/> - <set field="layoutSettings.companySubtitle" from-field="uiLabelMap.OagisCompanySubtitle" global="true"/> - <set field="activeApp" value="oagis" global="true"/> - <set field="applicationMenuName" value="OagisAppBar" global="true"/> - <set field="applicationMenuLocation" value="component://oagis/widget/Menus.xml" global="true"/> - - </actions> - <widgets> - <include-screen name="GlobalDecorator" location="component://common/widget/CommonScreens.xml"/> - </widgets> - </section> - </screen> - - <screen name="CommonOagisMessageScreen"> - <section> - <widgets> - <decorator-screen name="main-decorator"> - <decorator-section name="body"> - <section> - <widgets> - <decorator-section-include name="body"/> - </widgets> - </section> - </decorator-section> - </decorator-screen> - </widgets> - </section> - </screen> - -</screens> + <set field="layoutSettings.companySubtitle" from-field="uiLabelMap.OagisCompanySubtitle" global="true"/> + <set field="activeApp" value="oagis" global="true"/> + <set field="applicationMenuName" value="OagisAppBar" global="true"/> + <set field="applicationMenuLocation" value="component://oagis/widget/Menus.xml" global="true"/> + + </actions> + <widgets> + <include-screen name="GlobalDecorator" location="component://common/widget/CommonScreens.xml"/> + </widgets> + </section> + </screen> + + <screen name="CommonOagisMessageScreen"> + <section> + <widgets> + <decorator-screen name="main-decorator"> + <decorator-section name="body"> + <section> + <widgets> + <decorator-section-include name="body"/> + </widgets> + </section> + </decorator-section> + </decorator-screen> + </widgets> + </section> + </screen> + +</screens> Propchange: ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml?rev=634224&r1=634223&r2=634224&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml Thu Mar 6 03:31:15 2008 @@ -1,39 +1,39 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. ---> -<screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd"> - <screen name="InventoryMismatchNotice"> - <section> - <actions> - <property-map resource="OagisUiLabels" map-name="uiLabelMap" global="true"/> - <property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/> - <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/> - <set field="title" value="${uiLabelMap.PageTitleOagisInventoryMismatchNotice}"/> - </actions> - <widgets> - <platform-specific> - <html> - <html-template location="component://oagis/templates/email/InventoryNoticeEmail.ftl"/> - </html> - </platform-specific> - </widgets> - </section> - </screen> -</screens> +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> +<screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd"> + <screen name="InventoryMismatchNotice"> + <section> + <actions> + <property-map resource="OagisUiLabels" map-name="uiLabelMap" global="true"/> + <property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/> + <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/> + <set field="title" value="${uiLabelMap.PageTitleOagisInventoryMismatchNotice}"/> + </actions> + <widgets> + <platform-specific> + <html> + <html-template location="component://oagis/templates/email/InventoryNoticeEmail.ftl"/> + </html> + </platform-specific> + </widgets> + </section> + </screen> +</screens> Propchange: ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: ofbiz/trunk/specialpurpose/oagis/widget/Menus.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/widget/Menus.xml?rev=634224&r1=634223&r2=634224&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/widget/Menus.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/widget/Menus.xml Thu Mar 6 03:31:15 2008 @@ -1,39 +1,39 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. ---> - -<menus xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd"> +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> + +<menus xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd"> <menu name="OagisAppBar" default-menu-item-name="task" id="app-navigation" type="simple" selected-menuitem-context-field-name="headerItem" - default-selected-style="selected" title="${uiLabelMap.OagisApplication}"> - - <menu-item name="main" title="${uiLabelMap.CommonMain}"><link target="main"/></menu-item> - <menu-item name="MessageInfos" title="${uiLabelMap.OagisMessageInfo}"><link target="FindMessageInfo"/></menu-item> - <menu-item name="MessageErrorInfos" title="${uiLabelMap.OagisMessageErrorInfo}"><link target="FindMessageErrorInfo"/></menu-item> - <menu-item name="Logout" title="Logout" align-style="col-right" widget-style="headerButtonRight" selected-style="headerButtonRightSelected"> - <condition><not><if-empty field-name="userLogin"/></not></condition> - <link target="logout"/> - </menu-item> - <menu-item name="Login" title="Login" align-style="col-right" widget-style="headerButtonRight" selected-style="headerButtonRightSelected"> - <condition><if-empty field-name="userLogin"/></condition> - <link target="${checkLoginUrl}"/> - </menu-item> - </menu> - -</menus> + default-selected-style="selected" title="${uiLabelMap.OagisApplication}"> + + <menu-item name="main" title="${uiLabelMap.CommonMain}"><link target="main"/></menu-item> + <menu-item name="MessageInfos" title="${uiLabelMap.OagisMessageInfo}"><link target="FindMessageInfo"/></menu-item> + <menu-item name="MessageErrorInfos" title="${uiLabelMap.OagisMessageErrorInfo}"><link target="FindMessageErrorInfo"/></menu-item> + <menu-item name="Logout" title="Logout" align-style="col-right" widget-style="headerButtonRight" selected-style="headerButtonRightSelected"> + <condition><not><if-empty field-name="userLogin"/></not></condition> + <link target="logout"/> + </menu-item> + <menu-item name="Login" title="Login" align-style="col-right" widget-style="headerButtonRight" selected-style="headerButtonRightSelected"> + <condition><if-empty field-name="userLogin"/></condition> + <link target="${checkLoginUrl}"/> + </menu-item> + </menu> + +</menus> Propchange: ofbiz/trunk/specialpurpose/oagis/widget/Menus.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: ofbiz/trunk/specialpurpose/oagis/widget/Menus.xml ------------------------------------------------------------------------------ svn:keywords = "Date Rev Author URL Id" Propchange: ofbiz/trunk/specialpurpose/oagis/widget/Menus.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml |
Free forum by Nabble | Edit this page |