File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load diff This file was deleted.
Original file line number Diff line number Diff line change 1+ Some starting points:
2+
3+ - (Newly written) documentation follows ResT_ syntax, and therefore
4+ can easily be rendered to various document formats.
5+
6+ - The API is described in ``README.new_fusepy_api``. It's an informative
7+ description, not a reference. Apart from that, see the examples and
8+ the actual code.
9+
10+ - Project home page is http://fuse.sourceforge.net/wiki/index.php/FusePython
11+
12+ - Development code can be accessed via CVS (look for the ``python`` module
13+ at http://sourceforge.net/cvs/?group_id=121684444)
14+ and via Mercurial_ at http://mercurial.creo.hu/repos/fuse-python-hg/.
15+
16+ - Changelog is only included in releases, generated by ``hg log``
17+ using a modified version of the ``changelog`` template. That is, by
18+
19+ ::
20+
21+ hg log --style util/fusepychangelog.tmpl | grep -v '^TAGS: tip$'
22+
23+ The bracketed hexa ids under changelog entries are the changeset
24+ ids according to Mercurial.
25+
26+ .. _ResT: http://docutils.sourceforge.nt
27+ .. _Mercurial: http://www.selenic.com/mercurial/
28+
Original file line number Diff line number Diff line change 1+ #header = '{date| shortdate} {author| person} <{author| email}>\n\n'
2+ header = '{date| shortdate} {author| person}\n{tags}\n'
3+ header_verbose = ''
4+ #changeset = '\t* {files| stringify| fill68| tabindent}{desc| fill68| tabindent| strip}\n\t[{node| short}]{tags}\n\n'
5+ changeset = '\t* {files| stringify| fill68| tabindent}{desc| fill68| tabindent| strip}\n\t[{node| short}]\n\n'
6+
7+ changeset_quiet = '\t* {desc| firstline| fill68| tabindent| strip}\n\n'
8+ changeset_verbose = '{date| isodate} {author| person} <{author| email}> ({node| short}{tags})\n\n\t* {file_adds| stringify| fill68| tabindent}{file_dels| stringify| fill68| tabindent}{files| stringify| fill68| tabindent}{desc| fill68| tabindent| strip}\n\n'
9+ #start_tags = ' ['
10+ start_tags = 'TAGS: '
11+ tag = '{tag}, '
12+ #last_tag = '{tag}]'
13+ last_tag = '{tag}\n'
14+ file = '{file}, '
15+ last_file = '{file}:\n\t'
16+ file_add = '{file_add}, '
17+ last_file_add = '{file_add}: new file. \n* '
18+ file_del = '{file_del}, '
19+ last_file_del = '{file_del}: deleted file. \n* '
You can’t perform that action at this time.
0 commit comments