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:
1
scripts/mw2html_audacity/.cvsignore
Normal file
1
scripts/mw2html_audacity/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.pyc
|
||||
1
scripts/mw2html_audacity/footer.html
Normal file
1
scripts/mw2html_audacity/footer.html
Normal 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>
|
||||
1536
scripts/mw2html_audacity/htmldata.py
Normal file
1536
scripts/mw2html_audacity/htmldata.py
Normal file
File diff suppressed because it is too large
Load Diff
1086
scripts/mw2html_audacity/mw2html.py
Normal file
1086
scripts/mw2html_audacity/mw2html.py
Normal file
File diff suppressed because it is too large
Load Diff
9
scripts/mw2html_audacity/sidebar.html
Normal file
9
scripts/mw2html_audacity/sidebar.html
Normal 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>
|
||||
6
scripts/mw2html_audacity/wiki2htm.bat
Normal file
6
scripts/mw2html_audacity/wiki2htm.bat
Normal 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
|
||||
|
||||
10
scripts/mw2html_audacity/wiki2htm.sh
Executable file
10
scripts/mw2html_audacity/wiki2htm.sh
Executable 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_}"
|
||||
Reference in New Issue
Block a user