From 4608e27acf0fb9270dcb2ca694ec6756608136b2 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (Gemeni)" Date: Sun, 17 Jun 2018 08:48:04 +0100 Subject: some reorg --- awksite.buetow.org/content/98.contact.xml | 2 -- cbars.alpha.buetow.org/content/98.contact.xml | 2 -- dev.buetow.org/SITEMAP | 0 dev.buetow.org/content/home.xml | 25 -------------- dev.buetow.org/content/projectlist.inc.pl | 42 ------------------------ fapi.buetow.org/content/40.Changelog.xml | 8 ----- fapi.buetow.org/content/98.contact.xml | 2 -- fype.alpha.buetow.org/content/98.contact.xml | 2 -- gotop.buetow.org/content/98.contact.xml | 2 -- guprecords.buetow.org/content/40.Changelog.xml | 8 ----- guprecords.buetow.org/content/98.contact.xml | 2 -- japi.buetow.org/content/40.Changelog.xml | 8 ----- japi.buetow.org/content/98.contact.xml | 2 -- jsmstrade.buetow.org/content/98.contact.xml | 2 -- loadbars.buetow.org/content/40.Changelog.xml | 8 ----- loadbars.buetow.org/content/98.contact.xml | 2 -- mon.buetow.org/content/40.Changelog.xml | 8 ----- mon.buetow.org/content/98.contact.xml | 2 -- netcalendar.buetow.org/content/98.contact.xml | 2 -- netdiff.buetow.org/content/40.Changelog.xml | 8 ----- netdiff.buetow.org/content/98.contact.xml | 2 -- perldaemon.buetow.org/content/40.CHANGELOG.xml | 8 ----- perldaemon.buetow.org/content/98.Contact.xml | 14 ++------ photoalbum.buetow.org/content/40.Changelog.xml | 8 ----- photoalbum.buetow.org/content/98.contact.xml | 2 -- pingdomfetch.buetow.org/content/40.Changelog.xml | 8 ----- pingdomfetch.buetow.org/content/98.contact.xml | 2 -- pwgrep.buetow.org/content/40.Changelog.xml | 8 ----- pwgrep.buetow.org/content/98.contact.xml | 2 -- redirect:develop.buetow.org | 1 - uberwachung.buetow.org/content/98.contact.xml | 2 -- vs-sim.buetow.org/content/98.contact.xml | 2 -- xerl.buetow.org/content/98.contact.xml | 2 -- ychat.alpha.buetow.org/content/98.contact.xml | 2 -- 34 files changed, 2 insertions(+), 198 deletions(-) delete mode 100644 dev.buetow.org/SITEMAP delete mode 100644 dev.buetow.org/content/home.xml delete mode 100644 dev.buetow.org/content/projectlist.inc.pl delete mode 100644 fapi.buetow.org/content/40.Changelog.xml delete mode 100644 guprecords.buetow.org/content/40.Changelog.xml delete mode 100644 japi.buetow.org/content/40.Changelog.xml delete mode 100644 loadbars.buetow.org/content/40.Changelog.xml delete mode 100644 mon.buetow.org/content/40.Changelog.xml delete mode 100644 netdiff.buetow.org/content/40.Changelog.xml delete mode 100644 perldaemon.buetow.org/content/40.CHANGELOG.xml delete mode 100644 photoalbum.buetow.org/content/40.Changelog.xml delete mode 100644 pingdomfetch.buetow.org/content/40.Changelog.xml delete mode 100644 pwgrep.buetow.org/content/40.Changelog.xml delete mode 100644 redirect:develop.buetow.org diff --git a/awksite.buetow.org/content/98.contact.xml b/awksite.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/awksite.buetow.org/content/98.contact.xml +++ b/awksite.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/cbars.alpha.buetow.org/content/98.contact.xml b/cbars.alpha.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/cbars.alpha.buetow.org/content/98.contact.xml +++ b/cbars.alpha.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/dev.buetow.org/SITEMAP b/dev.buetow.org/SITEMAP deleted file mode 100644 index e69de29..0000000 diff --git a/dev.buetow.org/content/home.xml b/dev.buetow.org/content/home.xml deleted file mode 100644 index 606c026..0000000 --- a/dev.buetow.org/content/home.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - Some programming projects - Cgit - - My Cgit can be found at - http://cgit.buetow.org - - Github - - In parallel to Cgit I keep copies of my stuff at Github. My Github page is - http://github.com/snonux - - Project list - - - All hosts containing - .alpha.buetow.org - are most likely dev, test or PoCs. Don't expect to find anything usefull there. - - - - projectlist.inc.pl - - diff --git a/dev.buetow.org/content/projectlist.inc.pl b/dev.buetow.org/content/projectlist.inc.pl deleted file mode 100644 index 4d1d4f2..0000000 --- a/dev.buetow.org/content/projectlist.inc.pl +++ /dev/null @@ -1,42 +0,0 @@ -my $hostroot = $config->get_hostroot(); - -sub getf ($) { - open my $f, $_[0] or die "$!: $_[0]\n"; - my @slurp = <$f>; - close $f; - @slurp; -} - -sub nl () { "
\n" } - -sub list (*) { - my $tag = shift; - my @found = sort `find $hostroot -name $tag`; - my $ret = ''; - - - for my $found (@found) { - $found =~ /.*hosts.(.*?).$tag/; - my $host = $1; - - my @content = getf $found; - - $ret .= "$host" . nl; - if (@content) { - $ret .= join " ", @content; - $ret .= nl; - } - $ret .= nl; - } - - $ret; -} - -my $ret = list PROJECT; - -$ret .= "Older projects (not active at the moment):" . nl x 2; -$ret .= list OLDPROJECT; -$ret .= "Obsolete projects (no work will be done anymore and the software may be broken):" . nl x 2; -$ret .= list OBSOLETEPROJECT; - -return $ret; diff --git a/fapi.buetow.org/content/40.Changelog.xml b/fapi.buetow.org/content/40.Changelog.xml deleted file mode 100644 index 6237309..0000000 --- a/fapi.buetow.org/content/40.Changelog.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - Changelog - This is the changelog file of the current master branch: - - http://web.buetow.org/cgit/fapi.git/plain/debian/changelog - - diff --git a/fapi.buetow.org/content/98.contact.xml b/fapi.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/fapi.buetow.org/content/98.contact.xml +++ b/fapi.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/fype.alpha.buetow.org/content/98.contact.xml b/fype.alpha.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/fype.alpha.buetow.org/content/98.contact.xml +++ b/fype.alpha.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/gotop.buetow.org/content/98.contact.xml b/gotop.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/gotop.buetow.org/content/98.contact.xml +++ b/gotop.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/guprecords.buetow.org/content/40.Changelog.xml b/guprecords.buetow.org/content/40.Changelog.xml deleted file mode 100644 index e5e7056..0000000 --- a/guprecords.buetow.org/content/40.Changelog.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - Changelog - This is the changelog file of the current master branch: - - http://web.buetow.org/cgit/guprecords.git/plain/debian/changelog - - diff --git a/guprecords.buetow.org/content/98.contact.xml b/guprecords.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/guprecords.buetow.org/content/98.contact.xml +++ b/guprecords.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/japi.buetow.org/content/40.Changelog.xml b/japi.buetow.org/content/40.Changelog.xml deleted file mode 100644 index 7eb3abc..0000000 --- a/japi.buetow.org/content/40.Changelog.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - Changelog - This is the changelog file of the current master branch: - - http://web.buetow.org/cgit/japi.git/plain/debian/changelog - - diff --git a/japi.buetow.org/content/98.contact.xml b/japi.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/japi.buetow.org/content/98.contact.xml +++ b/japi.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/jsmstrade.buetow.org/content/98.contact.xml b/jsmstrade.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/jsmstrade.buetow.org/content/98.contact.xml +++ b/jsmstrade.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/loadbars.buetow.org/content/40.Changelog.xml b/loadbars.buetow.org/content/40.Changelog.xml deleted file mode 100644 index 83bc496..0000000 --- a/loadbars.buetow.org/content/40.Changelog.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - Changelog - This is the changelog file of the current master branch: - - http://web.buetow.org/cgit/loadbars.git/plain/debian/changelog - - diff --git a/loadbars.buetow.org/content/98.contact.xml b/loadbars.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/loadbars.buetow.org/content/98.contact.xml +++ b/loadbars.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/mon.buetow.org/content/40.Changelog.xml b/mon.buetow.org/content/40.Changelog.xml deleted file mode 100644 index 6117c1f..0000000 --- a/mon.buetow.org/content/40.Changelog.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - Changelog - This is the changelog file of the current master branch: - - http://web.buetow.org/cgit/mon.git/plain/debian/changelog - - diff --git a/mon.buetow.org/content/98.contact.xml b/mon.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/mon.buetow.org/content/98.contact.xml +++ b/mon.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/netcalendar.buetow.org/content/98.contact.xml b/netcalendar.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/netcalendar.buetow.org/content/98.contact.xml +++ b/netcalendar.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/netdiff.buetow.org/content/40.Changelog.xml b/netdiff.buetow.org/content/40.Changelog.xml deleted file mode 100644 index e7fe506..0000000 --- a/netdiff.buetow.org/content/40.Changelog.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - Changelog - This is the changelog file of the current master branch: - - http://web.buetow.org/cgit/netdiff.git/plain/debian/changelog - - diff --git a/netdiff.buetow.org/content/98.contact.xml b/netdiff.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/netdiff.buetow.org/content/98.contact.xml +++ b/netdiff.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/perldaemon.buetow.org/content/40.CHANGELOG.xml b/perldaemon.buetow.org/content/40.CHANGELOG.xml deleted file mode 100644 index ca92fd7..0000000 --- a/perldaemon.buetow.org/content/40.CHANGELOG.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - CHANGELOG - This is the CHANGELOG file of the current master branch: - - http://web.buetow.org/cgit/perldaemon.git/plain/CHANGELOG - - diff --git a/perldaemon.buetow.org/content/98.Contact.xml b/perldaemon.buetow.org/content/98.Contact.xml index d3d66b0..4c2f856 100644 --- a/perldaemon.buetow.org/content/98.Contact.xml +++ b/perldaemon.buetow.org/content/98.Contact.xml @@ -1,19 +1,9 @@ - Contact Me/Us + Contact me - Please use the - Development Mailing List - for any considerations of this humble programming project or any other programming project of mine. - - - But you may also use other methods such as listed + Please use the contact methods listed on this site - for example. - - - If you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/photoalbum.buetow.org/content/40.Changelog.xml b/photoalbum.buetow.org/content/40.Changelog.xml deleted file mode 100644 index ea70805..0000000 --- a/photoalbum.buetow.org/content/40.Changelog.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - Changelog - This is the changelog file of the current master branch: - - http://web.buetow.org/cgit/photoalbum.git/plain/debian/changelog - - diff --git a/photoalbum.buetow.org/content/98.contact.xml b/photoalbum.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/photoalbum.buetow.org/content/98.contact.xml +++ b/photoalbum.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/pingdomfetch.buetow.org/content/40.Changelog.xml b/pingdomfetch.buetow.org/content/40.Changelog.xml deleted file mode 100644 index ddf8c8e..0000000 --- a/pingdomfetch.buetow.org/content/40.Changelog.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - Changelog - This is the changelog file of the current master branch: - - http://web.buetow.org/cgit/pingdomfetch.git/plain/debian/changelog - - diff --git a/pingdomfetch.buetow.org/content/98.contact.xml b/pingdomfetch.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/pingdomfetch.buetow.org/content/98.contact.xml +++ b/pingdomfetch.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/pwgrep.buetow.org/content/40.Changelog.xml b/pwgrep.buetow.org/content/40.Changelog.xml deleted file mode 100644 index fa7cbc5..0000000 --- a/pwgrep.buetow.org/content/40.Changelog.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - Changelog - This is the changelog of the current master branch: - - http://web.buetow.org/cgit/pwgrep.git/plain/debian/changelog - - diff --git a/pwgrep.buetow.org/content/98.contact.xml b/pwgrep.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/pwgrep.buetow.org/content/98.contact.xml +++ b/pwgrep.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/redirect:develop.buetow.org b/redirect:develop.buetow.org deleted file mode 100644 index 1b92003..0000000 --- a/redirect:develop.buetow.org +++ /dev/null @@ -1 +0,0 @@ -http://dev.buetow.org diff --git a/uberwachung.buetow.org/content/98.contact.xml b/uberwachung.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/uberwachung.buetow.org/content/98.contact.xml +++ b/uberwachung.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/vs-sim.buetow.org/content/98.contact.xml b/vs-sim.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/vs-sim.buetow.org/content/98.contact.xml +++ b/vs-sim.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/xerl.buetow.org/content/98.contact.xml b/xerl.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/xerl.buetow.org/content/98.contact.xml +++ b/xerl.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) diff --git a/ychat.alpha.buetow.org/content/98.contact.xml b/ychat.alpha.buetow.org/content/98.contact.xml index 74c10c5..4c2f856 100644 --- a/ychat.alpha.buetow.org/content/98.contact.xml +++ b/ychat.alpha.buetow.org/content/98.contact.xml @@ -4,8 +4,6 @@ Please use the contact methods listed on this site - of if you are interested in other projects please visit - http://dev.buetow.org :) -- cgit v1.2.3