<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/docutils.git, branch s5@4010</title>
<subtitle>svn.code.sf.net: p/docutils/code
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/'/>
<entry>
<title>typo</title>
<updated>2005-11-08T02:38:20+00:00</updated>
<author>
<name>goodger</name>
<email>goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-11-08T02:38:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/commit/?id=5a2fe25641fb8bccf11187fd9e5e6926cfe2f2c2'/>
<id>5a2fe25641fb8bccf11187fd9e5e6926cfe2f2c2</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4006 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4006 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>added end to Emacs stanza</title>
<updated>2005-11-08T02:36:28+00:00</updated>
<author>
<name>goodger</name>
<email>goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-11-08T02:36:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/commit/?id=802bf9dd04a354ee3e32293adce30a910bf2389b'/>
<id>802bf9dd04a354ee3e32293adce30a910bf2389b</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4005 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4005 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>- Changed the default bindings due to the explosion of new</title>
<updated>2005-11-07T14:35:10+00:00</updated>
<author>
<name>blais</name>
<email>blais@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-11-07T14:35:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/commit/?id=747b9ac9bdb4d54a7eacca166ad3865c89bf93e7'/>
<id>747b9ac9bdb4d54a7eacca166ad3865c89bf93e7</id>
<content type='text'>
  feature: we now have a prefix-map, which is bound to 'C-c p',
  so the 'C-x p XXXX' commands are all for the rst.el file
  functions.  I left a few bindings:

  * C-= is still there, because it is the single most useful
    command and it should be invoked with one key (you can get to
    it with 'C-c p a' too).

  * I moved 'C-M-{' to 'C-c n' or 'C-c p n' and did the same for
    the forward movement commands.

  * 'C-c C-l' and 'C-c C-r' have been kept, since they have a
    similar role than those bindings have in progmodes.

- I removed all the bindings from 'C-x ...' prefix map, since we
  should be using the mode-specific map, which is 'C-c ...'.  I'm
  also now using the mode-prefix-map variable, so people who have
  rebound theirs will get the benefits of their customization.

- Started defining some abbrevs, e.g. 'con' for ''.. contents::'

- Changed a lot of 'if's to 'when' and 'unless' clauses.

- I added a function to find the node within the section subtree
  where the cursor lives. This function is used to compute the
  desired location of point in the toc table, which fixes a bug
  with the cursor being off when there were missing nodes.

- The toc insertion now uses the insertion point to determine
  where to start rendering the TOC.  This fixes a problem with
  guessing the titles and subtitles and heuristically removing
  them, simplifies the rst-toc-insert function and this new
  choices automatically supports local tocs.

- Fixed the shifting functions to use markers, so that they can
  be used repeatedly with my repeat-repeatable-command advice.
  This just makes the functions more robust.

- Added an option to automatically fill on shifting a region left
  or right (this needs more work).




git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4004 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  feature: we now have a prefix-map, which is bound to 'C-c p',
  so the 'C-x p XXXX' commands are all for the rst.el file
  functions.  I left a few bindings:

  * C-= is still there, because it is the single most useful
    command and it should be invoked with one key (you can get to
    it with 'C-c p a' too).

  * I moved 'C-M-{' to 'C-c n' or 'C-c p n' and did the same for
    the forward movement commands.

  * 'C-c C-l' and 'C-c C-r' have been kept, since they have a
    similar role than those bindings have in progmodes.

- I removed all the bindings from 'C-x ...' prefix map, since we
  should be using the mode-specific map, which is 'C-c ...'.  I'm
  also now using the mode-prefix-map variable, so people who have
  rebound theirs will get the benefits of their customization.

- Started defining some abbrevs, e.g. 'con' for ''.. contents::'

- Changed a lot of 'if's to 'when' and 'unless' clauses.

- I added a function to find the node within the section subtree
  where the cursor lives. This function is used to compute the
  desired location of point in the toc table, which fixes a bug
  with the cursor being off when there were missing nodes.

- The toc insertion now uses the insertion point to determine
  where to start rendering the TOC.  This fixes a problem with
  guessing the titles and subtitles and heuristically removing
  them, simplifies the rst-toc-insert function and this new
  choices automatically supports local tocs.

- Fixed the shifting functions to use markers, so that they can
  be used repeatedly with my repeat-repeatable-command advice.
  This just makes the functions more robust.

- Added an option to automatically fill on shifting a region left
  or right (this needs more work).




git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4004 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>added possible inline node in raw-wrap role output</title>
<updated>2005-11-06T19:18:54+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-11-06T19:18:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/commit/?id=6f185bf33fee23aab3ba57a78eeeaeb69867e400'/>
<id>6f185bf33fee23aab3ba57a78eeeaeb69867e400</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4003 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4003 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>added note about HTTP access to the repository</title>
<updated>2005-11-06T16:50:19+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-11-06T16:50:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/commit/?id=3bf78b13e2d2829a4aa33f5e0c875f4206dded9f'/>
<id>3bf78b13e2d2829a4aa33f5e0c875f4206dded9f</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4002 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4002 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>link to full thread</title>
<updated>2005-11-06T16:23:21+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-11-06T16:23:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/commit/?id=7ed7500d9d9bbf4285b8646ed79d77aaf9872ea7'/>
<id>7ed7500d9d9bbf4285b8646ed79d77aaf9872ea7</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4001 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4001 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>added a link to Alberto's OpenDocument writer</title>
<updated>2005-11-06T16:17:56+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-11-06T16:17:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/commit/?id=3fd593f2ae8eac1f19b55a5cc02e786058866f80'/>
<id>3fd593f2ae8eac1f19b55a5cc02e786058866f80</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4000 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4000 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed link in emacs file.</title>
<updated>2005-11-04T19:18:35+00:00</updated>
<author>
<name>blais</name>
<email>blais@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-11-04T19:18:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/commit/?id=7efb57643bcde8d50755fa4c971fc630e2330ef8'/>
<id>7efb57643bcde8d50755fa4c971fc630e2330ef8</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@3999 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@3999 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed links</title>
<updated>2005-11-03T23:16:02+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-11-03T23:16:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/commit/?id=9cb76ea8dfc48a41b2a45e04d13ffa9b9d370f6d'/>
<id>9cb76ea8dfc48a41b2a45e04d13ffa9b9d370f6d</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@3998 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@3998 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>added more accurate instructions about installing</title>
<updated>2005-11-03T22:21:13+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-11-03T22:21:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/docutils.git/commit/?id=d153de49b8e07c972d2e7f721e56b30f82e64ea8'/>
<id>d153de49b8e07c972d2e7f721e56b30f82e64ea8</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@3997 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@3997 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
</feed>
