--- a/.hgignore Sun Jan 24 11:05:51 2010 +0200
+++ b/.hgignore Wed Feb 10 10:31:27 2010 +0200
@@ -2,3 +2,4 @@
^docs/_build/
^MANIFEST$
^dist/
+^opster.egg-info/
--- a/docs/Makefile Sun Jan 24 11:05:51 2010 +0200
+++ b/docs/Makefile Wed Feb 10 10:31:27 2010 +0200
@@ -13,8 +13,7 @@
.PHONY: all help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
-all:
- make html
+all: html
help:
@echo "Please use \`make <target>' where <target> is one of"
--- a/docs/index.rst Sun Jan 24 11:05:51 2010 +0200
+++ b/docs/index.rst Wed Feb 10 10:31:27 2010 +0200
@@ -36,8 +36,7 @@
- It's easy to switch between usual command line options parser and
subcommands.
-Read more in `overview`_.
+Read more in :doc:`overview`.
.. _single file: http://hg.piranha.org.ua/opster/file/tip/opster.py
-.. _overview: overview
--- a/docs/overview.rst Sun Jan 24 11:05:51 2010 +0200
+++ b/docs/overview.rst Wed Feb 10 10:31:27 2010 +0200
@@ -49,9 +49,9 @@
.. _note:
I think it's easy to understand what's going on here, except that you need to
-know that underscores in the long name will be replaced with dash at the command
-line. Of course, reverse process happens: if you have option with a dash in long
-name in a definition, it will be replaced with underscore when passed to
+know that underscores in the long name will be replaced with dashes at the
+command line. Of course, reverse process happens: if you have option with a dash
+in long name in a definition, it will be replaced with underscore when passed to
function. This is done to comply with standarts of writing both console
interfaces and Python application.