1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-05 06:01:04 +01:00

Locate and position the current Audacity source code, and clear a variety of old junk out of the way into junk-branches

This commit is contained in:
ra
2010-01-23 19:44:49 +00:00
commit e74978ba77
1011 changed files with 781704 additions and 0 deletions

View File

@@ -0,0 +1 @@
*.pyc

View File

@@ -0,0 +1 @@
<div align="center"><ul id="f_list"><li>Dump created on %DATE% - <a href="%ONLINEURL%">Check current version of this page</a>.</li></ul></div>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,9 @@
<div class="portlet">
<h5>Help Location</h5>
<div class="pBody">
<ul>
<li><a href="index.html">Local manual in use</a></li>
<li><a href="http://audacityteam.org/manual/index.php">Internet manual</a></li>
</ul>
</div>
</div>

View File

@@ -0,0 +1,6 @@
python mw2html.py http://manual.audacityteam.org ..\..\help\temp -s
rmdir /S /Q ..\..\help\manual
mkdir ..\..\help\manual
xcopy ..\..\help\temp\manual.audacityteam.org ..\..\help\manual\ /E /C /Y /Q
rmdir /S /Q ..\..\help\temp

View File

@@ -0,0 +1,10 @@
#!/bin/sh
helpdir="../../help/manual"
tmpdir_="../../help/temp"
srcuri="http://manual.audacityteam.org"
mkdir -p "${tmpdir_}"
python mw2html.py "${srcuri}" "${tmpdir_}" -s
mv "${tmpdir_}/manual.audacityteam.org" "${helpdir}"
rm -r "${tmpdir_}"