Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r59961 - sandbox/committee/LWG/cd_status
From: bdawes_at_[hidden]
Date: 2010-02-27 09:02:27


Author: bemandawes
Date: 2010-02-27 09:02:26 EST (Sat, 27 Feb 2010)
New Revision: 59961
URL: http://svn.boost.org/trac/boost/changeset/59961

Log:
Initial commit
Added:
   sandbox/committee/LWG/cd_status/extract_issues.bat (contents, props changed)
   sandbox/committee/LWG/cd_status/generate_status_sed.bat (contents, props changed)
   sandbox/committee/LWG/cd_status/make_link.bat (contents, props changed)

Added: sandbox/committee/LWG/cd_status/extract_issues.bat
==============================================================================
--- (empty file)
+++ sandbox/committee/LWG/cd_status/extract_issues.bat 2010-02-27 09:02:26 EST (Sat, 27 Feb 2010)
@@ -0,0 +1,21 @@
+@echo off
+echo Extract issues from issues list
+
+if {%1}=={} goto usage
+if {%2}=={} goto usage
+
+copy /y %1 temp1
+chg temp1 "</h3>\r\n" "</h3>"
+grep "<h3><a" temp1 >temp2
+grep "#%2" temp2 >temp3
+chg temp3 "\q></a>" "\r\n"
+grep "<h3><a" temp3 >temp4
+chg temp4 "<h3><a name=\q" ""
+type temp4
+
+goto done
+
+:usage
+ echo Usage: extract_issues issues-list-path issue-type
+
+:done

Added: sandbox/committee/LWG/cd_status/generate_status_sed.bat
==============================================================================
--- (empty file)
+++ sandbox/committee/LWG/cd_status/generate_status_sed.bat 2010-02-27 09:02:26 EST (Sat, 27 Feb 2010)
@@ -0,0 +1,18 @@
+@echo off
+
+if {%1}=={} goto usage
+if {%2}=={} goto usage
+
+sed "s@[0-9]*@/owner=~LWG~ issue=~&~/ s/disp=~[a-z]*~/disp=~%2~/@" %1 >temp6
+chg temp6 "~" "\q" >nul
+type temp6
+goto done
+
+:usage
+ echo Generate sed script to set comments.xml status
+ echo Usage: generate_status_sed source-path status
+ echo source-path format is file of issue numbers such as from extract_issues.bat
+ echo status is accepted, modified, or rejected
+ echo Resulting script can be invoked: sed --file=temp.sed
+
+:done

Added: sandbox/committee/LWG/cd_status/make_link.bat
==============================================================================
--- (empty file)
+++ sandbox/committee/LWG/cd_status/make_link.bat 2010-02-27 09:02:26 EST (Sat, 27 Feb 2010)
@@ -0,0 +1,15 @@
+echo Make link from extract_issues output
+
+if {%1}=={} goto usage
+if {%2}=={} goto usage
+
+sed "s|[0-9]*|<p><a href=*%2#&*>&</a></p>|" %1 >temp5
+chg temp5 "*" "\q"
+type temp5
+
+goto done
+
+:usage
+ echo Usage: make_link source-path URL
+
+:done


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk