Author: solomax
Date: Fri Aug 10 02:05:26 2012
New Revision: 1371541

URL: http://svn.apache.org/viewvc?rev=1371541&view=rev
Log:
Pre-release modifications: DISCLAIMER is added, artifacts are renamed, 
redundant files are cleaned up from artifacts

Added:
    incubator/openmeetings/trunk/plugins/joomla/DISCLAIMER
Modified:
    incubator/openmeetings/trunk/plugins/joomla/CHANGELOG
    incubator/openmeetings/trunk/plugins/joomla/README.txt
    incubator/openmeetings/trunk/plugins/joomla/build.xml

Modified: incubator/openmeetings/trunk/plugins/joomla/CHANGELOG
URL: 
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/joomla/CHANGELOG?rev=1371541&r1=1371540&r2=1371541&view=diff
==============================================================================
--- incubator/openmeetings/trunk/plugins/joomla/CHANGELOG (original)
+++ incubator/openmeetings/trunk/plugins/joomla/CHANGELOG Fri Aug 10 02:05:26 
2012
@@ -1,8 +1,8 @@
 Apache OpenMeetings Joomla Plugin Change Log
 
-       * Plugin code was imported (REST instead of SOAP/NuSOAP was used, Apace 
licenses were added)
+       * Plugin code was imported (REST instead of SOAP/NuSOAP was used, 
Apache licenses were added)
        * Code cleanup performed
        * Build file with RAT task was added
-       * Artefacts as *.tar.gz were added
+       * Artifacts as *.tar.gz were added
        * Plugin version is changed to be 1.0
 

Added: incubator/openmeetings/trunk/plugins/joomla/DISCLAIMER
URL: 
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/joomla/DISCLAIMER?rev=1371541&view=auto
==============================================================================
--- incubator/openmeetings/trunk/plugins/joomla/DISCLAIMER (added)
+++ incubator/openmeetings/trunk/plugins/joomla/DISCLAIMER Fri Aug 10 02:05:26 
2012
@@ -0,0 +1,16 @@
+Apache OpenMeetings Joomla Plugin is an effort undergoing incubation at the 
Apache Software
+Foundation (ASF), sponsored by the Apache Incubator PMC. 
+
+Incubation is required of all newly accepted projects until a further review 
+indicates that the infrastructure, communications, and decision making process 
+have stabilized in a manner consistent with other successful ASF projects. 
+
+While incubation status is not necessarily a reflection of the completeness 
+or stability of the code, it does indicate that the project has yet to be 
+fully endorsed by the ASF.
+
+For more information about the incubation status of the OpenMeetings project 
you
+can go to the following page:
+
+http://incubator.apache.org/openmeetings/
+

Modified: incubator/openmeetings/trunk/plugins/joomla/README.txt
URL: 
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/joomla/README.txt?rev=1371541&r1=1371540&r2=1371541&view=diff
==============================================================================
--- incubator/openmeetings/trunk/plugins/joomla/README.txt (original)
+++ incubator/openmeetings/trunk/plugins/joomla/README.txt Fri Aug 10 02:05:26 
2012
@@ -1,21 +1,3 @@
-/*
- * 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.
- */
 This Joomla plugin uses Apache OpenMeetings [Incbuating].
 You need your own Apache OpenMeetings instance running.
 

Modified: incubator/openmeetings/trunk/plugins/joomla/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/joomla/build.xml?rev=1371541&r1=1371540&r2=1371541&view=diff
==============================================================================
--- incubator/openmeetings/trunk/plugins/joomla/build.xml (original)
+++ incubator/openmeetings/trunk/plugins/joomla/build.xml Fri Aug 10 02:05:26 
2012
@@ -21,20 +21,25 @@
 
        <property name="dist.dir" value="dist" />
        <property name="project.version" value="1.0" />
-       <property name="project.distname" value="openmeetings-joomla-plugin" />
+       <property name="project.distname" 
value="apache-openmeetings-joomla-plugin" />
+       <property name="component.distname" 
value="apache-openmeetings-joomla-plugin-component" />
+       <property name="module.distname" 
value="apache-openmeetings-joomla-plugin-module" />
        <property name="plugin.com.name" value="com_openmeetings_conference" />
        <property name="plugin.mod.name" value="mod_openmeetings_conference" />
 
        <target name="dist-bin" depends="clean">
-               <property name="archive.file.name" 
value="${dist.dir}/apache-${project.distname}-incubating-${project.version}" />
-               <property name="com.archive.file.name" 
value="${dist.dir}/com-apache-${project.distname}-incubating-${project.version}"
 />
-               <property name="mod.archive.file.name" 
value="${dist.dir}/mod-apache-${project.distname}-incubating-${project.version}"
 />
+               <property name="archive.file.name" 
value="${dist.dir}/${project.distname}-${project.version}-incubating" />
+               <property name="com.archive.file.name" 
value="${dist.dir}/${component.distname}-${project.version}-incubating" />
+               <property name="mod.archive.file.name" 
value="${dist.dir}/${module.distname}-${project.version}-incubating" />
 
                <mkdir dir="${dist.dir}"/>
                <zip destfile="${com.archive.file.name}.zip">
                        <zipfileset dir="${basedir}">
                                <include name="**" />
                                <exclude name="*dist/**" />
+                               <exclude name=".project" />
+                               <exclude name="*.xml" />
+                               <exclude name="*.xsd" />
                                <exclude name="*${plugin.mod.name}/**"/>
                        </zipfileset>
                </zip>
@@ -42,6 +47,9 @@
                        <tarfileset dir="${basedir}">
                                <include name="**" />
                                <exclude name="*dist/**" />
+                               <exclude name=".project" />
+                               <exclude name="*.xml" />
+                               <exclude name="*.xsd" />
                                <exclude name="*${plugin.mod.name}/**"/>
                        </tarfileset>
                </tar>
@@ -49,6 +57,9 @@
                        <zipfileset dir="${basedir}">
                                <include name="**" />
                                <exclude name="*dist/**" />
+                               <exclude name=".project" />
+                               <exclude name="*.xml" />
+                               <exclude name="*.xsd" />
                                <exclude name="*${plugin.com.name}/**"/>
                        </zipfileset>
                </zip>
@@ -56,6 +67,9 @@
                        <tarfileset dir="${basedir}">
                                <include name="**" />
                                <exclude name="*dist/**" />
+                               <exclude name=".project" />
+                               <exclude name="*.xml" />
+                               <exclude name="*.xsd" />
                                <exclude name="*${plugin.com.name}/**"/>
                        </tarfileset>
                </tar>
@@ -112,4 +126,4 @@
                        </fileset>
                </rat:report>
        </target>
-</project>
\ No newline at end of file
+</project>


Reply via email to