<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Palaso</title>
	<link>http://www.wesay.org/blogs/palaso</link>
	<description>Payap Language Software</description>
	<pubDate>Wed, 07 Jan 2009 18:24:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>Comment on Merging with git by Jim R</title>
		<link>http://www.wesay.org/blogs/palaso/2008/06/12/merging-with-git/#comment-159</link>
		<author>Jim R</author>
		<pubDate>Thu, 12 Jun 2008 21:50:39 +0000</pubDate>
		<guid>http://www.wesay.org/blogs/palaso/2008/06/12/merging-with-git/#comment-159</guid>
		<description>Wow.  Thank you, thank you!  I'll give this a try.</description>
		<content:encoded><![CDATA[<p>Wow.  Thank you, thank you!  I&#8217;ll give this a try.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Steps toward running a Mono app on the OLPC XO by Eric Albright</title>
		<link>http://www.wesay.org/blogs/palaso/2007/12/11/steps-toward-running-a-mono-app-on-the-olpc-xo/#comment-16</link>
		<author>Eric Albright</author>
		<pubDate>Fri, 18 Apr 2008 05:16:26 +0000</pubDate>
		<guid>http://www.wesay.org/blogs/palaso/2007/12/11/steps-toward-running-a-mono-app-on-the-olpc-xo/#comment-16</guid>
		<description>Unfortunately, mono no longer seems to support fedora directly and thus the links for adding mono.repo to /etc/yum.repos.d are broken. Try http://download.opensuse.org/repositories/Mono/Fedora_7/Mono.repo instead.</description>
		<content:encoded><![CDATA[<p>Unfortunately, mono no longer seems to support fedora directly and thus the links for adding mono.repo to /etc/yum.repos.d are broken. Try <a href="http://download.opensuse.org/repositories/Mono/Fedora_7/Mono.repo" rel="nofollow">http://download.opensuse.org/repositories/Mono/Fedora_7/Mono.repo</a> instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Formatting dictionaries with CSS by Greg</title>
		<link>http://www.wesay.org/blogs/palaso/2008/02/26/formatting-dictionaries-with-css/#comment-10</link>
		<author>Greg</author>
		<pubDate>Fri, 07 Mar 2008 16:50:40 +0000</pubDate>
		<guid>http://www.wesay.org/blogs/palaso/2008/02/26/formatting-dictionaries-with-css/#comment-10</guid>
		<description>&lt;p&gt;Eric,&lt;/p&gt;
&lt;p&gt;I guess I find it more elegant to handle the punctuation like this:&lt;br /&gt;
&#60;span class="variants"&#62; &#60;span class="variant"&#62;v1&#60;/span&#62;&#60;span class="variant"&#62;v2&#60;/span&#62;&#60;/span&#62;&lt;/p&gt;
&lt;p&gt;.variants::before { content: '(' }&lt;br /&gt;
.variants::after  { content: ')' }&lt;br /&gt;
.variant + .variant::before { content: ',' }&lt;/p&gt;
&lt;p&gt;This avoids the whole need to pre-process with XSLT to add first-of-type and last-of-type and it also keeps track of the structure of the document.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Eric,</p>
<p>I guess I find it more elegant to handle the punctuation like this:<br />
&lt;span class=&#8221;variants&#8221;&gt; &lt;span class=&#8221;variant&#8221;&gt;v1&lt;/span&gt;&lt;span class=&#8221;variant&#8221;&gt;v2&lt;/span&gt;&lt;/span&gt;</p>
<p>.variants::before { content: &#8216;(&#8217; }<br />
.variants::after  { content: &#8216;)&#8217; }<br />
.variant + .variant::before { content: &#8216;,&#8217; }</p>
<p>This avoids the whole need to pre-process with XSLT to add first-of-type and last-of-type and it also keeps track of the structure of the document.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Formatting dictionaries with CSS by Håkon Wium Lie</title>
		<link>http://www.wesay.org/blogs/palaso/2008/02/26/formatting-dictionaries-with-css/#comment-9</link>
		<author>Håkon Wium Lie</author>
		<pubDate>Fri, 07 Mar 2008 08:31:44 +0000</pubDate>
		<guid>http://www.wesay.org/blogs/palaso/2008/02/26/formatting-dictionaries-with-css/#comment-9</guid>
		<description>&lt;p&gt;This is great work -- you are pushing CSS and Prince to where few have ventured!&lt;/p&gt;
&lt;p&gt;Sidenotes are probably best handled with floats and negative margins in CSS. The idea is that you float a sidenote to the side and then use a negative margin value to push it outside the box from where the sidenote naturally appears. &lt;/p&gt;
&lt;p&gt;Unfortunately, Prince6 has a bug where floats may overlap when pushed fully outside their box. The bug has a workaround: ensure that there is a tiny bit of overlap. Both the bug and the workaround can be seen here:&lt;/p&gt;
&lt;p&gt;  http://www.princexml.com/howcome/2008/tests/float.html&lt;br /&gt;
  http://www.princexml.com/howcome/2008/tests/float.pdf&lt;/p&gt;
&lt;p&gt;Column-span isn't implemented yet, but page-floating content will span multiple columns. So, you can make the first heading span multiple columns by way of:&lt;/p&gt;
&lt;p&gt;  h1 { float: top }&lt;/p&gt;
&lt;p&gt;I use that technique in this document:&lt;/p&gt;
&lt;p&gt;  http://www.princexml.com/howcome/2008/wikipedia/s2.pdf&lt;/p&gt;
&lt;p&gt;The document has been created with this command:&lt;/p&gt;
&lt;p&gt;  prince --no-author-style -s http://www.princexml.com/howcome/2008/wikipedia/wiki2.css http://en.wikipedia.org/wiki/Soviet_Union -o s2.pdf&lt;/p&gt;
&lt;p&gt;-h&#38;kon&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This is great work &#8212; you are pushing CSS and Prince to where few have ventured!</p>
<p>Sidenotes are probably best handled with floats and negative margins in CSS. The idea is that you float a sidenote to the side and then use a negative margin value to push it outside the box from where the sidenote naturally appears. </p>
<p>Unfortunately, Prince6 has a bug where floats may overlap when pushed fully outside their box. The bug has a workaround: ensure that there is a tiny bit of overlap. Both the bug and the workaround can be seen here:</p>
<p>  <a href="http://www.princexml.com/howcome/2008/tests/float.html" rel="nofollow">http://www.princexml.com/howcome/2008/tests/float.html</a><br />
  <a href="http://www.princexml.com/howcome/2008/tests/float.pdf" rel="nofollow">http://www.princexml.com/howcome/2008/tests/float.pdf</a></p>
<p>Column-span isn&#8217;t implemented yet, but page-floating content will span multiple columns. So, you can make the first heading span multiple columns by way of:</p>
<p>  h1 { float: top }</p>
<p>I use that technique in this document:</p>
<p>  <a href="http://www.princexml.com/howcome/2008/wikipedia/s2.pdf" rel="nofollow">http://www.princexml.com/howcome/2008/wikipedia/s2.pdf</a></p>
<p>The document has been created with this command:</p>
<p>  prince &#8211;no-author-style -s <a href="http://www.princexml.com/howcome/2008/wikipedia/wiki2.css" rel="nofollow">http://www.princexml.com/howcome/2008/wikipedia/wiki2.css</a> <a href="http://en.wikipedia.org/wiki/Soviet_Union" rel="nofollow">http://en.wikipedia.org/wiki/Soviet_Union</a> -o s2.pdf</p>
<p>-h&amp;kon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Formatting dictionaries with CSS by Eric Albright</title>
		<link>http://www.wesay.org/blogs/palaso/2008/02/26/formatting-dictionaries-with-css/#comment-8</link>
		<author>Eric Albright</author>
		<pubDate>Tue, 04 Mar 2008 02:38:55 +0000</pubDate>
		<guid>http://www.wesay.org/blogs/palaso/2008/02/26/formatting-dictionaries-with-css/#comment-8</guid>
		<description>Greg, sorry about the character problems. I've fixed those and replaced the file. The 'first-of-type' class attribute could be 'first' or 'f' just as well, but what you gain in space, you lose in readability. My purpose here was clarity. The converted file is transient, I would be more concerned about what the stylesheet authors will use.

In the updated version, I also added an image and a locator (letter header). I haven't included tables still since table support shouldn't really be a version 1 feature.</description>
		<content:encoded><![CDATA[<p>Greg, sorry about the character problems. I&#8217;ve fixed those and replaced the file. The &#8216;first-of-type&#8217; class attribute could be &#8216;first&#8217; or &#8216;f&#8217; just as well, but what you gain in space, you lose in readability. My purpose here was clarity. The converted file is transient, I would be more concerned about what the stylesheet authors will use.</p>
<p>In the updated version, I also added an image and a locator (letter header). I haven&#8217;t included tables still since table support shouldn&#8217;t really be a version 1 feature.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Formatting dictionaries with CSS by Greg</title>
		<link>http://www.wesay.org/blogs/palaso/2008/02/26/formatting-dictionaries-with-css/#comment-7</link>
		<author>Greg</author>
		<pubDate>Wed, 27 Feb 2008 17:50:08 +0000</pubDate>
		<guid>http://www.wesay.org/blogs/palaso/2008/02/26/formatting-dictionaries-with-css/#comment-7</guid>
		<description>I tried the files. I want to thank you for doing this work. It is a good start and looks interesting.

A couple of points. The .xhtml file included will not load in Oxygen or PrinceXML. It complains of character problems.

I wonder if the right way is to put the first-of-type inside the class attribute or if a separate attribute should be created for this? The converted file looks excessively bloated with such long designators.

I also noticed the sample has complicated text formatting but doesn't include the more complicated elements of dictionary formatting: including pictures and tables. On our page of samples, these were included.

There seems to be a discussion of how to describe the letter headers in section 14 of:
http://www.w3.org/TR/2007/WD-css3-gcpm-20070504/ (I found crop marks discussed in the same document.) It also describes how to place pictures in the ways we want.

So it is a good start. I don't know if PrinceXML implements enough of this working group article to allow us to use it for these purposes. For us to implement it, we may need to set our priorities too.</description>
		<content:encoded><![CDATA[<p>I tried the files. I want to thank you for doing this work. It is a good start and looks interesting.</p>
<p>A couple of points. The .xhtml file included will not load in Oxygen or PrinceXML. It complains of character problems.</p>
<p>I wonder if the right way is to put the first-of-type inside the class attribute or if a separate attribute should be created for this? The converted file looks excessively bloated with such long designators.</p>
<p>I also noticed the sample has complicated text formatting but doesn&#8217;t include the more complicated elements of dictionary formatting: including pictures and tables. On our page of samples, these were included.</p>
<p>There seems to be a discussion of how to describe the letter headers in section 14 of:<br />
<a href="http://www.w3.org/TR/2007/WD-css3-gcpm-20070504/" rel="nofollow">http://www.w3.org/TR/2007/WD-css3-gcpm-20070504/</a> (I found crop marks discussed in the same document.) It also describes how to place pictures in the ways we want.</p>
<p>So it is a good start. I don&#8217;t know if PrinceXML implements enough of this working group article to allow us to use it for these purposes. For us to implement it, we may need to set our priorities too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Enchant in a Windows App: Getting Started by palaso.org &#187; Blog Archive &#187; Configuring where Enchant looks for files</title>
		<link>http://www.wesay.org/blogs/palaso/2008/02/20/using-enchant-in-a-windows-app-getting-started/#comment-6</link>
		<author>palaso.org &#187; Blog Archive &#187; Configuring where Enchant looks for files</author>
		<pubDate>Wed, 27 Feb 2008 02:22:55 +0000</pubDate>
		<guid>http://www.wesay.org/blogs/palaso/2008/02/20/using-enchant-in-a-windows-app-getting-started/#comment-6</guid>
		<description>[...] far, I have covered how to get started using Enchant and how to set up dictionaries. This post will cover more advanced concepts that let an application [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] far, I have covered how to get started using Enchant and how to set up dictionaries. This post will cover more advanced concepts that let an application [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up dictionaries for Enchant by Palaso &#187; Blog Archive &#187; Configuring where Enchant looks for files</title>
		<link>http://www.wesay.org/blogs/palaso/2008/02/21/setting-up-dictionaries-for-enchant/#comment-5</link>
		<author>Palaso &#187; Blog Archive &#187; Configuring where Enchant looks for files</author>
		<pubDate>Sat, 23 Feb 2008 13:01:12 +0000</pubDate>
		<guid>http://www.wesay.org/blogs/palaso/2008/02/21/setting-up-dictionaries-for-enchant/#comment-5</guid>
		<description>[...] Home   Palaso               &#171; Setting up dictionaries for Enchant [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Home   Palaso               &laquo; Setting up dictionaries for Enchant [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Enchant in a Windows App: Getting Started by Palaso &#187; Blog Archive &#187; Configuring where Enchant looks for files</title>
		<link>http://www.wesay.org/blogs/palaso/2008/02/20/using-enchant-in-a-windows-app-getting-started/#comment-4</link>
		<author>Palaso &#187; Blog Archive &#187; Configuring where Enchant looks for files</author>
		<pubDate>Fri, 22 Feb 2008 14:00:46 +0000</pubDate>
		<guid>http://www.wesay.org/blogs/palaso/2008/02/20/using-enchant-in-a-windows-app-getting-started/#comment-4</guid>
		<description>[...] far, I have covered how to get started using Enchant and how to set up dictionaries. This post will cover more advanced concepts that let an application [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] far, I have covered how to get started using Enchant and how to set up dictionaries. This post will cover more advanced concepts that let an application [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Enchant in a Windows App: Getting Started by Palaso &#187; Blog Archive &#187; Setting up dictionaries for Enchant</title>
		<link>http://www.wesay.org/blogs/palaso/2008/02/20/using-enchant-in-a-windows-app-getting-started/#comment-3</link>
		<author>Palaso &#187; Blog Archive &#187; Setting up dictionaries for Enchant</author>
		<pubDate>Thu, 21 Feb 2008 05:33:07 +0000</pubDate>
		<guid>http://www.wesay.org/blogs/palaso/2008/02/20/using-enchant-in-a-windows-app-getting-started/#comment-3</guid>
		<description>[...] Home   Palaso               &#171; Using Enchant in a Windows App: Getting Started [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Home   Palaso               &laquo; Using Enchant in a Windows App: Getting Started [&#8230;]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
