You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/05/18 14:15:59 UTC

svn commit: r1484098 - /commons/proper/commons-parent/trunk/src/changes/release-notes.vm

Author: sebb
Date: Sat May 18 12:15:59 2013
New Revision: 1484098

URL: http://svn.apache.org/r1484098
Log:
Apache now in project name
Use an empty date in an action to mean don't format entry
[Empty date won't affect HTML version]

Modified:
    commons/proper/commons-parent/trunk/src/changes/release-notes.vm

Modified: commons/proper/commons-parent/trunk/src/changes/release-notes.vm
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/src/changes/release-notes.vm?rev=1484098&r1=1484097&r2=1484098&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/src/changes/release-notes.vm (original)
+++ commons/proper/commons-parent/trunk/src/changes/release-notes.vm Sat May 18 12:15:59 2013
@@ -15,7 +15,7 @@
 ## specific language governing permissions and limitations
 ## under the License.
 ##
-              Apache ${project.name} ${version} RELEASE NOTES
+              ${project.name} ${version} RELEASE NOTES
 
 The ${developmentTeam} is pleased to announce the release of ${finalName}
 
@@ -44,6 +44,12 @@ $release.description.replaceAll("  ", "
 ## Use replaceAll to fix up LF-only line ends on Windows.
 #set($action=$actionItem.getAction().replaceAll("\n","
 "))
+## Replace &lt; with < so can embed tag markup
+#set($action=$action.replaceAll("&lt;","<"))
+## use an empty date to mean don't format the entry
+#if ($actionItem.getDate() && $actionItem.getDate().length()==0)
+$action
+#else
 ## Fix up indentation for multi-line action descriptions
 #set($action=$action.replaceAll("(?m)^  +",$indent2))
 #if ($actionItem.getIssue())
@@ -61,6 +67,7 @@ $release.description.replaceAll("  ", "
 #set($dueto="")
 #end
 o $issue ${action}$dueto
+#end
 #set($action="")
 #set($issue="")
 #set($dueto="")