[cairo-commit] svgslides/example .cvsignore, 1.1, 1.2 Makefile, 1.1, 1.2 example.xml, NONE, 1.1 test.xml, 1.16, NONE

Carl Worth commit at pdx.freedesktop.org
Sun Apr 17 22:34:44 PDT 2005


Committed by: cworth

Update of /cvs/cairo/svgslides/example
In directory gabe:/tmp/cvs-serv1460/example

Modified Files:
	.cvsignore Makefile 
Added Files:
	example.xml 
Removed Files:
	test.xml 
Log Message:

        * test/test.xml: Fix missing closing tag.

        * configure.in:
        * src/Makefile.am: Install an svgslides symlink pointing to
        svgslides-4suite.

        * example/.cvsignore: Ignore HTML output files.

        * test/test.xml:
        * example/test.xml: Add title attribute to top slides element,
        which appears to be required for the HTML output stuff.

        * src/.cvsignore: Ignore svgslides-output binary.

        * src/svgslides-xslt: New file (was previously named svgslides).


Index: .cvsignore
===================================================================
RCS file: /cvs/cairo/svgslides/example/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- .cvsignore	10 Feb 2005 22:25:26 -0000	1.1
+++ .cvsignore	18 Apr 2005 05:34:42 -0000	1.2
@@ -1,2 +1,4 @@
-test-???.svg
-test-index.xml
+example-???.svg
+example-index.xml
+index.html
+example-???.html

Index: Makefile
===================================================================
RCS file: /cvs/cairo/svgslides/example/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile	10 Feb 2005 22:25:26 -0000	1.1
+++ Makefile	18 Apr 2005 05:34:42 -0000	1.2
@@ -1,2 +1,7 @@
-all:
-	svgslides test.xml
+PROJ=example
+
+all: ${PROJ}.xml
+	svgslides $^
+
+clean:
+	rm -f ${PROJ}-index.xml index.html ${PROJ}-???.html ${PROJ}-???.svg *~

--- NEW FILE: example.xml ---
<?xml version="1.0" ?>
<svgslides xmlns="http://www.svgslides.org/svgslides0.1"
	   xmlns:svg="http://www.w3.org/2000/svg"
	   >

  <slides theme="default" title="Example Presentation">

    <slide title="This is a slide"
	   footer="this is a footer">
      <ul>
	<li>This slide has a list</li>
	<li>And it has an image</li>
	<li>etc.</li>
      </ul>
      <img src="glider-blue.svg"
	   x="1.0"
	   y="0.5"
	   x-align="right"
	   y-align="center" />
    </slide>

    <slide title="Bigblue Theme"
	   theme="bigblue">
      <ul>
	<li>A</li>
	<li>B</li>
	<li>C</li>
      </ul>
    </slide>

    <slide title="Back to normal">
      <ul>
	<li>X</li>
	<li>Y</li>
	<li>Z</li>
      </ul>
    </slide>

  </slides>
</svgslides>

--- test.xml DELETED ---




More information about the cairo-commit mailing list