gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog doc/C/Makefile.am doc/C/dumpshm...


From: Rob Savoye
Subject: [Gnash-commit] gnash ChangeLog doc/C/Makefile.am doc/C/dumpshm...
Date: Sat, 16 Feb 2008 23:17:06 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Rob Savoye <rsavoye>    08/02/16 23:17:06

Modified files:
        .              : ChangeLog 
        doc/C          : Makefile.am 
Removed files:
        doc/C          : dumpshm-man.xml gnash-man.xml 
                         gprocessor-man.xml soldumper-man.xml 

Log message:
                * doc/C/Makefile.am: Fix typo, one $ not two for make
                variables. Link to directories if we're in a build tree so
                including images and other xml pages actually works. Link to
                default output files if the Docbook tools aren't installed.
                * doc/C/dumpshm-man.xml, gnash-man.xml, gprocessor-man.xml,
                soldumper-man.xml: Remove old names, they suffix has changed to
                .man-xml.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5671&r2=1.5672
http://cvs.savannah.gnu.org/viewcvs/gnash/doc/C/Makefile.am?cvsroot=gnash&r1=1.44&r2=1.45
http://cvs.savannah.gnu.org/viewcvs/gnash/doc/C/dumpshm-man.xml?cvsroot=gnash&r1=1.1&r2=0
http://cvs.savannah.gnu.org/viewcvs/gnash/doc/C/gnash-man.xml?cvsroot=gnash&r1=1.9&r2=0
http://cvs.savannah.gnu.org/viewcvs/gnash/doc/C/gprocessor-man.xml?cvsroot=gnash&r1=1.1&r2=0
http://cvs.savannah.gnu.org/viewcvs/gnash/doc/C/soldumper-man.xml?cvsroot=gnash&r1=1.1&r2=0

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.5671
retrieving revision 1.5672
diff -u -b -r1.5671 -r1.5672
--- ChangeLog   16 Feb 2008 23:12:59 -0000      1.5671
+++ ChangeLog   16 Feb 2008 23:17:04 -0000      1.5672
@@ -1,5 +1,13 @@
 2008-02-16  Rob Savoye  <address@hidden>
 
+       * doc/C/Makefile.am: Fix typo, one $ not two for make
+       variables. Link to directories if we're in a build tree so
+       including images and other xml pages actually works. Link to
+       default output files if the Docbook tools aren't installed.
+       * doc/C/dumpshm-man.xml, gnash-man.xml, gprocessor-man.xml,
+       soldumper-man.xml: Remove old names, they suffix has changed to
+       .man-xml.
+
        * server/edit_text_character.h, character.h: Put virtual before
        the return type to eliminate a warning,
        * packaging/install-gnash.sh: Drop GPL part, make uninstall work

Index: doc/C/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/doc/C/Makefile.am,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -b -r1.44 -r1.45
--- doc/C/Makefile.am   16 Feb 2008 18:12:44 -0000      1.44
+++ doc/C/Makefile.am   16 Feb 2008 23:17:05 -0000      1.45
@@ -19,7 +19,7 @@
 # Building a PDF using Apache FOP only works with fop-0.20.5 for now.
 include $(top_srcdir)/doc/xmldocs.make
 
-SUBDIRS = asspec
+SUBDIRS = # asspec
 infodir = ${prefix}/share/info
 figdir = images
 docname = gnash
@@ -110,16 +110,17 @@
 
 #noinst_SCRIPT = gen-doc.sh
 dist_man_MANS = gnash.1 gprocessor.1 dumpshm.1 soldumper.1
+MANSRC = $(dist_man_MANS:.1=.man-xml)
 
 # dist_html_DATA = gnash.html actionscript.html
 # dist_info_DATA = gnash.info actionscript.info
 
-html: images gnash.html actionscript.html
-pdf:  images gnash.pdf actionscript.pdf
+html: links gnash.html actionscript.html
+pdf:  links gnash.pdf actionscript.pdf
 man:  gnash.1 gprocessor.1 dumpshm.1 soldumper.1
 texi: gnash.texi actionscript.texi
-info: images gnash.info actionscript.info
-gnash.pdf gnash.html gnash.texi: images $(xml_files) $(entities)
+info: links gnash.info actionscript.info
+gnash.pdf gnash.html gnash.texi: links $(xml_files) $(entities)
 actionscript.pdf actionscript.html actionscript.texi: actionscript.xml 
actionscript/main.xml actionscript/as_value.xml actionscript/new_as_class.xml
 
 SUFFIXES = .xml .html .texi .pdf .info .1 .fo .man-xml
@@ -128,14 +129,12 @@
        $(xml_files) \
        $(entities) \
        $(omffile) \
+       $(dist_man_MANS) \
+       $(MANSRC) \
        actionscript.info \
        gnash.info \
        actionscript.html \
-       gnash.html \
-       gnash.1 \
-       gprocessor.1 \
-       dumpshm.1 \
-       soldumper.1
+       gnash.html
 
 if ENABLE_FOP
 .xml.pdf:
@@ -159,7 +158,11 @@
        $(XSLTPROC) --output $@ --nonet $(docbook_styles)/html/docbook.xsl $<
        $(RM) $*.txml
 else
-       $(LN_S) -f $$? $@
+       @if test -d $(top_srcdir)/packaging/doc; then \
+         $(LN_S) -f $(top_srcdir)/packaging/doc/address@hidden ./$@; \
+       else \
+         touch $@; \
+       fi
 endif
 
 #      basefile=$(notdir $(basename $<));
@@ -180,7 +183,11 @@
        -$(MAKEINFO) --force $<
        $(RM) *.texi
 else
-       $(LN_S) -f $$? $@
+       @if test -d $(top_srcdir)/packaging/doc; then \
+         $(LN_S) -f $(top_srcdir)/packaging/doc/address@hidden ./$@; \
+       else \
+         touch $@; \
+       fi
 endif
 
 .man-xml.1:
@@ -191,19 +198,35 @@
        $(RM) $*.mxml
 else
        @if test -d $(top_srcdir)/packaging/doc; then \
-         $(LN_S) -f $(top_srcdir)/packaging/doc/address@hidden $@; \
+         $(LN_S) -f $(top_srcdir)/packaging/doc/address@hidden ./$@; \
        else \
          touch $@; \
        fi
 endif
 
-alldocs: images html pdf man info
+alldocs: links html pdf man info
 
+# When we build in a seperate build tree, we need links to the images
+# subdirectory to have them be included in the final output.
 images:
        @if test ! -d images; then \
           $(LN_S) -f $(srcdir)/images images; \
        fi
 
+# When we build in a seperate build tree, we need links to these
+# additional Docbook source subdirectoriers to have them be included
+# in the final output without error.
+links: images
+       @if test ! -d asspec; then \
+          $(LN_S) -f $(srcdir)/asspec; \
+       fi
+       @if test ! -d usermanual; then \
+          $(LN_S) -f $(srcdir)/usermanual; \
+       fi
+       @if test ! -d actionscript; then \
+          $(LN_S) -f $(srcdir)/actionscript; \
+       fi
+
 lint:
        @xmllint $(srcdir)/gnash.xml
 
@@ -221,23 +244,12 @@
 
 MAINTAINERCLEANFILES = \
         gnash.pdf \
-        gnash.1 \
-        gprocessor.1 \
-       dumpshm.1 \
-       soldumper.1 \
+       $(MANS) \
         gnash.info \
         gnash.html \
        actionscript.html \
        actionscript.info
 
-# Man pages are installed as data
-install-data-hook:
-       @if test -d $(top_srcdir)/packaging/doc; then \
-         for i in "$(MANS)"; do \
-           $(INSTALL_DATA) $$i $(DESTDIR)$(man1dir)/; \
-         done; \
-       fi
-
 install-info-hook: gnash.info
        @test -d "$(DESTDIR)$(infodir)" || $(mkinstalldirs) 
"$(DESTDIR)$(infodir)"
        $(INSTALL_DATA) $< $(DESTDIR)$(infodir)/gnash.info 

Index: doc/C/dumpshm-man.xml
===================================================================
RCS file: doc/C/dumpshm-man.xml
diff -N doc/C/dumpshm-man.xml
--- doc/C/dumpshm-man.xml       13 Feb 2008 02:30:08 -0000      1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,92 +0,0 @@
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
-                   "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd";
-[
-  <!ENTITY legal SYSTEM "legal.xml">
-  <!ENTITY appversion "0.8">
-  <!ENTITY manrevision "0.1">
-  <!ENTITY date "Feb 2008">
-  <!ENTITY app "<application>Dumpshm</application>">
-  <!ENTITY appname "Dumpshm">
-  <!ENTITY version "0.8">
-]
->
-
-<refentry id="dumpshm">
-<refmeta>
-<refentrytitle>dumpshm</refentrytitle>
-<manvolnum>1</manvolnum>
-</refmeta>
-
-<!-- the refname becomes the output name of the man page -->
-<refnamediv>
-<refname>dumpshm</refname>
-<refpurpose>Gnash LocalConnection memory Dumper</refpurpose>
-</refnamediv>
-
-
-<refsynopsisdiv><title>Synopsis</title>
-<synopsis>
-dumpshm (options)... (file)...
-</synopsis>
-</refsynopsisdiv>
-
-<refsect1><title>Description</title>
-<para>
-  Dump information about the shared memory segment used by the
-  LocalConnection ActionScript class. This memory segment is comprised
-  of a header, and a collection of SWF AMF Objects, normally not
-  viewable by the user.
-</para>
-
-<variablelist>
-  <varlistentry>
-    <term>-h</term>
-    <listitem>
-      <para>
-       Print usage info.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-i</term>
-    <listitem>
-      <para>
-       Find the key for an existing memory segment.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-r</term>
-    <listitem>
-      <para>
-       Dump memory segment to the terminal.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-c</term>
-    <listitem>
-      <para>
-       Dump memory segment to a disk file, segment.raw.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-v</term>
-    <listitem>
-      <para>
-       Verbose output.
-      </para>
-    </listitem>
-  </varlistentry>
-
-
-</variablelist>
-
-</refsect1>
-</refentry>
-

Index: doc/C/gnash-man.xml
===================================================================
RCS file: doc/C/gnash-man.xml
diff -N doc/C/gnash-man.xml
--- doc/C/gnash-man.xml 13 Feb 2008 02:30:08 -0000      1.9
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,395 +0,0 @@
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
-                   "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd";
-[
-  <!ENTITY legal SYSTEM "legal.xml">
-  <!ENTITY appversion "0.8">
-  <!ENTITY manrevision "0.4">
-  <!ENTITY date "Feb 2008">
-  <!ENTITY app "<application>Gnash</application>">
-  <!ENTITY appname "Gnash">
-  <!ENTITY version "0.8">
-]
->
-
-<refentry id="gnash">
-<refmeta>
-<refentrytitle>gnash</refentrytitle>
-<manvolnum>1</manvolnum>
-</refmeta>
-
-<!-- the refname becomes the output name of the man page -->
-<refnamediv>
-<refname>gnash</refname>
-<refpurpose>GNU Flash (SWF) Player</refpurpose>
-</refnamediv>
-
-
-<refsynopsisdiv><title>Synopsis</title>
-<synopsis>
-gnash (options)... (file)...
-</synopsis>
-</refsynopsisdiv>
-
-<refsect1><title>Description</title>
-<para>
-  Run the SWF movie player.
-</para>
-
-<variablelist>
-  <varlistentry>
-    <term>-h</term>
-    <listitem>
-      <para>
-       Print usage info.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-s factor</term>
-    <listitem>
-      <para>
-       Scale the movie up/down by the specified factor.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-c</term>
-    <listitem>
-      <para>
-       Produce a core file instead of letting SDL trap it.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-d num</term>
-    <listitem>
-      <para>
-      Number of milliseconds to delay in main loop.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-a</term>
-    <listitem>
-      <para>
-          Enable ActionScript debugging.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-x</term>
-    <listitem>
-      <para>
-       The XID of the parent window Gnash should use instead of
-       creating a new one.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-j</term>
-    <listitem>
-      <para>
-       Set the width of the window. This is only used when embedding
-       the player into another window.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-k</term>
-    <listitem>
-      <para>
-       Set the height of the window. This is only used when embedding
-       the player into another window.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-v</term>
-    <listitem>
-      <para>
-          Be verbose; i.e. print log messages to stdout.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-va</term>
-    <listitem>
-      <para>
-         Be verbose about movie Actions.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-vp</term>
-    <listitem>
-      <para>
-         Be verbose about parsing the movie.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-ml bias</term>
-    <listitem>
-      <para>
-  Specify the texture LOD bias (float, default is -1).
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-p</term>
-    <listitem>
-      <para>
-          Run full speed (no sleep) and log frame rate.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-g</term>
-    <listitem>
-      <para>
-          Start Gnash with a Flash debugger console so one can set
-         break points or watchpoints.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-w</term>
-    <listitem>
-      <para>
-       Write the gnash-dbg.log debug log to disk. By default the
-       plugin writes its log in your home directory when using a
-       launcher from GNOME or KDE.
-      </para>
-    </listitem>
-  </varlistentry>
-
-<!--
-  <varlistentry>
-    <term>-e</term>
-    <listitem>
-      <para>
-          Use SDL Event thread
-      </para>
-    </listitem>
-  </varlistentry>
--->
-  <varlistentry>
-    <term>-1</term>
-    <listitem>
-      <para>
-       Play once; exit when/if movie reaches the last frame.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-r [0|1|2]</term>
-    <listitem>
-      <para>
-       0 disables rendering and sound (good for batch tests).
-      </para>
-      <para>
-       1 enables rendering and sound (default setting).
-      </para>
-      <para>
-       2 enables rendering and disables sound.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-t sec</term>
-    <listitem>
-      <para>
-       Timeout and exit after the specified number of seconds.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-u</term>
-    <listitem>
-      <para>
-       Set "real" url of the movie (useful for downloaded movies).
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-U</term>
-    <listitem>
-      <para>
-       Set "base" url for this run (used to resolve relative urls,
-       defaults to movie url)
-
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-P</term>
-    <listitem>
-      <para>
-       Set parameter (ie. "FlashVars=A=1&amp;b=2")
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-F</term>
-    <listitem>
-      <para>
-       Set filedescriptor to use for external communications.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>--version</term>
-    <listitem>
-      <para>
-       Print the version number, and the configuration of the
-       Gnash player. Please use this info when submitting bug
-       reports.
-      </para>
-    </listitem>
-  </varlistentry>
-
-</variablelist>
-
-<refsect2><title>Keys</title>
-
-<variablelist>
-  <varlistentry>
-    <term>CTRL-Q</term>
-    <listitem>
-      <para>
-          Quit/Exit.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>CTRL-W</term>
-    <listitem>
-      <para>
-          Quit/Exit.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>ESC</term>
-    <listitem>
-      <para>
-             Quit/Exit.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>CTRL-P</term>
-    <listitem>
-      <para>
-          Toggle Pause.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>CTRL-R   </term>
-    <listitem>
-      <para>
-          Restart the movie.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>CTRL-[ or kp-</term>
-    <listitem>
-      <para>
-       Step back one frame.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>CTRL-] or kp+</term>
-    <listitem>
-      <para>
-       Step forward one frame.
-      </para>
-    </listitem>
-  </varlistentry>
-
-<!--
-  <varlistentry>
-    <term>CTRL-A</term>
-    <listitem>
-      <para>
-          Toggle anti-aliasing (doesn't work).
-      </para>
-    </listitem>
-  </varlistentry>
--->
-
-  <varlistentry>
-    <term>CTRL-T</term>
-    <listitem>
-      <para>
-          Debug.  Test the set_variable() function.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>CTRL-G</term>
-    <listitem>
-      <para>
-          Debug.  Test the get_variable() function.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>CTRL-M</term>
-    <listitem>
-      <para>
-          Debug.  Test the call_method() function.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>CTRL-B</term>
-    <listitem>
-      <para>
-          Toggle background color.
-      </para>
-    </listitem>
-  </varlistentry>
-  </variablelist>
-
-<para>
-  Flash is Trademarked by Adobe Corporation.
-</para>
-
-</refsect2>
-</refsect1>
-</refentry>
-

Index: doc/C/gprocessor-man.xml
===================================================================
RCS file: doc/C/gprocessor-man.xml
diff -N doc/C/gprocessor-man.xml
--- doc/C/gprocessor-man.xml    13 Feb 2008 02:30:09 -0000      1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,116 +0,0 @@
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
-                   "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd";
-[
-  <!ENTITY legal SYSTEM "legal.xml">
-  <!ENTITY appversion "0.8">
-  <!ENTITY manrevision "0.1">
-  <!ENTITY date "Feb 2008">
-  <!ENTITY app "<application>Gprocessor</application>">
-  <!ENTITY appname "Gprocessor">
-  <!ENTITY version "0.8">
-]
->
-
-<refentry id="gprocessor">
-<refmeta>
-<refentrytitle>gprocessor</refentrytitle>
-<manvolnum>1</manvolnum>
-</refmeta>
-
-<!-- the refname becomes the output name of the man page -->
-<refnamediv>
-<refname>gprocessor</refname>
-<refpurpose>Gnash SWF Processor</refpurpose>
-</refnamediv>
-
-
-<refsynopsisdiv><title>Synopsis</title>
-<synopsis>
-gprocessor (options)... (file)...
-</synopsis>
-</refsynopsisdiv>
-
-<refsect1><title>Description</title>
-<para>
-  Gprocessor is an debugging tool for SWF files, that is a companion to
-  Gnash. This is most often used for debugging and running testcases,
-  as this tool is equivalant to running Gnash with no graphic
-  output. This tool is primarily used by Gnash developers, or anyone
-  that wishes to run the Gnash test cases.
-</para>
-
-<variablelist>
-  <varlistentry>
-    <term>-h</term>
-    <listitem>
-      <para>
-       Print usage info.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-w</term>
-    <listitem>
-      <para>
-       Write a .gsc file with preprocessed info, for each input file.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-vp</term>
-    <listitem>
-      <para>
-       Be verbose about movie parsing.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-va</term>
-    <listitem>
-      <para>
-       Be verbose about ActionScript.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-d [ms]</term>
-    <listitem>
-      <para>
-       Milliseconds delay between advances (0 by default). If '-1'
-       the delay will be computed from the FPS.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-f [frames]</term>
-    <listitem>
-      <para>
-       Allow the given number of frame advancements. Keep advancing
-       untill any other stop condition is encountered if set to 0
-       (default).
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-r [times]</term>
-    <listitem>
-      <para>
-        Allow the given number of complete runs. Keep looping
-        undefinitely if set to 0. Default is 1 (end as soon as the
-        last frame is reached).
-      </para>
-    </listitem>
-  </varlistentry>
-
-
-</variablelist>
-
-</refsect1>
-</refentry>
-

Index: doc/C/soldumper-man.xml
===================================================================
RCS file: doc/C/soldumper-man.xml
diff -N doc/C/soldumper-man.xml
--- doc/C/soldumper-man.xml     13 Feb 2008 02:30:09 -0000      1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,83 +0,0 @@
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
-                   "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd";
-[
-  <!ENTITY legal SYSTEM "legal.xml">
-  <!ENTITY appversion "0.8">
-  <!ENTITY manrevision "0.1">
-  <!ENTITY date "Feb 2008">
-  <!ENTITY app "<application>Soldumper</application>">
-  <!ENTITY appname "Soldumper">
-  <!ENTITY version "0.8">
-]
->
-
-<refentry id="soldumper">
-<refmeta>
-<refentrytitle>soldumper</refentrytitle>
-<manvolnum>1</manvolnum>
-</refmeta>
-
-<!-- the refname becomes the output name of the man page -->
-<refnamediv>
-<refname>soldumper</refname>
-<refpurpose>Gnash Local Shared Object file Dumper</refpurpose>
-</refnamediv>
-
-
-<refsynopsisdiv><title>Synopsis</title>
-<synopsis>
-soldumper (options)... (file)...
-</synopsis>
-</refsynopsisdiv>
-
-<refsect1><title>Description</title>
-<para>
-  Dump information about the .sol files used by the SharedObject
-  ActionScript class. These files are comprised of a header, and a
-  collection of SWF AMF Objects, normally not viewable by the user.
-</para>
-
-<variablelist>
-  <varlistentry>
-    <term>-h</term>
-    <listitem>
-      <para>
-       Print usage info.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-l</term>
-    <listitem>
-      <para>
-       List all the .sol files in the default path.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term>-f</term>
-    <listitem>
-      <para>
-       Ignore the global setting, use the current directory for files.
-      </para>
-    </listitem>
-  </varlistentry>
-
-
-  <varlistentry>
-    <term>-v</term>
-    <listitem>
-      <para>
-       Verbose output.
-      </para>
-    </listitem>
-  </varlistentry>
-
-
-</variablelist>
-
-</refsect1>
-</refentry>
-




reply via email to

[Prev in Thread] Current Thread [Next in Thread]