prefer HTTPS in documentation
authorSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Fri, 18 Jan 2019 23:28:39 +0000 (01:28 +0200)
committerSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Fri, 18 Jan 2019 23:28:39 +0000 (01:28 +0200)
doc/index.html
doc/index.org
tools/commit and push [new file with mode: 0755]
tools/open with git-cola [deleted file]

index f3738e8..35d0e25 100644 (file)
@@ -2,7 +2,7 @@
 <html lang="en">
 <head>
 <title>Svjatoslav Commons - Java library of commonly used functions</title>
-<!-- 2017-12-26 Tue 17:13 -->
+<!-- 2019-01-19 Sat 01:27 -->
 <meta charset="utf-8">
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="generator" content="Org-mode">
@@ -198,7 +198,7 @@ $(function() {
 <div class="row"><div class="col-md-9"><h1 class="title">Svjatoslav Commons - Java library of commonly used functions</h1>
 <hr >
 <ul class="org-ul">
-<li><a href="http://www2.svjatoslav.eu/gitweb/?p=svjatoslav_commons.git;a=snapshot;h=HEAD;sf=tgz">download latest snapshot</a>
+<li><a href="https://www2.svjatoslav.eu/gitweb/?p=svjatoslav_commons.git;a=snapshot;h=HEAD;sf=tgz">download latest snapshot</a>
 </li>
 
 <li>This program is free software; you can redistribute it and/or modify
@@ -210,7 +210,7 @@ License</a> or later as published by the Free Software Foundation.
 <ul class="org-ul">
 <li>Svjatoslav Agejenko
 </li>
-<li>Homepage: <a href="http://svjatoslav.eu">http://svjatoslav.eu</a>
+<li>Homepage: <a href="https://svjatoslav.eu">https://svjatoslav.eu</a>
 </li>
 <li>Email: <a href="mailto://svjatoslav@svjatoslav.eu">mailto://svjatoslav@svjatoslav.eu</a>
 </li>
@@ -228,12 +228,14 @@ License</a> or later as published by the Free Software Foundation.
 <li>Commandline Interface helper
 <pre class="example">
 eu.svjatoslav.commons.commandline.CLIHelper
+
 </pre>
 </li>
 
 <li>Commandline arguments parser and validator.
 <pre class="example">
 eu.svjatoslav.commons.commandline.parameterparser
+
 </pre>
 </li>
 
@@ -241,6 +243,7 @@ eu.svjatoslav.commons.commandline.parameterparser
 <pre class="example">
 eu.svjatoslav.commons.data.BitInputStream
 eu.svjatoslav.commons.data.BitOutputStream
+
 </pre>
 </li>
 
@@ -248,12 +251,14 @@ eu.svjatoslav.commons.data.BitOutputStream
 <pre class="example">
 eu.svjatoslav.commons.data.EnhancedDataInputStream
 eu.svjatoslav.commons.data.EnhancedDataOutputStream
+
 </pre>
 </li>
 
 <li>Byte array to HEX string converter.
 <pre class="example">
 eu.svjatoslav.commons.data.HexConverter
+
 </pre>
 </li>
 
@@ -261,18 +266,21 @@ eu.svjatoslav.commons.data.HexConverter
 unreliable. Better solution is needed.)
 <pre class="example">
 eu.svjatoslav.commons.file.CommonPathResolver
+
 </pre>
 </li>
 
 <li>File path parser.
 <pre class="example">
 eu.svjatoslav.commons.file.FilePathParser
+
 </pre>
 </li>
 
 <li>File IO helper.
 <pre class="example">
 eu.svjatoslav.commons.file.IOHelper
+
 </pre>
 </li>
 
@@ -282,6 +290,7 @@ eu.svjatoslav.commons.file.IOHelper
 and associated program call stack traceback.
 <pre class="example">
 eu.svjatoslav.commons.gui.dialog.ExceptionDialog
+
 </pre>
 </li>
 </ul>
@@ -291,24 +300,28 @@ eu.svjatoslav.commons.gui.dialog.ExceptionDialog
 sites.
 <pre class="example">
 eu.svjatoslav.commons.network.navigation
+
 </pre>
 </li>
 
 <li>String tokenizer.
 <pre class="example">
 eu.svjatoslav.commons.string.tokenizer
+
 </pre>
 </li>
 
 <li>Improved String, optimized for dealing with prefixes and suffixes.
 <pre class="example">
 eu.svjatoslav.commons.string.String2
+
 </pre>
 </li>
 
 <li>Wildcards matcher. (?, *)
 <pre class="example">
 eu.svjatoslav.commons.string.WildCardMatcher#match
+
 </pre>
 </li>
 </ul>
@@ -328,26 +341,26 @@ Maven pom.xml file snippet:
 
 <div class="org-src-container">
 
-<pre class="src src-xml">&lt;<span style="color: #A6E22E;">dependencies</span>&gt;
+<pre class="src src-xml">&lt;dependencies&gt;
     ...
-    &lt;<span style="color: #A6E22E;">dependency</span>&gt;
-        &lt;<span style="color: #A6E22E;">groupId</span>&gt;eu.svjatoslav&lt;/<span style="color: #A6E22E;">groupId</span>&gt;
-        &lt;<span style="color: #A6E22E;">artifactId</span>&gt;svjatoslavcommons&lt;/<span style="color: #A6E22E;">artifactId</span>&gt;
-        &lt;<span style="color: #A6E22E;">version</span>&gt;1.7&lt;/<span style="color: #A6E22E;">version</span>&gt;
-    &lt;/<span style="color: #A6E22E;">dependency</span>&gt;
+    &lt;dependency&gt;
+        &lt;groupId&gt;eu.svjatoslav&lt;/groupId&gt;
+        &lt;artifactId&gt;svjatoslavcommons&lt;/artifactId&gt;
+        &lt;version&gt;1.7&lt;/version&gt;
+    &lt;/dependency&gt;
     ...
-&lt;/<span style="color: #A6E22E;">dependencies</span>&gt;
+&lt;/dependencies&gt;
 
 
-&lt;<span style="color: #A6E22E;">repositories</span>&gt;
+&lt;repositories&gt;
     ...
-    &lt;<span style="color: #A6E22E;">repository</span>&gt;
-        &lt;<span style="color: #A6E22E;">id</span>&gt;svjatoslav.eu&lt;/<span style="color: #A6E22E;">id</span>&gt;
-        &lt;<span style="color: #A6E22E;">name</span>&gt;Svjatoslav repository&lt;/<span style="color: #A6E22E;">name</span>&gt;
-        &lt;<span style="color: #A6E22E;">url</span>&gt;http://www2.svjatoslav.eu/maven/&lt;/<span style="color: #A6E22E;">url</span>&gt;
-    &lt;/<span style="color: #A6E22E;">repository</span>&gt;
+    &lt;repository&gt;
+        &lt;id&gt;svjatoslav.eu&lt;/id&gt;
+        &lt;name&gt;Svjatoslav repository&lt;/name&gt;
+        &lt;url&gt;http://www2.svjatoslav.eu/maven/&lt;/url&gt;
+    &lt;/repository&gt;
     ...
-&lt;/<span style="color: #A6E22E;">repositories</span>&gt;
+&lt;/repositories&gt;
 </pre>
 </div>
 </div>
@@ -363,8 +376,8 @@ Maven pom.xml file snippet:
 </div></div></div>
 <footer id="postamble" class="">
 <div><p class="author">Author: Svjatoslav Agejenko</p>
-<p class="date">Created: 2017-12-26 Tue 17:13</p>
-<p class="creator"><a href="http://www.gnu.org/software/emacs/">Emacs</a> 25.1.1 (<a href="http://orgmode.org">Org-mode</a> 8.2.10)</p>
+<p class="date">Created: 2019-01-19 Sat 01:27</p>
+<p class="creator"><a href="http://www.gnu.org/software/emacs/">Emacs</a> 26.1 (<a href="http://orgmode.org">Org-mode</a> 9.1.9)</p>
 </div>
 </footer>
 </body>
index 13205f5..fd1101a 100644 (file)
@@ -1,7 +1,7 @@
 #+TITLE: Svjatoslav Commons - Java library of commonly used functions
 
 -----
-- [[http://www2.svjatoslav.eu/gitweb/?p=svjatoslav_commons.git;a=snapshot;h=HEAD;sf=tgz][download latest snapshot]]
+- [[https://www2.svjatoslav.eu/gitweb/?p=svjatoslav_commons.git;a=snapshot;h=HEAD;sf=tgz][download latest snapshot]]
 
 - This program is free software; you can redistribute it and/or modify
   it under the terms of version 3 of the [[https://www.gnu.org/licenses/lgpl.html][GNU Lesser General Public
@@ -9,7 +9,7 @@
 
 - Program author:
   - Svjatoslav Agejenko
-  - Homepage: http://svjatoslav.eu
+  - Homepage: https://svjatoslav.eu
   - Email: mailto://svjatoslav@svjatoslav.eu
 
 - [[http://www.svjatoslav.eu/programs.jsp][other applications hosted at svjatoslav.eu]]
diff --git a/tools/commit and push b/tools/commit and push
new file mode 100755 (executable)
index 0000000..057b511
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/bash
+cd "${0%/*}"; if [ "$1" != "T" ]; then gnome-terminal -e "'$0' T"; exit; fi;
+
+cd ..
+
+cola
+git push
+
+echo ""
+echo "Press ENTER to close this window."
+read
diff --git a/tools/open with git-cola b/tools/open with git-cola
deleted file mode 100755 (executable)
index 8655908..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-cd "${0%/*}"
-
-cd ..
-
-cola