<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-1399</id>
	<title>Nabble - Gnome - Tomboy</title>
	<updated>2009-11-21T07:25:02Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Gnome---Tomboy-f1399.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Gnome---Tomboy-f1399.html" />
	<subtitle type="html">Discuss Tomboy, Gnome's desktop note-taking application.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26457536</id>
	<title>Re: [Tomdroid-dev] tomdroid's storage-redesign &amp;&amp; what do we want to keep in the database as a note?</title>
	<published>2009-11-21T07:25:02Z</published>
	<updated>2009-11-21T07:25:02Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">On Mon, Nov 16, 2009 at 9:17 PM, Olivier Bilodeau
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26457536&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;olivier@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; hi guys,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Just working on reviewing some code for tomdroid and it got me thinking
&lt;br&gt;&amp;gt; about something I would like to ask people with tomboy experience.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Let me explain quickly.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; There is this hack we do right now in the storage-redesign branch[1] to
&lt;br&gt;&amp;gt; re-create XML tags after we parse them in a note. The deal is we want to
&lt;br&gt;&amp;gt; parse the xml tags except the ones in &amp;lt;note-content&amp;gt;..&amp;lt;/note-content&amp;gt; so we
&lt;br&gt;&amp;gt; store XML in our sqlite database for the note-content portion and parse it
&lt;br&gt;&amp;gt; again on the fly when a Note is viewed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I _really_ find it disgusting, it looks like:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; String tag = &amp;quot;&amp;lt;&amp;quot;;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; if (uri != null) {
&lt;br&gt;&amp;gt;     if (uri.equals(NS_LINK)) {
&lt;br&gt;&amp;gt;         tag += PREFIX_LINK+&amp;quot;:&amp;quot;;
&lt;br&gt;&amp;gt;     } else if (uri.equals(NS_SIZE)) {
&lt;br&gt;&amp;gt;         tag += PREFIX_SIZE+&amp;quot;:&amp;quot;;
&lt;br&gt;&amp;gt;     }
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; tag += localName+&amp;quot;&amp;gt;&amp;quot;;
&lt;br&gt;&amp;gt; xmlContent.append(tag);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; for open tags and close ones inside of a focused xml class.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now, (and here is where I need your experience), I was thinking about 2
&lt;br&gt;&amp;gt; potentials solutions here (aside from the fact that we might just be
&lt;br&gt;&amp;gt; misusing Java's XML parsing lib):
&lt;/div&gt;&lt;br&gt;Android *must* have a standard XmlReader-type library for accessing
&lt;br&gt;XML. &amp;nbsp;Hopefully it would be trivial to take Tomboy's note-parsing code
&lt;br&gt;and rewrite it using the appropriate Android libraries.
&lt;br&gt;&lt;br&gt;&amp;gt; 1- store the whole note instead of just note-content in the database
&lt;br&gt;&amp;gt; This way we won't lose addins metatags, full note encryption support will be
&lt;br&gt;&amp;gt; possible, etc. Also, parsing the few lines of metadata on each load won't be
&lt;br&gt;&amp;gt; that big of a penalty since its the note's content that is always the
&lt;br&gt;&amp;gt; biggest.
&lt;br&gt;&lt;br&gt;I'm not sure what you mean here about add-ins metatags. &amp;nbsp;Can you
&lt;br&gt;explain more? &amp;nbsp;Add-ins can't add new top-level tags to a Tomboy .note
&lt;br&gt;file, but they can add new tags within the &amp;lt;note-content&amp;gt; element.
&lt;br&gt;&lt;br&gt;There is no full note encryption support in any client. &amp;nbsp;I think it's
&lt;br&gt;a waste of time to design for something that doesn't yet exist.
&lt;br&gt;&lt;br&gt;When using web sync (which I really think will be the primary method
&lt;br&gt;people use), you will have to parse note XML into JSON requests, and
&lt;br&gt;JSON requests into note XML. &amp;nbsp;Tomboy has to do it and it's not fun,
&lt;br&gt;and is an obvious place where bugs may show up. &amp;nbsp;If you assume that
&lt;br&gt;most people will use web sync and not manual transfer of .note files,
&lt;br&gt;then optimizing for that path makes sense to me.
&lt;br&gt;&lt;br&gt;Of course, my assumption could be wrong.
&lt;br&gt;&lt;br&gt;&amp;gt; 2- Forget about xml parsing just regexp out the note-content portion then
&lt;br&gt;&amp;gt; parse the rest of the note. Or just use an xml lib that allows to extract
&lt;br&gt;&amp;gt; part of the raw xml structure (or find the way to do it in Sax).
&lt;br&gt;&lt;br&gt;We use proper XML parsing to get to &amp;lt;note-content&amp;gt;, then we use
&lt;br&gt;regular expressions (see the websync add-in) to remove the title from
&lt;br&gt;there, because as I mentioned in my other email, the title is not part
&lt;br&gt;of note-content in the JSON object.
&lt;br&gt;&lt;br&gt;We did all of this work of breaking the note up into a nice JSON
&lt;br&gt;object so the only XML was pure content, in the hope that it would
&lt;br&gt;make everything easier for new clients. &amp;nbsp;It definitely makes things
&lt;br&gt;easier on the web, and I hoped it would also make things easier for
&lt;br&gt;Tomdroid.
&lt;br&gt;&lt;br&gt;Of course, I may be totally misunderstanding what your issues are.
&lt;br&gt;&lt;br&gt;Sorry for the late reply, and also for not having a chance to actually
&lt;br&gt;look at the Tomdroid code files under discussion,
&lt;br&gt;Sandy
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26457536&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/tomdroid%27s-storage-redesign----what-do-we-want-to-keep-in-the-database-as-a-note--tp26384590p26457536.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26442870</id>
	<title>Re: OAuth 1.0a and Ubuntu One</title>
	<published>2009-11-20T04:56:44Z</published>
	<updated>2009-11-20T04:56:44Z</updated>
	<author>
		<name>Cornelius Hald</name>
	</author>
	<content type="html">Elliot Murphy wrote:
&lt;br&gt;&amp;gt; Also, if you run into any trouble getting it working with Ubuntu One, 
&lt;br&gt;&amp;gt; let me know and we'll happily assist with debugging.
&lt;br&gt;&lt;br&gt;Thanks for the offer, but yesterday I finally managed to do the first 
&lt;br&gt;successfull sync between Ubuntu One and Conboy :) So it looks like all I 
&lt;br&gt;need now is some cleaning and testing.
&lt;br&gt;&lt;br&gt;I noticed problems with nested bullet lists, but it looks like it´s a U1 
&lt;br&gt;problem [1].
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;Conny
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;https://bugs.launchpad.net/ubuntuone-servers/+bug/482372&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugs.launchpad.net/ubuntuone-servers/+bug/482372&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26442870&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OAuth-1.0a-and-Ubuntu-One-tp26362826p26442870.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26404293</id>
	<title>Re: tomdroid's storage-redesign &amp;&amp; what do we want to keep in the database as a note?</title>
	<published>2009-11-18T00:42:03Z</published>
	<updated>2009-11-18T00:42:03Z</updated>
	<author>
		<name>Cornelius Hald</name>
	</author>
	<content type="html">Hi Oliver,
&lt;br&gt;&lt;br&gt;I don't have Tomboy developer experience, but I came across similar
&lt;br&gt;problems while developing a Tomboy client for Maemo, so maybe my input
&lt;br&gt;could help you as well.
&lt;br&gt;&lt;br&gt;Normally we store the data in xml files, just like Tomboy is doing it,
&lt;br&gt;but there is also a backend plugin that saves the notes directly into a
&lt;br&gt;Midgard database.
&lt;br&gt;&lt;br&gt;So what I'm doing is storing the &amp;lt;note-content&amp;gt; subtree as string in a
&lt;br&gt;member of each Note object. When showing a note only this subtree is
&lt;br&gt;parsed and displayed. When saving a note object to the database we only
&lt;br&gt;store this subtree in the database as xml, the metadata is saved
&lt;br&gt;directly.
&lt;br&gt;When saving to a xml file, the rest of the file is constructed and the
&lt;br&gt;&amp;lt;note-content&amp;gt; subtree is merged with it.
&lt;br&gt;&lt;br&gt;Getting the sub tree was no problem here, but we use a different parser
&lt;br&gt;model not SAX. I guess doing all the work with SAX is rather a big pain.
&lt;br&gt;I'm using XmlTextReader from libxml2. I think there is also an XmlReader
&lt;br&gt;interface on Android. Maybe that will make things easier?
&lt;br&gt;&lt;br&gt;For me the problem was the parsing of the &amp;lt;note-content&amp;gt; sub tree,
&lt;br&gt;because it has no namespace definitions after extracting it from the
&lt;br&gt;main document. They are only available on the &amp;lt;note&amp;gt; element and libxml
&lt;br&gt;throws an error if you try to parse an element like &amp;lt;size:big&amp;gt; without
&lt;br&gt;having a reference to the &amp;quot;size&amp;quot; namespace.
&lt;br&gt;&lt;br&gt;So what I had to do was to append the namespace on the fly to the
&lt;br&gt;&amp;lt;note-content&amp;gt; element and later when merging back with the rest of the
&lt;br&gt;xml file I had to remove the redundant namespaces again.
&lt;br&gt;&lt;br&gt;But that probably also depends on the parser which you are using.
&lt;br&gt;&lt;br&gt;For your solution #1 I don't see a big problem there. Only you need to
&lt;br&gt;decide which metadata is the &amp;quot;correct&amp;quot; one. The one in the database or
&lt;br&gt;the one on in the xml document. It's not really nice to store redundant
&lt;br&gt;data, but in this case it's probably not too bad and the extra cost of
&lt;br&gt;parsing through the metadata shoudn't be that big.
&lt;br&gt;&lt;br&gt;About solution #2. Well, I think we all know that using regexp on xml is
&lt;br&gt;not the right thing (tm) to do. But I don't see a big problem in this
&lt;br&gt;case as the structure of those documents is well know and there
&lt;br&gt;shouldn't be any surprises. In fact I'm doing some regexp suff on xml in
&lt;br&gt;my code as well. Not proud of it, be it works ;)
&lt;br&gt;&lt;br&gt;BTW, does using a database for storage really improves speed for you?
&lt;br&gt;I'm just asking because I had no performance issues so far. But only
&lt;br&gt;tested with around 100 ntoes. I can load them in about 1 second on the
&lt;br&gt;Nokia N810 which is a quite slow device. But your results would really
&lt;br&gt;interest me. Are you using sqlite or something else?
&lt;br&gt;&lt;br&gt;&lt;br&gt;I'm not sure if that does help you somehow. Hopefully I didn't miss your
&lt;br&gt;point completely ;)
&lt;br&gt;&lt;br&gt;Cheers!
&lt;br&gt;Conny
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue, 2009-11-17 at 00:17 -0500, Olivier Bilodeau wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; hi guys,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Just working on reviewing some code for tomdroid and it got me
&lt;br&gt;&amp;gt; thinking about something I would like to ask people with tomboy
&lt;br&gt;&amp;gt; experience.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Let me explain quickly.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; There is this hack we do right now in the storage-redesign branch[1]
&lt;br&gt;&amp;gt; to re-create XML tags after we parse them in a note. The deal is we
&lt;br&gt;&amp;gt; want to parse the xml tags except the ones in
&lt;br&gt;&amp;gt; &amp;lt;note-content&amp;gt;..&amp;lt;/note-content&amp;gt; so we store XML in our sqlite database
&lt;br&gt;&amp;gt; for the note-content portion and parse it again on the fly when a Note
&lt;br&gt;&amp;gt; is viewed.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I _really_ find it disgusting, it looks like:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; String tag = &amp;quot;&amp;lt;&amp;quot;;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; if (uri != null) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; if (uri.equals(NS_LINK)) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tag += PREFIX_LINK+&amp;quot;:&amp;quot;;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; } else if (uri.equals(NS_SIZE)) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tag += PREFIX_SIZE+&amp;quot;:&amp;quot;;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; tag += localName+&amp;quot;&amp;gt;&amp;quot;;
&lt;br&gt;&amp;gt; xmlContent.append(tag);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; for open tags and close ones inside of a focused xml class.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Now, (and here is where I need your experience), I was thinking about
&lt;br&gt;&amp;gt; 2 potentials solutions here (aside from the fact that we might just be
&lt;br&gt;&amp;gt; misusing Java's XML parsing lib):
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 1- store the whole note instead of just note-content in the database
&lt;br&gt;&amp;gt; This way we won't lose addins metatags, full note encryption support
&lt;br&gt;&amp;gt; will be possible, etc. Also, parsing the few lines of metadata on each
&lt;br&gt;&amp;gt; load won't be that big of a penalty since its the note's content that
&lt;br&gt;&amp;gt; is always the biggest.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 2- Forget about xml parsing just regexp out the note-content portion
&lt;br&gt;&amp;gt; then parse the rest of the note. Or just use an xml lib that allows to
&lt;br&gt;&amp;gt; extract part of the raw xml structure (or find the way to do it in
&lt;br&gt;&amp;gt; Sax).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I prefer #1 but I'm thinking maybe there are major roadblocks to this
&lt;br&gt;&amp;gt; solution that I don't foresee.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What does the tomboy people think?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; If I'm not clear enough, ask questions i'll readjust.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks for your time.
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Olivier Bilodeau &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26404293&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;olivier@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Tomboy-list mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26404293&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26404293&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/tomdroid%27s-storage-redesign----what-do-we-want-to-keep-in-the-database-as-a-note--tp26384590p26404293.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26393880</id>
	<title>ANNOUNCE: Tomboy 1.0.1 stable bugfix release</title>
	<published>2009-11-17T09:18:37Z</published>
	<updated>2009-11-17T09:18:37Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">Hi folks,
&lt;br&gt;&lt;br&gt;This email is to announce Tomboy 1.0.1, a stable bugfix update in the 1.0.x
&lt;br&gt;series.
&lt;br&gt;&lt;br&gt;Of note, this is the first stable upstream release that supports
&lt;br&gt;synchronizing notes with Ubuntu One.
&lt;br&gt;&lt;br&gt;Tomboy is a simple personal note-taking application designed to be
&lt;br&gt;unobtrusive and friendly, while supporting inter-note-links similar to
&lt;br&gt;a WikiWikiWeb to help you organize your notes and ideas. &amp;nbsp;It can run
&lt;br&gt;either as a GNOME panel applet or a notification tray icon.
&lt;br&gt;&lt;br&gt;Tomboy's Website: &lt;a href=&quot;http://www.gnome.org/projects/tomboy&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnome.org/projects/tomboy&lt;/a&gt;&lt;br&gt;&lt;br&gt;Tomboy's Wiki: &lt;a href=&quot;http://live.gnome.org/Tomboy&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy&lt;/a&gt;&lt;br&gt;&amp;nbsp;* Road Map: &lt;a href=&quot;http://live.gnome.org/Tomboy/RoadMap&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy/RoadMap&lt;/a&gt;&lt;br&gt;&amp;nbsp;* Brainstorming: &lt;a href=&quot;http://live.gnome.org/Tomboy/PlaceForNewIdeas&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy/PlaceForNewIdeas&lt;/a&gt;&lt;br&gt;&lt;br&gt;Linux tarballs:
&lt;br&gt;&lt;a href=&quot;http://download.gnome.org/sources/tomboy/1.0/tomboy-1.0.1.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.gnome.org/sources/tomboy/1.0/tomboy-1.0.1.tar.gz&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://download.gnome.org/sources/tomboy/1.0/tomboy-1.0.1.tar.bz2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.gnome.org/sources/tomboy/1.0/tomboy-1.0.1.tar.bz2&lt;/a&gt;&lt;br&gt;&lt;br&gt;Windows installer:
&lt;br&gt;&lt;a href=&quot;http://download.gnome.org/binaries/win32/tomboy/1.0/Tomboy-1.0.1.msi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.gnome.org/binaries/win32/tomboy/1.0/Tomboy-1.0.1.msi&lt;/a&gt;&lt;br&gt;&lt;br&gt;Mac OS X disk image:
&lt;br&gt;&lt;a href=&quot;http://download.gnome.org/binaries/mac/tomboy/1.0/Tomboy-1.0.1.dmg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.gnome.org/binaries/mac/tomboy/1.0/Tomboy-1.0.1.dmg&lt;/a&gt;&lt;br&gt;&lt;br&gt;This release includes the following changes:
&lt;br&gt;&lt;br&gt;Version 1.0.1
&lt;br&gt;* Add support for Ubuntu One and others using OAuth 1.0a (#594046, Rodrigo Moya)
&lt;br&gt;* Show correct help version on Windows and Mac (#601067, Stefan Cosma)
&lt;br&gt;* Always show icons for note items in recent notes menu (#590653)
&lt;br&gt;* Other fixes: #596416, #596395
&lt;br&gt;* Translation updates: ca, et, ja, lv, pl, ro, ru
&lt;br&gt;&lt;br&gt;Special thanks to everyone entering bugs, submitting patches,
&lt;br&gt;keeping translations up to date, and helping to make Tomboy
&lt;br&gt;better!
&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26393880&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ANNOUNCE%3A-Tomboy-1.0.1-stable-bugfix-release-tp26393880p26393880.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26393819</id>
	<title>ANNOUNCE: Tomboy 1.1.0 development release</title>
	<published>2009-11-17T09:15:02Z</published>
	<updated>2009-11-17T09:15:02Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">Hi folks,
&lt;br&gt;&lt;br&gt;This email is to announce Tomboy 1.1.0, the first development release
&lt;br&gt;on the road to Tomboy 1.2, which will coincide with GNOME 2.30.
&lt;br&gt;&lt;br&gt;Tomboy is a simple personal note-taking application designed to be
&lt;br&gt;unobtrusive and friendly, while supporting inter-note-links similar to
&lt;br&gt;a WikiWikiWeb to help you organize your notes and ideas. &amp;nbsp;It can run
&lt;br&gt;either as a GNOME panel applet or a notification tray icon.
&lt;br&gt;&lt;br&gt;Tomboy's Website: &lt;a href=&quot;http://www.gnome.org/projects/tomboy&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnome.org/projects/tomboy&lt;/a&gt;&lt;br&gt;&lt;br&gt;Tomboy's Wiki: &lt;a href=&quot;http://live.gnome.org/Tomboy&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy&lt;/a&gt;&lt;br&gt;&amp;nbsp;* Road Map: &lt;a href=&quot;http://live.gnome.org/Tomboy/RoadMap&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy/RoadMap&lt;/a&gt;&lt;br&gt;&amp;nbsp;* Brainstorming: &lt;a href=&quot;http://live.gnome.org/Tomboy/PlaceForNewIdeas&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy/PlaceForNewIdeas&lt;/a&gt;&lt;br&gt;&lt;br&gt;Linux tarballs:
&lt;br&gt;&lt;a href=&quot;http://download.gnome.org/sources/tomboy/1.1/tomboy-1.1.0.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.gnome.org/sources/tomboy/1.1/tomboy-1.1.0.tar.gz&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://download.gnome.org/sources/tomboy/1.1/tomboy-1.1.0.tar.bz2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.gnome.org/sources/tomboy/1.1/tomboy-1.1.0.tar.bz2&lt;/a&gt;&lt;br&gt;&lt;br&gt;Windows installer:
&lt;br&gt;&lt;a href=&quot;http://download.gnome.org/binaries/win32/tomboy/1.1/Tomboy-1.1.0.msi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.gnome.org/binaries/win32/tomboy/1.1/Tomboy-1.1.0.msi&lt;/a&gt;&lt;br&gt;&lt;br&gt;Mac OS X disk image:
&lt;br&gt;&lt;a href=&quot;http://download.gnome.org/binaries/mac/tomboy/1.1/Tomboy-1.1.0.dmg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.gnome.org/binaries/mac/tomboy/1.1/Tomboy-1.1.0.dmg&lt;/a&gt;&lt;br&gt;&lt;br&gt;This release includes the following changes:
&lt;br&gt;&lt;br&gt;Version 1.1.0
&lt;br&gt;* Add support for Ubuntu One and others using OAuth 1.0a (#594046, Rodrigo Moya)
&lt;br&gt;* Fix printing in Windows Vista and Windows 7 (#576554)
&lt;br&gt;* Various Windows bug fixes (#585297, #601067, #599688, Stefan Cosma)
&lt;br&gt;* Add CreateNamedNoteWithUri method to dbus interface (#580525, Matt Jones)
&lt;br&gt;* Add dbus methods for working with notebooks (#576329, Clemens Buss)
&lt;br&gt;* Always show icons for note items in recent notes menu (#590653)
&lt;br&gt;* Add Sync menu item to panel applet (#597569)
&lt;br&gt;* Stop cutting off message text in the Sync dialog (#553615)
&lt;br&gt;* Other fixes: #596416, #596395, #597139
&lt;br&gt;* Translation updates: ca, id, it, lv, nb, pl, ro, sl
&lt;br&gt;&lt;br&gt;Special thanks to everyone entering bugs, submitting patches,
&lt;br&gt;keeping translations up to date, and helping to make Tomboy
&lt;br&gt;better!
&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26393819&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ANNOUNCE%3A-Tomboy-1.1.0-development-release-tp26393819p26393819.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26384590</id>
	<title>tomdroid's storage-redesign &amp;&amp; what do we want to keep in the database as a note?</title>
	<published>2009-11-16T21:17:22Z</published>
	<updated>2009-11-16T21:17:22Z</updated>
	<author>
		<name>Olivier Bilodeau</name>
	</author>
	<content type="html">hi guys,&lt;br&gt;&lt;br&gt;Just working on reviewing some code for tomdroid and it got me thinking about something I would like to ask people with tomboy experience.&lt;br&gt;&lt;br&gt;Let me explain quickly.&lt;br&gt;&lt;br&gt;There is this hack we do right now in the storage-redesign branch[1] to re-create XML tags after we parse them in a note. The deal is we want to parse the xml tags except the ones in &amp;lt;note-content&amp;gt;..&amp;lt;/note-content&amp;gt; so we store XML in our sqlite database for the note-content portion and parse it again on the fly when a Note is viewed.&lt;br&gt;

&lt;br&gt;I _really_ find it disgusting, it looks like:&lt;br&gt;&lt;br&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;String tag = &amp;quot;&amp;lt;&amp;quot;;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;

&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;if (uri != null) {&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;    if (uri.equals(NS_LINK)) {&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;

&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;        tag += PREFIX_LINK+&amp;quot;:&amp;quot;;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;    } else if (uri.equals(NS_SIZE)) {&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;

&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;        tag += PREFIX_SIZE+&amp;quot;:&amp;quot;;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;    }&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;

&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;}&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;tag += localName+&amp;quot;&amp;gt;&amp;quot;;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;

&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;xmlContent.append(tag);&lt;/span&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;for open tags and close ones inside of a focused xml class.&lt;br&gt;&lt;br&gt;Now, (and here is where I need your experience), I was thinking about 2 potentials solutions here (aside from the fact that we might just be misusing Java&amp;#39;s XML parsing lib):&lt;br&gt;

&lt;br&gt;1- store the whole note instead of just note-content in the database&lt;br&gt;This way we won&amp;#39;t lose addins metatags, full note encryption support will be possible, etc. Also, parsing the few lines of metadata on each load won&amp;#39;t be that big of a penalty since its the note&amp;#39;s content that is always the biggest.&lt;br&gt;

&lt;br&gt;2- Forget about xml parsing just regexp out the note-content portion then parse the rest of the note. Or just use an xml lib that allows to extract part of the raw xml structure (or find the way to do it in Sax).&lt;br&gt;
&lt;br&gt;
I prefer #1 but I&amp;#39;m thinking maybe there are major roadblocks to this solution that I don&amp;#39;t foresee.&lt;br&gt;&lt;br&gt;What does the tomboy people think?&lt;br&gt;&lt;br&gt;If I&amp;#39;m not clear enough, ask questions i&amp;#39;ll readjust.&lt;br&gt;

&lt;br&gt;Thanks for your time.&lt;br&gt;-- &lt;br&gt;Olivier Bilodeau &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26384590&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;olivier@...&lt;/a&gt;&amp;gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26384590&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/tomdroid%27s-storage-redesign----what-do-we-want-to-keep-in-the-database-as-a-note--tp26384590p26384590.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26372753</id>
	<title>Re: OAuth 1.0a and Ubuntu One</title>
	<published>2009-11-16T06:22:20Z</published>
	<updated>2009-11-16T06:22:20Z</updated>
	<author>
		<name>Elliot Murphy-3</name>
	</author>
	<content type="html">Also, if you run into any trouble getting it working with Ubuntu One, &amp;nbsp;
&lt;br&gt;let me know and we'll happily assist with debugging.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Elliot Murphy
&lt;br&gt;&lt;br&gt;On Nov 16, 2009, at 4:16 AM, Cornelius Hald &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26372753&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hald@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thanks so much for your answer Sandy!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; For some reason I was thinking that with the new OAuth 1.0a &amp;nbsp;
&lt;br&gt;&amp;gt; specification the webservice would actually really call back to the &amp;nbsp;
&lt;br&gt;&amp;gt; client and not only redirect the browser. Thanks for proving me &amp;nbsp;
&lt;br&gt;&amp;gt; wrong on that! That would have been a real pain to implement :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have some code laying around which is using a conboy:// url &amp;nbsp;
&lt;br&gt;&amp;gt; similar to Tomdroid, so it should be straight forward to extend that &amp;nbsp;
&lt;br&gt;&amp;gt; to include the verifier. If not, I´ll use something like the HttpLis 
&lt;br&gt;&amp;gt; tener. Now that I´ve understood that it´s just a call to localhost i 
&lt;br&gt;&amp;gt; t shouldn´t be a problem.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26372753&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OAuth-1.0a-and-Ubuntu-One-tp26362826p26372753.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26368887</id>
	<title>Re: OAuth 1.0a and Ubuntu One</title>
	<published>2009-11-16T01:16:35Z</published>
	<updated>2009-11-16T01:16:35Z</updated>
	<author>
		<name>Cornelius Hald</name>
	</author>
	<content type="html">Thanks so much for your answer Sandy!
&lt;br&gt;&lt;br&gt;For some reason I was thinking that with the new OAuth 1.0a 
&lt;br&gt;specification the webservice would actually really call back to the 
&lt;br&gt;client and not only redirect the browser. Thanks for proving me wrong on 
&lt;br&gt;that! That would have been a real pain to implement :)
&lt;br&gt;&lt;br&gt;I have some code laying around which is using a conboy:// url similar to 
&lt;br&gt;Tomdroid, so it should be straight forward to extend that to include the 
&lt;br&gt;verifier. If not, I´ll use something like the HttpListener. Now that 
&lt;br&gt;I´ve understood that it´s just a call to localhost it shouldn´t be a 
&lt;br&gt;problem.
&lt;br&gt;&lt;br&gt;Thank you for putting me back on track again :)
&lt;br&gt;Conny
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandy Armstrong wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Sun, Nov 15, 2009 at 12:13 PM, Cornelius Hald &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26368887&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hald@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm in the process of upgrading Conboy[1] to support OAuth 1.0a. I
&lt;br&gt;&amp;gt;&amp;gt; decided to test against Ubuntu One as it is (I think) the only public
&lt;br&gt;&amp;gt;&amp;gt; available service yet.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Yup, that's true.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; Maybe you guys could help me a bit, because you've already implemented
&lt;br&gt;&amp;gt;&amp;gt; that in Tomboy. I'm having problems with the oauth_verifier. How do you
&lt;br&gt;&amp;gt;&amp;gt; get the verifier from the service back to the client? I've read that
&lt;br&gt;&amp;gt;&amp;gt; this should happen with the callback url, but then I would have to open
&lt;br&gt;&amp;gt;&amp;gt; a webserver on the client and listen to this callback, which will
&lt;br&gt;&amp;gt;&amp;gt; probably not work because of firewalls, NAT, etc...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This is exactly what Tomboy does, but firewalls, NAT, etc, should not
&lt;br&gt;&amp;gt; be an issue. &amp;nbsp;We start a local web server on the first available port
&lt;br&gt;&amp;gt; (running in the Tomboy process using the HttpListener class), and pass
&lt;br&gt;&amp;gt; the URL to U1. &amp;nbsp;During the next step of the auth process, the U1
&lt;br&gt;&amp;gt; server appends oauth_verifier and some other parameters to that URL,
&lt;br&gt;&amp;gt; and redirects the browser there. &amp;nbsp;That's when you see the plain Tomboy
&lt;br&gt;&amp;gt; page saying &amp;quot;Authorization successful, go back to Tomboy and click
&lt;br&gt;&amp;gt; 'Save'&amp;quot; (or whatever the message says. &amp;nbsp;You can see how this is all
&lt;br&gt;&amp;gt; done in this method:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/WebSyncPreferencesWidget.cs#n102&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/WebSyncPreferencesWidget.cs#n102&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The point is, the callback stuff all happens on the local machine. &amp;nbsp;U1
&lt;br&gt;&amp;gt; never actually has to talk to that URL...it just redirects the user's
&lt;br&gt;&amp;gt; browser there.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; Another option could be to let the user copy&amp;past the verifier from the
&lt;br&gt;&amp;gt;&amp;gt; website to the client application. Of course this is not very user
&lt;br&gt;&amp;gt;&amp;gt; friendly, but would be ok in the beginning. Anyways, it looks like
&lt;br&gt;&amp;gt;&amp;gt; Ubuntu One does not support that.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Interesting. &amp;nbsp;If you don't have something like the HttpListener class,
&lt;br&gt;&amp;gt; and for whatever reason are unable to get all the request info back to
&lt;br&gt;&amp;gt; Conboy, I guess you could make a web page that displayed the verifier
&lt;br&gt;&amp;gt; and instructed the user to copy/paste it back into Conboy. &amp;nbsp;But I'm
&lt;br&gt;&amp;gt; sure there must be C libraries that do the same thing as HttpListner
&lt;br&gt;&amp;gt; (I'd hate for you to have to implement your own HTTP parser).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Microsoft .NET (not Mono), HttpListener requires admin access, so
&lt;br&gt;&amp;gt; on Windows we use Mono's MIT/X11 implementation, which could be useful
&lt;br&gt;&amp;gt; to you:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/MonoHttp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/MonoHttp&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; So how did you do that in Tomboy? I've tried it and it works, but it
&lt;br&gt;&amp;gt;&amp;gt; looks like magic to me ;)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It would be great someone of you could give me some hints!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hopefully the information above is sufficient. &amp;nbsp;That and the OAuth
&lt;br&gt;&amp;gt; 1.0a spec are the best resources I can think of. &amp;nbsp;If you have any more
&lt;br&gt;&amp;gt; questions, let me know! :-)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Sandy
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26368887&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OAuth-1.0a-and-Ubuntu-One-tp26362826p26368887.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26366069</id>
	<title>Re: OAuth 1.0a and Ubuntu One</title>
	<published>2009-11-15T18:32:46Z</published>
	<updated>2009-11-15T18:32:46Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">I should mention that instead of starting a local web server, Tomdroid
&lt;br&gt;registers itself with a URL on the phone...tomdroid://sync or some
&lt;br&gt;such. &amp;nbsp;No idea if that scheme would make more sense on Maemo, too.
&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;&lt;br&gt;On Sun, Nov 15, 2009 at 1:12 PM, Sandy Armstrong
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26366069&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanfordarmstrong@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Sun, Nov 15, 2009 at 12:13 PM, Cornelius Hald &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26366069&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hald@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm in the process of upgrading Conboy[1] to support OAuth 1.0a. I
&lt;br&gt;&amp;gt;&amp;gt; decided to test against Ubuntu One as it is (I think) the only public
&lt;br&gt;&amp;gt;&amp;gt; available service yet.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Yup, that's true.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Maybe you guys could help me a bit, because you've already implemented
&lt;br&gt;&amp;gt;&amp;gt; that in Tomboy. I'm having problems with the oauth_verifier. How do you
&lt;br&gt;&amp;gt;&amp;gt; get the verifier from the service back to the client? I've read that
&lt;br&gt;&amp;gt;&amp;gt; this should happen with the callback url, but then I would have to open
&lt;br&gt;&amp;gt;&amp;gt; a webserver on the client and listen to this callback, which will
&lt;br&gt;&amp;gt;&amp;gt; probably not work because of firewalls, NAT, etc...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This is exactly what Tomboy does, but firewalls, NAT, etc, should not
&lt;br&gt;&amp;gt; be an issue.  We start a local web server on the first available port
&lt;br&gt;&amp;gt; (running in the Tomboy process using the HttpListener class), and pass
&lt;br&gt;&amp;gt; the URL to U1.  During the next step of the auth process, the U1
&lt;br&gt;&amp;gt; server appends oauth_verifier and some other parameters to that URL,
&lt;br&gt;&amp;gt; and redirects the browser there.  That's when you see the plain Tomboy
&lt;br&gt;&amp;gt; page saying &amp;quot;Authorization successful, go back to Tomboy and click
&lt;br&gt;&amp;gt; 'Save'&amp;quot; (or whatever the message says.  You can see how this is all
&lt;br&gt;&amp;gt; done in this method:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/WebSyncPreferencesWidget.cs#n102&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/WebSyncPreferencesWidget.cs#n102&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The point is, the callback stuff all happens on the local machine.  U1
&lt;br&gt;&amp;gt; never actually has to talk to that URL...it just redirects the user's
&lt;br&gt;&amp;gt; browser there.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Another option could be to let the user copy&amp;past the verifier from the
&lt;br&gt;&amp;gt;&amp;gt; website to the client application. Of course this is not very user
&lt;br&gt;&amp;gt;&amp;gt; friendly, but would be ok in the beginning. Anyways, it looks like
&lt;br&gt;&amp;gt;&amp;gt; Ubuntu One does not support that.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Interesting.  If you don't have something like the HttpListener class,
&lt;br&gt;&amp;gt; and for whatever reason are unable to get all the request info back to
&lt;br&gt;&amp;gt; Conboy, I guess you could make a web page that displayed the verifier
&lt;br&gt;&amp;gt; and instructed the user to copy/paste it back into Conboy.  But I'm
&lt;br&gt;&amp;gt; sure there must be C libraries that do the same thing as HttpListner
&lt;br&gt;&amp;gt; (I'd hate for you to have to implement your own HTTP parser).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Microsoft .NET (not Mono), HttpListener requires admin access, so
&lt;br&gt;&amp;gt; on Windows we use Mono's MIT/X11 implementation, which could be useful
&lt;br&gt;&amp;gt; to you:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/MonoHttp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/MonoHttp&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; So how did you do that in Tomboy? I've tried it and it works, but it
&lt;br&gt;&amp;gt;&amp;gt; looks like magic to me ;)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It would be great someone of you could give me some hints!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hopefully the information above is sufficient.  That and the OAuth
&lt;br&gt;&amp;gt; 1.0a spec are the best resources I can think of.  If you have any more
&lt;br&gt;&amp;gt; questions, let me know! :-)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sandy
&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26366069&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OAuth-1.0a-and-Ubuntu-One-tp26362826p26366069.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26365176</id>
	<title>Re: Tomboy Won't Start</title>
	<published>2009-11-15T16:14:17Z</published>
	<updated>2009-11-15T16:14:17Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">Steve,
&lt;br&gt;&lt;br&gt;Executing this command while Tomboy is not running should fix your problem:
&lt;br&gt;&lt;br&gt;rm -rf ~/.config/tomboy/addin-db-001
&lt;br&gt;&lt;br&gt;A few Ubuntu users have complained of this after an upgrade. &amp;nbsp;I am not
&lt;br&gt;entirely sure what is causing it, but after deleting the addin db
&lt;br&gt;things should go back to normal.
&lt;br&gt;&lt;br&gt;I wouldn't recommend switching to Gnote, only because it is now an
&lt;br&gt;abandoned project (it was a port of Tomboy to C++), and also it does
&lt;br&gt;not support note synchronization and a few other features. &amp;nbsp;But if you
&lt;br&gt;decide to stick with Gnote, they have their own mailing list:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://mail.gnome.org/mailman/listinfo/gnote-list&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail.gnome.org/mailman/listinfo/gnote-list&lt;/a&gt;&lt;br&gt;&lt;br&gt;Let me know if you run into any more issues,
&lt;br&gt;Sandy
&lt;br&gt;&lt;br&gt;On Sun, Nov 15, 2009 at 4:08 PM, steveb357 &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26365176&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steveb357@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Sandy,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This is what the terminal gives me:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Unhandled Exception: System.InvalidOperationException: Could not read add-in
&lt;br&gt;&amp;gt; description
&lt;br&gt;&amp;gt;   at Mono.Addins.Addin.get_Description () [0x00000]
&lt;br&gt;&amp;gt;   at Mono.Addins.AddinSessionService.CheckHostAssembly
&lt;br&gt;&amp;gt; (System.Reflection.Assembly asm) [0x00000]
&lt;br&gt;&amp;gt;   at Mono.Addins.AddinSessionService.ActivateRoots () [0x00000]
&lt;br&gt;&amp;gt;   at Mono.Addins.AddinSessionService.Initialize () [0x00000]
&lt;br&gt;&amp;gt;   at Mono.Addins.AddinManager.Initialize (System.String configDir) [0x00000]
&lt;br&gt;&amp;gt;   at Tomboy.AddinManager.InitializeMonoAddins (System.String old_conf_dir)
&lt;br&gt;&amp;gt; [0x00000]
&lt;br&gt;&amp;gt;   at Tomboy.AddinManager..ctor (System.String tomboy_conf_dir, System.String
&lt;br&gt;&amp;gt; old_tomboy_conf_dir) [0x00000]
&lt;br&gt;&amp;gt;   at Tomboy.NoteManager..ctor (System.String directory, System.String
&lt;br&gt;&amp;gt; backup_directory) [0x00000]
&lt;br&gt;&amp;gt;   at Tomboy.NoteManager..ctor (System.String directory) [0x00000]
&lt;br&gt;&amp;gt;   at Tomboy.Tomboy.Main (System.String[] args) [0x00000]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I uninstalled Tomboy and reinstalled it.  Still no joy.
&lt;br&gt;&amp;gt; I installed gnote, and It looks like Tomboy, and retrieves all my Tomboy
&lt;br&gt;&amp;gt; notes, but I'm sort of unsure about what is going on.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; SteveB
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---- On Sun, 15 Nov 2009 21:45:39 +0000 Sandy Armstrong
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26365176&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanfordarmstrong@...&lt;/a&gt;&amp;gt; wrote ----
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Sun, Nov 15, 2009 at 1:33 PM, steveb357 &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26365176&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steveb357@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; I upgraded to the latest version of Ubuntu.  Since then, I can't get
&lt;br&gt;&amp;gt;&amp;gt; Tomboy
&lt;br&gt;&amp;gt;&amp;gt; to open at all.  It was consistantly crashing in the older version of
&lt;br&gt;&amp;gt;&amp;gt; Ubuntu, but it won't open at all in this one.  Do you have any
&lt;br&gt;&amp;gt;&amp;gt; suggestions?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hmm, that doesn't sound very fun.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Please make sure tomboy isn't running, then start Tomboy from a
&lt;br&gt;&amp;gt; terminal, and when it crashes, paste the output you get from the
&lt;br&gt;&amp;gt; terminal here.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you ever experience Tomboy crashing, please let us know. I'm not
&lt;br&gt;&amp;gt; aware of any crasher bugs right now.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Sandy
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26365176&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tomboy-Won%27t-Start-tp26363647p26365176.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26363759</id>
	<title>Re: Tomboy Won't Start</title>
	<published>2009-11-15T13:45:39Z</published>
	<updated>2009-11-15T13:45:39Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">On Sun, Nov 15, 2009 at 1:33 PM, steveb357 &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26363759&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steveb357@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I upgraded to the latest version of Ubuntu.  Since then, I can't get Tomboy
&lt;br&gt;&amp;gt; to open at all.  It was consistantly crashing in the older version of
&lt;br&gt;&amp;gt; Ubuntu, but it won't open at all in this one.  Do you have any suggestions?
&lt;br&gt;&lt;br&gt;Hmm, that doesn't sound very fun.
&lt;br&gt;&lt;br&gt;Please make sure tomboy isn't running, then start Tomboy from a
&lt;br&gt;terminal, and when it crashes, paste the output you get from the
&lt;br&gt;terminal here.
&lt;br&gt;&lt;br&gt;If you ever experience Tomboy crashing, please let us know. &amp;nbsp;I'm not
&lt;br&gt;aware of any crasher bugs right now.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Sandy
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26363759&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tomboy-Won%27t-Start-tp26363647p26363759.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26363647</id>
	<title>Tomboy Won't Start</title>
	<published>2009-11-15T13:33:27Z</published>
	<updated>2009-11-15T13:33:27Z</updated>
	<author>
		<name>steveb357</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;meta content=&quot;text/html;charset=UTF-8&quot; http-equiv=&quot;Content-Type&quot;&gt;&lt;/head&gt;&lt;body&gt;I upgraded to the latest version of Ubuntu.&amp;nbsp; Since then, I can't get Tomboy to open at all.&amp;nbsp; It was consistantly crashing in the older version of Ubuntu, but it won't open at all in this one.&amp;nbsp; Do you have any suggestions?&lt;br&gt;&lt;br&gt;SteveB&lt;br&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26363647&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tomboy-Won%27t-Start-tp26363647p26363647.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26363430</id>
	<title>Re: OAuth 1.0a and Ubuntu One</title>
	<published>2009-11-15T13:12:45Z</published>
	<updated>2009-11-15T13:12:45Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">On Sun, Nov 15, 2009 at 12:13 PM, Cornelius Hald &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26363430&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hald@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hi!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm in the process of upgrading Conboy[1] to support OAuth 1.0a. I
&lt;br&gt;&amp;gt; decided to test against Ubuntu One as it is (I think) the only public
&lt;br&gt;&amp;gt; available service yet.
&lt;br&gt;&lt;br&gt;Yup, that's true.
&lt;br&gt;&lt;br&gt;&amp;gt; Maybe you guys could help me a bit, because you've already implemented
&lt;br&gt;&amp;gt; that in Tomboy. I'm having problems with the oauth_verifier. How do you
&lt;br&gt;&amp;gt; get the verifier from the service back to the client? I've read that
&lt;br&gt;&amp;gt; this should happen with the callback url, but then I would have to open
&lt;br&gt;&amp;gt; a webserver on the client and listen to this callback, which will
&lt;br&gt;&amp;gt; probably not work because of firewalls, NAT, etc...
&lt;br&gt;&lt;br&gt;This is exactly what Tomboy does, but firewalls, NAT, etc, should not
&lt;br&gt;be an issue. &amp;nbsp;We start a local web server on the first available port
&lt;br&gt;(running in the Tomboy process using the HttpListener class), and pass
&lt;br&gt;the URL to U1. &amp;nbsp;During the next step of the auth process, the U1
&lt;br&gt;server appends oauth_verifier and some other parameters to that URL,
&lt;br&gt;and redirects the browser there. &amp;nbsp;That's when you see the plain Tomboy
&lt;br&gt;page saying &amp;quot;Authorization successful, go back to Tomboy and click
&lt;br&gt;'Save'&amp;quot; (or whatever the message says. &amp;nbsp;You can see how this is all
&lt;br&gt;done in this method:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/WebSyncPreferencesWidget.cs#n102&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/WebSyncPreferencesWidget.cs#n102&lt;/a&gt;&lt;br&gt;&lt;br&gt;The point is, the callback stuff all happens on the local machine. &amp;nbsp;U1
&lt;br&gt;never actually has to talk to that URL...it just redirects the user's
&lt;br&gt;browser there.
&lt;br&gt;&lt;br&gt;&amp;gt; Another option could be to let the user copy&amp;past the verifier from the
&lt;br&gt;&amp;gt; website to the client application. Of course this is not very user
&lt;br&gt;&amp;gt; friendly, but would be ok in the beginning. Anyways, it looks like
&lt;br&gt;&amp;gt; Ubuntu One does not support that.
&lt;br&gt;&lt;br&gt;Interesting. &amp;nbsp;If you don't have something like the HttpListener class,
&lt;br&gt;and for whatever reason are unable to get all the request info back to
&lt;br&gt;Conboy, I guess you could make a web page that displayed the verifier
&lt;br&gt;and instructed the user to copy/paste it back into Conboy. &amp;nbsp;But I'm
&lt;br&gt;sure there must be C libraries that do the same thing as HttpListner
&lt;br&gt;(I'd hate for you to have to implement your own HTTP parser).
&lt;br&gt;&lt;br&gt;On Microsoft .NET (not Mono), HttpListener requires admin access, so
&lt;br&gt;on Windows we use Mono's MIT/X11 implementation, which could be useful
&lt;br&gt;to you:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/MonoHttp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://git.gnome.org/cgit/tomboy/tree/Tomboy/Addins/WebSyncService/MonoHttp&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt; So how did you do that in Tomboy? I've tried it and it works, but it
&lt;br&gt;&amp;gt; looks like magic to me ;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It would be great someone of you could give me some hints!
&lt;br&gt;&lt;br&gt;Hopefully the information above is sufficient. &amp;nbsp;That and the OAuth
&lt;br&gt;1.0a spec are the best resources I can think of. &amp;nbsp;If you have any more
&lt;br&gt;questions, let me know! :-)
&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26363430&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OAuth-1.0a-and-Ubuntu-One-tp26362826p26363430.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26363239</id>
	<title>Re: Using dbus api to sync tomboy</title>
	<published>2009-11-15T12:55:12Z</published>
	<updated>2009-11-15T12:55:12Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">On Thu, Nov 5, 2009 at 6:04 PM, Matthew Jones &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26363239&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mattjones@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Well, normally I would recommend using the existing sync
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; infrastructure, or perhaps conduit, to avoid duplication of work. But
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; that being said, I don't see any problem with adding that method, as
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; long as it errors-out in the case of guid conflicts or a malformed
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; guid.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Please file an enhancement bug with a patch in bugzilla.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Good luck with your project,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Sandy
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What is the status of my patch? It has been ignored for the past 7
&lt;br&gt;&amp;gt; months: &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=580525&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=580525&lt;/a&gt;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What is the deal? It is a trivial patch, and could be added in seconds.
&lt;/div&gt;&lt;br&gt;Thanks for the reminder. Today was a good day to send this email, as
&lt;br&gt;I'm prepping the next Tomboy release. &amp;nbsp;I'll review your patch today,
&lt;br&gt;and if there's nothing wrong with it it will be in tomorrow's release.
&lt;br&gt;&lt;br&gt;Sorry for the long delay!
&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26363239&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Using-dbus-api-to-sync-tomboy-tp23251713p26363239.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26362826</id>
	<title>OAuth 1.0a and Ubuntu One</title>
	<published>2009-11-15T12:13:35Z</published>
	<updated>2009-11-15T12:13:35Z</updated>
	<author>
		<name>Cornelius Hald</name>
	</author>
	<content type="html">Hi!
&lt;br&gt;&lt;br&gt;I'm in the process of upgrading Conboy[1] to support OAuth 1.0a. I
&lt;br&gt;decided to test against Ubuntu One as it is (I think) the only public
&lt;br&gt;available service yet.
&lt;br&gt;&lt;br&gt;Maybe you guys could help me a bit, because you've already implemented
&lt;br&gt;that in Tomboy. I'm having problems with the oauth_verifier. How do you
&lt;br&gt;get the verifier from the service back to the client? I've read that
&lt;br&gt;this should happen with the callback url, but then I would have to open
&lt;br&gt;a webserver on the client and listen to this callback, which will
&lt;br&gt;probably not work because of firewalls, NAT, etc...
&lt;br&gt;&lt;br&gt;Another option could be to let the user copy&amp;past the verifier from the
&lt;br&gt;website to the client application. Of course this is not very user
&lt;br&gt;friendly, but would be ok in the beginning. Anyways, it looks like
&lt;br&gt;Ubuntu One does not support that.
&lt;br&gt;&lt;br&gt;So how did you do that in Tomboy? I've tried it and it works, but it
&lt;br&gt;looks like magic to me ;)
&lt;br&gt;&lt;br&gt;It would be great someone of you could give me some hints!
&lt;br&gt;&lt;br&gt;Thanks a lot!
&lt;br&gt;Conny
&lt;br&gt;&lt;br&gt;&lt;br&gt;[1] Tomboy for Maemo
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26362826&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OAuth-1.0a-and-Ubuntu-One-tp26362826p26362826.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26327549</id>
	<title>Re: Export entire notebook to PDF</title>
	<published>2009-11-12T14:17:35Z</published>
	<updated>2009-11-12T14:17:35Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">Being able to export multiple notes (one or many notebooks, entire
&lt;br&gt;collection, arbitrary note selections, etc) is an open gnome-love bug
&lt;br&gt;that would be an excellent choice for anyone looking to start with
&lt;br&gt;Tomboy development. &amp;nbsp;Not too hard and quite useful!
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://bugzilla.gnome.org/show_bug.cgi?id=356871&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugzilla.gnome.org/show_bug.cgi?id=356871&lt;/a&gt;&lt;br&gt;&lt;br&gt;Related bugs:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://bugzilla.gnome.org/show_bug.cgi?id=338860&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugzilla.gnome.org/show_bug.cgi?id=338860&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;https://bugzilla.gnome.org/show_bug.cgi?id=395893&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugzilla.gnome.org/show_bug.cgi?id=395893&lt;/a&gt;&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;&lt;br&gt;On Thu, Nov 12, 2009 at 2:15 PM, Ben2K &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26327549&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;klausner@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But it's incomplete. The current export tot HTML only exports the note and
&lt;br&gt;&amp;gt; its explicit links. It doesn't export the entire notebook. For example, if a
&lt;br&gt;&amp;gt; note is a link off another link, not shown in the root note, it doesn't
&lt;br&gt;&amp;gt; export.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Paul Cutler-3 wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Export to HTML is available in Tomboy.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Open a note, and in the toolbar click the Tools icon to the left of the
&lt;br&gt;&amp;gt;&amp;gt; trash and choose Export to HTML
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Paul
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Thu, Nov 12, 2009 at 3:54 PM, Ben2K &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26327549&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;klausner@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Boyd Timothy wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Exporting an entire notebook as a PDF is an excellent
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; suggestion and something we ought to look at doing in the next
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; release.  Right now, we're in bugfixing mode only.  That should be
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; lifted in a month.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; It would be even nicer if there were an &amp;quot;Export Notebook&amp;quot; that allowed
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; HTML
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; to be selected as the format. HTML is easy to convert to just about
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; anything
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; (including PDF), whereas converting PDF to something else is more
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; problematic.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26294436.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26294436.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Sent from the Gnome - Tomboy mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Tomboy-list mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26327549&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Tomboy-list mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26327549&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26327511.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26327511.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Gnome - Tomboy mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Tomboy-list mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26327549&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26327549&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26327549.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26327511</id>
	<title>Re: Export entire notebook to PDF</title>
	<published>2009-11-12T14:15:21Z</published>
	<updated>2009-11-12T14:15:21Z</updated>
	<author>
		<name>Ben2K</name>
	</author>
	<content type="html">But it's incomplete. The current export tot HTML only exports the note and its explicit links. It doesn't export the &lt;i&gt;entire&lt;/i&gt;&amp;nbsp;notebook. For example, if a note is a link off another link, not shown in the root note, it doesn't export.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Paul Cutler-3 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Export to HTML is available in Tomboy.
&lt;br&gt;&lt;br&gt;Open a note, and in the toolbar click the Tools icon to the left of the
&lt;br&gt;trash and choose Export to HTML
&lt;br&gt;&lt;br&gt;Paul
&lt;br&gt;&lt;br&gt;On Thu, Nov 12, 2009 at 3:54 PM, Ben2K &amp;lt;klausner@frijoles.net&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Boyd Timothy wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Exporting an entire notebook as a PDF is an excellent
&lt;br&gt;&amp;gt; &amp;gt; suggestion and something we ought to look at doing in the next
&lt;br&gt;&amp;gt; &amp;gt; release. &amp;nbsp;Right now, we're in bugfixing mode only. &amp;nbsp;That should be
&lt;br&gt;&amp;gt; &amp;gt; lifted in a month.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It would be even nicer if there were an &amp;quot;Export Notebook&amp;quot; that allowed HTML
&lt;br&gt;&amp;gt; to be selected as the format. HTML is easy to convert to just about
&lt;br&gt;&amp;gt; anything
&lt;br&gt;&amp;gt; (including PDF), whereas converting PDF to something else is more
&lt;br&gt;&amp;gt; problematic.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26294436.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26294436.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Gnome - Tomboy mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Tomboy-list mailing list
&lt;br&gt;&amp;gt; Tomboy-list@lists.beatniksoftware.com
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;Tomboy-list@lists.beatniksoftware.com
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26327511.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26327292</id>
	<title>Re: Export entire notebook to PDF</title>
	<published>2009-11-12T14:00:51Z</published>
	<updated>2009-11-12T14:00:51Z</updated>
	<author>
		<name>Paul Cutler-3</name>
	</author>
	<content type="html">Export to HTML is available in Tomboy.&lt;br&gt;&lt;br&gt;Open a note, and in the toolbar click the Tools icon to the left of the trash and choose Export to HTML&lt;br&gt;&lt;br&gt;Paul&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 12, 2009 at 3:54 PM, Ben2K &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26327292&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;klausner@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;br&gt;
&lt;br&gt;
Boyd Timothy wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Exporting an entire notebook as a PDF is an excellent&lt;br&gt;
&amp;gt; suggestion and something we ought to look at doing in the next&lt;br&gt;
&amp;gt; release.  Right now, we&amp;#39;re in bugfixing mode only.  That should be&lt;br&gt;
&amp;gt; lifted in a month.&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;br&gt;
It would be even nicer if there were an &amp;quot;Export Notebook&amp;quot; that allowed HTML&lt;br&gt;
to be selected as the format. HTML is easy to convert to just about anything&lt;br&gt;
(including PDF), whereas converting PDF to something else is more&lt;br&gt;
problematic.&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
--&lt;br&gt;
View this message in context: &lt;a href=&quot;http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26294436.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26294436.html&lt;/a&gt;&lt;br&gt;
Sent from the Gnome - Tomboy mailing list archive at Nabble.com.&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
Tomboy-list mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26327292&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26327292&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26327292.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26294436</id>
	<title>Re: Export entire notebook to PDF</title>
	<published>2009-11-10T17:55:32Z</published>
	<updated>2009-11-12T13:54:46Z</updated>
	<author>
		<name>Ben2K</name>
	</author>
	<content type="html">&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Boyd Timothy wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Exporting an entire notebook as a PDF is an excellent
&lt;br&gt;suggestion and something we ought to look at doing in the next
&lt;br&gt;release. &amp;nbsp;Right now, we're in bugfixing mode only. &amp;nbsp;That should be
&lt;br&gt;lifted in a month.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
It would be even nicer if there were an &amp;quot;Export Notebook&amp;quot; that allowed HTML to be selected as the format. HTML is easy to convert to just about anything (including PDF), whereas converting PDF to something else is more problematic.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Export-entire-notebook-to-PDF-tp15638016p26294436.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26258360</id>
	<title>Re: os x shortcut keys don't use Command</title>
	<published>2009-11-08T13:49:14Z</published>
	<updated>2009-11-08T13:49:14Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">Hi Richie,
&lt;br&gt;&lt;br&gt;This bug has been filed here: &lt;a href=&quot;https://bugzilla.gnome.org/show_bug.cgi?id=560738&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugzilla.gnome.org/show_bug.cgi?id=560738&lt;/a&gt;&lt;br&gt;&lt;br&gt;There is a patch on the way to fix it for Tomboy 1.2. &amp;nbsp;Please let us
&lt;br&gt;know if you run into any other issues.
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;Sandy
&lt;br&gt;&lt;br&gt;On Sun, Nov 8, 2009 at 8:56 AM, Rich E &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26258360&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reakinator@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have been a longer user of Tomboy on Ubuntu and I recently bought a Mac.
&lt;br&gt;&amp;gt; I have Tomboy installed there and it works great so far, but I noticed that
&lt;br&gt;&amp;gt; hotkeys still use the 'PC' way instead of the 'Mac' way - that is, you have
&lt;br&gt;&amp;gt; to use Control instead of the Apply/Command button.  I don't know if this is
&lt;br&gt;&amp;gt; known, or unimportant to others, but I like having the hotkeys consistent
&lt;br&gt;&amp;gt; for closing windows and programs.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Just my 2cents,
&lt;br&gt;&amp;gt; Richie
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Tomboy-list mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26258360&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26258360&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/os-x-shortcut-keys-don%27t-use-Command-tp26255524p26258360.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26255524</id>
	<title>os x shortcut keys don't use Command</title>
	<published>2009-11-08T08:56:22Z</published>
	<updated>2009-11-08T08:56:22Z</updated>
	<author>
		<name>Rich E</name>
	</author>
	<content type="html">Hi,&lt;br&gt;&lt;br&gt;I have been a longer user of Tomboy on Ubuntu and I recently bought a Mac.  I have Tomboy installed there and it works great so far, but I noticed that hotkeys still use the &amp;#39;PC&amp;#39; way instead of the &amp;#39;Mac&amp;#39; way - that is, you have to use Control instead of the Apply/Command button.  I don&amp;#39;t know if this is known, or unimportant to others, but I like having the hotkeys consistent for closing windows and programs.&lt;br&gt;
&lt;br&gt;Just my 2cents,&lt;br&gt;Richie&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26255524&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/os-x-shortcut-keys-don%27t-use-Command-tp26255524p26255524.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26363218</id>
	<title>Re: Using dbus api to sync tomboy</title>
	<published>2009-11-05T18:04:35Z</published>
	<updated>2009-11-05T18:04:35Z</updated>
	<author>
		<name>matt-108</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&amp;gt;&amp;gt; Well, normally I would recommend using the existing sync
&lt;br&gt;&amp;gt;&amp;gt; infrastructure, or perhaps conduit, to avoid duplication of work. But
&lt;br&gt;&amp;gt;&amp;gt; that being said, I don't see any problem with adding that method, as
&lt;br&gt;&amp;gt;&amp;gt; long as it errors-out in the case of guid conflicts or a malformed
&lt;br&gt;&amp;gt;&amp;gt; guid.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Please file an enhancement bug with a patch in bugzilla.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Good luck with your project,
&lt;br&gt;&amp;gt;&amp;gt; Sandy
&lt;/div&gt;&lt;br&gt;What is the status of my patch? It has been ignored for the past 7
&lt;br&gt;months: &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=580525&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug.cgi?id=580525&lt;/a&gt;. 
&lt;br&gt;&lt;br&gt;What is the deal? It is a trivial patch, and could be added in seconds.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26363218&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Using-dbus-api-to-sync-tomboy-tp23251713p26363218.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26130422</id>
	<title>Re: Evernote sync</title>
	<published>2009-10-30T06:50:20Z</published>
	<updated>2009-10-30T06:50:20Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">On Thu, Oct 29, 2009 at 3:28 PM, Alberto Fornasier &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26130422&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gimli@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 2009/10/27 Sandy Armstrong &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26130422&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanfordarmstrong@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt; Since as far as I know nobody is working on Evernote sync at this
&lt;br&gt;&amp;gt;&amp;gt; time, the only way you could help is by writing code (or
&lt;br&gt;&amp;gt;&amp;gt; finding/paying somebody to write code).  Otherwise, I suggest staying
&lt;br&gt;&amp;gt;&amp;gt; subscribed to this email list so you can find out if anybody does
&lt;br&gt;&amp;gt;&amp;gt; start such a project.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm interested in some form of sync with Evernote too. I use Tomboy
&lt;br&gt;&amp;gt; both on my netbook and my work laptop. Having them sync'd through the
&lt;br&gt;&amp;gt; cloud would allow me to access them from my mobile (Android based
&lt;br&gt;&amp;gt; smartphone in case you're interested) easily.
&lt;/div&gt;&lt;br&gt;In this case, what we are pushing for is to use a Tomboy-specific
&lt;br&gt;online service for syncing your notes, and then to use Tomdroid on
&lt;br&gt;your Android device. &amp;nbsp;This is still work-in-progress, but I hope it
&lt;br&gt;will all be ready by the time Tomboy 1.2 is released in March.
&lt;br&gt;&lt;br&gt;Right now you can use Canonical's proprietary Ubuntu One service to
&lt;br&gt;sync your notes to the cloud, and soon we will be releasing Tomboy
&lt;br&gt;Online, which is just a hosted instance of our AGPL Snowy software.
&lt;br&gt;This means that anyone with the desire to host their own personal
&lt;br&gt;Tomboy Online could do so. &amp;nbsp;Other online services like Midgard are
&lt;br&gt;also compatible with Tomboy's web synchronization.
&lt;br&gt;&lt;br&gt;With both of these services, you should be able to browse your notes
&lt;br&gt;from any web browser on any device. &amp;nbsp;But there is a branch of Tomdroid
&lt;br&gt;which supports synchronization with these services, and hopefully that
&lt;br&gt;will be merged for release soon.
&lt;br&gt;&lt;br&gt;As for the rest of your post, I really don't know anything about
&lt;br&gt;Evernote, and can't really help. &amp;nbsp;But other people on this list have
&lt;br&gt;expressed interest in syncing with Evernote, so maybe there are some
&lt;br&gt;people out there who already have ideas on how to implement
&lt;br&gt;Tomboy&amp;lt;-&amp;gt;Evernote sync.
&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26130422&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Evernote-sync-tp26083170p26130422.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26126067</id>
	<title>Re: Evernote sync</title>
	<published>2009-10-30T00:39:19Z</published>
	<updated>2009-10-30T00:39:19Z</updated>
	<author>
		<name>Cornelius Hald</name>
	</author>
	<content type="html">On Thu, 2009-10-29 at 23:28 +0100, Alberto Fornasier wrote:
&lt;br&gt;&amp;gt; Yes, Tomboy on Windows runs fine. Some kind of Android
&lt;br&gt;&amp;gt; port/app/whatever would be nice too ;)
&lt;br&gt;&amp;gt; Jokes aside, and sorry for the partial thread hijacking: does anyone
&lt;br&gt;&amp;gt; here know whether there's some kind of application around to read/sync
&lt;br&gt;&amp;gt; tomboy notes on an Android device?
&lt;br&gt;&lt;br&gt;Have a look at Tomdroid. The author is also on this list.
&lt;br&gt;&lt;a href=&quot;https://launchpad.net/tomdroid&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://launchpad.net/tomdroid&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers!
&lt;br&gt;Conny
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26126067&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Evernote-sync-tp26083170p26126067.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26121954</id>
	<title>Re: Evernote sync</title>
	<published>2009-10-29T15:28:50Z</published>
	<updated>2009-10-29T15:28:50Z</updated>
	<author>
		<name>Alberto Fornasier</name>
	</author>
	<content type="html">2009/10/27 Sandy Armstrong &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26121954&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanfordarmstrong@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; Since as far as I know nobody is working on Evernote sync at this
&lt;br&gt;&amp;gt; time, the only way you could help is by writing code (or
&lt;br&gt;&amp;gt; finding/paying somebody to write code). &amp;nbsp;Otherwise, I suggest staying
&lt;br&gt;&amp;gt; subscribed to this email list so you can find out if anybody does
&lt;br&gt;&amp;gt; start such a project.
&lt;br&gt;&lt;br&gt;I'm interested in some form of sync with Evernote too. I use Tomboy
&lt;br&gt;both on my netbook and my work laptop. Having them sync'd through the
&lt;br&gt;cloud would allow me to access them from my mobile (Android based
&lt;br&gt;smartphone in case you're interested) easily.
&lt;br&gt;even though this idea sounds great, I was wondering how exactly a
&lt;br&gt;plugin or other kind of software implementing this feature should
&lt;br&gt;work.
&lt;br&gt;Sending note files as they are, with tags and all kind of metadata,
&lt;br&gt;probably isn't a good idea: tuu much stuff that gets in the way when
&lt;br&gt;you try to read the note through web/desktop app/mobile app. Some kind
&lt;br&gt;of editing must be done before sending the content to Evernote (using
&lt;br&gt;the HTML export feature maybe?).
&lt;br&gt;Even if we/you can manage to export the notes in a readable format,
&lt;br&gt;how would the plugin know which note it has to update when you start
&lt;br&gt;the sync? Some exploration of the capabilities of Evernote's desktop
&lt;br&gt;app (closed source and Windows only, though it runs fine in wine) may
&lt;br&gt;do the trick here, if there's some way to access its database
&lt;br&gt;directly. Syncing through it could even be simple and wouldn't be too
&lt;br&gt;restricting, because everyone using Evernote probably has the desktop
&lt;br&gt;app installed on every pc where he/she has Tomboy.
&lt;br&gt;I'll try and browse the docs of the app. Has anyone started
&lt;br&gt;researching on this subject?
&lt;br&gt;Do you have any idea about how this feature should work?
&lt;br&gt;&lt;br&gt;&amp;gt; Sorry I don't have better news for you. &amp;nbsp;On the plus side, Tomboy is
&lt;br&gt;&amp;gt; available for Windows. &amp;nbsp;If it becomes available for iPhone I'm sure
&lt;br&gt;&amp;gt; that would be announced here as well.
&lt;br&gt;&lt;br&gt;Yes, Tomboy on Windows runs fine. Some kind of Android
&lt;br&gt;port/app/whatever would be nice too ;)
&lt;br&gt;Jokes aside, and sorry for the partial thread hijacking: does anyone
&lt;br&gt;here know whether there's some kind of application around to read/sync
&lt;br&gt;tomboy notes on an Android device?
&lt;br&gt;&lt;br&gt;Bye
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26121954&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Evernote-sync-tp26083170p26121954.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26086571</id>
	<title>Re: Evernote sync</title>
	<published>2009-10-27T15:55:53Z</published>
	<updated>2009-10-27T15:55:53Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">On Tue, Oct 27, 2009 at 12:00 PM, Shai Inbal &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26086571&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shai.calcalist@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hi there,
&lt;br&gt;&amp;gt; I'm a great fan of tomboy on my ubuntu netbook, but also of evernote on my
&lt;br&gt;&amp;gt; iphone and my work windows pc. As for now, it seems that there's no
&lt;br&gt;&amp;gt; intention of porting evernote for linux, but there's been some discussions
&lt;br&gt;&amp;gt; about a syncing plugin in the tomboy team. It's even in the roadmap at the
&lt;br&gt;&amp;gt; website!
&lt;br&gt;&lt;br&gt;The Tomboy team is not working on Evernote sync, and it is not on our
&lt;br&gt;roadmap, which you can check out here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://live.gnome.org/Tomboy/RoadMap&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy/RoadMap&lt;/a&gt;&lt;br&gt;&lt;br&gt;It has been suggested as a useful feature on the PlaceForNewIdeas
&lt;br&gt;page, but nobody has shared any actual code, as far as I am aware.
&lt;br&gt;&lt;br&gt;&amp;gt; I wanted to ask about the progress of making the evernote sync plugin. Who
&lt;br&gt;&amp;gt; is working on this? How can i help? I'm not much of a programmer, but i can
&lt;br&gt;&amp;gt; beta test &amp; report bugs.
&lt;br&gt;&lt;br&gt;Since as far as I know nobody is working on Evernote sync at this
&lt;br&gt;time, the only way you could help is by writing code (or
&lt;br&gt;finding/paying somebody to write code). &amp;nbsp;Otherwise, I suggest staying
&lt;br&gt;subscribed to this email list so you can find out if anybody does
&lt;br&gt;start such a project.
&lt;br&gt;&lt;br&gt;Sorry I don't have better news for you. &amp;nbsp;On the plus side, Tomboy is
&lt;br&gt;available for Windows. &amp;nbsp;If it becomes available for iPhone I'm sure
&lt;br&gt;that would be announced here as well.
&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26086571&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Evernote-sync-tp26083170p26086571.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26083170</id>
	<title>Evernote sync</title>
	<published>2009-10-27T12:00:05Z</published>
	<updated>2009-10-27T12:00:05Z</updated>
	<author>
		<name>Shai Inbal</name>
	</author>
	<content type="html">Hi there,
&lt;br&gt;I'm a great fan of tomboy on my ubuntu netbook, but also of evernote &amp;nbsp;
&lt;br&gt;on my iphone and my work windows pc. As for now, it seems that there's &amp;nbsp;
&lt;br&gt;no intention of porting evernote for linux, but there's been some &amp;nbsp;
&lt;br&gt;discussions about a syncing plugin in the tomboy team. It's even in &amp;nbsp;
&lt;br&gt;the roadmap at the website!
&lt;br&gt;&lt;br&gt;I wanted to ask about the progress of making the evernote sync plugin. &amp;nbsp;
&lt;br&gt;Who is working on this? How can i help? I'm not much of a programmer, &amp;nbsp;
&lt;br&gt;but i can beta test &amp; report bugs.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;שי ענבל | Shai Inbal
&lt;br&gt;&lt;a href=&quot;http://www.linkedin.com/in/shaiinbal&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/shaiinbal&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26083170&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Evernote-sync-tp26083170p26083170.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26081308</id>
	<title>Re: (nubee) Template Questions</title>
	<published>2009-10-27T10:00:26Z</published>
	<updated>2009-10-27T10:00:26Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">On Mon, Oct 26, 2009 at 1:43 PM, Daniel M. Eldridge
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26081308&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dme.tomboy@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I a new to Tomboy, but boy oh boy, do I love it.
&lt;br&gt;&lt;br&gt;That's great to hear. &amp;nbsp;:-)
&lt;br&gt;&lt;br&gt;&amp;gt; I want to learn how I can format and use templates.
&lt;br&gt;&amp;gt; How do I insert a timestamp into a Template?
&lt;br&gt;&amp;gt; How can I auto delete notes created with Templates a la Note of the Day?
&lt;br&gt;&amp;gt; What else can I do with Templates--besides making custom templates for each
&lt;br&gt;&amp;gt; Notebook I've created.
&lt;br&gt;&lt;br&gt;Actually, right now there is nothing else you can do with templates
&lt;br&gt;besides the very basic feature you've seen. &amp;nbsp;You cannot specify any
&lt;br&gt;sort of &amp;quot;dynamic&amp;quot; content like a timestamp, and you cannot make things
&lt;br&gt;auto-delete. &amp;nbsp;For the first idea, patches are welcome if you or
&lt;br&gt;someone you know likes to program.
&lt;br&gt;&lt;br&gt;&amp;gt; thank-you in advance,
&lt;br&gt;&amp;gt; --Dan
&lt;br&gt;&amp;gt; I am on Vista HomePrem SP2
&lt;br&gt;&amp;gt; I am running:
&lt;br&gt;&amp;gt; Tomboy: 1.0
&lt;br&gt;&amp;gt; TimeStamp 0.1
&lt;br&gt;&amp;gt; Mono, though this is where I get lost....how do I check what version I'm
&lt;br&gt;&amp;gt; running?
&lt;br&gt;&lt;br&gt;On Windows, Mono is not used, so you don't need to specify anything there. ;-)
&lt;br&gt;&lt;br&gt;&amp;gt; and what can I do to get printing working on Vista or under ....whatever it
&lt;br&gt;&amp;gt; is that it takes to get Tomboy running on Vista?
&lt;br&gt;&lt;br&gt;Unfortunately, there is no way for you to fix this...it is a low-level
&lt;br&gt;bug in gtk-sharp that needs to be fixed by someone familiar with that
&lt;br&gt;code. &amp;nbsp;One way to work around this is to export the note to HTML, open
&lt;br&gt;it in your favorite browser, and print from there.
&lt;br&gt;&lt;br&gt;Hope this helps,
&lt;br&gt;Sandy
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26081308&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%28nubee%29-Template-Questions-tp26067236p26081308.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26067236</id>
	<title>(nubee) Template Questions</title>
	<published>2009-10-26T13:43:11Z</published>
	<updated>2009-10-26T13:43:11Z</updated>
	<author>
		<name>Daniel M. Eldridge-2</name>
	</author>
	<content type="html">&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial, sans-serif; font-size: 15px; border-collapse: collapse; &quot;&gt;I a new to Tomboy, but boy oh boy, do I love it.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I want to learn how I can format and use templates.&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;How do I insert a timestamp into a Template?&lt;/div&gt;&lt;div&gt;How can I auto delete notes created with Templates a la Note of the Day?&lt;/div&gt;&lt;div&gt;What else can I do with Templates--besides making custom templates for each Notebook I&amp;#39;ve created.&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;thank-you in advance,&lt;/div&gt;&lt;div&gt;--Dan&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I am on Vista HomePrem SP2&lt;/div&gt;&lt;div&gt;I am running:&lt;/div&gt;&lt;div&gt;Tomboy: 1.0&lt;/div&gt;&lt;div&gt;TimeStamp 0.1&lt;/div&gt;&lt;div&gt;Mono, though this is where I get lost....how do I check what version I&amp;#39;m running?&lt;/div&gt;

&lt;div&gt;and what can I do to get printing working on Vista or under ....whatever it is that it takes to get Tomboy running on Vista?&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26067236&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%28nubee%29-Template-Questions-tp26067236p26067236.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25792790</id>
	<title>Re: Scheduling the Tomboy 1.2 Planning Meeting</title>
	<published>2009-10-07T12:25:46Z</published>
	<updated>2009-10-07T12:25:46Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">Well I haven't heard from many people, but I'm going to stick with
&lt;br&gt;this date. &amp;nbsp;The meeting is in 24 hours.
&lt;br&gt;&lt;br&gt;Hope to see you there!
&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;&lt;br&gt;On Thu, Oct 1, 2009 at 9:03 PM, Sandy Armstrong
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25792790&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanfordarmstrong@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hey Everybody,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; We've had an exciting cycle getting 1.0 out the door, but as my
&lt;br&gt;&amp;gt; grandma likes to say, &amp;quot;you can sleep when you're dead&amp;quot;.  In other
&lt;br&gt;&amp;gt; words, it's time to plan our roadmap for Tomboy 1.2 and beyond.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'd like to have a meeting in IRC next week if possible.  I've started
&lt;br&gt;&amp;gt; getting plans together on this wiki page (feel free to add your own
&lt;br&gt;&amp;gt; items to the agenda):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://live.gnome.org/Tomboy/DevMeetingOnePointTwo/Plan&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy/DevMeetingOnePointTwo/Plan&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; To get the scheduling discussion started I'd like to propose that we
&lt;br&gt;&amp;gt; have our meeting Thursday, October 8th, at 19:30 UTC (aka 12:30 PDT
&lt;br&gt;&amp;gt; [0]).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you would like to attend but that date/time doesn't work for you,
&lt;br&gt;&amp;gt; please let me know ASAP.  We should finalize this some time on Monday.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Looking forward to another fun chat,
&lt;br&gt;&amp;gt; Sandy
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [0] &lt;a href=&quot;http://www.timeanddate.com/worldclock/converted.html?month=10&amp;day=8&amp;year=2009&amp;hour=12&amp;min=30&amp;sec=0&amp;p1=234&amp;p2=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.timeanddate.com/worldclock/converted.html?month=10&amp;day=8&amp;year=2009&amp;hour=12&amp;min=30&amp;sec=0&amp;p1=234&amp;p2=0&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25792790&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Scheduling-the-Tomboy-1.2-Planning-Meeting-tp25710220p25792790.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25710220</id>
	<title>Scheduling the Tomboy 1.2 Planning Meeting</title>
	<published>2009-10-01T21:03:31Z</published>
	<updated>2009-10-01T21:03:31Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">Hey Everybody,
&lt;br&gt;&lt;br&gt;We've had an exciting cycle getting 1.0 out the door, but as my
&lt;br&gt;grandma likes to say, &amp;quot;you can sleep when you're dead&amp;quot;. &amp;nbsp;In other
&lt;br&gt;words, it's time to plan our roadmap for Tomboy 1.2 and beyond.
&lt;br&gt;&lt;br&gt;I'd like to have a meeting in IRC next week if possible. &amp;nbsp;I've started
&lt;br&gt;getting plans together on this wiki page (feel free to add your own
&lt;br&gt;items to the agenda):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://live.gnome.org/Tomboy/DevMeetingOnePointTwo/Plan&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy/DevMeetingOnePointTwo/Plan&lt;/a&gt;&lt;br&gt;&lt;br&gt;To get the scheduling discussion started I'd like to propose that we
&lt;br&gt;have our meeting Thursday, October 8th, at 19:30 UTC (aka 12:30 PDT
&lt;br&gt;[0]).
&lt;br&gt;&lt;br&gt;If you would like to attend but that date/time doesn't work for you,
&lt;br&gt;please let me know ASAP. &amp;nbsp;We should finalize this some time on Monday.
&lt;br&gt;&lt;br&gt;Looking forward to another fun chat,
&lt;br&gt;Sandy
&lt;br&gt;&lt;br&gt;[0] &lt;a href=&quot;http://www.timeanddate.com/worldclock/converted.html?month=10&amp;day=8&amp;year=2009&amp;hour=12&amp;min=30&amp;sec=0&amp;p1=234&amp;p2=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.timeanddate.com/worldclock/converted.html?month=10&amp;day=8&amp;year=2009&amp;hour=12&amp;min=30&amp;sec=0&amp;p1=234&amp;p2=0&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25710220&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Scheduling-the-Tomboy-1.2-Planning-Meeting-tp25710220p25710220.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25710187</id>
	<title>Re: New member formal introduction</title>
	<published>2009-10-01T20:55:41Z</published>
	<updated>2009-10-01T20:55:41Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">Welcome Wolter, I'm really looking forward to having your help on this rewrite!
&lt;br&gt;&lt;br&gt;The plan on the wiki is looking great. :-)
&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;&lt;br&gt;On Wed, Sep 30, 2009 at 12:20 AM, Wolter Hellmund &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25710187&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wolterh6@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all. I come to help with the rewriting of Tomboy's documentation
&lt;br&gt;&amp;gt; which is apparently having license conflicts. If you have any
&lt;br&gt;&amp;gt; documentation request in specific, don't hesitate in letting me know
&lt;br&gt;&amp;gt; through this list. In the meantime, I will be working out
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://live.gnome.org/Tomboy/PlaceForNewIdeas/TomboyHelp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy/PlaceForNewIdeas/TomboyHelp&lt;/a&gt;&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt; Wolter Hellmund
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Tomboy-list mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25710187&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25710187&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-member-formal-introduction-tp25676171p25710187.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25676171</id>
	<title>New member formal introduction</title>
	<published>2009-09-30T00:20:31Z</published>
	<updated>2009-09-30T00:20:31Z</updated>
	<author>
		<name>Wolter Hellmund-2</name>
	</author>
	<content type="html">Hi all. I come to help with the rewriting of Tomboy's documentation
&lt;br&gt;which is apparently having license conflicts. If you have any
&lt;br&gt;documentation request in specific, don't hesitate in letting me know
&lt;br&gt;through this list. In the meantime, I will be working out
&lt;br&gt;&lt;a href=&quot;http://live.gnome.org/Tomboy/PlaceForNewIdeas/TomboyHelp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy/PlaceForNewIdeas/TomboyHelp&lt;/a&gt;&lt;br&gt;-- 
&lt;br&gt;Best regards,
&lt;br&gt;Wolter Hellmund
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25676171&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (204 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/25676171/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-member-formal-introduction-tp25676171p25676171.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25585197</id>
	<title>Re: checkboxes for todos</title>
	<published>2009-09-23T14:05:14Z</published>
	<updated>2009-09-23T14:05:14Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">This is something that interests me. &amp;nbsp;No time to hack right now, but
&lt;br&gt;attached is an updated version of Max's patch that applies in latest
&lt;br&gt;git master.
&lt;br&gt;&lt;br&gt;Also attached is a screenshot of how it looks right now, so you can
&lt;br&gt;see that some hackery is still need to make it look decent. &amp;nbsp;If anyone
&lt;br&gt;is interested in working on this, that would rock.
&lt;br&gt;&lt;br&gt;Sandy
&lt;br&gt;&lt;br&gt;On Wed, Sep 26, 2007 at 1:25 PM, Max Wiehle &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25585197&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wiehle@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I just had a very quick try at this. It's not even a proof of concept.
&lt;br&gt;&amp;gt; So don't expect any magic or anything. I just tried to get a checkbox
&lt;br&gt;&amp;gt; printed at the beginning of the line since i am not familiar with
&lt;br&gt;&amp;gt; neither tomboy nor gtk or TextView details.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I did not care about where in the addin this would go either. I just
&lt;br&gt;&amp;gt; hacked it right into the core of tomboy.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I attached a patch that won't do anything usefull but convert [] at the
&lt;br&gt;&amp;gt; beginning of a line in checkboxes. They don't get stored either.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Am Mittwoch, denf 26.09.2007, 09:00 -0600 schrieb Boyd Timothy:
&lt;br&gt;&amp;gt;&amp;gt; Well, I don't know that I saved any of that code anywhere.  Basically,
&lt;br&gt;&amp;gt;&amp;gt; here are some of the issues I ran into:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 1. Modifying the TextBuffer during a TextBuffer.InsertText event
&lt;br&gt;&amp;gt;&amp;gt; (i.e., to add a checkbox) can be very tricky.  The problem happens if
&lt;br&gt;&amp;gt;&amp;gt; there are other listeners for this event which follow.  If you change
&lt;br&gt;&amp;gt;&amp;gt; the TextIter at all during this process, it can cause some real
&lt;br&gt;&amp;gt;&amp;gt; problems for the following event listeners.  Supposedly, you're
&lt;br&gt;&amp;gt;&amp;gt; supposed to be able to correct the TextIter before exiting your event
&lt;br&gt;&amp;gt;&amp;gt; handler, but I haven't figure out the right calls to do that in C#.
&lt;br&gt;&amp;gt; I think reformating the line after finishing it, just the way
&lt;br&gt;&amp;gt; bulletlists do migth reduce some of that trouble. I don't know how this
&lt;br&gt;&amp;gt; would fit into Addins though but the Latex Addin seems to take a similar
&lt;br&gt;&amp;gt; approach.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 2. The calls to insert at Widget into a ChildAnchor come from the
&lt;br&gt;&amp;gt;&amp;gt; TextView (the UI).  During the event handler, you're not dealing with
&lt;br&gt;&amp;gt;&amp;gt; the UI at all and strictly the TextBuffer.  I wasn't able to figure
&lt;br&gt;&amp;gt;&amp;gt; out how to get a Widget (like a CheckButton) to get inserted during
&lt;br&gt;&amp;gt;&amp;gt; the event handler.
&lt;br&gt;&amp;gt; I tried this by just adding the anchor and then triggering an event that
&lt;br&gt;&amp;gt; gets handled in the UI and adds the actual widget.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 3. Another option was trying to use a Gdk.Pixbuf.  TextBuffer allows
&lt;br&gt;&amp;gt;&amp;gt; you to insert a Gdk.Pixbuf at a TextIter.  This is how Tomboy's
&lt;br&gt;&amp;gt;&amp;gt; Bugzilla Addin works (see the bugzilla addin code for details).  I
&lt;br&gt;&amp;gt;&amp;gt; tried going down this route as well, but there are problems doing it
&lt;br&gt;&amp;gt;&amp;gt; this way too: a) you now have to match the theme with a properly drawn
&lt;br&gt;&amp;gt;&amp;gt; checkbox, b) you have to figure out how to capture mouse button clicks
&lt;br&gt;&amp;gt;&amp;gt; so the user can mark the checkbox, c) you've got to figure out how to
&lt;br&gt;&amp;gt;&amp;gt; change the empty box to a box with a check when the user clicks the
&lt;br&gt;&amp;gt;&amp;gt; box.
&lt;br&gt;&amp;gt; I'd prefer a way to insert widgets since that might proof useful later
&lt;br&gt;&amp;gt; on.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 4. To complicate things even a bit more, since we need unique IDs/Uris
&lt;br&gt;&amp;gt;&amp;gt; to each separate tasks, you can't just use a standard TextTag to mark
&lt;br&gt;&amp;gt;&amp;gt; the todo text as a todo.  You have to use anonymous TextTags (I
&lt;br&gt;&amp;gt;&amp;gt; believe the Gtk C API discusses this).  So, you have to set up your
&lt;br&gt;&amp;gt;&amp;gt; own data structures to keep track of the TextTags and TextIters.  You
&lt;br&gt;&amp;gt;&amp;gt; can't just use the TextTagTable or other methods available from the
&lt;br&gt;&amp;gt;&amp;gt; TextBuffer to deal with the TextTags.
&lt;br&gt;&amp;gt; That's what was puzzling me in the end. What data structures to use, How
&lt;br&gt;&amp;gt; to &amp;quot;store the checkbox&amp;quot; and do the parsing etc.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In any case, if you'd like to take a stab at it, that would be
&lt;br&gt;&amp;gt;&amp;gt; awesome!  Maybe I was trying to use the TextBuffer completely wrong?
&lt;br&gt;&amp;gt;&amp;gt; Perhaps you're a Gtk TextView/TextBuffer expert?  If not, maybe your
&lt;br&gt;&amp;gt;&amp;gt; luck will be better than mine and that would ROCK!
&lt;br&gt;&amp;gt; As might be quite obvious i am not an expert at all ;) Might keep trying
&lt;br&gt;&amp;gt; my luck though.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Max
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -Boyd
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On 9/26/07, Max Wiehle &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25585197&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wiehle@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Hey Boyd,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; You said during the meeting you tried to get checkboxes for todo items
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; working. I was thinking about giving it a try as well. Just don't want
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; to run into the same problems again.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; I guess you used child anchors of the TextView widget?
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Could you describe your problems or maybe send me your code?
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Thanks,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;  Max
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Am Montag, den 24.09.2007, 08:41 -0600 schrieb Boyd Timothy:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; Everyone's invited to attend the Tomboy Planning Meeting tomorrow:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; Who: Everyone who'd like to participate
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; Where: #tomboy on irc.gnome.org
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; When: Tuesday, 25 September 2007, 13:00 PST
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; What: &lt;a href=&quot;http://live.gnome.org/Tomboy/DevMeetingZeroPointTen&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://live.gnome.org/Tomboy/DevMeetingZeroPointTen&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; Tomboy-list mailing list
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25585197&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Tomboy-list mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25585197&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;tt&gt;[checkbox2.patch]&lt;/tt&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;diff --git a/Tomboy/Note.cs b/Tomboy/Note.cs
&lt;br&gt;index 117d9cb..a916700 100644
&lt;br&gt;--- a/Tomboy/Note.cs
&lt;br&gt;+++ b/Tomboy/Note.cs
&lt;br&gt;@@ -408,6 +408,13 @@ namespace Tomboy
&lt;br&gt;&amp;nbsp;			return &amp;quot;note://tomboy/&amp;quot; +
&lt;br&gt;&amp;nbsp;			 &amp;nbsp; &amp;nbsp; &amp;nbsp; Path.GetFileNameWithoutExtension (filepath);
&lt;br&gt;&amp;nbsp;		}
&lt;br&gt;+		
&lt;br&gt;+		void BufferAddCheckbox (object sender, AnchorForCheckboxEventArgs args)
&lt;br&gt;+		{
&lt;br&gt;+			Gtk.Widget checkbox = new Gtk.CheckButton ();
&lt;br&gt;+			window.Editor.AddChildAtAnchor (checkbox, args.Anchor);
&lt;br&gt;+			checkbox.Show ();
&lt;br&gt;+		}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;		public override int GetHashCode ()
&lt;br&gt;&amp;nbsp;		{
&lt;br&gt;@@ -982,6 +989,7 @@ namespace Tomboy
&lt;br&gt;&amp;nbsp;					buffer.TagApplied += BufferTagApplied;
&lt;br&gt;&amp;nbsp;					buffer.TagRemoved += BufferTagRemoved;
&lt;br&gt;&amp;nbsp;					buffer.MarkSet += BufferInsertMarkSet;
&lt;br&gt;+					buffer.AnchorForCheckboxInserted += BufferAddCheckbox;
&lt;br&gt;&amp;nbsp;				}
&lt;br&gt;&amp;nbsp;				return buffer;
&lt;br&gt;&amp;nbsp;			}
&lt;br&gt;diff --git a/Tomboy/NoteBuffer.cs b/Tomboy/NoteBuffer.cs
&lt;br&gt;index 938ae57..fe305ee 100644
&lt;br&gt;--- a/Tomboy/NoteBuffer.cs
&lt;br&gt;+++ b/Tomboy/NoteBuffer.cs
&lt;br&gt;@@ -76,7 +76,9 @@ namespace Tomboy
&lt;br&gt;&amp;nbsp;		public event ChangeDepthHandler ChangeTextDepth;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;		public event NewBulletHandler NewBulletInserted;
&lt;br&gt;+		public event AnchorForCheckboxHandler AnchorForCheckboxInserted;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+		
&lt;br&gt;&amp;nbsp;		public void ToggleActiveTag (string tag_name)
&lt;br&gt;&amp;nbsp;		{
&lt;br&gt;&amp;nbsp;			Logger.Log (&amp;quot;ToggleTag called for '{0}'&amp;quot;, tag_name);
&lt;br&gt;@@ -411,6 +413,44 @@ namespace Tomboy
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;				return true;
&lt;br&gt;&amp;nbsp;			}
&lt;br&gt;+			// replace &amp;quot;[]&amp;quot; with checkboxes...
&lt;br&gt;+			else if (iter.Char.Equals (&amp;quot;[&amp;quot;)) {		
&lt;br&gt;+				Gtk.TextIter start = GetIterAtLineOffset (iter.Line, 0);
&lt;br&gt;+				Gtk.TextIter end = GetIterAtLineOffset (iter.Line, 1);
&lt;br&gt;+				
&lt;br&gt;+				// Remove the ']' character
&lt;br&gt;+				if (end.Char != &amp;quot;]&amp;quot;)
&lt;br&gt;+					return false;
&lt;br&gt;+				
&lt;br&gt;+				end.ForwardChar();
&lt;br&gt;+				
&lt;br&gt;+				// Set the direction of the bullet to be the same as
&lt;br&gt;+				// the first character after the '*' or '-'
&lt;br&gt;+				Pango.Direction direction = Pango.Direction.Ltr;
&lt;br&gt;+				if (end.Char.Length &amp;gt; 0)
&lt;br&gt;+					direction = Pango.Global.UnicharDirection (end.Char[0]);
&lt;br&gt;+				
&lt;br&gt;+				Delete (ref start, ref end);
&lt;br&gt;+
&lt;br&gt;+				iter = GetIterAtMark (insert_mark);
&lt;br&gt;+				int offset = iter.Offset;
&lt;br&gt;+				iter.LineOffset = 0;
&lt;br&gt;+				
&lt;br&gt;+				Undoer.FreezeUndo ();
&lt;br&gt;+				Gtk.TextChildAnchor anchor = this.CreateChildAnchor (ref iter);
&lt;br&gt;+				Undoer.ThawUndo ();
&lt;br&gt;+
&lt;br&gt;+				AnchorForCheckboxInserted (this,
&lt;br&gt;+					new AnchorForCheckboxEventArgs (anchor, offset, 0, direction));
&lt;br&gt;+				
&lt;br&gt;+				iter.LineOffset = offset;
&lt;br&gt;+				
&lt;br&gt;+				iter = GetIterAtMark (insert_mark);
&lt;br&gt;+				Insert (ref iter, &amp;quot;\n&amp;quot;);
&lt;br&gt;+				iter.LineOffset = 0;
&lt;br&gt;+				
&lt;br&gt;+				return true;
&lt;br&gt;+			}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;			return false;
&lt;br&gt;&amp;nbsp;		}
&lt;br&gt;@@ -1124,6 +1164,35 @@ namespace Tomboy
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	public delegate void NewBulletHandler (object o, InsertBulletEventArgs args);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+	public class AnchorForCheckboxEventArgs : EventArgs
&lt;br&gt;+	{
&lt;br&gt;+		Gtk.TextChildAnchor anchor;	
&lt;br&gt;+		int offset;
&lt;br&gt;+		int line;
&lt;br&gt;+		int depth;
&lt;br&gt;+		Pango.Direction direction;
&lt;br&gt;+
&lt;br&gt;+		public Gtk.TextChildAnchor Anchor { get {return anchor; } }
&lt;br&gt;+
&lt;br&gt;+		public int Offset { get {return offset; } }
&lt;br&gt;+
&lt;br&gt;+		public int Line	{ get {return line; } }
&lt;br&gt;+
&lt;br&gt;+		public int Depth { get {return depth; } }
&lt;br&gt;+		
&lt;br&gt;+		public Pango.Direction Direction { get {return direction; } }
&lt;br&gt;+		
&lt;br&gt;+		public AnchorForCheckboxEventArgs (Gtk.TextChildAnchor anchor, int offset, int depth, Pango.Direction direction)
&lt;br&gt;+		{
&lt;br&gt;+			this.anchor = anchor;
&lt;br&gt;+			this.offset = offset;
&lt;br&gt;+			this.depth = depth;
&lt;br&gt;+			this.direction = direction;
&lt;br&gt;+		}
&lt;br&gt;+ &amp;nbsp;	}
&lt;br&gt;+ &amp;nbsp;	
&lt;br&gt;+ &amp;nbsp;	public delegate void AnchorForCheckboxHandler (object o, AnchorForCheckboxEventArgs args);
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;	public class NoteBufferArchiver
&lt;br&gt;&amp;nbsp;	{
&lt;br&gt;&amp;nbsp;		public static string Serialize (Gtk.TextBuffer buffer)
&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25585197&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;checkboxes.png&lt;/strong&gt; (15K) &lt;a href=&quot;http://old.nabble.com/attachment/25585197/0/checkboxes.png&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tomboy-0.10-Planning-Meeting-Tomorrow-%40-13%3A00-PST-tp12861340p25585197.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25560985</id>
	<title>Re: [Snowy] New official Ubuntu PPA for Tomboy</title>
	<published>2009-09-22T07:25:58Z</published>
	<updated>2009-09-22T07:25:58Z</updated>
	<author>
		<name>Sandy Armstrong</name>
	</author>
	<content type="html">On Tue, Sep 22, 2009 at 7:12 AM, Rodrigo Moya &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25560985&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rodrigo@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Tue, 2009-09-22 at 06:22 -0700, Sandy Armstrong wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hey all,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I am pleased to announce that thanks to the hard work of Alan Pope
&lt;br&gt;&amp;gt;&amp;gt; (and some help from the awesome Jorge Castro), we now have an official
&lt;br&gt;&amp;gt;&amp;gt; PPA for the Tomboy project.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; cool,great news!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Are you also planning to do have snowy packages in there?
&lt;/div&gt;&lt;br&gt;Hmm, I hadn't really thought about Snowy packaging. &amp;nbsp;If we were to do
&lt;br&gt;that, they'd have to be in a separate PPA, but there's no reason it
&lt;br&gt;couldn't be managed by the same Launchpad team, at least initially.
&lt;br&gt;&lt;br&gt;I don't have any short-term plans to package Snowy in there, but if
&lt;br&gt;you or anyone else wanted to work on that, it would be very welcome.
&lt;br&gt;:-)
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Sandy
&lt;br&gt;_______________________________________________
&lt;br&gt;Tomboy-list mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25560985&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tomboy-list@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.beatniksoftware.com/listinfo.cgi/tomboy-list-beatniksoftware.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-official-Ubuntu-PPA-for-Tomboy-tp25559943p25560985.html" />
</entry>

</feed>
