From 2b068848691202d26100cdf75c62c460313983ec Mon Sep 17 00:00:00 2001 From: reinelt <> Date: Fri, 6 May 2005 05:36:59 +0000 Subject: [lcd4linux @ 2005-05-06 05:36:58 by reinelt] removed documentation again :-( --- documentation/Makefile | 32 ------------- documentation/Makefile.generic | 59 ----------------------- documentation/data/doc.css | 82 -------------------------------- documentation/data/images/note-icon.png | Bin 2288 -> 0 bytes documentation/data/images/warn-icon.png | Bin 2592 -> 0 bytes documentation/data/references.xml | 65 ------------------------- 6 files changed, 238 deletions(-) delete mode 100644 documentation/Makefile delete mode 100644 documentation/Makefile.generic delete mode 100644 documentation/data/doc.css delete mode 100644 documentation/data/images/note-icon.png delete mode 100644 documentation/data/images/warn-icon.png delete mode 100644 documentation/data/references.xml diff --git a/documentation/Makefile b/documentation/Makefile deleted file mode 100644 index 47425e4..0000000 --- a/documentation/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -REP= lcd4linux drivers plugins - -default: makefiles html - true - -makefiles: - @for i in $(REP) ; do \ - (cd $$i && ln -sf ../Makefile.generic Makefile) ; \ - done - -cleanmakefiles: - @for i in $(REP) ; do \ - rm -f $$i/Makefile ; \ - done - -totalclean: - @for i in $(REP) ; do \ - (cd $$i && make clean ; rm Makefile) ; \ - done - rm -rf HTML - -#catalog: catalogue.xml xsl/catalogue.xsl -# test -d catalog || mkdir catalog -# xsltproc --param dir \'$(PWD)\' \ -# --param odir \'$(PWD)/catalog\' \ -# xsl/catalogue.xsl catalogue.xml >catalog/index.html -# cp charte/default/default.css catalog/ - -%: - @for i in $(REP) ; do \ - (cd $$i && make $@) ; \ - done diff --git a/documentation/Makefile.generic b/documentation/Makefile.generic deleted file mode 100644 index 2519f22..0000000 --- a/documentation/Makefile.generic +++ /dev/null @@ -1,59 +0,0 @@ -# Path -DIR = $(notdir $(PWD)) -OUTPUT = ../HTML - -ifeq "$(DIR)" "lcd4linux" - DIR = -endif - -ifeq "$(DIR)" "" - XSLTPROC = xsltproc -else - XSLTPROC = xsltproc --stringparam class $(DIR) --stringparam root "../" -endif - -XMLVALID = xmllint --noout --valid - -NAMES=$(shell find . -name "*.xml" -exec basename {} .xml \;) - -html: $(patsubst %.xml,%.html,$(wildcard *.xml)) -html-forced: $(patsubst %.xml,%.html-forced,$(wildcard *.xml)) - -%.html: %.xml %.xml-check output - $(XSLTPROC) $< > $(OUTPUT)/$(DIR)/$@ - -%.html-forced: %.xml output - $(XSLTPROC) $< > $(OUTPUT)/$(DIR)/$(patsubst %.xml,%.html,$<) - -check: $(patsubst %.xml, %.xml-check, $(wildcard *.xml)) - -%.xml-check: %.xml - @echo "*** Validation of $<" - $(XMLVALID) $< - -output: - test -d $(OUTPUT) || `mkdir $(OUTPUT); cp ../data/doc.css $(OUTPUT); cp -R ../data/images $(OUTPUT)` - test -d $(OUTPUT)/$(DIR) || mkdir $(OUTPUT)/$(DIR) - -clean: - rm -f $(OUTPUT)/$(DIR)/*.html - -clean-bak: - rm -f *~ *.bak - -help: - @echo -e "" - @echo -e "Usage :" - @echo -e "-------" - @echo -e "make or make html : builds all possible html pages from xml files" - @echo -e "make %.html : builds the %.html page from %.xml" - @echo -e "" - @echo -e "make html-forced : builds all possible html pages from xml files (no validity check)" - @echo -e "make %.html-forced : builds the %.html page from %.xml (no validity check)" - @echo -e "" - @echo -e "make check : checks the validity of all possible xml files" - @echo -e "make %.xml-check : checks the validity of %.xml" - @echo -e "" - @echo -e "make clean : deletes all generated html pages" - @echo -e "make clean-bak : deletes *~ and *.bak files" - @echo -e "" diff --git a/documentation/data/doc.css b/documentation/data/doc.css deleted file mode 100644 index 8a06636..0000000 --- a/documentation/data/doc.css +++ /dev/null @@ -1,82 +0,0 @@ -body { - margin: 0 10px 10px 10px; - padding: 0; -} - -h1 { - margin-left: -10px; - margin-top: 5px; - text-align: center; - border-bottom: 2px groove black; -} - -div.links { - float: right; - margin-left: 10px; - margin-top: 1em; - padding: 0 10px 0px 10px; - text-align: center; - border: 1px solid black; - background: white; -} div.links div.title { - background: white; - margin: -0.5em 10px 5px 10px; - padding: 0 10px; - float: center; - border: 1px solid black; -} div.links div.index { - position: relative; - bottom: 0; - left: -5px; - margin-top: 4px; - text-align: left; -} div.links a { - color: black; - /*text-decoration: none;*/ -} - -div.cmd { - background: #000; - border: 1px solid #ddd; - font-family: monospace,fixed; - font-style: bold; - color: #fff; - white-space: pre; - font-size: 12px; - padding: 5px; - margin: 5px; -} - -div.conf { - background: #eee; - border: 1px solid #111; - font-family: monospace,fixed; - white-space: pre; - font-size: 12px; - padding: 5px; - margin: 5px; -} - -div.warn { - margin-top: 20px; - border: 2px solid #700000; - margin-left: 20px; - padding-left: 5px; - width: auto; - min-height: 30px; -} - -div.note { - margin-top: 20px; - border: 2px solid #43607e; - margin-left: 20px; - padding-left: 5px; - width: auto; - min-height: 30px; -} - -img.icon { - float: left; - margin-left: -14px; - margin-top: -20px; -} diff --git a/documentation/data/images/note-icon.png b/documentation/data/images/note-icon.png deleted file mode 100644 index 33aa88b..0000000 Binary files a/documentation/data/images/note-icon.png and /dev/null differ diff --git a/documentation/data/images/warn-icon.png b/documentation/data/images/warn-icon.png deleted file mode 100644 index 2e1a2a3..0000000 Binary files a/documentation/data/images/warn-icon.png and /dev/null differ diff --git a/documentation/data/references.xml b/documentation/data/references.xml deleted file mode 100644 index 793dd2a..0000000 --- a/documentation/data/references.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - index - - - - - - overview - - - - - bug_report - - - - - contact - - - - - write_doc - - - - - - example - - - - - - drivers - index - - - - - drivers - hd44780 - - - - - - plugins - index - - - - - plugins - i2c_sensors - - - - -- cgit v1.2.3