--- a/emacs.rst Sat May 05 00:01:27 2012 +0300
+++ b/emacs.rst Fri May 25 14:46:16 2012 +0300
@@ -84,6 +84,10 @@
When next time that function called automatically loaded debug-mode.
+You can use ``(debug)`` in your function to automatically enter to debugger.
+
+You can use ``(backtrace)`` to print a trace of Lisp function.
+
How debug ini file?
-------------------
--- a/game.rst Sat May 05 00:01:27 2012 +0300
+++ b/game.rst Fri May 25 14:46:16 2012 +0300
@@ -8,7 +8,6 @@
Civilisation.
=============
-
http://forums.civfanatics.com
English fan site.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/hams.rst Fri May 25 14:46:16 2012 +0300
@@ -0,0 +1,9 @@
+..
+
+=======
+ Hams.
+=======
+.. contents::
+
+ * http://wiki.debian.org/DebianHams
+
--- a/lisp.rst Sat May 05 00:01:27 2012 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
--*- mode: outline; coding: utf-8 -*-
-
-* About.
-
- http://www.lisperati.com/
- lisp comics
-
-* guile.
-
-Installing in Cygwin:
-
- $ setup.exe -p guile
-
-* CHICKEN.
-
-Installing in Cygwin:
-
- $ setup -p chicken
-
-* clisp.
-
-Installing in Cygwin:
-
- $ setup.exe -p clisp
-
-* Schema.
-
- http://library.readscheme.org/
- A lot of links.
--- a/xml.rst Sat May 05 00:01:27 2012 +0300
+++ b/xml.rst Fri May 25 14:46:16 2012 +0300
@@ -1,23 +1,30 @@
--*- mode: outline; coding: utf-8 -*-
+.. -*- coding: utf-8 -*-
-* About.
+======
+ XML.
+======
- http://xmlhack.ru
- http://microformats.org/wiki/namespaces-considered-harmful
+About XML.
+==========
-* relaxng.
+ * http://xmlhack.ru
+ * http://microformats.org/wiki/namespaces-considered-harmful
-** relaxng-mode.
+relaxng-mode.
+=============
http://www.pantor.com/download.html
RNC Emacs Mode (home page)
http://www.emacswiki.org/emacs/RELAX_NG
+ Emacs wili.
http://www.relaxng.org/compact-tutorial-20030326.html
relaxng compact syntax tutorial
-* CLI utilities for processing xml.
+utilities for processing xml.
+=============================
-** xmlstar.
+xmlstar.
+--------
XMLStarlet is a set of command line utilities (tools) which can be used to transform,
query, validate, and edit XML documents and files using simple set of shell commands in
@@ -27,50 +34,68 @@
http://xmlstar.sourceforge.net/overview.php
home page
-** Cygwin.
+Cygwin.
+-------
+::
cmd# setup.exe -p libxml2,libxslt
-'libxslt' provide 'xsltproc, 'libxml2' provide 'xmlcatalog' and 'xmllint'
+``libxslt`` provide ``xsltproc``, ``libxml2`` provide ``xmlcatalog`` and
+``xmllint``.
-** XPath query from CLI.
+XPath query from CLI.
+---------------------
+::
$ xmllint --xpath $XPATH file.xml
-* Microformats.
+Microformats.
+=============
http://microformats.org/about
-* XML encoding.
+XML encoding.
+=============
http://www.ietf.org/rfc/rfc3023.txt
XML Media Types
http://www.xml.com/pub/a/2004/07/21/dive.html
XML on the Web Has Failed
-* Validation of xml files.
+Validation of xml files.
+========================
http://infohost.nmt.edu/tcc/help/xml/lint.html
xmllint: A validator for XML files
+ http://www.cogsci.ed.ac.uk/~richard/rxp.html
+ RXP - an XML parser available under the GPL
-** Validating using the DOCTYPE.
+Validating using the DOCTYPE.
+-----------------------------
+::
$ xmllint --valid --noout file.xml
-** Validating against a specific DTD.
+Validating against a specific DTD.
+----------------------------------
+::
$ xmllint --noout --dtdvalid URL file.xml
-** Validating against a Relax NG schema.
+Validating against a Relax NG schema.
+-------------------------------------
+::
$ xmllint --noout --relaxng schema.rng file.xml
If your schema is in Compact Format, you can use the trang program to convert
-it to RNG format:
+it to RNG format::
$ trang file.rnc file.rng
-** Validating against XSchema.
+Validating against XSchema.
+---------------------------
+::
$ xmllint --noout --schema schema.xsd file.xml