Skip to content

Commit

Permalink
wiki2reveal_link.html reverted
Browse files Browse the repository at this point in the history
version4index.js had wrong filesnames for version update, Bug fixed
  • Loading branch information
Engelbert Niehaus committed Jan 16, 2021
1 parent d52a9ed commit 92aefc4
Show file tree
Hide file tree
Showing 7 changed files with 707 additions and 545 deletions.
589 changes: 236 additions & 353 deletions README.md

Large diffs are not rendered by default.

240 changes: 240 additions & 0 deletions README_backup.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ <h3><i>based on Library: <a href="https://www.npmjs.com/package/wtf_wikipedia" t
<div id="footer" align="center" style="font-size: 80%">
<a href="https://en.wikiversity.org/wiki/PanDocElectron" target="_blank">Wikiversity:PanDocElectron</a><br>
<a href="https://www.github.com/niebert/Wiki2Reveal" target="_blank">GitHub-Repo- Version: <span id4marker="version">2.1.14</span> </a>
- Engelbert Niehaus - Date: <span id4marker="datetime">2021/01/16 16:05:53</span> <br/>
- Engelbert Niehaus - Date: <span id4marker="datetime">2021/01/16 16:28:58</span> <br/>
<a href="https://github.com/niebert/Wiki2Reveal/archive/master.zip" target="_blank">Download Wiki2Reveal - GitHub (2020)</a><br/>
</div>
</p>
Expand Down
4 changes: 2 additions & 2 deletions docs/wiki2dzslides_textarea.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<script src="db/wikipage_db.js"></script>

</head>
<body>
<body style="margin:10px;background:#C0C0C0;font-family:Arial,Helvetica,sans-serif">
<div class="reveal">
<H2 class="slides" id="divslides">
Waiting for Wiki-Download ...
Expand Down Expand Up @@ -142,7 +142,7 @@ <H2 class="slides" id="divslides">
vOptions.slidetype = vLinkParam.getValue("slidetype");
};
//--------------------------------------


function callWikiDownload() {
downloadWikiDoc(vTitle,vAuthor,vLanguage,vDomain);
Expand Down
409 changes: 224 additions & 185 deletions docs/wiki2reveal_link.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/wiki2reveal_textarea.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<script src="db/wikipage_db.js"></script>

</head>
<body style="background:#C0C0C0">
<body style="margin:10px;background:#C0C0C0;font-family:Arial,Helvetica,sans-serif">
<div class="reveal">
<H2 class="slides" id="hWaiting">
Waiting for Wiki-Download ...
Expand Down
6 changes: 3 additions & 3 deletions version4index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function getDateTime() {
function replace_date_modified(data) {
data = data.replace(/<div\s+id="datetime"\s+style[^<]+<\/div>/g,"<div id4marker=\"datetime\" style=\"display: inline-block\">"+getDateTime()+"</div>");
data = data.replace(/<div\s+id4marker="datetime"\s+style[^<]+<\/div>/g,"<div id4marker=\"datetime\" style=\"display: inline-block\">"+getDateTime()+"</div>");
data = data.replace(/<span\s+id="datetime"\s+style[^<]+<\/div>/g,"<span id4marker=\"datetime\">"+getDateTime()+"</span>");
data = data.replace(/<span\s+id="datetime"\s+style[^<]+<\/span>/g,"<span id4marker=\"datetime\">"+getDateTime()+"</span>");
return data;
}

Expand Down Expand Up @@ -64,7 +64,7 @@ fs.readFile(file2, 'utf8', function readFileCallback(err, data){
});
var outfile3 = "undefined content";
var file3 = 'docs/wiki2reveal_link.html';
fs.readFile(file2, 'utf8', function readFileCallback(err, data){
fs.readFile(file3, 'utf8', function readFileCallback(err, data){
if (err){
console.log(err);
} else {
Expand All @@ -73,7 +73,7 @@ fs.readFile(file2, 'utf8', function readFileCallback(err, data){
});
var outfile4 = "undefined content";
var file4 = 'README.md';
fs.readFile(file2, 'utf8', function readFileCallback(err, data){
fs.readFile(file4, 'utf8', function readFileCallback(err, data){
if (err){
console.log(err);
} else {
Expand Down

0 comments on commit 92aefc4

Please sign in to comment.