[Gpg4win-commits] r134 - in trunk/doc/website: . pix

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Tue Feb 7 13:26:36 CET 2006


Author: wilde
Date: 2006-02-07 13:26:36 +0100 (Tue, 07 Feb 2006)
New Revision: 134

Added:
   trunk/doc/website/README
   trunk/doc/website/buildhtml.mk
   trunk/doc/website/gpg4win.css
   trunk/doc/website/index-de.htm4
   trunk/doc/website/index.htm4
   trunk/doc/website/pix/
   trunk/doc/website/pix/disk.png
   trunk/doc/website/pix/lock.png
   trunk/doc/website/pix/logo.png
   trunk/doc/website/template.m4
   trunk/doc/website/template_header.m4
   trunk/doc/website/versions.m4
Removed:
   trunk/doc/website/Makefile.am
   trunk/doc/website/index.de.html
   trunk/doc/website/index.html
Log:
Initial checkin of the new web site.

Deleted: trunk/doc/website/Makefile.am
===================================================================
--- trunk/doc/website/Makefile.am	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/Makefile.am	2006-02-07 12:26:36 UTC (rev 134)
@@ -1,20 +0,0 @@
-# Makefile.am - Documentation for GnuPG 4 Windows Makefile.
-# Copyright (C) 2005 g10 Code GmbH
-# 
-# This file is part of GPG4Win.
-# 
-# GPG4Win is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-# 
-# GPG4Win is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-# 
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
-
-EXTRA_DIST = index.html index.de.html

Added: trunk/doc/website/README
===================================================================
--- trunk/doc/website/README	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/README	2006-02-07 12:26:36 UTC (rev 134)
@@ -0,0 +1,40 @@
+----------------------------------------------------------------------
+                           gpg4win Web Site
+----------------------------------------------------------------------
+
+INTRODUCTION:
+
+The .html files are build from the *.htm4 files using GNU m4.  The
+*.htm4 files consist of mainly simple plain HTML and some macros
+implementing the overall page layout.
+
+The structure of the .htm4 files should be rather self explaining.
+
+
+BUILDING:
+
+Building the web site is _not_ incorporated into the autotools based
+build process.
+
+To build to websites use the file `buildhtml.mk':
+
+  make -f buildhtml.mk
+
+
+TEMPLATES:
+
+versions.m4 : Definitions of some macros, holding the current versions
+              of gpg4win and the included software packages.  If any
+              version changes this file should be changed accordingly.
+              This file is included by `template_header.m4'.
+
+template.m4 : Contains the definition of the main macros PAGE_START
+              and PAGE_BOXES as well as some helper macros normally
+              not used in the .htm4 files.  Authors should not need to
+              change this file.
+
+template_header.m4: Contains the actual page layout.  This file is
+                    included by `template.m4'.  Authors should not
+                    need to change this file, but if additional
+                    languages are added the navigation must be added
+                    in here.

Added: trunk/doc/website/buildhtml.mk
===================================================================
--- trunk/doc/website/buildhtml.mk	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/buildhtml.mk	2006-02-07 12:26:36 UTC (rev 134)
@@ -0,0 +1,48 @@
+# Build html from m4 macrofiles
+# $Id: Makefile,v 1.8 2005/05/11 14:11:02 wilde Exp $
+#
+# (c)2005,2006 by Intevation GmbH
+# Author(s): Sascha Wilde
+#
+# This is Free Software licensed under the GPL
+
+# Preprocessor configuration
+PP = m4
+PPFLAGS = --prefix-builtins
+
+# Build configuration
+TARGETS = $(patsubst %.htm4,%.html,$(wildcard *.htm4))
+SUBDIRS = 
+
+# Installation configuration
+INSTALL_DIR = /tmp/kolabkonsortium-www
+ADD_INST_TYPES = .css .pdf
+ADD_INST_DIRS = pix
+
+.SUFFIXES: .html .htm4
+
+.htm4.html:
+	$(PP) $(PPFLAGS) $< > $@
+
+all: $(TARGETS) subdirs
+
+$(TARGETS): template.m4 template_header.m4 versions.m4
+
+subdirs: $(SUBDIRS)
+	@for dir in $^ ; do \
+	  $(MAKE) -C $$dir SUBDIRS="" ; \
+	done
+
+install: all
+	mkdir -p $(INSTALL_DIR) ;\
+	cp -uf $(TARGETS) $(INSTALL_DIR) ;\
+	cp -uf *$(ADD_INST_TYPES) $(INSTALL_DIR)
+	cp -urf *$(ADD_INST_DIRS) $(INSTALL_DIR)
+
+tar: all
+	rm -f .TAR-FILE-LIST ; \
+	for i in $(ADD_INST_DIRS) ; do echo "./$$i" >>.TAR-FILE-LIST ; done ; \
+	for i in .html $(ADD_INST_TYPES) ; do \
+	  find . -name "*$$i" >>.TAR-FILE-LIST ; \
+	done ; \
+	tar -czv -f www.kolab-konsortium.tar.gz -T .TAR-FILE-LIST
\ No newline at end of file

Added: trunk/doc/website/gpg4win.css
===================================================================
--- trunk/doc/website/gpg4win.css	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/gpg4win.css	2006-02-07 12:26:36 UTC (rev 134)
@@ -0,0 +1,200 @@
+/* Styles for the Kolab Konsotium Site */
+/* $Id: kolabkonsortium.css,v 1.9 2005/08/08 06:40:38 jan Exp $
+
+
+/* TEXT STYLES */
+
+BODY {
+    margin: 0px;
+    background-color: #eeeee0;
+    font-family: Helvetica, Arial, sans-serif;
+    font-size: 12px;
+}
+
+H1 {
+    margin-top: 0px;
+    font-size: 160%;
+    font-weight: bold;
+    color: black;
+}
+
+H2 {
+    background-color: #ffff98;
+    border-top: 2px solid #fdba19;
+    border-bottom: 2px solid #fdba19;
+    margin-top: 0px;
+    font-size: 125%;
+    font-weight: bold;
+}
+
+H3 {
+    margin-bottom: 0px;
+    font-size: 110%;
+    font-weight: normal;
+    color: #fa050c;
+}
+
+STRONG {
+    color: #ff8000;
+    font-weight: bold;
+    text-decoration: none;
+}
+
+A {
+    color: #fa050c;
+    font-weight: bold;
+    text-decoration: none;
+}
+
+A:hover {
+    color: #ff8000;
+    text-decoration: none;
+}
+
+IMG {
+    border: none;
+}
+
+.version { 
+    font-size: 75%;
+    font-weight: normal;
+    color: black;
+}
+
+.swlist { 
+    font-weight: normal;
+    color: black;
+    white-space:pre;
+}
+
+.center {
+    vertical-align: middle;
+}
+
+/* Tables */
+
+TD {
+    padding: 10px;
+    text-align: left;
+    vertical-align: top;
+}
+
+/* Buttons */
+
+.dlbutton {
+    padding: 10px;
+    font-size: 150%;
+    font-weight: bold;
+    display: block;
+    width: 33%;
+    height: 80px;
+    border: 3px solid white;
+    background-color: #fdba19;
+    background-image: url(pix/disk.png);
+    background-repeat: no-repeat;
+    background-position: right bottom;
+}
+
+.dlbutton:hover {
+    background-color: #fdd347;
+}
+
+
+/* STRUCTURE ELEMENTS */
+
+/* Head */
+
+#navbar {
+    background-color: white;
+    color: #fa050c;
+    font-weight: bold;
+    font-size: 80%;
+    width: 100%;
+}
+
+#navbar TD {
+    text-align: right;
+    vertical-align: middle;
+}
+
+#navbar A {
+    color: black;
+    text-decoration: none;
+  }
+
+#navbar A:hover {
+    color: #ffa500;
+}
+
+#bigbar {
+    text-align: left;
+    background-color: #ffff98;
+    background-image:url(pix/lock.png);
+    background-repeat: no-repeat;
+    background-position: right;
+    border-top: 2px solid #fa050c;
+    border-bottom: 2px solid #fa050c;
+    color: #fa050c;
+    font-weight: bold;
+    height: 190px;
+    width: 100%;
+    min-width: 600px;
+}
+
+TD#bigbar {
+    padding: 20px;
+}
+
+#vertable {
+    width: 33%
+}
+
+/* colors */
+.yellow {
+    color: #fdba19;
+}
+
+.red {
+    color: #fa050c;
+}
+
+/* Content */
+
+#main {
+    position: absolute;
+    min-width: 250px;
+    padding: 40px;
+    padding-top: 20px;
+    left: 0px;
+    right: 200px;
+    line-height: 150%;
+}
+
+#boxes {
+    position: absolute;
+    overflow: visible;
+    right: 0px;
+    width: 200px;
+    padding: 10px;
+}
+
+.box {
+    background-color: #fdba19;
+    border-left: 4px solid #fa050c;
+    padding: 10px;
+    margin-bottom: 10px;
+}
+
+.box H1 {
+    color: black;
+    padding-bottom: 5px;
+    border-bottom: 2px solid white;
+    margin-bottom: 5px;
+    font-size: 120%;
+}
+
+.box P {
+    margin: 0px;
+    padding: 0px;
+    margin-top: 5px;
+}
\ No newline at end of file

Added: trunk/doc/website/index-de.htm4
===================================================================
--- trunk/doc/website/index-de.htm4	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/index-de.htm4	2006-02-07 12:26:36 UTC (rev 134)
@@ -0,0 +1,74 @@
+m4_dnl -*-html-*-
+m4_include(`template.m4')
+m4_dnl $Id: index.htm4,v 1.30 2006/01/12 16:04:03 jan Exp $
+
+m4_define(`DE')
+PAGE_TITLE(`gpg4win')
+PAGE_START
+
+<h1>gpg4win: GnuPG für Windows</h1>
+
+<h2>Über gpg4win</h2>
+
+Das gpg4win Projekt hat sich auf die Fahnen
+geschrieben hat, einen Windows-Installer für
+<a href="http://www.gnupg.de/">GnuPG</a> und
+verwandte Produkte
+(<a href="http://www.gnupg.org/(de)/related_software/gpa/index.html">GPA</a>,
+<a href="http://www.winpt.org">WinPT</a>,
+<a href="http://www.g10code.de/p-gpgol.html">GPGol</a>,
+<a href="http://claws.sylpheed.org/">Sylpheed-Claws</a>,
+<a href="http://gpgee.excelcia.org/">GPGee</a>,
+<a href="http://eudoragpg.sourceforge.net/ver2.0/de/">EurdoraGPG</a>
+sowie Dokumentation) zu erstellen und zu pflegen.
+
+<p>
+Es ist ein internationales Projekt, es wird aber insbesondere
+auch Wert auf vollständige deutsche Übersetzung gelegt.
+
+<p>
+Der Hauptunterschied zu den bisherigen Ansätzen
+(<a href="http://www.gnupp.de/start.html">GnuPP</a> und
+<a href="http://sourceforge.net/projects/winpt">Windows Privacy Tools</a>) ist,
+dass zunächst der <b>gpg4win-Builder</b> entwickelt wurde.
+Dieser erlaubt es, sehr leicht neue gpg4win.exe-Installer
+mit aktualisierten Komponenten herzustellen.
+Und zwar unter GNU/Linux, wobei die meisten Produkte
+sogar automatisch per Cross-Compilation erstellt werden.
+
+<p>
+Damit verbindet sich die Hoffnung, der schnellen Alterung von Installer-Paketen
+entgegenzuwirken, denn eine Aktualisierung wird deutlich einfacher.
+
+<h2>Download des gpg4win Installationspaketes</h2>
+
+Wählen Sie jeweils die aktuellste Version gpg4win-n.n.n.exe:
+
+<p>
+<a href="ftp://ftp.gpg4win.org/gpg4win/">ftp://ftp.gpg4win.org/gpg4win/</a>
+
+<p>
+Bitte tragen Sie sich in eine der
+<a href="http://wald.intevation.org/mail/?group_id=11">gpg4win Mailing Listen</a>
+ein und teilen Sie Ihre Erfahrung,  Fragen oder Probleme mit.
+
+
+PAGE_BOXES
+
+<div class="box">
+  <h1>Support</h1>
+  Mailnglisten:<br>
+  <a href="http://lists.wald.intevation.org/pipermail/gpg4win-users-de/">Archive</a>
+  | <a href="http://lists.wald.intevation.org/mailman/listinfo/gpg4win-users-de">Subscribe</a>
+  <p>Web Foren:<br>
+  <a href="http://wald.intevation.org/forum/forum.php?forum_id=21">Hilfe</a>
+  | <a href="http://wald.intevation.org/forum/forum.php?forum_id=20">Diskussion</a>
+  <p>Fehler Melden:<br>
+  <a
+  href="http://wald.intevation.org/tracker/?atid=126&group_id=11&func=browse">Bug Tracker</a>
+</div>
+<div class="box">
+  <h1>Entwickler</h1>
+  <a href="http://wald.intevation.org/projects/gpg4win/">Projekt Seite</a>
+</div>
+

Deleted: trunk/doc/website/index.de.html
===================================================================
--- trunk/doc/website/index.de.html	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/index.de.html	2006-02-07 12:26:36 UTC (rev 134)
@@ -1,58 +0,0 @@
-<html>
-
-<h1>gpg4win: GnuPG für Windows</h1>
-
-(Dies ist eine vorläufige Version der in Planung befindlichen
-Heimatseite des gpg4win Projektes)
-
-<p>
-<a href="http://wald.intevation.org/projects/gpg4win/">GForge gpg4win Projekt-Seite</a>
-
-<p>
-<a href="index.html">gpg4win homepage in english</a>
-
-<h2>Über gpg4win</h2>
-
-Das gpg4win Projekt hat sich auf die Fahnen
-geschrieben hat, einen Windows-Installer für
-<a href="http://www.gnupg.de/">GnuPG</a> und
-verwandte Produkte
-(<a href="http://www.gnupg.org/(de)/related_software/gpa/index.html">GPA</a>,
-<a href="http://www.winpt.org">WinPT</a>,
-<a href="http://www.g10code.de/p-gpgol.html">GPGol</a>,
-<a href="http://claws.sylpheed.org/">Sylpheed-Claws</a>,
-<a href="http://gpgee.excelcia.org/">GPGee</a>,
-<a href="http://eudoragpg.sourceforge.net/ver2.0/de/">EurdoraGPG</a>
-sowie Dokumentation) zu erstellen und zu pflegen.
-
-<p>
-Es ist ein internationales Projekt, es wird aber insbesondere
-auch Wert auf vollständige deutsche Übersetzung gelegt.
-
-<p>
-Der Hauptunterschied zu den bisherigen Ansätzen
-(<a href="http://www.gnupp.de/start.html">GnuPP</a> und
-<a href="http://sourceforge.net/projects/winpt">Windows Privacy Tools</a>) ist,
-dass zunächst der <b>gpg4win-Builder</b> entwickelt wurde.
-Dieser erlaubt es, sehr leicht neue gpg4win.exe-Installer
-mit aktualisierten Komponenten herzustellen.
-Und zwar unter GNU/Linux, wobei die meisten Produkte
-sogar automatisch per Cross-Compilation erstellt werden.
-
-<p>
-Damit verbindet sich die Hoffnung, der schnellen Alterung von Installer-Paketen
-entgegenzuwirken, denn eine Aktualisierung wird deutlich einfacher.
-
-<h2>Download des gpg4win Installationspaketes</h2>
-
-Wählen Sie jeweils die aktuellste Version gpg4win-n.n.n.exe:
-
-<p>
-<a href="ftp://ftp.gpg4win.org/gpg4win/">ftp://ftp.gpg4win.org/gpg4win/</a>
-
-<p>
-Bitte tragen Sie sich in eine der
-<a href="http://wald.intevation.org/mail/?group_id=11">gpg4win Mailing Listen</a>
-ein und teilen Sie Ihre Erfahrung,  Fragen oder Probleme mit.
-
-</html>

Added: trunk/doc/website/index.htm4
===================================================================
--- trunk/doc/website/index.htm4	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/index.htm4	2006-02-07 12:26:36 UTC (rev 134)
@@ -0,0 +1,84 @@
+m4_dnl -*-html-*-
+m4_include(`template.m4')
+m4_dnl $Id: index.htm4,v 1.30 2006/01/12 16:04:03 jan Exp $
+
+m4_define(`EN')
+PAGE_TITLE(`gpg4win')
+PAGE_START
+
+
+<h1>gpg4win: GnuPG for Windows</h1>
+
+<h2>About gpg4win</h2>
+
+The gpg4win project aims to provide and maintain a Windows-Installer
+for
+<a href="http://www.gnupg.org/">GnuPG</a> and
+related products
+(<a href="http://www.gnupg.org/(en)/related_software/gpa/index.html">GPA</a>,
+<a href="http://www.winpt.org">WinPT</a>,
+<a href="http://www.g10code.de/p-gpgol.html">GPGol</a>,
+<a href="http://claws.sylpheed.org">Sylpheed-Claws</a>,
+<a href="http://gpgee.excelcia.org/">GPGee</a>,
+<a href="http://eudoragpg.sourceforge.net/ver2.0/en/">EurdoraGPG</a>
+as well as documentation).
+
+
+<p>
+It is an international project. Apart from the english as default,
+currently german language is fully supported, maintainers for other languages are welcome.
+
+<p>
+The main difference compared to similar projects
+(<a href="http://www.gnupp.de/start.html">GnuPP</a> and
+<a href="http://sourceforge.net/projects/winpt">Windows Privacy Tools</a>) is
+that at first we developed the <b>gpg4win-Builder</b>.
+This one allows to very easily create new gpg4win.exe installers
+with updated components.
+This could even be done on a GNU/Linux system where almost
+all products are automatically cross-compiled.
+
+<p>
+With this approach we hope to avoid quick aging of installer packages
+as it happened in the past with the other approaches, because it is quite
+simple to create updates.
+
+<h2>Download gpg4win installation package</h2>
+
+Choose the newest version gpg4win-n.n.n.exe:
+
+
+<p>
+<a href="ftp://ftp.gpg4win.org/gpg4win/">ftp://ftp.gpg4win.org/gpg4win/</a>
+
+<p>
+Please subscribe to one of the
+<a href="http://wald.intevation.org/mail/?group_id=11">gpg4win mailing lists</a>
+and share your experiences, questions or problems.
+
+
+PAGE_BOXES
+
+<div class="box">
+  <h1>Support</h1>
+  Mailnglists:<br>
+  <a href="http://lists.wald.intevation.org/pipermail/gpg4win-users-en/">Archive</a>
+  | <a href="http://lists.wald.intevation.org/mailman/listinfo/gpg4win-users-en">Subscribe</a>
+  <p>Web Forums:<br>
+  <a href="http://wald.intevation.org/forum/forum.php?forum_id=21">Help</a>
+  | <a href="http://wald.intevation.org/forum/forum.php?forum_id=20">Discussion</a>
+  <p>Report Errors:<br>
+  <a
+  href="http://wald.intevation.org/tracker/?atid=126&group_id=11&func=browse">Bug Tracker</a>
+</div>
+<div class="box">
+  <h1>Developers</h1>
+  <a href="http://wald.intevation.org/projects/gpg4win/">Project Site</a>
+</div>
+<div class="box">
+  <h1>Related Projects</h1>
+  <a href="http://www.gnupg.org/">GnuPG</a><br>
+  <a href="http://www.stud.uni-hannover.de/~twoaday/winpt.html">WinPT</a><br>
+  <a href="http://claws.sylpheed.org/">Sylpheed Claws</a><br>
+  Foo Bar
+</div>

Deleted: trunk/doc/website/index.html
===================================================================
--- trunk/doc/website/index.html	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/index.html	2006-02-07 12:26:36 UTC (rev 134)
@@ -1,59 +0,0 @@
-<html>
-
-<h1>gpg4win: GnuPG for Windows</h1>
-
-(This is a preliminary version of the currently planned homepage
-of the gpg4win project)
-
-<p>
-<a href="http://wald.intevation.org/projects/gpg4win/">GForge gpg4win projekt page</a>
-
-<p>
-<a href="index.de.html">gpg4win Heimatseite in deutsch</a>
-
-<h2>About gpg4win</h2>
-
-The gpg4win project aims to provide and maintain a Windows-Installer
-for
-<a href="http://www.gnupg.org/">GnuPG</a> and
-related products
-(<a href="http://www.gnupg.org/(en)/related_software/gpa/index.html">GPA</a>,
-<a href="http://www.winpt.org">WinPT</a>,
-<a href="http://www.g10code.de/p-gpgol.html">GPGol</a>,
-<a href="http://claws.sylpheed.org">Sylpheed-Claws</a>,
-<a href="http://gpgee.excelcia.org/">GPGee</a>,
-<a href="http://eudoragpg.sourceforge.net/ver2.0/en/">EurdoraGPG</a>
-as well as documentation).
-
-<p>
-It is an international project. Apart from the english as default,
-currently german language is fully supported, maintainers for other languages are welcome.
-
-<p>
-The main difference compared to similar projects
-(<a href="http://www.gnupp.de/start.html">GnuPP</a> and
-<a href="http://sourceforge.net/projects/winpt">Windows Privacy Tools</a>) is
-that at first we developed the <b>gpg4win-Builder</b>.
-This one allows to very easily create new gpg4win.exe installers
-with updated components.
-This could even be done on a GNU/Linux system where almost
-all products are automatically cross-compiled.
-
-<p>
-With this approach we hope to avoid quick aging of installer packages
-as it happened in the past with the other approaches, because it is quite
-simple to create updates.
-
-<h2>Download gpg4win installation package</h2>
-
-Choose the newest version gpg4win-n.n.n.exe:
-
-<p>
-<a href="ftp://ftp.gpg4win.org/gpg4win/">ftp://ftp.gpg4win.org/gpg4win/</a>
-
-<p>
-Please subscribe to one of the
-<a href="http://wald.intevation.org/mail/?group_id=11">gpg4win mailing lists</a>
-and share your experiences, questions or problems.
-
-</html>

Added: trunk/doc/website/pix/disk.png
===================================================================
(Binary files differ)


Property changes on: trunk/doc/website/pix/disk.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/doc/website/pix/lock.png
===================================================================
(Binary files differ)


Property changes on: trunk/doc/website/pix/lock.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/doc/website/pix/logo.png
===================================================================
(Binary files differ)


Property changes on: trunk/doc/website/pix/logo.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/doc/website/template.m4
===================================================================
--- trunk/doc/website/template.m4	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/template.m4	2006-02-07 12:26:36 UTC (rev 134)
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+     "http://www.w3.org/TR/html4/strict.dtd">
+m4_dnl $Id: template.m4,v 1.3 2005/05/02 09:03:34 wilde Exp $
+
+m4_dnl ------------------------------------------------------------
+m4_dnl Macros to use in Pages
+
+m4_include(`versions.m4')
+
+m4_define(`LANG_LINK',`m4_ifdef(`$1',`$2',`<a href="$3">$2</a>')')
+m4_define(`I18N',`m4_ifdef(`$1',`$2')')
+
+m4_define(`PAGE_TITLE',`m4_define(`__TMPL_PAGE_TITLE',`$1')')
+m4_define(`PAGE_ROOT',`m4_define(`__TMPL_ROOT',`$1')')
+m4_define(`PAGE_START',`m4_include(`template_header.m4')')
+m4_define(`PAGE_BOXES',`m4_divert(1)</div><div id="boxes">')
\ No newline at end of file

Added: trunk/doc/website/template_header.m4
===================================================================
--- trunk/doc/website/template_header.m4	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/template_header.m4	2006-02-07 12:26:36 UTC (rev 134)
@@ -0,0 +1,42 @@
+m4_dnl -*-html-*-
+m4_dnl THIS IS INCLUDED BY `template.m4'
+m4_dnl DONT USE THIS FILE DIRECTLY
+m4_ifdef(`__TMPL_ROOT',,`m4_define(`__TMPL_ROOT',`')')
+<html>
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+    <link rel="stylesheet" type="text/css" href="__TMPL_ROOT`'gpg4win.css">
+    <title>gpg4win</title>
+  </head>
+  <body>
+    <table id="navbar"><tr>
+        <td style="text-align: left;">
+          <img src="pix/logo.png">
+        </td>
+        <td>
+          LANG_LINK(`EN',`english',`index.html') |
+          LANG_LINK(`DE',`deutsch',`index-de.html')
+        </td>
+    </table>
+    <table id="bigbar">
+      <tr><td id="vertable" style="white-space: nowrap;">
+m4_dnl -- English ------------------------------------------------------------
+      I18N(`EN',`<h1>GnuPG for Windows</h1>
+      Current Version: VERSION')
+m4_dnl -- Deutsch ------------------------------------------------------------
+      I18N(`DE',`<h1>GnuPG für Windows</h1>
+      Aktuelle Version: VERSION')
+            <br><span class="swlist">SOFTWARE</span>
+          </td>
+          <td class="center">
+            <a href="http://wald.intevation.org/frs/?group_id=11"
+               class="dlbutton">Download<br> 
+              <span class="version">gpg4win VERSION</span></a>
+      </td></tr>
+    </table>
+    <div id="main">
+m4_divert(999)
+    </div>
+  </body>
+</html>
+m4_divert

Added: trunk/doc/website/versions.m4
===================================================================
--- trunk/doc/website/versions.m4	2006-01-26 12:30:55 UTC (rev 133)
+++ trunk/doc/website/versions.m4	2006-02-07 12:26:36 UTC (rev 134)
@@ -0,0 +1,7 @@
+m4_define(`VERSION',`0.6.0')
+m4_define(`SOFTWARE',`
+WinPT 0.11.7
+GnuPG 1.4.2
+Einsteiger 2.0 deutsch
+GPGee 1.3.0
+GPGol 0.9.6')
\ No newline at end of file



More information about the Gpg4win-commits mailing list