mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
linked language codes to po files print revision url
* tools/announce-wrangler.py: linked language codes to po files * tools/commit-wrangler.py: print revision url svn path=/trunk/; revision=4044
This commit is contained in:
parent
6ddec0d855
commit
e7cef5bbcb
@ -1,3 +1,8 @@
|
|||||||
|
2008-11-26 Thomas Thurman <tthurman@gnome.org>
|
||||||
|
|
||||||
|
* tools/announce-wrangler.py: linked language codes to po files
|
||||||
|
* tools/commit-wrangler.py: print revision url
|
||||||
|
|
||||||
2008-11-26 Thomas Thurman <tthurman@gnome.org>
|
2008-11-26 Thomas Thurman <tthurman@gnome.org>
|
||||||
|
|
||||||
* tools/announce-wrangler.py: renamed ini file
|
* tools/announce-wrangler.py: renamed ini file
|
||||||
|
@ -4,6 +4,7 @@ import glob
|
|||||||
import wordpresslib # http://www.blackbirdblog.it/programmazione/progetti/28
|
import wordpresslib # http://www.blackbirdblog.it/programmazione/progetti/28
|
||||||
import ConfigParser
|
import ConfigParser
|
||||||
import os
|
import os
|
||||||
|
import re
|
||||||
|
|
||||||
doaps = glob.glob("*.doap")
|
doaps = glob.glob("*.doap")
|
||||||
|
|
||||||
@ -120,6 +121,10 @@ print "============ x8 x8 x8 ===== SEND THIS TO gnome-announce-list"
|
|||||||
print text_version
|
print text_version
|
||||||
print "============ x8 x8 x8 ===== ENDS"
|
print "============ x8 x8 x8 ===== ENDS"
|
||||||
|
|
||||||
|
translations = re.sub('\((.*)\)',
|
||||||
|
'(<a href="http://svn.gnome.org/viewvc/metacity/trunk/po/\\1.po">\\1</a>)',
|
||||||
|
translations)
|
||||||
|
|
||||||
html_version = """\
|
html_version = """\
|
||||||
<b>What is it ?</b><br />
|
<b>What is it ?</b><br />
|
||||||
<ul>%s</ul>
|
<ul>%s</ul>
|
||||||
|
@ -27,6 +27,7 @@ import sys
|
|||||||
import os
|
import os
|
||||||
import posixpath
|
import posixpath
|
||||||
import ConfigParser
|
import ConfigParser
|
||||||
|
import re
|
||||||
|
|
||||||
# FIXME: Needs tidying into separate functions.
|
# FIXME: Needs tidying into separate functions.
|
||||||
|
|
||||||
@ -106,8 +107,7 @@ if os.stat(change_filename)[8] == time_before:
|
|||||||
|
|
||||||
# Update the changelog
|
# Update the changelog
|
||||||
|
|
||||||
print commands.getoutput("moap cl ci")
|
checkin = commands.getoutput("moap cl ci")
|
||||||
|
|
||||||
#print
|
print re.sub(".*Committed revision (\\d+).*", 'http://svn.gnome.org/viewvc/metacity?rev=\\1&view=rev', checkin)
|
||||||
#print 'http://svn.gnome.org/viewvc/metacity?rev=%s&view=rev' % (checkin)
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user