You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by ga...@apache.org on 2012/10/05 09:45:06 UTC

svn commit: r1394396 - in /xmlgraphics/commons/branches/commons-1_5: README build.properties build.xml src/documentation/content/doap.rdf src/documentation/content/xdocs/news.xml status.xml

Author: gadams
Date: Fri Oct  5 07:45:06 2012
New Revision: 1394396

URL: http://svn.apache.org/viewvc?rev=1394396&view=rev
Log:
Update for final 1.5 release on 2012-10-15.

Modified:
    xmlgraphics/commons/branches/commons-1_5/README
    xmlgraphics/commons/branches/commons-1_5/build.properties
    xmlgraphics/commons/branches/commons-1_5/build.xml
    xmlgraphics/commons/branches/commons-1_5/src/documentation/content/doap.rdf
    xmlgraphics/commons/branches/commons-1_5/src/documentation/content/xdocs/news.xml
    xmlgraphics/commons/branches/commons-1_5/status.xml

Modified: xmlgraphics/commons/branches/commons-1_5/README
URL: http://svn.apache.org/viewvc/xmlgraphics/commons/branches/commons-1_5/README?rev=1394396&r1=1394395&r2=1394396&view=diff
==============================================================================
--- xmlgraphics/commons/branches/commons-1_5/README (original)
+++ xmlgraphics/commons/branches/commons-1_5/README Fri Oct  5 07:45:06 2012
@@ -81,11 +81,10 @@ License labeling (according to http://ww
 For more detailed info about the changes, please see:
 http://xmlgraphics.apache.org/commons/changes.html
 
-Version 1.5rc1
+Version 1.5
 --------------
 
-This is a candidate release of the next, minor (dot) release, Version 1.5,
-of Apache XML Graphics Commons. This release primarily addresses bug fixes
+This release of Apache XML Graphics Commons  primarily addresses bug fixes
 and also adds a number of new features.
 
 Version 1.4

Modified: xmlgraphics/commons/branches/commons-1_5/build.properties
URL: http://svn.apache.org/viewvc/xmlgraphics/commons/branches/commons-1_5/build.properties?rev=1394396&r1=1394395&r2=1394396&view=diff
==============================================================================
--- xmlgraphics/commons/branches/commons-1_5/build.properties (original)
+++ xmlgraphics/commons/branches/commons-1_5/build.properties Fri Oct  5 07:45:06 2012
@@ -34,7 +34,7 @@
 ## ===================================================================
 ## 3. Project specific properties
 
-version = 1.5rc1
+version = 1.5
 
 ## Allows you to switch off the compilation of the internal image
 ## codecs which depend on Sun-private classes. Setting this to true

Modified: xmlgraphics/commons/branches/commons-1_5/build.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/commons/branches/commons-1_5/build.xml?rev=1394396&r1=1394395&r2=1394396&view=diff
==============================================================================
--- xmlgraphics/commons/branches/commons-1_5/build.xml (original)
+++ xmlgraphics/commons/branches/commons-1_5/build.xml Fri Oct  5 07:45:06 2012
@@ -477,82 +477,6 @@ NOTE:
     <xslt in="${build.dir}/report_checkstyle.xml" out="${build.dir}/report_checkstyle.html" style="${checkstyle.noframes.xslt}"/>
   </target>
 
-  <!--
-  <property name="checkstyle.home.dir" value="${optional.lib.dir}"/>
-  <property name="checkstyle.noframes.xslt" value="${checkstyle.home.dir}/contrib/checkstyle-noframes.xsl"/>
-
-  <path id="checkstyle-path">
-    <fileset dir="${checkstyle.home.dir}">
-      <include name="checkstyle-all-*.jar"/>
-      <include name="checkstyle-*.jar"/>
-      <include name="antlr*.jar"/>
-      <include name="commons-beanutils*.jar"/>
-      <include name="commons-collections*.jar"/>
-      <include name="commons-logging*.jar"/>
-      <include name="jakarta-regexp*.jar"/>      
-    </fileset>
-  </path>
-
-  <path id="checkstyle-runpath">
-    <path refid="checkstyle-path"/>
-  </path>
-
-  <target name="checkstyle-avail" depends="init">
-    <available property="checkstyle.available" classname="com.puppycrawl.tools.checkstyle.CheckStyleTask" classpathref="checkstyle-path"/>
-    <available property="checkstyle.4.x" classname="com.puppycrawl.tools.checkstyle.checks.coding.ModifiedControlVariableCheck" classpathref="checkstyle-path"/>
-    <available property="checkstyle.noframes.xslt.available" file="${checkstyle.noframes.xslt}"/>
-    <condition property="checkstyle.message" value="Checkstyle 4.x Support PRESENT">
-      <and>
-        <equals arg1="${checkstyle.available}" arg2="true"/>
-        <equals arg1="${checkstyle.4.x}" arg2="true"/>
-      </and>
-    </condition>
-    <condition property="checkstyle.message" value="Checkstyle 3.x Support PRESENT">
-      <equals arg1="${checkstyle.available}" arg2="true"/>
-    </condition>
-    <condition property="checkstyle.message" value="Checkstyle Support NOT Present">
-      <not>
-        <equals arg1="${checkstyle.available}" arg2="true"/>
-      </not>
-    </condition>
-    <echo message="${checkstyle.message}"/>
-    <condition property="checkstyle.config" value="checkstyle-4.0.xml">
-      <equals arg1="${checkstyle.4.x}" arg2="true"/>
-    </condition>
-    <condition property="checkstyle.config" value="checkstyle-3.5-fop-head.xml">
-      <not>
-        <equals arg1="${checkstyle.4.x}" arg2="true"/>
-      </not>
-    </condition>
-    <condition property="checkstyle.noframes.xslt.message" value="Checkstyle HTML style sheet support PRESENT">
-      <equals arg1="${checkstyle.noframes.xslt.available}" arg2="true"/>
-    </condition>
-    <condition property="checkstyle.noframes.xslt.message" value="Checkstyle HTML style sheet support NOT Present">
-      <not>
-        <equals arg1="${checkstyle.noframes.xslt.available}" arg2="true"/>
-      </not>
-    </condition>
-    <echo message="${checkstyle.noframes.xslt.message}"/>
-  </target>
-
-  <target name="checkstyle-check" depends="checkstyle-avail, init" if="checkstyle.available">
-    
-    <taskdef name="checkstyle" classname="com.puppycrawl.tools.checkstyle.CheckStyleTask" classpathref="checkstyle-runpath"/>
-    <checkstyle config="${checkstyle.config}" failonviolation="false"
-                classpathref="checkstyle-runpath">
-      <fileset dir="${src.java.dir}" includes="**/*.java"/>
-      <formatter type="plain" toFile="${build.dir}/checkstyle_report.txt"/>
-      <formatter type="xml" toFile="${build.dir}/checkstyle_report.xml"/>
-    </checkstyle>
-  </target>
-
-  <target name="checkstyle-html" depends="checkstyle-avail, checkstyle-check" if="checkstyle.noframes.xslt.available">
-    <style in="${build.dir}/checkstyle_report.xml" out="${build.dir}/checkstyle_report.html" style="${checkstyle.noframes.xslt}"/>
-  </target>
-
-  <target name="checkstyle" depends="checkstyle-avail, checkstyle-check, checkstyle-html" description="Runs Checkstyle for a code quality report"/>
-  -->
-
   <!-- =================================================================== -->
   <!-- Creates the documentation                                           -->
   <!-- =================================================================== -->

Modified: xmlgraphics/commons/branches/commons-1_5/src/documentation/content/doap.rdf
URL: http://svn.apache.org/viewvc/xmlgraphics/commons/branches/commons-1_5/src/documentation/content/doap.rdf?rev=1394396&r1=1394395&r2=1394396&view=diff
==============================================================================
--- xmlgraphics/commons/branches/commons-1_5/src/documentation/content/doap.rdf (original)
+++ xmlgraphics/commons/branches/commons-1_5/src/documentation/content/doap.rdf Fri Oct  5 07:45:06 2012
@@ -50,12 +50,12 @@
     </asfext:implements>
     <release>
       <Version>
-        <name>Upcoming release (candidate)</name>
-        <created>2012-07-02</created>
-        <revision>1.5rc1</revision>
+        <name>Current release (stable)</name>
+        <created>2012-10-15</created>
+        <revision>1.5</revision>
       </Version>
       <Version>
-        <name>Current release (stable)</name>
+        <name>Previous release (stable)</name>
         <created>2010-07-07</created>
         <revision>1.4</revision>
       </Version>

Modified: xmlgraphics/commons/branches/commons-1_5/src/documentation/content/xdocs/news.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/commons/branches/commons-1_5/src/documentation/content/xdocs/news.xml?rev=1394396&r1=1394395&r2=1394396&view=diff
==============================================================================
--- xmlgraphics/commons/branches/commons-1_5/src/documentation/content/xdocs/news.xml (original)
+++ xmlgraphics/commons/branches/commons-1_5/src/documentation/content/xdocs/news.xml Fri Oct  5 07:45:06 2012
@@ -1,11 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <news>
-  <item date="2012-07-02" title="Version 1.5rc1 Available">
+  <item date="2012-10-15" title="Version 1.5 Released">
     <p>
-      This is a candidate release for an upcoming Version 1.5 (stable) release,
-      consisting primarily of bug fixes, improved code practices, and improved coverage of
+      This is a release consists primarily of bug fixes, improved code practices, and improved coverage of
       CCITTFax Group 3 image formats. For details, please see
-      <a href="changes.html#version_1.5rc1">Changes</a>.
+      <a href="changes.html#version_1.5">Changes</a>.
     </p>
   </item>
   <item date="2010-07-07" title="Version 1.4 Released">

Modified: xmlgraphics/commons/branches/commons-1_5/status.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/commons/branches/commons-1_5/status.xml?rev=1394396&r1=1394395&r2=1394396&view=diff
==============================================================================
--- xmlgraphics/commons/branches/commons-1_5/status.xml (original)
+++ xmlgraphics/commons/branches/commons-1_5/status.xml Fri Oct  5 07:45:06 2012
@@ -37,7 +37,7 @@
     <context id="Docs" title="Changes to Documentation"/>
   </contexts>
   <changes>
-    <release version="1.5rc1" date="02 July 2012">
+    <release version="1.5" date="15 October 2012">
       <action context="Code" dev="GA" type="fix" fixes-bug="53408" due-to="Luis Bernardo, Matthias Reischenbacher">
         Add two PNG image loaders, one using internal XGC PNG code, the other using an externally supplied IDAT chunk (for raw decoding).
       </action>
@@ -344,7 +344,7 @@
   <todo>
     <actions>
       <action dev="JM" type="update" context="Code">
-        Complete the move of the PDF and font library code her from FOP.
+        Complete the move of the PDF and font library code here from FOP.
       </action>
     </actions>
   </todo>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: commits-help@xmlgraphics.apache.org