From 2b410702314b5db36b7e637cb2634282665744a6 Mon Sep 17 00:00:00 2001 From: "Paul Buetow (pluto.buetow.org)" Date: Sat, 7 Sep 2013 14:47:07 +0200 Subject: new dev site --- dev.buetow.org/config.xml | 67 ++++++++++++++++++ dev.buetow.org/content/home.xml | 69 ------------------ dev.buetow.org/htdocs/images/bg.png | Bin 0 -> 347 bytes dev.buetow.org/htdocs/images/camel.jpg | Bin 0 -> 46392 bytes dev.buetow.org/htdocs/images/dotORG.png | Bin 0 -> 12256 bytes dev.buetow.org/htdocs/images/head.jpg | Bin 0 -> 55048 bytes dev.buetow.org/htdocs/images/ipv6ready.png | Bin 0 -> 3786 bytes dev.buetow.org/htdocs/images/org.png | Bin 0 -> 4682 bytes dev.buetow.org/htdocs/styles/blank.css | 1 + dev.buetow.org/htdocs/styles/default.css | 110 +++++++++++++++++++++++++++++ dev.buetow.org/templates/plain.xml | 5 ++ dev.buetow.org/templates/rss2.feed.xml | 16 +++++ dev.buetow.org/templates/xhtml.xml | 35 +++++++++ 13 files changed, 234 insertions(+), 69 deletions(-) create mode 100644 dev.buetow.org/config.xml delete mode 100644 dev.buetow.org/content/home.xml create mode 100644 dev.buetow.org/htdocs/images/bg.png create mode 100644 dev.buetow.org/htdocs/images/camel.jpg create mode 100644 dev.buetow.org/htdocs/images/dotORG.png create mode 100644 dev.buetow.org/htdocs/images/head.jpg create mode 100644 dev.buetow.org/htdocs/images/ipv6ready.png create mode 100644 dev.buetow.org/htdocs/images/org.png create mode 100644 dev.buetow.org/htdocs/styles/blank.css create mode 100644 dev.buetow.org/htdocs/styles/default.css create mode 100644 dev.buetow.org/templates/plain.xml create mode 100644 dev.buetow.org/templates/rss2.feed.xml create mode 100644 dev.buetow.org/templates/xhtml.xml (limited to 'dev.buetow.org') diff --git a/dev.buetow.org/config.xml b/dev.buetow.org/config.xml new file mode 100644 index 0000000..d076d15 --- /dev/null +++ b/dev.buetow.org/config.xml @@ -0,0 +1,67 @@ + + + + + + + %%host%% - %%site%% + web.buetow.org/stats + ?document= + %%documentsurl%%images/ + %%documentsurl%%styles/ + + A-5916832-1 + ftp://ftp.buetow.org/pub + + + + + + + + + + [h1] + [h2] + [h3] + + [div class="important"] + [p] + [span class="@@class@@"] + [pre class="quote"] + [p][pre] + [a href="@@text@@"] + [a href="@@href@@"] + [a href="@@href@@"][img align="center" border="1" alt="@@desc@@" title="@@desc@@" src="@@src@@"] + [img border="0" alt="@@title@@" title="@@title@@" src="@@href@@" /] + [center][a href="@@link@@"][img alt="@@title@@" title="@@title@@" src="@@href@@" /][/a][/center] + [img border="0" alt="@@title@@" title="@@title@@" class="rimg" src="@@href@@" align="right" /] + [a href="@@link@@"][img border="0" alt="@@title@@" title="@@title@@" class="rimg" src="@@href@@" align="right" /][/a] + [img border="0" alt="@@title@@" title="@@title@@" class="limg" src="@@href@@" align="left" /] + [br /] + [div class="menu"] + [a class="menuitem" href="@@link@@$$params$$"] + [a class="activemenuitem" href="@@link@@$$params$$"] + [ul] + [li] + [li class="na"] + [div class="incsep"] + [pre class="code"] + [script type="text/javascript" language="JavaScript"] + + + [title] + [description] + [p] + [a href="@@text@@"] + [a href="@@href@@"] + %%whitespace%%(@@href@@) + [item] + [ul] + [li] + [li] + [pre] + + + + diff --git a/dev.buetow.org/content/home.xml b/dev.buetow.org/content/home.xml deleted file mode 100644 index 6a99438..0000000 --- a/dev.buetow.org/content/home.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - Some programming projects - Mailing List - - Here are some programming projects listed which I programmed in my spare time. Some may be usefull and others may not. Please use the - Development Mailing List - for any considerations. - - Git repository - - You may go to - gitweb - for browsing some of the repositories. Please check out each individual project site how to clone a git repository. - - Deb repository - Some projects provide packages in .deb format. Please check out each individual project site for available architecture and so on. Basically the debian repository is available via '[deb|deb-src] [http|ftp]://deb.buetow.org/apt REPLACEWITHDISTNAME main'. - To trust it please run "curl http://deb.buetow.org/apt/pubkey.gpg | apt-key add -" - Project list - - - 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; - - $ret; -
-
-
diff --git a/dev.buetow.org/htdocs/images/bg.png b/dev.buetow.org/htdocs/images/bg.png new file mode 100644 index 0000000..35fb3b5 Binary files /dev/null and b/dev.buetow.org/htdocs/images/bg.png differ diff --git a/dev.buetow.org/htdocs/images/camel.jpg b/dev.buetow.org/htdocs/images/camel.jpg new file mode 100644 index 0000000..ebbdfd3 Binary files /dev/null and b/dev.buetow.org/htdocs/images/camel.jpg differ diff --git a/dev.buetow.org/htdocs/images/dotORG.png b/dev.buetow.org/htdocs/images/dotORG.png new file mode 100644 index 0000000..c487e26 Binary files /dev/null and b/dev.buetow.org/htdocs/images/dotORG.png differ diff --git a/dev.buetow.org/htdocs/images/head.jpg b/dev.buetow.org/htdocs/images/head.jpg new file mode 100644 index 0000000..0a9c408 Binary files /dev/null and b/dev.buetow.org/htdocs/images/head.jpg differ diff --git a/dev.buetow.org/htdocs/images/ipv6ready.png b/dev.buetow.org/htdocs/images/ipv6ready.png new file mode 100644 index 0000000..18a42a7 Binary files /dev/null and b/dev.buetow.org/htdocs/images/ipv6ready.png differ diff --git a/dev.buetow.org/htdocs/images/org.png b/dev.buetow.org/htdocs/images/org.png new file mode 100644 index 0000000..c338dc5 Binary files /dev/null and b/dev.buetow.org/htdocs/images/org.png differ diff --git a/dev.buetow.org/htdocs/styles/blank.css b/dev.buetow.org/htdocs/styles/blank.css new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/dev.buetow.org/htdocs/styles/blank.css @@ -0,0 +1 @@ + diff --git a/dev.buetow.org/htdocs/styles/default.css b/dev.buetow.org/htdocs/styles/default.css new file mode 100644 index 0000000..2c9e778 --- /dev/null +++ b/dev.buetow.org/htdocs/styles/default.css @@ -0,0 +1,110 @@ +html { + height: 100%; +} + +body { + font-family: Georgia, Serif; + background-color: #19495f; + height: 100%; + max-width: 900px; +} + +p { + padding: 1px 0; +} + +div.header { + background-color: #01768f; + border-color: #000000; + border-width: 2px; + border-style: solid; + color: #FFFFFF; + padding: 20px; + margin: 0px; + margin-bottom: 5px; + text-align: center; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +span.italic { + font-style: italic; +} + +span.bold { + font-weight: bold; +} + +div.main { + background-color: #FFFFFA; + border-width: 1px; + border-style: solid; + padding: 5px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +div.important { + background-color: #FF8181; + border-width: 1px; + border-style: solid; +} + +h1 { + padding-left: 10px; + font-size: 30px; +} + +h2, h3, p { + padding-left: 10px; + padding-right: 10px; +} + + +pre, .quote, .code { + border:1px #000000 solid; + font-family: "Courier New", courier; + background: #FFFFFF; + color: #000000; + padding-top: -10px; + padding-right: 10px; + padding: 10px; + margin-bottom: 30px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +.footer { + background-color: #EEEEEE; + color: #000000; + text-align: center; + font-style: italic; + font-size: 12px; + margin-top: 10px; + padding: 10px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +a { + color: #000000; +} + +a:hover { + color: #FF0000; + text-decoration: none; +} + +img { + padding-left: 10px; + padding-bottom: 10px; +} + +img.limg { + padding-right: 10px; +} + +div.incsep { + background-color: #FEFEFE; + padding-bottom: 50px; +} diff --git a/dev.buetow.org/templates/plain.xml b/dev.buetow.org/templates/plain.xml new file mode 100644 index 0000000..7c3225e --- /dev/null +++ b/dev.buetow.org/templates/plain.xml @@ -0,0 +1,5 @@ + + + + %%content%% + diff --git a/dev.buetow.org/templates/rss2.feed.xml b/dev.buetow.org/templates/rss2.feed.xml new file mode 100644 index 0000000..43e2c67 --- /dev/null +++ b/dev.buetow.org/templates/rss2.feed.xml @@ -0,0 +1,16 @@ + + + + ?xml version="1.0"? + + + buetow.org Newsfeed + http://%%host%% + buetow.org - Paul Buetows Tech Newsfeed + $$!/bin/date$$ + Xerl Web Engine (http://xerl.buetow.org) + en + %%content%% + + + diff --git a/dev.buetow.org/templates/xhtml.xml b/dev.buetow.org/templates/xhtml.xml new file mode 100644 index 0000000..b4caad8 --- /dev/null +++ b/dev.buetow.org/templates/xhtml.xml @@ -0,0 +1,35 @@ + + +!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" + + + %%title%% + + + + + + + + <=link rel="alternate" type="application/rss+xml" title="buetow.org Newsfeed" href="http://rss.buetow.org" /> + <=link rel="stylesheet" type="text/css" href="%%stylesurl%%$$style$$" /> + + +
+ A fortune quote: + $$!/usr/games/fortune -s$$ +
+
+ + %%content%% + +
+ + +
+ -- cgit v1.2.3