1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
|
#!@PYTHON@
# -*- coding: utf-8 -*-
# create-weblinks-itexi.py
""" when being called on lilypond.org, pass it the location of the
top source dir on the command-line. """
import sys
import os
import glob
### translation data -- shouldn't be here; see issue
### http://code.google.com/p/lilypond/issues/detail?id=1050
import langdefs
# GUB only has python 2.4 !!!
# langs = [i.code if i.code != 'en' else '' for i in langdefs.WEB_LANGUAGES]
langs = []
for lang in langdefs.WEB_LANGUAGES:
if lang.code == 'en':
langs.append('')
else:
langs.append(lang.code)
# these links are relative from /website/ on lilypond.org
depth = "../"
# Get/update node translations
'''
for i in ca cs de es fr hu it ja nl zh; do
echo "'"$i"': {"
(echo '--' ; grep -nH -B1 translationof Documentation/$i/web/* ) \
| pytt '^--\n.*@(?:unnum|sub)[^ ]* (.*)\n.*@translationof (.*)\n' "'\2': '\1',\n" \
| grep -E 'Source|Learning|Glossary|Essay|Notation|Usage|Snippets|Web|Changes|Extending|Internals|Contributor'
echo "},"
done
'''
translations = {
'ca': {
'Source': 'Font',
'Learning': 'Aprenentatge',
'Music glossary': 'Glossari musical',
'Essay': 'Monografia',
'Notation': 'Notació',
'Usage': 'Ús',
'Snippets': 'Fragments',
'Web': 'Web',
'Changes': 'Canvis',
'Extending': 'Extensions',
'Internals': 'Funcionament intern',
'Contributor': 'Guia del col·laborador',
' (split HTML)': ' (HTML seccionat)',
' (big HTML)': ' (HTML monolític)',
'Regression tests for ': 'Proves de regressió per a ',
'PDF of regtests for ': 'Proves de regressió en PDF per a ',
'abc2ly Regression tests for ': 'Proves de regressió d\'abc2ly per a ',
'PDF of abc2ly regtests for ': 'Proves de regressió d\'abc2ly en PDF per a ',
'lilypond-book Regression tests for ': 'Proves de regressió de lilypond-book per a ',
'PDF of lilypond-book regtests for ': 'Proves de regressió de lilypond-book en PDF per a ',
'MusicXML Regression tests for ': 'Proves de regressió de MusicXML per a ',
'PDF of MusicXML regtests for ': 'Proves de regressió de MusicXML en PDF per a ',
'Doc tarball for ': 'Tarball de la documentació per a ',
},
'cs': {
'Source': 'Source',
'Learning': 'Učení',
'Music glossary': 'Slovníček',
'Essay': 'Článek',
'Notation': 'Notový zápis',
'Usage': 'Používání',
'Snippets': 'Úryvky',
'Web': 'Web',
'Changes': 'Změny',
'Extending': 'Rozšíření',
'Internals': 'Vnitřnosti',
'Contributor': 'Vývojářské',
' (split HTML)': ' (rozdělené HTML)',
' (big HTML)': ' (velké HTML)',
'Regression tests for ': 'Zkoušky regresí ',
'PDF of regtests for ': 'PDF zkoušky regresí ',
'abc2ly Regression tests for ': 'abc2ly zkoušky regresí ',
'PDF of abc2ly regtests for ': 'PDF abc2ly zkoušky regresí ',
'lilypond-book Regression tests for ': 'lilypond-book zkoušky regresí ',
'PDF of lilypond-book regtests for ': 'PDF lilypond-book zkoušky regresí ',
'MusicXML Regression tests for ': 'MusicXML zkoušky regresí ',
'PDF of MusicXML regtests for ': 'PDF MusicXML zkoušky regresí ',
'Doc tarball for ': 'Doc tarball for ',
},
'de': {
'Source': 'Quellen',
'Learning': 'Einführung',
'Music glossary': 'Glossar',
'Essay': 'Aufsatz',
'Notation': 'Notation',
'Usage': 'Benutzung',
'Snippets': 'Schnipsel',
'Web': 'Web',
'Changes': 'Änderungen',
'Extending': 'Erweitern',
'Internals': 'Interna',
'Contributor': 'Beitragen',
' (split HTML)': ' (geteiltes HTML)',
' (big HTML)': ' (großes HTML)',
'Regression tests for ': 'Regressionstests für ',
'PDF of regtests for ': 'PDF der Regressionstests für ',
'abc2ly Regression tests for ': 'abc2ly Regressionstests für ',
'PDF of abc2ly regtests for ': 'PDF der abc2ly Regressionstests für ',
'lilypond-book Regression tests for ': 'lilypond-book Regressionstests für ',
'PDF of lilypond-book regtests for ': 'PDF der lilypond-book Regressionstests für ',
'MusicXML Regression tests for ': 'MusicXML Regressionstests für ',
'PDF of MusicXML regtests for ': 'PDF der MusicXML Regressionstests für ',
'Doc tarball for ': 'Dokumentation tar-gepackt für ',
},
'es': {
'Source': 'Código fuente',
'Learning': 'Aprendizaje',
'Music glossary': 'Glosario',
'Essay': 'Ensayo',
'Notation': 'Notación',
'Usage': 'Utilización',
'Snippets': 'Fragmentos',
'Web': 'Web',
'Changes': 'Cambios',
'Extending': 'Extensión',
'Internals': 'Funcionamiento interno',
'Contributor': 'Guía del colaborador',
# keep the spaces!
' (split HTML)': ' (HTML seccionado)',
' (big HTML)': ' (HTML monolítico)',
'Regression tests for ': 'Pruebas de regresión para ',
'PDF of regtests for ': 'Pruebas en PDF para ',
'abc2ly Regression tests for ': 'Pruebas de regresión de abc2ly para ',
'PDF of abc2ly regtests for ': 'Pruebas de abc2ly en PDF para ',
'lilypond-book Regression tests for ': 'Pruebas de regresión de lilypond-book para ',
'PDF of lilypond-book regtests for ': 'Pruebas de lilypond-book en PDF para ',
'MusicXML Regression tests for ': 'Pruebas de regresión de MusicXML para ',
'PDF of MusicXML regtests for ': 'Pruebas de MusicXML en PDF para ',
'Doc tarball for ': 'Tarball de la documentación para ',
},
'fr': {
'Source': 'Sources',
'Learning': 'Initiation',
'Music glossary': 'Glossaire',
'Essay': 'Essai',
'Notation': 'Notation',
'Usage': 'Utilisation',
'Snippets': 'Morceaux choisis',
'Web': 'Web',
'Changes': 'Nouveautés',
'Extending': 'Extension',
'Internals': 'Propriétés internes',
'Contributor': 'Guide du contributeur',
# keep the spaces!
' (split HTML)': ' (HTML multipages)',
' (big HTML)': ' (HTML en page unique)',
'Regression tests for ': 'Tests de régression pour ',
'PDF of regtests for ': 'PDF des tests de régression pour ',
'abc2ly Regression tests for ': 'Tests de régression de abc2ly pour ',
'PDF of abc2ly regtests for ': 'PDF des tests de régression de abc2ly pour ',
'lilypond-book Regression tests for ': 'Tests de régression de lilypond-book pour ',
'PDF of lilypond-book regtests for ': 'PDF des tests de régression de lilypond-book pour ',
'MusicXML Regression tests for ': 'Tests de régression de MusicXML pour ',
'PDF of MusicXML regtests for ': 'PDF des tests de régression de MusicXML pour ',
'Doc tarball for ': 'Archive de la documentation pour ',
},
'hu': {
'Source': 'Forrás',
'Learning': 'Tankönyv',
'Music glossary': 'Fogalomtár',
'Essay': 'Esszé',
'Notation': 'Kottaírás',
'Usage': 'Használat',
'Snippets': 'Kódrészletek',
'Web': 'Web',
'Changes': 'Változások',
'Extending': 'Bővítés',
'Internals': 'Belső működés',
'Contributor': 'Közreműködés',
' (split HTML)': ' (HTML oldalak)',
' (big HTML)': ' (egy nagy HTML oldal)',
'Regression tests for ': 'Regressziós tesztek - verzió: ',
'PDF of regtests for ': 'PDF formátumban - verzió: ',
'abc2ly Regression tests for ': 'abc2ly regressziós tesztek - verzió: ',
'PDF of abc2ly regtests for ': 'PDF formátumban - verzió: ',
'lilypond-book Regression tests for ': 'lilypond-book regressziós tesztek - verzió: ',
'PDF of lilypond-book regtests for ': 'PDF formátumban - verzió: ',
'MusicXML Regression tests for ': 'MusicXML regressziós tesztek - verzió: ',
'PDF of MusicXML regtests for ': 'PDF formátumban - verzió: ',
'Doc tarball for ': 'Tömörített csomag - verzió: ',
},
'it': {
'Source': 'Sorgenti',
'Learning': 'Apprendimento',
'Music glossary': 'Glossario',
'Essay': 'Saggio',
'Notation': 'Notazione',
'Usage': 'Uso',
'Snippets': 'Frammenti',
'Web': 'Web',
'Changes': 'Cambiamenti',
'Extending': 'Estendere',
'Internals': 'Funzionamento interno',
'Contributor': 'Guida del collaboratore',
# keep the spaces!
' (split HTML)': ' (HTML multipagina)',
' (big HTML)': ' (HTML pagina unica)',
'Regression tests for ': 'Test di collaudo per ',
'PDF of regtests for ': 'PDF dei test di collaudo per ',
'abc2ly Regression tests for ': 'Test di collaudo di abc2ly per ',
'PDF of abc2ly regtests for ': 'PDF dei test di collaudo di abc2ly per ',
'lilypond-book Regression tests for ': 'Test di collaudo di lilypond-book per ',
'PDF of lilypond-book regtests for ': 'PDF dei test di collaudo di lilypond-book per ',
'MusicXML Regression tests for ': 'Test di collaudo di MusicXML per ',
'PDF of MusicXML regtests for ': 'PDF dei test di collaudo di MusicXML per ',
'Doc tarball for ': 'Archivio della documentazione per ',
},
'ja': {
'Source': 'ソース',
'Learning': '学習',
'Music glossary': '用語集',
'Essay': 'エッセー',
'Notation': '記譜法',
'Usage': '使用方法',
'Snippets': 'コード断片集',
'Web': 'Web',
'Changes': '変更点',
#TODO
'Extending': '拡張',
'Internals': '内部リファレンス',
'Contributor': '貢献者向けガイド',
# keep the spaces!
' (split HTML)': ' (ページ毎に分割された HTML)',
' (big HTML)': ' (1 つの大きな HTML)',
'Regression tests for ': '回帰テスト バージョン ',
'PDF of regtests for ': '回帰テスト (PDF 版) バージョン ',
'abc2ly Regression tests for ': 'abc2ly 回帰テスト バージョン ',
'PDF of abc2ly regtests for ': 'abc2ly 回帰テスト (PDF 版) バージョン ',
'lilypond-book Regression tests for ': 'lilypond-book 回帰テスト バージョン ',
'PDF of lilypond-book regtests for ': 'lilypond-book 回帰テスト (PDF 版) バージョン ',
'MusicXML Regression tests for ': 'MusicXML 回帰テスト バージョン ',
'PDF of MusicXML regtests for ': 'MusicXML 回帰テスト (PDF 版) バージョン ',
'Doc tarball for ': 'ドキュメント アーカイブ バージョン ',
},
'nl': {
'Source': 'Broncode',
'Learning': 'Beginnen',
'Music glossary': 'Terminologie',
'Essay': 'Essay',
'Notation': 'Notatie',
'Usage': 'Gebruik',
'Snippets': 'Snippers',
'Web': 'Web',
'Changes': 'Veranderingen',
'Extending': 'Uitbreidingen',
'Internals': 'Internals',
'Contributor': 'Contributor',
# keep the spaces!
' (split HTML)': ' (opgesplitste HTML)',
' (big HTML)': ' (grote pagina HTML)',
'Regression tests for ': 'Regressietesten voor ',
'PDF of regtests for ': 'PDF van regressietesten voor ',
'abc2ly Regression tests for ': 'abc2ly regressietesten voor ',
'PDF of abc2ly regtests for ': 'abc2ly regressietesten voor ',
'lilypond-book Regression tests for ': 'lilypond-book regressietesten voor ',
'PDF of lilypond-book regtests for ': 'lilypond-book regressietesten voor ',
'MusicXML Regression tests for ': 'MusicXML regressietesten voor ',
'PDF of MusicXML regtests for ': 'MusicXML regressietesten voor ',
'Doc tarball for ': 'Tarball met documentation voor ',
},
'zh': {
'Source': '源码',
'Learning': '学习',
'Music glossary': '音乐术语表',
'Essay': '文章',
'Notation': '记谱法',
'Usage': '使用',
'Snippets': '片断',
'Web': 'Web',
'Changes': '变化',
'Extending': '扩展',
'Internals': '内部机制',
'Contributor': '贡献者',
# keep the spaces!
' (split HTML)': ' (分开的 HTML)',
' (big HTML)': ' (大的 HTML)',
'Regression tests for ': '回归测试 ',
'PDF of regtests for ': '回归测试的 PDF ',
'abc2ly Regression tests for ': 'abc2ly 回归测试 ',
'PDF of abc2ly regtests for ': 'abc2ly 的 PDF 回归测试 ',
'lilypond-book Regression tests for ': 'lilypond-book 回归测试 ',
'PDF of lilypond-book regtests for ': 'lilypond-book 的 PDF 回归测试 ',
'MusicXML Regression tests for ': 'MusicXML 回归测试 ',
'PDF of MusicXML regtests for ': 'MusicXML 的 PDF 回归测试 ',
'Doc tarball for ': '为文档压缩包',
},
}
### actual program
VERSION_STABLE = ""
VERSION_DEVEL = ""
try:
topDir = sys.argv[1]
except:
myDir = os.path.dirname(sys.argv[0])
# use two abspaths to work around some windows python bug
topDir = os.path.join(os.path.abspath(myDir)+os.sep+'..'+os.sep+'..'+os.sep)
topDir = os.path.abspath( topDir )
# TODO: this might be useful for other scripts; can we make it available?
manuals = map(lambda x: os.path.splitext(x)[0],
map(os.path.basename,
glob.glob(os.path.join(topDir,'Documentation', '*.te??'))))
#manuals = map(lambda x: 'glossary' if x=='music-glossary' else x, manuals)
manuals.append('internals')
version_file_path = os.path.join(topDir, "VERSION")
version_contents = open(version_file_path).readlines()
major = 0
minor = 0
patch = 0
for line in version_contents:
if (line.startswith('MAJOR_VERSION')):
major = line[14:-1]
if (line.startswith('MINOR_VERSION')):
minor = line[14:-1]
if (line.startswith('PATCH_LEVEL')):
patch = line[12:-1]
if (line.startswith('VERSION_STABLE')):
VERSION_STABLE = line[15:-1]
if (line.startswith('VERSION_DEVEL')):
VERSION_DEVEL = line[14:-1]
VERSION = str(major)+'.'+str(minor)+'.'+str(patch)
def _ (string, lang):
return translations.get (lang.split ('_')[0], {}).get (string, None)
getTrans = _
# let's not barf, but print a warning when something's missing
def getTrans(text, lang):
if not lang:
return text
trans = _ (text, lang)
if not trans:
trans = text
sys.stderr.write ('create-weblinks-itexi: warning: [%(lang)s]: translation missing for: %(text)s\n' % locals ())
return trans
def macroLang(name, lang):
if lang:
return name + '-' + lang
return name
def make_macro(name, string):
print "@macro", name
print string
print "@end macro"
print ""
def make_download(name, osA, osB, version, revision, text):
string = "@uref{http://download.linuxaudio.org/lilypond/binaries/"
string += osA + "lilypond-"
string += version + "-" + revision
string += "." + osB + ",\n"
string += text
string += ": LilyPond "
string += version + "-" + revision
string += "}"
make_macro(name, string)
def make_download_source(name, version, lang):
assert "." in version
vstring = "v%s.%s" % tuple(version.split(".", 2)[0:2])
string = "@uref{http://download.linuxaudio.org/lilypond/sources/"
string += vstring + "/"
string += "lilypond-" + version + ".tar.gz"
string += ", "
string += getTrans("Source", lang)
string += ": lilypond-" + version + ".tar.gz"
string += "}"
make_macro(macroLang(name,lang), string)
def make_all_downloads(macroName, version):
make_download("download"+macroName+"LinuxNormal", "linux-x86/",
"linux-x86.sh", version, "1", "GNU/Linux x86")
make_download("download"+macroName+"LinuxBig", "linux-64/",
"linux-64.sh", version, "1", "GNU/Linux 64")
make_download("download"+macroName+"LinuxPPC", "linux-ppc/",
"linux-ppc.sh", version, "1", "GNU/Linux PPC")
make_download("download"+macroName+"FreeBSDNormal", "freebsd-x86/",
"freebsd-x86.sh", version, "1", "FreeBSD i386")
make_download("download"+macroName+"FreeBSDBig", "freebsd-64/",
"freebsd-64.sh", version, "1", "FreeBSD amd64")
make_download("download"+macroName+"DarwinNormal", "darwin-x86/",
"darwin-x86.tar.bz2", version, "1", "MacOS X x86")
make_download("download"+macroName+"DarwinPPC", "darwin-ppc/",
"darwin-ppc.tar.bz2", version, "1", "MacOS X PPC")
make_download("download"+macroName+"Windows", "mingw/",
"mingw.exe", version, "1", "Windows")
def make_ver_link(macroname, url, linktext):
string = "@uref{"
string += url
string += ","
string += linktext
string += "}"
make_macro(macroname, string)
# TODO: this kind of thing should really be in a central place for
# lilypond python build scripts
def translateNameToUrl(manual, version):
ver_split = version.split('.')
ver_minor = ver_split[0] + '.' + ver_split[1]
url = depth + "doc/v" + ver_minor + "/Documentation/"
return url+manual
def addLang(url, lang):
if lang:
base, ext = os.path.splitext(url)
return base + '.' + lang + ext
else:
return url
def make_manual_links(name, version, lang):
"""Here is where all the macros manualStableLearningSplit,
manualStableLearningBig, manualStableLearningSplitNoName, etc. are
created on the fly. Hopefully this documentation string will help
others a bit while grepping for those.
"""
for m in manuals:
manual = m
# TODO: this is a stupid way of doing it
if (m=='music-glossary'):
mshort = 'Glossary'
else:
mshort = m.capitalize()
if (manual=='music-glossary'):
manual = 'Music glossary'
url = translateNameToUrl(m, version)
if (url.endswith('.html')):
make_ver_link(macroLang("manual"+name+mshort+'Pdf',lang),
addLang(url, lang),
getTrans(manual.capitalize(),lang) + '.pdf')
make_ver_link(macroLang("manual"+name+mshort+'Split',lang),
addLang(url, lang),
getTrans(manual.capitalize(),lang) +
getTrans(' (split HTML)',lang))
make_ver_link(macroLang("manual"+name+mshort+'Big',lang),
addLang(url, lang),
getTrans(manual.capitalize(),lang) +
getTrans(' (big HTML)',lang))
newurl = url
else:
make_ver_link(macroLang("manual"+name+mshort+'Pdf',lang),
# TODO: this is an even stupider way of doing it
addLang(url+'.pdf', lang),
getTrans(manual.capitalize(),lang) + '.pdf')
make_ver_link(macroLang("manual"+name+mshort+'Split',lang),
addLang(url + '/index.html', lang),
getTrans(manual.capitalize(),lang) +
getTrans(' (split HTML)',lang))
make_ver_link(macroLang("manual"+name+mshort+'Big',lang),
addLang(url + '-big-page.html', lang),
getTrans(manual.capitalize(),lang) +
getTrans(' (big HTML)',lang))
newurl = url + '/index.html'
make_ver_link(macroLang("manual"+name+mshort+'SplitNoName',lang),
addLang(newurl, lang),
getTrans(manual.capitalize(),lang))
def make_regtest_links(name, version, lang):
ver_split = version.split('.')
ver_minor = ver_split[0] + '.' + ver_split[1]
url = depth + "doc/v" + ver_minor + "/input/regression/"
make_ver_link(macroLang("regtest"+name, lang),
url+"collated-files.html",
getTrans("Regression tests for ", lang)+version)
make_ver_link(macroLang("regtest"+name+"Pdf", lang),
url+"collated-files.pdf",
getTrans("PDF of regtests for ", lang)+version)
make_ver_link(macroLang("regtest"+name+"Xml", lang),
url+"musicxml/collated-files.html",
getTrans("MusicXML Regression tests for ", lang)+version)
make_ver_link(macroLang("regtest"+name+"Abc", lang),
url+"abc2ly/collated-files.html",
getTrans("abc2ly Regression tests for ", lang)+version)
make_ver_link(macroLang("regtest"+name+"LilypondBook", lang),
url+"lilypond-book/collated-files.html",
getTrans("lilypond-book Regression tests for ", lang)+version)
make_ver_link(macroLang("regtest"+name+"XmlPdf", lang),
url+"musicxml/collated-files.pdf",
getTrans("PDF of MusicXML regtests for ", lang)+version)
make_ver_link(macroLang("regtest"+name+"AbcPdf", lang),
url+"abc2ly/collated-files.pdf",
getTrans("PDF of abc2ly regtests for ", lang)+version)
make_ver_link(macroLang("regtest"+name+"LilypondBookPdf", lang),
url+"lilypond-book/collated-files.pdf",
getTrans("PDF of lilypond-book regtests for ", lang)+version)
def make_doctarball_links(name, version, lang):
url = depth + "download/binaries/documentation/lilypond-"
# ugly FIXME, but proper build number support isn't Critical.
url += version + "-1"
url += ".documentation.tar.bz2"
make_ver_link(macroLang("doctarball"+name, lang),
url, getTrans("Doc tarball for ", lang)+version)
print "@c This file was autogenerated"
print "@c from: %s" % VERSION
print "@c by: %s" % sys.argv[0]
print ""
print "@c ************************ Download binaries ************"
print ""
make_all_downloads("Stable", VERSION_STABLE)
make_all_downloads("Devel", VERSION_DEVEL)
print "@c ************************ Download source ************"
print ""
for lang in langs:
print "@c *********", lang or "en", "***"
make_download_source("downloadStableSource", VERSION_STABLE, lang)
make_download_source("downloadDevelSource", VERSION_DEVEL, lang)
print "@c ************************ Manual links ************"
print ""
for lang in langs:
print "@c *********", lang or "en", "***"
make_manual_links("Stable", VERSION_STABLE, lang)
make_manual_links("Devel", VERSION_DEVEL, lang)
make_doctarball_links("Stable", VERSION_STABLE, lang)
make_doctarball_links("Devel", VERSION_DEVEL, lang)
print "@c ************************ Regtest links ************"
print ""
for lang in langs:
print "@c *********", lang or "en", "***"
make_regtest_links("Stable", VERSION_STABLE, lang)
make_regtest_links("Devel", VERSION_DEVEL, lang)
print "@c ***************************************************"
|