Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 495 → Rev 496

/video-contact-sheet/branches/1.13/dist/docs/src/settings.man.inc.xml
5,7 → 5,7
<!ENTITY rArr "&#8658;">
<!ENTITY vcsmanpage "<citerefentry><refentrytitle>vcs</refentrytitle><manvolnum>1</manvolnum></citerefentry>">
]>
<!-- $Date: 2011-08-29 01:37:19 +0200 (dl, 29 ago 2011) $ -->
<!-- $Date: 2011-08-29 01:52:52 +0200 (dl, 29 ago 2011) $ -->
<variablelist id="settings">
<varlistentry>
<term id="term-all">All settings</term>
397,9 → 397,7
<para>Its value must be a profile name or a comma-separated list of profile names.</para>
<informalexample>
<para>Example:
<userinput>
<literal>profiles=<symbol>white</symbol>,<symbol>mosaic</symbol></literal>
</userinput>
<literal>profiles=<symbol>white</symbol>,<symbol>mosaic</symbol></literal>
will load the <literal>white</literal> and <literal>mosaic</literal> profiles.
</para>
</informalexample>
/video-contact-sheet/branches/1.13/dist/docs/Makefile
1,5 → 1,5
#
# $Id: Makefile 2318 2011-08-28 03:45:43Z toni $
# $Id: Makefile 2327 2011-08-28 23:52:52Z toni $
#
 
distdir:=.
72,9 → 72,16
 
# Check all XML files for validity
lint:
# XML check
find . -type f -name '*.xml' -print0 | \
xargs -0 xmllint -nonet --xinclude -noout --valid
# XHTML check
# Use `$(MAKE) xhtml' before running `$(MAKE) $@' to
# actually validate XHTML
find . -type f -name '*.xhtml' -exec bash -c "echo '[ {} ]' && tidy -utf8 -eq '{}'" \;
 
xhtml: $(filter %.xhtml, $(ALL))
 
$(distdir)/vcs.man.html: $(distdir)/vcs.1
man2html -r "$<" > "$@"
 
88,4 → 95,4
$(distdir)/vcs.conf.5: $(srcdir)/vcs.conf.man.xml
$(DOCBOOK_TO_MAN) "$<"
 
.PHONY: all clean lint
.PHONY: all clean lint xhtml