From 0ef0c2f9551158b947bca8f06a64124bbaa8d5c1 Mon Sep 17 00:00:00 2001 From: treacy <> Date: Thu, 23 Sep 1999 03:40:44 +0000 Subject: [PATCH] files added for using wml. Just type make and all the .wml files will be converted to .html --- web/.wmlrc | 11 + web/Make.common | 68 +++ web/Make.dep.generic | 2 + web/Make.dep.templ | 20 + web/Make.lang | 21 + web/Makefile | 16 + web/searchform.html | 591 ++++++++++--------- web/searchhelp.html | 68 ++- web/searchresults.html | 73 ++- web/template/debian/basic.wml | 89 +++ web/template/debian/common_translation.wml | 358 +++++++++++ web/template/debian/countries.wml | 595 +++++++++++++++++++ web/template/debian/ctime.wml | 119 ++++ web/template/debian/fixes_link.wml | 229 ++++++++ web/template/debian/footer.wml | 113 ++++ web/template/debian/language_names.wml | 306 ++++++++++ web/template/debian/languages.wml | 111 ++++ web/template/debian/mainpage.wml | 2 + web/template/debian/menubar.wml | 457 +++++++++++++++ web/template/debian/navbar.wml | 45 ++ web/template/debian/recent_list.wml | 134 +++++ web/template/debian/template.wml | 19 + web/update.html | 651 +++++++++++---------- 23 files changed, 3500 insertions(+), 598 deletions(-) create mode 100644 web/.wmlrc create mode 100644 web/Make.common create mode 100644 web/Make.dep.generic create mode 100644 web/Make.dep.templ create mode 100644 web/Make.lang create mode 100644 web/Makefile create mode 100644 web/template/debian/basic.wml create mode 100644 web/template/debian/common_translation.wml create mode 100644 web/template/debian/countries.wml create mode 100644 web/template/debian/ctime.wml create mode 100644 web/template/debian/fixes_link.wml create mode 100644 web/template/debian/footer.wml create mode 100644 web/template/debian/language_names.wml create mode 100644 web/template/debian/languages.wml create mode 100644 web/template/debian/mainpage.wml create mode 100644 web/template/debian/menubar.wml create mode 100644 web/template/debian/navbar.wml create mode 100644 web/template/debian/recent_list.wml create mode 100644 web/template/debian/template.wml diff --git a/web/.wmlrc b/web/.wmlrc new file mode 100644 index 0000000..6987c85 --- /dev/null +++ b/web/.wmlrc @@ -0,0 +1,11 @@ +-D WML_SRC_REALNAME="Debian Webmaster" +-D WML_SRC_USERNAME=webmaster +-D WML_GEN_HOSTNAME=debian.org +-D HOME~. +-D ENGLISHDIR~../english +-D CUR_LANG=English +-D CUR_ISO_LANG=en +-D PICS~Pics +-D HTMLDIR~. +-D CHARSET=iso-8859-1 +-I template diff --git a/web/Make.common b/web/Make.common new file mode 100644 index 0000000..550686f --- /dev/null +++ b/web/Make.common @@ -0,0 +1,68 @@ +# Nothing in here should require any modification +# If you feel you need to modify something send mail +# to debian-www explaining why so that others can benefit +# from your improvements + +RELHTMLBASE=. +RELTEMPLDIR=template/debian + +HTMLDIR=$(WMLBASE)/$(RELHTMLBASE)/$(CUR_DIR) +TEMPLDIR=$(WMLBASE)/$(RELTEMPLDIR) +# Do Not modify the following line +ENGLISHSRCDIR=$(WMLBASE) + +WMLFILES := $(wildcard *.wml) +# HTMLFILES := $(patsubst %.wml,%.$(LANGUAGE).html,$(WMLFILES)) +HTMLFILES := $(patsubst %.wml,%.html,$(WMLFILES)) +HTMLDESTFILES := $(patsubst %.wml,$(HTMLDIR)/%.$(LANGUAGE).html,$(WMLFILES)) +JPGSOURCE := $(wildcard *.jpg) +JPGDESTFILES := $(patsubst %,$(HTMLDIR)/%,$(JPGSOURCE)) +GIFSOURCE := $(wildcard *.gif) +GIFDESTFILES := $(patsubst %,$(HTMLDIR)/%,$(GIFSOURCE)) +PNGSOURCE := $(wildcard *.png) +PNGDESTFILES := $(patsubst %,$(HTMLDIR)/%,$(PNGSOURCE)) +IMGFILES := $(JPGSOURCE) $(GIFSOURCE) $(PNGSOURCE) +IMGDESTFILES := $(JPGDESTFILES) $(GIFDESTFILES) $(PNGDESTFILES) + +all:: $(HTMLFILES) + @for i in $(SUBS) ''; do \ + if [ -d "$$i" ]; then \ + $(MAKE) -C $$i ; \ + fi ; \ + done + +#install:: +# -install -d $(HTMLDIR) +#install:: $(HTMLDESTFILES) $(IMGDESTFILES) +# @for i in $(SUBS) ''; do \ +# if [ -d "$$i" ]; then \ +# $(MAKE) -C $$i install; \ +# fi ; \ +# done + +clean:: + -rm -f *.$(LANGUAGE).html + @for i in $(SUBS) ''; do \ + if [ -d "$$i" ]; then \ + $(MAKE) -C $$i clean; \ + fi ; \ + done + +cleandest:: + -rm -f $(HTMLDIR)/*.$(LANGUAGE).html + @for i in $(SUBS) ''; do \ + if [ -d "$$i" ]; then \ + $(MAKE) -C $$i cleandest; \ + fi ; \ + done + +#$(HTMLDIR)/%.$(LANGUAGE).html: %.$(LANGUAGE).html +# @echo copying $(@F) to $(HTMLDIR) +# -@cp $(@F) $(HTMLDIR) +#ifeq ($(LANGUAGE),en) +# @echo making a link $(@D)/$(*F).html -\> $(@F) +# -@ln -f -s $(@F) $(@D)/$(*F).html +#endif + +#$(IMGDESTFILES): $(IMGFILES) +# cp $(@F) $(HTMLDIR) diff --git a/web/Make.dep.generic b/web/Make.dep.generic new file mode 100644 index 0000000..0fc5148 --- /dev/null +++ b/web/Make.dep.generic @@ -0,0 +1,2 @@ +%.html : %.wml $(TEMPLDIR)/template.wml $(TEMPLDIR)/languages.wml + $(WML) $(" \ +# --epilog="/usr/bin/tcs > $(@D)/$(@F)" \ +# -o $(@F) +# If you use --epilog as above, then you will want to add a line to +# Make.templ.inc to remove $(@F) after WML is done. +WMLOPTIONS=-q +WMLOUTFILE=$(@F) +WMLPROLOG= +WMLEPILOG= +WML=wml $(WMLOPTIONS) -o UNDEFu$(LANGUAGECAP):$(WMLOUTFILE) $(WMLPROLOG) $(WMLEPILOG) + diff --git a/web/Makefile b/web/Makefile new file mode 100644 index 0000000..011421b --- /dev/null +++ b/web/Makefile @@ -0,0 +1,16 @@ +# This Makefile should need no changes from webwml/english/Makefile +# Please send a message to debian-www if you need to modify anything +# so the problem can be fixed. + +WMLBASE=. +CUR_DIR= +# list any subdirectories in the following variable. Any directories listed +# must exist or the make will not work +SUBS= + +include $(WMLBASE)/Make.lang +include $(WMLBASE)/Make.common + +include $(WMLBASE)/Make.dep.generic +include $(WMLBASE)/Make.dep.templ + diff --git a/web/searchform.html b/web/searchform.html index f9d57ec..b19356b 100644 --- a/web/searchform.html +++ b/web/searchform.html @@ -1,277 +1,330 @@ -debian.org Developers LDAP Search - -

-
- - - -
Debian Developers Database Search + + + +Debian GNU/Linux -- debian.org Developers LDAP Search + + + + + + + + + + + + + + + + + +
+ +Debian Project +
+Home +About Debian +News +Distribution +Support +Developers' Corner +Search +
+

debian.org Developers LDAP Search

+

+ + + + + - - - - - - + + + + + - - +
Debian Developers Database Search
(any field can be left blank....)
Help on searching
First name: -Fuzzy search
Last name: -Fuzzy search
login: -Fuzzy search
IRC nickname: -Fuzzy search
PGP/GPG fingerprint: -Fuzzy search
country: -
First name: +Fuzzy search
Last name: +Fuzzy search
login: +Fuzzy search
IRC nickname: +Fuzzy search
PGP/GPG fingerprint: +Fuzzy search
country: +
On vacation
- +
On vacation
+
Login (registered developers only) - +
+
+

Back to the Debian Project homepage. +


+See the Debian contact page for information on contacting us. + + + + + + + + + + +

+Last Modified: Thu, Sep 23 03:53:03 UTC 1999
+Copyright © 1997-1999 SPI; See license terms + +
+ + diff --git a/web/searchhelp.html b/web/searchhelp.html index 1167078..2002b64 100644 --- a/web/searchhelp.html +++ b/web/searchhelp.html @@ -1,18 +1,68 @@ -debian.org Developers Online Database - -

- + + + +Debian GNU/Linux -- debian.org Developers Online Database + + + + + + + + + + +
+ + + + + + +
+ +Debian Project +
+Home +About Debian +News +Distribution +Support +Developers' Corner +Search +
+

debian.org Developers Online Database

+
+

To look up information about Debian developers, enter your search criteria in the form. Results are returned which match all of the search criteria. Wildcards may be used. For example, entering *de* in the last name field will return all developers whose surname contains the substring de. Matches are case-insensitive, and all searching criteria that -are left empty will be ignored. Selecting the "fuzzy search" option will turn +are left empty will be ignored. Selecting the "fuzzy search" option will turn on approximate searching.

- The "On vacation" field will return all developers who have left a vacation message.

- -

- +
+
+

Back to the Debian Project homepage. +


+See the Debian contact page for information on contacting us. + + + + + + + + + + +

+Last Modified: Thu, Sep 23 03:53:03 UTC 1999
+Copyright © 1997-1999 SPI; See license terms + +
+ + diff --git a/web/searchresults.html b/web/searchresults.html index daec13d..488e006 100644 --- a/web/searchresults.html +++ b/web/searchresults.html @@ -1,17 +1,47 @@ + + + +Debian GNU/Linux -- debian.org Developers LDAP Search Results + + + + + + + + + + + + + + + + + +
+ +Debian Project +
+Home +About Debian +News +Distribution +Support +Developers' Corner +Search +
+

debian.org Developers LDAP Search Results

-Search results - -

- +

Logout | ?> Login (developers only) | ?> Search again



-

Number of entries matched: ~count~

-
- +

Number of entries matched: ~count~

+
- + - -
+

-

+

Logout | ?> Login (developers only) | ?> Search again



- +
+

Back to the Debian Project homepage. +


+See the Debian contact page for information on contacting us. + + + + + + + + + + +

+Last Modified: Thu, Sep 23 03:53:03 UTC 1999
+Copyright © 1997-1999 SPI; See license terms + +
+ + diff --git a/web/template/debian/basic.wml b/web/template/debian/basic.wml new file mode 100644 index 0000000..02d2a3a --- /dev/null +++ b/web/template/debian/basic.wml @@ -0,0 +1,89 @@ +#use wml::std::tags +#use wml::std::info +#use wml::std::box + + +[EN:Debian GNU/Linux is a free distribution of the GNU/Linux operating system. \ +It is maintained and updated through the work of many users who volunteer their time and effort.:] +[FI:Debian GNU/Linux on GNU/Linux-käyttöjärjestelmän vapaa levitysversio. Sitä +ylläpitää ja uudistaa joukko vapaaehtoisia käyttäjiä.:] +[PT: Debian GNU/Linux é uma distribuição livre do sistema operacional GNU/Linux. Ela é mantida e atualizada através do trabalho de muitos usuários que doam seu tempo e esforço como voluntários.:] +[HR:Debian GNU/Linux je besplatna distribucija operativnog sustava GNU/Linux. \ +Odr¾ava se i osvje¾ava radom mnogih korisnika koji mu poklanjaju svoje vrijeme i napore.:] +[DE:Debian GNU/Linux ist eine freie Distribution des GNU/Linux-Betriebssyst \ +ems. Es wird ausschliesslich von vielen Freiwilligen gewartet und aktuell gehalten.:] +[FR:Debian GNU/Linux est une distribution libre du système d'exploitation GNU /Linux. Elle est \ +développée et mise à jour grâce au travail de nombreux utilisateurs qui offrent leurs \ +temps et leurs efforts.:] +[DE:Debian GNU/Linux ist eine freie Distribution des GNU/Linux-Betriebssystems. \ +Es wird ausschliesslich von vielen Freiwilligen gewartet und aktuell gehalten.:] +[IT:Debian GNU/Linux is a free distribution of the GNU/Linux operating system. \ +It is maintained and updated through the work of many users who volunteer their time and effort.:] +[JA:Debian GNU/Linux is a free distribution of the GNU/Linux operating system. \ +It is maintained and updated through the work of many users who volunteer their time and effort.:] +[PL:Debian GNU/Linux jest darmow± dystrybucj± systemu operacyjnego GNU/Linux. Opiekuje \ +siê ni± wielu u¿ytkowników, którzy po¶wiêcaj± jej swój czas i wysi³ek.:] +[ES:Debian GNU/Linux es una distribución libre del sistema operativo GNU/Linux. Es mantenida \ +y actualizada a través de la red por muchos usuarios que contribuyen con su tiempo y esfuerzo.:] +[DA:Debian GNU/Linux er en fri distribution af GNU/Linux styresystemet. \ +Den vedligeholdes og opdateres af frivillige brugere, der bruger arbejde, tid og energi.:] +[NO:Debian GNU/Linux er en fri distribusjon av operativsystemet GNU/Linux. \ +Det vedlikeholdes og oppdateres av frivillige brukere som donerer tid og arbeid.:] +[ZH:Debian GNU/Linux is a free distribution of the GNU/Linux operating system. \ +It is maintained and updated through the work of many users who volunteer their time and effort.:] +[SV:Debian GNU/Linux är en fri distribution av operativsystemet GNU/Linux. \ +Det underhålls och uppdateras av frivilliga användare, vilka lägger ner arbete, tid och energi.:] +[KO:Debian GNU/Linux is a free distribution of the GNU/Linux operating system. \ +It is maintained and updated through the work of many users who volunteer their time and effort.:] +[TR:Debian GNU/Linux, GNU/Linux i$letim sisteminin, Ucretsiz bir dagitimidir. \ +Zamanini ve gucunu gonullu olarak veren bir cok kullanici tarafindan korunmakta ve +guncelle$tirilmektedir.:] + + + [EN:debian, GNU, linux, unix, open source, free, DFSG:] + [FI:debian, GNU, linux, unix, open source, vapaa, DFSG:] + [PT:debian, GNU, linux, unix, open source, free, DFSG:] + [HR:debian, GNU, linux, unix, open source, free, DFSG:] + [FR:debian, GNU, linux, unix, open source, libre, DFSG:] + [DE:debian, GNU, linux, unix, open source, frei, DFSG:] + [IT:debian, GNU, linux, unix, open source, free, DFSG:] + [JA:debian, GNU, linux, unix, open source, free, DFSG:] + [PL:debian, GNU, linux, unix, otwarte ¼ród³a, darmowy, DFSG:] + [ES:debian, GNU, linux, unix, open source, libre, DFSG:] + [DA:debian, GNU, linux, unix, open source, libre, DFSG:] + [ZH:debian, GNU, linux, unix, ¶}©ñ·½½X, ¦Û¥Ñ, DFSG:] + [SV:debian, GNU, linux, unix, open source, fritt, DFSG:] + [KO:debian, GNU, linux, unix, open source, free, DFSG:] + [TR:debian, GNU, linux, unix, open source, free, DFSG:] + + +# DO NOT translate anything below here. If you feel something needs to be changed, write to +# debian-www first + + + +{: [[s/—/--/g]] [[s/–/-/g]] [[s/&[lr]dquo;/"/g]] [[s/‘/`/g]] [[s/’/'/g]] + + +$(BARETITLE:*Debian GNU/Linux -- )$(title) + + + + + + +<