From d7e5a71918c5e77d4c12f2e0ec351af7309b244c Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=A1bor=20K=C3=B6vesd=C3=A1n?= Date: Thu, 23 Aug 2012 16:51:34 +0000 Subject: [PATCH] - Remove the demo directory, it was just a glue to render the demo presentation in various formats. It is not really applicable any more. --- slides/demo/.gitignore | 3 - slides/demo/Makefile | 66 ------ slides/demo/README | 52 ----- slides/demo/browser/.gitignore | 3 - slides/demo/browser/Makefile | 6 - slides/demo/default/.gitignore | 2 - slides/demo/default/Makefile | 9 - slides/demo/frames1/.gitignore | 2 - slides/demo/frames1/Makefile | 8 - slides/demo/frames2/.gitignore | 2 - slides/demo/frames2/Makefile | 8 - slides/demo/frames3/.gitignore | 2 - slides/demo/frames3/Makefile | 8 - slides/demo/frames4/.gitignore | 2 - slides/demo/frames4/Makefile | 8 - slides/demo/frames5/.gitignore | 2 - slides/demo/frames5/Makefile | 8 - slides/demo/frames6/.gitignore | 2 - slides/demo/frames6/Makefile | 8 - slides/demo/frames7/.gitignore | 2 - slides/demo/frames7/Makefile | 8 - slides/demo/graphics/.gitignore | 3 - slides/demo/graphics/Makefile | 6 - slides/demo/graphics/active/.gitignore | 2 - slides/demo/graphics/inactive/.gitignore | 2 - slides/demo/graphics/toc/.gitignore | 2 - slides/demo/index.xml | 40 ---- slides/demo/plain/.gitignore | 2 - slides/demo/plain/Makefile | 9 - slides/demo/source/.gitignore | 1 - slides/demo/source/slides.xml | 259 ----------------------- slides/demo/tables/.gitignore | 2 - slides/demo/tables/Makefile | 9 - slides/demo/vslides/.gitignore | 2 - slides/demo/vslides/Makefile | 9 - slides/demo/w3c/.gitignore | 2 - slides/demo/w3c/Makefile | 9 - 37 files changed, 570 deletions(-) delete mode 100644 slides/demo/.gitignore delete mode 100644 slides/demo/Makefile delete mode 100644 slides/demo/README delete mode 100644 slides/demo/browser/.gitignore delete mode 100644 slides/demo/browser/Makefile delete mode 100644 slides/demo/default/.gitignore delete mode 100644 slides/demo/default/Makefile delete mode 100644 slides/demo/frames1/.gitignore delete mode 100644 slides/demo/frames1/Makefile delete mode 100644 slides/demo/frames2/.gitignore delete mode 100644 slides/demo/frames2/Makefile delete mode 100644 slides/demo/frames3/.gitignore delete mode 100644 slides/demo/frames3/Makefile delete mode 100644 slides/demo/frames4/.gitignore delete mode 100644 slides/demo/frames4/Makefile delete mode 100644 slides/demo/frames5/.gitignore delete mode 100644 slides/demo/frames5/Makefile delete mode 100644 slides/demo/frames6/.gitignore delete mode 100644 slides/demo/frames6/Makefile delete mode 100644 slides/demo/frames7/.gitignore delete mode 100644 slides/demo/frames7/Makefile delete mode 100644 slides/demo/graphics/.gitignore delete mode 100644 slides/demo/graphics/Makefile delete mode 100644 slides/demo/graphics/active/.gitignore delete mode 100644 slides/demo/graphics/inactive/.gitignore delete mode 100644 slides/demo/graphics/toc/.gitignore delete mode 100644 slides/demo/index.xml delete mode 100644 slides/demo/plain/.gitignore delete mode 100644 slides/demo/plain/Makefile delete mode 100644 slides/demo/source/.gitignore delete mode 100644 slides/demo/source/slides.xml delete mode 100644 slides/demo/tables/.gitignore delete mode 100644 slides/demo/tables/Makefile delete mode 100644 slides/demo/vslides/.gitignore delete mode 100644 slides/demo/vslides/Makefile delete mode 100644 slides/demo/w3c/.gitignore delete mode 100644 slides/demo/w3c/Makefile diff --git a/slides/demo/.gitignore b/slides/demo/.gitignore deleted file mode 100644 index b25e1a2f7..000000000 --- a/slides/demo/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -index.html -slides.pdf -ChangeLog diff --git a/slides/demo/Makefile b/slides/demo/Makefile deleted file mode 100644 index 98150a6b9..000000000 --- a/slides/demo/Makefile +++ /dev/null @@ -1,66 +0,0 @@ -include ../../buildtools/Makefile.incl - -VPATH=./source -FORMATTER=xep -FOSTYLE=../xsl/fo/plain.xsl -FO_OPTS= ulink.show=0 ulink.footnotes=1 draft.mode="no" -DOCSTYLE=http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl - -DIRS = browser graphics \ - default plain tables vslides w3c \ - frames1 frames2 frames3 frames4 frames5 frames6 frames7 - -all: index.html slides.pdf - for i in $(DIRS) __bogus__; do \ - if [ $$i != __bogus__ ] ; then \ - echo "$(MAKE) -C $$i"; $(MAKE) -C $$i; \ - fi \ - done - -index.html: index.xml - $(XSLT) $< $(DOCSTYLE) $@ - -%.fo : %.xml -ifeq ($(FORMATTER),tex) - $(XSLT) $< $(FOSTYLE) $@ $(FO_OPTS) passivetex.extensions=1 -else -ifeq ($(FORMATTER),fop) - $(XSLT) $< $(FOSTYLE) $@ $(FO_OPTS) fop.extensions=1 -else -ifeq ($(FORMATTER),xep) - $(XSLT) $< $(FOSTYLE) $@ $(FO_OPTS) xep.extensions=1 -else - $(XSLT) $< $(FOSTYLE) $@ $(FO_OPTS) -endif -endif -endif - -%.pdf : %.fo -ifeq ($(FORMATTER),tex) - pdftex "&pdfxmltex" $< - @if [ `grep Rerun $(basename $@).log | wc -l` -gt 0 ]; then \ - pdftex "&pdfxmltex" $< ; \ - fi - @if [ `grep Rerun $(basename $@).log | wc -l` -gt 0 ]; then \ - pdftex "&pdfxmltex" $< ; \ - fi -else -ifeq ($(FORMATTER),fop) - fop $< $@ -else -ifeq ($(FORMATTER),xep) - xep $< -else - echo How would you like me to make the PDF file? -endif -endif -endif - -clean: - for i in $(DIRS) __bogus__; do \ - if [ $$i != __bogus__ ] ; then \ - echo "$(MAKE) clean -C $$i"; $(MAKE) clean -C $$i; \ - fi \ - done - rm -f index.html - rm -f slides.pdf diff --git a/slides/demo/README b/slides/demo/README deleted file mode 100644 index c63aa4e68..000000000 --- a/slides/demo/README +++ /dev/null @@ -1,52 +0,0 @@ -README for DocBook Slides Demos - -These files demonstrate a variety of presentational styles that can be -achieved from a single Slides source document. - -For more information, see http://docbook.sourceforge.net/ - -Copyright ---------- - -Copyright (C) 1999-2004 Norman Walsh - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the ``Software''), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -Except as contained in this notice, the names of individuals -credited with contribution to this software shall not be used in -advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization -from the individuals in question. - -Any stylesheet derived from this Software that is publically -distributed will be identified with a different name and the -version strings in any derived Software will be changed so that -no possibility of confusion between the derived package and this -Software will exist. - -Warranty --------- - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER -CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -Contacting the Author ---------------------- - -These stylesheets are maintained by Norman Walsh, . diff --git a/slides/demo/browser/.gitignore b/slides/demo/browser/.gitignore deleted file mode 100644 index a6f016d5b..000000000 --- a/slides/demo/browser/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -*.js -*.css -ChangeLog diff --git a/slides/demo/browser/Makefile b/slides/demo/browser/Makefile deleted file mode 100644 index 265eac5a3..000000000 --- a/slides/demo/browser/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -all: - cp ../../browser/*.css ../../browser/*.js . - -clean: - rm -f *.css *.js - diff --git a/slides/demo/default/.gitignore b/slides/demo/default/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/default/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/default/Makefile b/slides/demo/default/Makefile deleted file mode 100644 index 4ebea4dd3..000000000 --- a/slides/demo/default/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -index.html: ../../xsl/html/default.xsl - - $(XSLT) $(SLIDES) $< - -clean: - rm -f *.html diff --git a/slides/demo/frames1/.gitignore b/slides/demo/frames1/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/frames1/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/frames1/Makefile b/slides/demo/frames1/Makefile deleted file mode 100644 index e8d25a286..000000000 --- a/slides/demo/frames1/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -toc.html: - $(XSLT) $(SLIDES) ../../xsl/html/frames.xsl - overlay=0 multiframe=0 dynamic.toc=0 active.toc=0 - -clean: - rm -f *.html diff --git a/slides/demo/frames2/.gitignore b/slides/demo/frames2/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/frames2/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/frames2/Makefile b/slides/demo/frames2/Makefile deleted file mode 100644 index 0262d1b8e..000000000 --- a/slides/demo/frames2/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -toc.html: - $(XSLT) $(SLIDES) ../../xsl/html/frames.xsl - overlay=1 multiframe=0 dynamic.toc=0 active.toc=0 - -clean: - rm -f *.html diff --git a/slides/demo/frames3/.gitignore b/slides/demo/frames3/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/frames3/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/frames3/Makefile b/slides/demo/frames3/Makefile deleted file mode 100644 index 4adfbaa3d..000000000 --- a/slides/demo/frames3/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -toc.html: - $(XSLT) $(SLIDES) ../../xsl/html/frames.xsl - overlay=0 multiframe=1 dynamic.toc=0 active.toc=0 - -clean: - rm -f *.html diff --git a/slides/demo/frames4/.gitignore b/slides/demo/frames4/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/frames4/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/frames4/Makefile b/slides/demo/frames4/Makefile deleted file mode 100644 index 830c3956b..000000000 --- a/slides/demo/frames4/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -toc.html: - $(XSLT) $(SLIDES) ../../xsl/html/frames.xsl - overlay=0 multiframe=0 dynamic.toc=1 active.toc=0 - -clean: - rm -f *.html diff --git a/slides/demo/frames5/.gitignore b/slides/demo/frames5/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/frames5/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/frames5/Makefile b/slides/demo/frames5/Makefile deleted file mode 100644 index cf04ba3cd..000000000 --- a/slides/demo/frames5/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -toc.html: - $(XSLT) $(SLIDES) ../../xsl/html/frames.xsl - overlay=0 multiframe=0 dynamic.toc=0 active.toc=1 - -clean: - rm -f *.html diff --git a/slides/demo/frames6/.gitignore b/slides/demo/frames6/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/frames6/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/frames6/Makefile b/slides/demo/frames6/Makefile deleted file mode 100644 index 67ec4f430..000000000 --- a/slides/demo/frames6/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -toc.html: - $(XSLT) $(SLIDES) ../../xsl/html/frames.xsl - overlay=1 multiframe=0 dynamic.toc=1 active.toc=1 - -clean: - rm -f *.html diff --git a/slides/demo/frames7/.gitignore b/slides/demo/frames7/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/frames7/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/frames7/Makefile b/slides/demo/frames7/Makefile deleted file mode 100644 index 0c0a0ef08..000000000 --- a/slides/demo/frames7/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -toc.html: - $(XSLT) $(SLIDES) ../../xsl/html/frames.xsl - overlay=0 multiframe=1 dynamic.toc=1 active.toc=1 - -clean: - rm -f *.html diff --git a/slides/demo/graphics/.gitignore b/slides/demo/graphics/.gitignore deleted file mode 100644 index 08ccb8a3b..000000000 --- a/slides/demo/graphics/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -*.gif -*.png -ChangeLog diff --git a/slides/demo/graphics/Makefile b/slides/demo/graphics/Makefile deleted file mode 100644 index b51f4216b..000000000 --- a/slides/demo/graphics/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -all: - cd ../../graphics && tar cf - `find . -type f -name "*.gif" -o -name "*.png"` | (cd ../demo/graphics; tar xf -) - -clean: - find . -name "*.gif" -exec rm {} \; - find . -name "*.png" -exec rm {} \; diff --git a/slides/demo/graphics/active/.gitignore b/slides/demo/graphics/active/.gitignore deleted file mode 100644 index 5abb12b45..000000000 --- a/slides/demo/graphics/active/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.png -ChangeLog diff --git a/slides/demo/graphics/inactive/.gitignore b/slides/demo/graphics/inactive/.gitignore deleted file mode 100644 index 5abb12b45..000000000 --- a/slides/demo/graphics/inactive/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.png -ChangeLog diff --git a/slides/demo/graphics/toc/.gitignore b/slides/demo/graphics/toc/.gitignore deleted file mode 100644 index 5abb12b45..000000000 --- a/slides/demo/graphics/toc/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.png -ChangeLog diff --git a/slides/demo/index.xml b/slides/demo/index.xml deleted file mode 100644 index c89a957c6..000000000 --- a/slides/demo/index.xml +++ /dev/null @@ -1,40 +0,0 @@ -
- Slides Demos - - There are 12 online HTML versions of the slides presentation, - and one PDF version. - - - HTML output - default, a - simple presentation - plain, a - simple presentation - tables, - uses a table for the ToC on each page - vslides, - uses a vertical navigation style - w3c, uses a - style like the W3C "talk" style - frames1, - uses frames - frames2, - uses frames and JavaScript - frames3, - uses multiple frames - frames4, - uses frames and JavaScript - frames5, - uses frames and JavaScript - frames6, - uses frames and JavaScript - frames7, - uses frames and JavaScript - - - PDF output - slides.pdf. - no special options - -
- diff --git a/slides/demo/plain/.gitignore b/slides/demo/plain/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/plain/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/plain/Makefile b/slides/demo/plain/Makefile deleted file mode 100644 index d86423254..000000000 --- a/slides/demo/plain/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -index.html: ../../xsl/html/plain.xsl - - $(XSLT) $(SLIDES) $< - -clean: - rm -f *.html diff --git a/slides/demo/source/.gitignore b/slides/demo/source/.gitignore deleted file mode 100644 index 56631abf1..000000000 --- a/slides/demo/source/.gitignore +++ /dev/null @@ -1 +0,0 @@ -ChangeLog diff --git a/slides/demo/source/slides.xml b/slides/demo/source/slides.xml deleted file mode 100644 index e41947307..000000000 --- a/slides/demo/source/slides.xml +++ /dev/null @@ -1,259 +0,0 @@ - - - - - - - The Slides Document Type - Slides - NormanWalsh - Friday, 19 Dec 2003 - 3.3.0 - 20022003 - Norman Walsh - - -Introduction -This is the introductory slide. -If you use foil groups (previously called sections), you can -have introductory slides before the first group. -Note: Bugs in some versions of Mozilla and IE prevent the XHTML -version of slides from working correctly in those browsers. -See the report for more -details. - - -Purpose and History - -Groups can now have introductory text as well. - -What Are Slides? - -An XML presentation tool - -Suitable for HTML or PDF presentations - -Supported by Open Source software - - - - -Where Do They Come From? - - -Maintained by the DocBook -Open Repository Project at -SourceForge - -Customization layer of -Simplified DocBook - - - - -Why? - - -So Norm could give presentations - -So Norm could publish those presentations on the web - -So Norm could have accessible presentations -that didn't rely on the grotesque HTML output of some otherwise bloated, proprietary -tool - -So Norm could cut-and-paste from his DocBook articles and papers -directly into his slides - -Oh, let's face it: because it was there. Like the proverbial mountain. - - - - - -Authoring - -How to write a presentation. - -Minimal Presentation - -The smallest possible presentation looks like this: - - - - - -Presentation Title - -Foil Title -Foil content - -]]> - -Every presentation must contain at least one slide. - - -Presentation Metadata - -Presentations usually have more metadata in the slidesinfo -wrapper. Here's a typical example: - - - Supporting Localized Generated Text - Generated Text - NormanWalsh - Sunday, 08 Apr 2001 - - XSLTUK-01 - 08 Apr - 09 Apr 2001 - Keble College, Oxford, UK - 1 - - Version TEST - 2001 - Sun Microsystems, Inc. -]]> - - -Presentation Content - -It's common for individual slides to consist of a single -bulleted or numbered list. However, the full range of block -level Simplified DocBook elements are available. - - - - -Styling - -How to transform a presentation. - -HTML - -There are a lot of HTML options. When you publish your -presentation on the web, it's probably best to use one of the simpler, -more accessible styles. For your actual live presentation, you may -want to choose something fancier. - - - -Plain HTML - - -default.xsl -and -plain.xsl -produce fairly simple presentations - -tables.xsl -uses a table to show the navigation context (somewhat like the tabular -Website style) - -vslides.xsl -places navigation on the left side instead of the top and bottom - -w3c.xsl -produces slides that resemble the format used by the W3C for presentations - - - - - -Fancy HTML - - -frames.xsl -uses frames. There are several options that you can apply: - - -overlay uses CSS absolute positioning -to keep the navigation static on the pages (only works on recent browsers) - -multiframe uses additional frames -to keep the navigation static on the pages - - - -dynamic.toc uses -JavaScript to make the table of context active so that -you can open and close the foil groups (only works on recent browsers) - - - -active.toc uses -JavaScript to keep the table of contents and the current slide in sync -(only works on recent browsers) - - -These toc styles can be combined with -overlay or multiframe - - - - - - -PDF - -The fo-plain.xsl stylesheet produces XSL Formatting -Objects that can subsequently be turned into PDF. - - - - - -Presentation - -How to customize and present a set of slides. - -Look And Feel - -For HTML display, most of the actual -look-and-feel of the presentation is controlled by the CSS -stylesheet(s) used. - - - -Presentation Tips - - -It's usually best if each slide is only one page (avoid scrolling). - -If you'll be giving your presentation with a projector, make sure you -know what resolution you'll have available and test your presentation at that resolution. - -Make your fonts bigger so the folks in the back of the room can read -your slides. - -Test the equipment before your presentation begins. Really. - -Speak more slowly. I always forget that one. - - - - - - -Conclusions - -Conclusions - -It's customary to have a conclusions slide. - - - -References - -References are a good idea too. - - - -Q&A - -Any questions? - - - - - diff --git a/slides/demo/tables/.gitignore b/slides/demo/tables/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/tables/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/tables/Makefile b/slides/demo/tables/Makefile deleted file mode 100644 index 7f9eb674b..000000000 --- a/slides/demo/tables/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -index.html: ../../xsl/html/tables.xsl - - $(XSLT) $(SLIDES) $< - -clean: - rm -f *.html diff --git a/slides/demo/vslides/.gitignore b/slides/demo/vslides/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/vslides/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/vslides/Makefile b/slides/demo/vslides/Makefile deleted file mode 100644 index f9c981a50..000000000 --- a/slides/demo/vslides/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -index.html: ../../xsl/html/vslides.xsl - - $(XSLT) $(SLIDES) $< - -clean: - rm -f *.html diff --git a/slides/demo/w3c/.gitignore b/slides/demo/w3c/.gitignore deleted file mode 100644 index e7eb98bfb..000000000 --- a/slides/demo/w3c/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -ChangeLog diff --git a/slides/demo/w3c/Makefile b/slides/demo/w3c/Makefile deleted file mode 100644 index a8f61c7c9..000000000 --- a/slides/demo/w3c/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -include ../../../buildtools/Makefile.incl -SLIDES=../source/slides.xml - -index.html: ../../xsl/html/w3c.xsl - - $(XSLT) $(SLIDES) $< - -clean: - rm -f *.html -- 2.40.0