Skip to content

Commit 56f3ea5

Browse files
committed
#0000
1 parent 32cfa75 commit 56f3ea5

File tree

12 files changed

+720
-724
lines changed

12 files changed

+720
-724
lines changed

.license

Lines changed: 338 additions & 338 deletions
Large diffs are not rendered by default.

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
5.1.0 2018xxxx
1+
5.1.0 20180505
22
BF: Initialize - Korrektur Smart-Modus
33
- im Smart-Modus erstellte Sections werden wieder gehalten
44
BF: Section - Korrektur Smart-Modus

LICENSE

Lines changed: 338 additions & 338 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Street, Fifth Floor, Boston, MA 02110-1301, USA.
3434

3535

3636
# Downloads
37-
[Seanox Devwex 5.0.0](https://github.com/seanox/devwex/raw/master/releases/seanox-devwex-5.0.0.zip)
38-
[Seanox Devwex Sources 5.0.0](https://github.com/seanox/devwex/raw/master/releases/seanox-devwex-5.0.0-src.zip)
39-
[Seanox Devwex Test 5.0.0](https://github.com/seanox/devwex-test/raw/master/releases/seanox-devwex-test-5.0.0.zip)
37+
[Seanox Devwex 5.1.0](https://github.com/seanox/devwex/raw/master/releases/seanox-devwex-5.1.0.zip)
38+
[Seanox Devwex Sources 5.1.0](https://github.com/seanox/devwex/raw/master/releases/seanox-devwex-5.1.0-src.zip)
39+
[Seanox Devwex Test 5.1.0](https://github.com/seanox/devwex-test/raw/master/releases/seanox-devwex-test-5.1.0.zip)
4040

4141

4242
# Extensions
@@ -50,16 +50,16 @@ Go to the program directory and start the program directly or by script.
5050

5151

5252
# Changes (Change Log)
53-
## 5.1.0 2018xxxx (summary of the next version)
54-
BF: Initialize - Korrektur Smart-Modus
55-
BF: Section - Korrektur Smart-Modus
56-
CR: Projekt - Anpasung KeyStore
57-
CR: HTTP(S) Optimierung/Korrektur
58-
CR: (X)CGI / HTTP-XAPI / Templates - Optimierung
59-
CR: Konfiguration - Änderung der Server/Service-Sektion
60-
CR: SAPI - Anpassung bei Initialisieurng und Fehlerausgabe
61-
CR: Dokumenation - Allgemeine Korrektur und Anpassungen
62-
53+
## 5.1.0 20180505 (summary of the current version)
54+
BF: Initialize - Korrektur Smart-Modus
55+
BF: Section - Korrektur Smart-Modus
56+
CR: Projekt - Anpasung KeyStore
57+
CR: HTTP(S) Optimierung/Korrektur
58+
CR: (X)CGI / HTTP-XAPI / Templates - Optimierung
59+
CR: Konfiguration - Änderung der Server/Service-Sektion
60+
CR: SAPI - Anpassung bei Initialisieurng und Fehlerausgabe
61+
CR: Dokumenation - Allgemeine Korrektur und Anpassungen
62+
6363
[Read more](https://raw.githubusercontent.com/seanox/devwex/master/CHANGES)
6464

6565

development/release.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
5.1.0 2018xxxx
1+
5.1.0 20180505
22
BF: Initialize - Korrektur Smart-Modus
33
- im Smart-Modus erstellte Sections werden wieder gehalten
44
BF: Section - Korrektur Smart-Modus

manuals/seanox-devwex.css

Lines changed: 12 additions & 6 deletions
Large diffs are not rendered by default.

manuals/seanox-devwex.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -505,13 +505,7 @@ Sitemap.create = function() {
505505
var search = document.querySelector(Sitemap.SELECTOR_TOC_FILTER);
506506
search.removeClassName(Sitemap.STYLE_ERROR);
507507
var filter = Sitemap.Filter.compile(Sitemap.meta.search);
508-
var update = function(chapter, filter, wait) {
509-
if (!wait) {
510-
window.setTimeout(function() {
511-
update(chapter, filter, true);
512-
});
513-
return;
514-
}
508+
var update = function(chapter, filter) {
515509
var element = document.querySelector(Sitemap.SELECTOR_TOC_ANCHOR + "[" + Sitemap.ATTRIBUTE_CHAPTER + "='" + chapter + "']");
516510
element.removeClassName(Sitemap.STYLE_MINOR);
517511
try {
@@ -523,7 +517,7 @@ Sitemap.create = function() {
523517
}
524518
};
525519
for (var chapter in Sitemap.index)
526-
update(chapter, filter);
520+
window.setTimeout(update, 0, chapter, filter);
527521
}, 250);
528522
};
529523
var filter = document.querySelector(Sitemap.SELECTOR_TOC_FILTER);

manuals/seanox-devwex_de.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<h1>Inhalt</h1>
4848
<p>
4949
<input type="text" placeholder="Suchen und Filtern">
50-
<input type="button" value=" ">
50+
<input type="button" value="a">
5151
</p>
5252
<p>
5353
Der Filter unterstützt: UND (+ oder |), NICHT (- oder !), ODER (|),
@@ -3184,9 +3184,9 @@ <h2>Entwicklungsumgebung (SDK)</h2>
31843184
</article>
31853185
</main>
31863186
<nav>
3187-
<button></button>
3188-
<button></button>
3189-
<button></button>
3187+
<button>b</button>
3188+
<button>c</button>
3189+
<button>d</button>
31903190
</nav>
31913191
<footer>
31923192
<section>

manuals/seanox-devwex_en.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<h1>Table of Contents</h1>
4848
<p>
4949
<input type="text" placeholder="Search and Filter">
50-
<input type="button" value=" ">
50+
<input type="button" value="a">
5151
</p>
5252
<p>
5353
The filter supports: AND (+ or |), NOT (- or !), OR (|), round
@@ -3089,9 +3089,9 @@ <h2>Development Environment (SDK)</h2>
30893089
</article>
30903090
</main>
30913091
<nav>
3092-
<button></button>
3093-
<button></button>
3094-
<button></button>
3092+
<button>b</button>
3093+
<button>c</button>
3094+
<button>d</button>
30953095
</nav>
30963096
<footer>
30973097
<section>
644 KB
Binary file not shown.

0 commit comments

Comments
 (0)