From 352660262dfd05cc75b5f2099507c9f29953a270 Mon Sep 17 00:00:00 2001
From: Wohlstand
Date: Sat, 21 Oct 2017 01:10:15 +0300
Subject: Move old files from root into separated folder
---
_old_files/docmaker.php | 125 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 125 insertions(+)
create mode 100644 _old_files/docmaker.php
(limited to '_old_files/docmaker.php')
diff --git a/_old_files/docmaker.php b/_old_files/docmaker.php
new file mode 100644
index 0000000..4576ed9
--- /dev/null
+++ b/_old_files/docmaker.php
@@ -0,0 +1,125 @@
+
+
+ =htmlspecialchars($title)?>
+
+
+ =htmlspecialchars($title)?>
+ 0. Contents
+
+ This is the documentation of =htmlspecialchars($archivename)?>.
+
+
+$url = 'http://iki.fi/bisqwit/source/'.rawurlencode($progname).'.html';
+$k = '
+ The official home page of '.htmlspecialchars($progname).'
+ is at '.htmlspecialchars($url).'.
+ Check there for new versions.
+';
+if(isset($git))
+{
+ $k .=
+ ''.
+ 'Additionally, the most recent source code (bleeding edge) for '.htmlspecialchars($progname).
+ ' can also be downloaded by cloning the Git repository'.
+ ' by:
'.
+ ' git clone '.htmlspecialchars($git).'
'.
+ ' git checkout origin/release -b release
'.
+ ' git checkout origin/master -b master
'.
+ '
';
+}
+$text['download:99999. Downloading'] = $k;
+
+include $docformatfn;
+
+$st1 = stat($docmodulefn);
+$st2 = stat('docmaker.php');
+?>
+ Generated from
+ =$docmodulefn?> (last updated: =date('r', $st1[9])?>)
+ with docmaker.php (last updated: =date('r', $st2[9])?>)
+ at =date('r')?>
+
+
+
+
+
+if($outset)
+{
+ $s = ob_get_contents();
+ ob_end_clean();
+ if(file_exists('/usr/local/bin/htmlrecode'))
+ {
+ /* Try to ensure browser interpretes japanese characters correctly */
+ passthru('echo '.shellfix($s).
+ '|/usr/local/bin/htmlrecode -Iiso-8859-1 -O'.$outset.' 2>/dev/null');
+ }
+ else
+ print $s;
+}
--
cgit v1.2.3