<feed xmlns='http://www.w3.org/2005/Atom'>
<title>presentty, branch master</title>
<subtitle>A terminal-based presentation program based on RestructuredText</subtitle>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/'/>
<entry>
<title>Stop handling mouse movements</title>
<updated>2018-03-30T21:29:37+00:00</updated>
<author>
<name>David Moreau Simard</name>
<email>dmsimard@redhat.com</email>
</author>
<published>2018-03-26T18:18:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/commit/?id=2716b255d8be39d2dca4b681d7724ee2a20f3244'/>
<id>2716b255d8be39d2dca4b681d7724ee2a20f3244</id>
<content type='text'>
This otherwise prevents a user from using a mouse to do things like
text selection.

Co-Authored-By: Jeremy Stanley &lt;fungi@yuggoth.org&gt;
Co-Authored-By: David Moreau-Simard &lt;dmsimard@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This otherwise prevents a user from using a mouse to do things like
text selection.

Co-Authored-By: Jeremy Stanley &lt;fungi@yuggoth.org&gt;
Co-Authored-By: David Moreau-Simard &lt;dmsimard@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Make bulleted lists more robust</title>
<updated>2018-03-30T21:06:30+00:00</updated>
<author>
<name>James E. Blair</name>
<email>corvus@gnu.org</email>
</author>
<published>2018-03-30T21:06:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/commit/?id=51d64be68d8d8b75ff374f207a5bc153f787769e'/>
<id>51d64be68d8d8b75ff374f207a5bc153f787769e</id>
<content type='text'>
Errors in pack methods could cause urwid to throw an exception
when rendering bullet lists which line-wrapped.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Errors in pack methods could cause urwid to throw an exception
when rendering bullet lists which line-wrapped.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix syntax error in requirements file</title>
<updated>2018-03-30T19:38:44+00:00</updated>
<author>
<name>James E. Blair</name>
<email>corvus@gnu.org</email>
</author>
<published>2018-03-30T19:38:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/commit/?id=8384c6de2cd3e170191ed0e90d35648eda179a7c'/>
<id>8384c6de2cd3e170191ed0e90d35648eda179a7c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle LF-only ansi art</title>
<updated>2018-02-21T17:43:42+00:00</updated>
<author>
<name>James E. Blair</name>
<email>corvus@gnu.org</email>
</author>
<published>2018-02-21T17:43:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/commit/?id=44f7160b9946b01189e81601b73f734182779c51'/>
<id>44f7160b9946b01189e81601b73f734182779c51</id>
<content type='text'>
Most ansi-art has CRLF, but in case we get input with only LF,
treat LF as "move to beginning of next line".  That's partially
redundant with CR, which is "move to beginning of current line",
but I haven't seen any ansi art which uses LF to only mean
"move to this position on next line", so the new interpretation
should be safe and work for both examples seen.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Most ansi-art has CRLF, but in case we get input with only LF,
treat LF as "move to beginning of next line".  That's partially
redundant with CR, which is "move to beginning of current line",
but I haven't seen any ansi art which uses LF to only mean
"move to this position on next line", so the new interpretation
should be safe and work for both examples seen.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use getFlowedText in line block elements</title>
<updated>2017-05-03T01:13:09+00:00</updated>
<author>
<name>James E. Blair</name>
<email>corvus@gnu.org</email>
</author>
<published>2017-05-03T00:39:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/commit/?id=308a06134d7749638c7ba3afcc4031f31ba09930'/>
<id>308a06134d7749638c7ba3afcc4031f31ba09930</id>
<content type='text'>
A line block is essentially a kind of block quote.  A '|' at the
start of a line forces a new line.  A subsequent line starting
with a space is a continuation of the previous line.  Indentation
within a line block creates a nested line block.  When the line block
(or series of nested blocks) is finished, there should be a blank line
separating it from the next element.

Sphinx produces a 'line_block' event for each block (that is, series of
lines, or nested group of lines), and a 'line' event for each line
within that block.  Currently, each of those line events accumulates
text and then uses the formatted version of that text when creating urwid
widgets.  However, in the case of a continuation line, both lines from
the source file appear in the same line event.  This suggests that the
correct action is to use the flowed version of the text we accumulate.
In other words, the current behavior erroneously preserves the formatting
of continuation lines, whereas by spec, it should not.  The switch to
getFlowedText corrects this.

Additionally, because we are ignoring line_block events, it was not
possible to create nested line_blocks.  By treating them in the same
manner as block quotes, where we put the contents inside of an urwid
widget with left-hand padding, the resulting line block groupings
are nested as expected.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A line block is essentially a kind of block quote.  A '|' at the
start of a line forces a new line.  A subsequent line starting
with a space is a continuation of the previous line.  Indentation
within a line block creates a nested line block.  When the line block
(or series of nested blocks) is finished, there should be a blank line
separating it from the next element.

Sphinx produces a 'line_block' event for each block (that is, series of
lines, or nested group of lines), and a 'line' event for each line
within that block.  Currently, each of those line events accumulates
text and then uses the formatted version of that text when creating urwid
widgets.  However, in the case of a continuation line, both lines from
the source file appear in the same line event.  This suggests that the
correct action is to use the flowed version of the text we accumulate.
In other words, the current behavior erroneously preserves the formatting
of continuation lines, whereas by spec, it should not.  The switch to
getFlowedText corrects this.

Additionally, because we are ignoring line_block events, it was not
possible to create nested line_blocks.  By treating them in the same
manner as block quotes, where we put the contents inside of an urwid
widget with left-hand padding, the resulting line block groupings
are nested as expected.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix encoding error in rst.py test function</title>
<updated>2017-05-03T00:17:09+00:00</updated>
<author>
<name>James E. Blair</name>
<email>corvus@gnu.org</email>
</author>
<published>2017-05-03T00:17:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/commit/?id=66b97688aa3945e1e9671e8400f57ce7c0943533'/>
<id>66b97688aa3945e1e9671e8400f57ce7c0943533</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add format-patch instruction</title>
<updated>2017-05-02T23:51:28+00:00</updated>
<author>
<name>James E. Blair</name>
<email>corvus@gnu.org</email>
</author>
<published>2017-05-02T23:51:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/commit/?id=1fbc379fc0973d21c1ba4aad85015b277c2b3122'/>
<id>1fbc379fc0973d21c1ba4aad85015b277c2b3122</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fail gracefully if jp2a is not installed</title>
<updated>2016-11-20T20:27:59+00:00</updated>
<author>
<name>James E. Blair</name>
<email>corvus@gnu.org</email>
</author>
<published>2016-11-20T20:27:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/commit/?id=3e4efbb2e0eb1ee33b0157468682b6aceffbadfe'/>
<id>3e4efbb2e0eb1ee33b0157468682b6aceffbadfe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fail nicer if figlet/cowsay not installed</title>
<updated>2016-11-20T18:54:45+00:00</updated>
<author>
<name>James E. Blair</name>
<email>corvus@gnu.org</email>
</author>
<published>2016-11-20T18:54:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/commit/?id=4c3c4ff03183b914750e889202435bc558933898'/>
<id>4c3c4ff03183b914750e889202435bc558933898</id>
<content type='text'>
If figlet or cowsay are not installed, print a warning at startup
and continue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If figlet or cowsay are not installed, print a warning at startup
and continue.
</pre>
</div>
</content>
</entry>
<entry>
<title>Include navigation hints in demo presentation</title>
<updated>2016-11-20T18:44:54+00:00</updated>
<author>
<name>Roland Hieber</name>
<email>rohieb@rohieb.name</email>
</author>
<published>2016-10-13T00:08:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.inaugust.com/cgit/presentty/commit/?id=c9ae08696b2ae7b9fcbd145144f95872b38c1ba9'/>
<id>c9ae08696b2ae7b9fcbd145144f95872b38c1ba9</id>
<content type='text'>
This minimizes confusion for new users who are used to different
shortkeys (like Space for next slide, Esc to quit).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This minimizes confusion for new users who are used to different
shortkeys (like Space for next slide, Esc to quit).
</pre>
</div>
</content>
</entry>
</feed>
