diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2010-06-05 01:57:23 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2010-06-05 01:57:23 -0300 |
commit | a0edbf20862c7a6f94b45e12e764f0785e821869 (patch) | |
tree | aaca15dfca31a92aa4c7a4a879fd3c897e3b751c | |
parent | changed the MANIFEST.in and setup.py, to add the new files to the source tarball (diff) | |
download | g-octave-a0edbf20862c7a6f94b45e12e764f0785e821869.tar.gz g-octave-a0edbf20862c7a6f94b45e12e764f0785e821869.tar.bz2 g-octave-a0edbf20862c7a6f94b45e12e764f0785e821869.zip |
changed README.rst; more documentation fixes
-rw-r--r-- | README.rst | 4 | ||||
-rw-r--r-- | g_octave/tinderbox/trac.py | 2 | ||||
-rwxr-xr-x | scripts/g-octave | 12 |
3 files changed, 14 insertions, 4 deletions
@@ -6,7 +6,7 @@ .. _Paludis: http://paludis.pioto.org/ .. _pkgcore: http://www.pkgcore.org/ .. _`Gentoo Linux`: http://www.gentoo.org/ -.. _`issue tracker`: http://bitbucket.org/rafaelmartins/g-octave/issues/ +.. _`issue tracker`: http://g-octave.rafaelmartins.eng.br/report .. _Mercurial: http://mercurial.selenic.com/ g-octave @@ -133,7 +133,7 @@ We have other goals besides implementing the remaining features: * Improve the use of `g-octave`_ as a normal user, with "--pretend" * Improve the script that generates the package database * Improve the details available on the packages list -* Write a testsuite +* Write a testsuite **(done)** * more... diff --git a/g_octave/tinderbox/trac.py b/g_octave/tinderbox/trac.py index e8e73af..c80ee71 100644 --- a/g_octave/tinderbox/trac.py +++ b/g_octave/tinderbox/trac.py @@ -5,7 +5,7 @@ trac.py ~~~~~~~ - a Python module to interact with a Trac instance. + A Python module to interact with a Trac instance. :copyright: (c) 2010 by Rafael Goncalves Martins :license: GPL-2, see LICENSE for more details. diff --git a/scripts/g-octave b/scripts/g-octave index 2bd0b34..2f5ad09 100755 --- a/scripts/g-octave +++ b/scripts/g-octave @@ -1,7 +1,17 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -__issue_tracker = 'http://bitbucket.org/rafaelmartins/g-octave/issues/' +""" + g-octave + ~~~~~~~~ + + Main script of g-Octave. + + :copyright: (c) 2009-2010 by Rafael Goncalves Martins + :license: GPL-2, see LICENSE for more details. +""" + +__issue_tracker = 'http://g-octave.rafaelmartins.eng.br/report' import sys |