<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://bluegriffon.org/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>BlueGriffon.org</title>
  <link>http://bluegriffon.org/</link>
  <atom:link href="http://www.bluegriffon.org/feed/rss2" rel="self" type="application/rss+xml"/>
  <description>The next-generation Web Editor based on the rendering engine of Firefox</description>
  <language>en</language>
  <pubDate>Wed, 10 Mar 2010 14:39:49 +0100</pubDate>
  <copyright>Copyright Disruptive Innovations 2008</copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>JSCSSP #2</title>
    <link>http://bluegriffon.org/post/2010/03/08/JSCSSP-2</link>
    <guid isPermaLink="false">urn:md5:0168e4984130643d6b1485b92ba4da0b</guid>
    <pubDate>Mon, 08 Mar 2010 16:49:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;Starts looking ok...&lt;/p&gt;
&lt;p class=&quot;imgContainer&quot;&gt;&lt;a href=&quot;http://bluegriffon.org/public/shots/jscssp/jscssp-shot1.png&quot; class=&quot;thickbox&quot; title=&quot;JSCSSP&quot;&gt;&lt;img alt=&quot;JSCSSP&quot; src=&quot;http://bluegriffon.org/public/shots/jscssp/jscssp-shot1s.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://bluegriffon.org/post/2010/03/08/JSCSSP-2#comment-form</comments>
      <wfw:comment>http://bluegriffon.org/post/2010/03/08/JSCSSP-2#comment-form</wfw:comment>
      <wfw:commentRss>http://bluegriffon.org/feed/rss2/comments/47</wfw:commentRss>
      </item>
    
  <item>
    <title>JSCSSP</title>
    <link>http://bluegriffon.org/post/2010/03/02/JSCSSP</link>
    <guid isPermaLink="false">urn:md5:96a94e48a61828e7014b4d3ce5d5dc0e</guid>
    <pubDate>Tue, 02 Mar 2010 14:14:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Thinking at loud</category>
            
    <description>    &lt;p&gt;Nvu had a strong limitation, because of Gecko. It could only edit CSS
styles understandable by the embedded version of Gecko. This is something I
don't want for BlueGriffon because I think it does not make sense to
make a content editor for the Web that is restricted to Gecko-based
browsers. I want users to be able to manipulate a UI that will create
-moz-transform but also -webkit-transform. And I also want users to be
able to edit stylesheets that include both properties while the
-webkit-* are never present in Gecko's CSS OM (and that's normal). I
don't need to cascade, I want to preserve all rules and all
declarations even multiple declarations of the same property, I want to preserve comments as much as possible (ie
between rules and between declarations), I want to preserve CSS parsing
errors. The only extra thing I need is a resolver for shorthands.&lt;/p&gt;
&lt;p&gt;So I just started my own CSS parser. It'll parse a string containing a stylesheet and will return CSSOM-like objects with the necessary extensions. It'll live inside the CSS Inspector sidebar of BlueGriffon but I will probably make it MPL.&lt;/p&gt;</description>
    
    
    
          <comments>http://bluegriffon.org/post/2010/03/02/JSCSSP#comment-form</comments>
      <wfw:comment>http://bluegriffon.org/post/2010/03/02/JSCSSP#comment-form</wfw:comment>
      <wfw:commentRss>http://bluegriffon.org/feed/rss2/comments/46</wfw:commentRss>
      </item>
    
  <item>
    <title>CSS 'font-weight' and UI</title>
    <link>http://bluegriffon.org/post/2010/03/01/CSS-font-weight-and-UI</link>
    <guid isPermaLink="false">urn:md5:8019864e26803f7e73395f523e45b8ef</guid>
    <pubDate>Mon, 01 Mar 2010 16:35:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Thinking at loud</category>
            
    <description>    &lt;p&gt;CSS is so cool. So cool. But not in terms of UI for a CSS editor...&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;let's suppose you can have your text 'bold' or 'normal'; one
checkbox or checkboxButton is enough, and you can have this button live
with other buttons like italic, underline and others&lt;/li&gt;
&lt;li&gt;let's suppose now you can have your text 'bold', 'normal or
unspecified ; a few options here:&lt;ol&gt;&lt;li&gt;one checkbox to say the boldness is specified or not and a
checkbox/checkboxButton for bold&lt;/li&gt;
&lt;li&gt;two checkboxes/checkboxButtons for 'bold' and 'normal'; property is
unspecified when both are unchecked&lt;/li&gt;
&lt;li&gt;a menulist with three choices&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;let's suppose now, and that's the CSS real case that matters to me,
boldness can take the values 'bold', 'normal', 'bolder', 'lighter',
'inherit', 'initial', 100, 200, 300, 400, 500, 600, 700, 800, 900 or can
be unspecified... The two reasonable choices here are:&lt;ol&gt;&lt;li&gt;one
checkbox to say the boldness is specified or not and a menulist&lt;/li&gt;
&lt;li&gt;a menulist where 'unspecified' is one of the options&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In other terms, offering the full power of the 'font-weight' CSS
property to a CSS editor will necessarily suck  in terms of UI (yeah,
forcing a menulist when most users will only use the 'bold' choice just
sucks)... I am even tempted to have two modes in the CSS editor, basic
and advanced. Pffff....&lt;/p&gt;
&lt;p&gt;Ideas, suggestions?&lt;/p&gt;</description>
    
    
    
          <comments>http://bluegriffon.org/post/2010/03/01/CSS-font-weight-and-UI#comment-form</comments>
      <wfw:comment>http://bluegriffon.org/post/2010/03/01/CSS-font-weight-and-UI#comment-form</wfw:comment>
      <wfw:commentRss>http://bluegriffon.org/feed/rss2/comments/45</wfw:commentRss>
      </item>
    
  <item>
    <title>Editor weirdnesses</title>
    <link>http://bluegriffon.org/post/2009/12/18/Editor-weirdnesses</link>
    <guid isPermaLink="false">urn:md5:1482ae8693845a2d74ff65cdb29e3431</guid>
    <pubDate>Fri, 18 Dec 2009 10:25:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;I think I just found a weirdness in the editingSession and the docshell. If I try to edit a document having a chrome://* URL, scripts and plugins are not correctly disabled. I needed that to store &quot;blank&quot; transitional and strict html and xhtml documents into my jars. Even if I call &lt;code&gt;disableJSAndPlugins()&lt;/code&gt; on the editingSession, scripts and plugins are not disabled or disabled only until major changes of the edited document. Not sure it's a bug though, there &lt;em&gt;could&lt;/em&gt; be a good reason for this behavior. Anyway, workarounds are easy to implement.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Script Inspector</title>
    <link>http://bluegriffon.org/post/2009/12/18/Script-Inspector</link>
    <guid isPermaLink="false">urn:md5:8002e54fb626127105500fd756673924</guid>
    <pubDate>Fri, 18 Dec 2009 10:16:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;It's done. v1.0 as an add-on to the core editor. Precisely one day and a half of work.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Script manager</title>
    <link>http://bluegriffon.org/post/2009/12/17/Script-manager</link>
    <guid isPermaLink="false">urn:md5:9c83014123d569b5d1ed1cabf83bd69f</guid>
    <pubDate>Thu, 17 Dec 2009 11:38:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;BlueGriffon has a new sidebar to handle all scripts declared inside the &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; element (scripts inside the &lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; element will be visible inline and clickable to edit). The editor for embedded scripts is of course Bespin.&lt;/p&gt;
&lt;p class=&quot;imgContainer&quot;&gt;&lt;a href=&quot;http://bluegriffon.org/public/shots/scriptEditor/scriptEditor20091217.png&quot; class=&quot;thickbox&quot; title=&quot;Script manager&quot;&gt;&lt;img alt=&quot;Script manager&quot; src=&quot;http://bluegriffon.org/public/shots/scriptEditor/scriptEditor20091217s.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Fullscreen</title>
    <link>http://bluegriffon.org/post/2009/12/16/Fullscreen</link>
    <guid isPermaLink="false">urn:md5:8d85fa3e1bf6a4b3ababa88fff042a8a</guid>
    <pubDate>Wed, 16 Dec 2009 17:30:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;Fullscreen implemented with hideable toolbars and a 5 pixels box at the top to show the toolbars in fullscreen mode. On Mac OS X too &lt;img src=&quot;/themes/default/smilies/smile.png&quot; alt=&quot;:-)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Rulers</title>
    <link>http://bluegriffon.org/post/2009/12/15/Rulers</link>
    <guid isPermaLink="false">urn:md5:73deae920598a0d4d5eb44a8dbc57cba</guid>
    <pubDate>Tue, 15 Dec 2009 14:41:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;I have almost entirely revamped the rulers in BlueGriffon. The original code came from Nvu and used a few big hacks. That original code is totally gone and the rulers are now based on SVG. So if you have enhancement proposals with nice UI ideas for these rulers, please leave a comment, thanks.&lt;/p&gt;
&lt;p class=&quot;imgContainer&quot;&gt;&lt;a href=&quot;http://bluegriffon.org/public/shots/bothRulers20091215.png&quot; class=&quot;thickbox&quot; title=&quot;rulers in BlueGriffon&quot;&gt;&lt;img alt=&quot;rulers in
BlueGriffon&quot; src=&quot;http://bluegriffon.org/public/shots/bothRulers20091215s.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Bespin in BlueGriffon #2</title>
    <link>http://bluegriffon.org/post/2009/12/13/Bespin-in-BlueGriffon-2</link>
    <guid isPermaLink="false">urn:md5:e809c003d7b40a6f406b17aa55d9ea20</guid>
    <pubDate>Sun, 13 Dec 2009 18:31:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;If you except minor issues that are more related to the preview of Bespin than Bluegriffon itself, the integration of Bespin as the default source editor is almost done. I am currently working on something new in the world of Mozilla Composer/Nvu/Kompozer/Bluegriffon: users will be able to edit the doctype and change that way the model of the edited document...&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Bespin in BlueGriffon</title>
    <link>http://bluegriffon.org/post/2009/12/11/Bespin-in-BlueGriffon</link>
    <guid isPermaLink="false">urn:md5:927b4a6a7f2f4d4ff99c5c2974340a59</guid>
    <pubDate>Fri, 11 Dec 2009 12:14:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;Warning, it's in a very very early state so don't get too excited too
soon. And there are a few big issues with Bespin at this time, but hey
that's normal it's only a 0.5.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;resizing the editor makes the line numbers disappear ; a CR in the
editor make them come back&lt;/li&gt;
&lt;li&gt;syntax highlight is now a plugin and gone for the time being &lt;img src=&quot;/themes/default/smilies/sad.png&quot; alt=&quot;:-(&quot; class=&quot;smiley&quot; /&gt;&lt;/li&gt;
&lt;li&gt;you can't embed direct Bespin in XUL because it uses innerHTML and
that one fails inside a XUL document&lt;/li&gt;
&lt;li&gt;so you need an iframe and that's painful wrt editor/chrome
communication&lt;/li&gt;
&lt;li&gt;it has issues with rtl text&lt;/li&gt;
&lt;li&gt;but hey, it's already usable as is so mucho congrats to the Bespin
team !&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;imgContainer&quot;&gt;&lt;a href=&quot;http://bluegriffon.org/public/shots/bespin/bespin-20091211.png&quot; class=&quot;thickbox&quot; title=&quot;Bespin in BlueGriffon&quot;&gt;&lt;img alt=&quot;Bespin in
BlueGriffon&quot; src=&quot;http://bluegriffon.org/public/shots/bespin/bespin-20091211-s.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Update: yes, I know, I wrote somewhere a langer nun instead of a nun ; my bad.&lt;/em&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Resurrection</title>
    <link>http://bluegriffon.org/post/2009/12/10/Resurrection</link>
    <guid isPermaLink="false">urn:md5:5f4d2c7fd87ef9cc84950d8844cc645b</guid>
    <pubDate>Thu, 10 Dec 2009 17:50:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;After many months busy on other projects for third-parties, I am resurrecting BlueGriffon. In the last hours, I have added charset and text direction choices to the New Document wizard and fixed the toolbar customization that broke with recent xulrunner nightly builds due to ancient code. Stay tuned.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Templates Manager #5</title>
    <link>http://bluegriffon.org/post/2009/01/19/Templates-Manager-5</link>
    <guid isPermaLink="false">urn:md5:e8837ec0cf03e2d123eca494563647cf</guid>
    <pubDate>Mon, 19 Jan 2009 17:17:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;I'm almost done with the templates manager. It now correctly saves locally (or pushes to the remote server) the unzipped version of a template package. I have one bug to fix in the main window and a progressmeter to add for remote storage. And done. Woof. The result is really beautiful, and impressively simple to use. I sincerely hope a lot of template repositories are going to jump on that.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Templates Manager #4</title>
    <link>http://bluegriffon.org/post/2009/01/15/Templates-Manager-4</link>
    <guid isPermaLink="false">urn:md5:a3bb4e239ce6a03611eaaedf5b97a42a</guid>
    <pubDate>Thu, 15 Jan 2009 18:03:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;Starts looking ok...&lt;/p&gt;
&lt;p class=&quot;imgContainer&quot;&gt;&lt;a href=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr-1-20090115.png&quot; class=&quot;thickbox&quot; rel=&quot;templatesMgr20090115&quot; title=&quot;Templates Manager&quot;&gt;&lt;img alt=&quot;Templates Manager&quot; src=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr-1-20090115s.png&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr-2-20090115.png&quot; class=&quot;thickbox&quot; rel=&quot;templatesMgr20090115&quot; title=&quot;List of templates&quot;&gt;&lt;img alt=&quot;List of templates&quot; src=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr-2-20090115s.png&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr-3-20090115.png&quot; class=&quot;thickbox&quot; rel=&quot;templatesMgr20090115&quot; title=&quot;Information&quot;&gt;&lt;img alt=&quot;Information&quot; src=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr-3-20090115s.png&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr-4-20090115.png&quot; class=&quot;thickbox&quot; rel=&quot;templatesMgr20090115&quot; title=&quot;License&quot;&gt;&lt;img alt=&quot;License&quot; src=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr-4-20090115s.png&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr-5-20090115.png&quot; class=&quot;thickbox&quot; rel=&quot;templatesMgr20090115&quot; title=&quot;Template installed&quot;&gt;&lt;img alt=&quot;Template installed&quot; src=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr-5-20090115s.png&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Builds for windows and linux</title>
    <link>http://bluegriffon.org/post/2009/01/15/Builds-for-windows-and-linux</link>
    <guid isPermaLink="false">urn:md5:4c901043495f9d78673ced2df12e298f</guid>
    <pubDate>Thu, 15 Jan 2009 10:34:00 +0100</pubDate>
    <dc:creator>LaurentJ</dc:creator>
        <category>Fresh Meat</category>
            
    <description>    &lt;p&gt;You will find latest binaries of BlueGriffon (nightlies) for windows and linux here:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://bluegriffon.org/freshmeat/nightlies/20090114/bluegriffon-20090114.en-US.win32.zip&quot;&gt;BlueGriffon win32&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://bluegriffon.org/freshmeat/nightlies/20090114/bluegriffon-20090114.en-US.ubuntu-8.04-i686.tar.bz2&quot;&gt;BlueGriffon ubuntu-8.04-i686&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I built the linux version on Ubuntu 8.04. I hope it works on other distro.&lt;/p&gt;


&lt;p&gt;In the future, we will try to provide binaries for all plateforms at the same time.&lt;/p&gt;


&lt;p&gt;Remember that this builds are for test only. We are still far from having a full featured BlueGriffon.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Fresh Meat 20090112</title>
    <link>http://bluegriffon.org/post/2009/01/12/Fresh-Meat-20090112</link>
    <guid isPermaLink="false">urn:md5:19d0fe0c11f1b68bf4126c344109d69f</guid>
    <pubDate>Mon, 12 Jan 2009 23:21:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Fresh Meat</category>
            
    <description>    A &lt;a href=&quot;http://bluegriffon.org/freshmeat/nightlies/20090112/&quot;&gt;Mac OS X build today&lt;/a&gt;. The templates manager and the table layout manager are not in as they are extensions to the &quot;basic&quot; editor and I'm still working on the former.&lt;br /&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Templates Manager #3</title>
    <link>http://bluegriffon.org/post/2009/01/09/Templates-Manager-3</link>
    <guid isPermaLink="false">urn:md5:1728c6baab198bd5284652b6a5f2babf</guid>
    <pubDate>Fri, 09 Jan 2009 16:24:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p class=&quot;imgContainer&quot;&gt;&lt;a href=&quot;http://bluegriffon.org/public/shots/templatesManager/templateMgr20090109-1.png&quot; class=&quot;thickbox&quot; rel=&quot;templatesMgr20090109&quot;&gt;&lt;img alt=&quot;Templates Manager&quot; src=&quot;http://bluegriffon.org/public/shots/templatesManager/templateMgr20090109-1s.png&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://bluegriffon.org/public/shots/templatesManager/templateMgr20090109-2.png&quot; class=&quot;thickbox&quot; rel=&quot;templatesMgr20090109&quot;&gt;&lt;img alt=&quot;Select a repository&quot; src=&quot;http://bluegriffon.org/public/shots/templatesManager/templateMgr20090109-2s.png&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://bluegriffon.org/public/shots/templatesManager/templateMgr20090109-3.png&quot; class=&quot;thickbox&quot; rel=&quot;templatesMgr20090109&quot;&gt;&lt;img alt=&quot;Template info box&quot; src=&quot;http://bluegriffon.org/public/shots/templatesManager/templateMgr20090109-3s.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Templates Manager #2</title>
    <link>http://bluegriffon.org/post/2009/01/08/Templates-Manager-2</link>
    <guid isPermaLink="false">urn:md5:08f32f87ebf9774d105eeaa6a5d9b44e</guid>
    <pubDate>Thu, 08 Jan 2009 15:28:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;I'm making fast progress on the Templates Manager. See by yourself....&lt;/p&gt;
&lt;p class=&quot;imgContainer&quot;&gt;&lt;a class=&quot;thickbox&quot; href=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr.png&quot;&gt;&lt;img alt=&quot;Templates Manager&quot; src=&quot;http://bluegriffon.org/public/shots/templatesManager/templatesMgr_s.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Templates Manager</title>
    <link>http://bluegriffon.org/post/2009/01/05/Templates-Manager</link>
    <guid isPermaLink="false">urn:md5:c4a7d3ecb2caaba0ac4bc111d480efd7</guid>
    <pubDate>Mon, 05 Jan 2009 14:06:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://bluegriffon.org/public/shots/templatesManager/templateMgrMockup.png.png&quot;&gt;mockup&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://disruptive-innovations.com/zoo/themesManifest/1.0/manifest.xml&quot;&gt;format&lt;/a&gt; (draft, please do NOT consider as final)&lt;/li&gt;
&lt;/ul&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Happy New Year</title>
    <link>http://bluegriffon.org/post/2009/01/05/Happy-New-Year</link>
    <guid isPermaLink="false">urn:md5:0636b37b421944e280f71ce3133896ce</guid>
    <pubDate>Mon, 05 Jan 2009 10:14:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;The BlueGriffon Team wishes you a very happy new year 2009!&lt;/p&gt;
&lt;p&gt;Speaking of wishes, BlueGriffon will not only be able to apply themes to a page, but also get themes from online repositories. We're working on a themes' manifest all web sites distributing themes could serve. Giving the URL of that file to BlueGriffon would be the only thing needed to use a theme coming from that web site inside BlueGriffon. Stay tuned.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Project manager #2</title>
    <link>http://bluegriffon.org/post/2008/12/17/Project-manager-2</link>
    <guid isPermaLink="false">urn:md5:aa1dca5d95617530ac817fee1df6245d</guid>
    <pubDate>Wed, 17 Dec 2008 17:58:00 +0100</pubDate>
    <dc:creator>BlueGriffon</dc:creator>
        <category>Progress</category>
            
    <description>    &lt;p&gt;Nvu's Site Manager was clearly not enough. BlueGriffon's Project Manager starts really being cool and it will be much more powerful than its ancestor. Link checking, sync with remote site and so on. Stay tuned.&lt;/p&gt;
&lt;p class=&quot;imgContainer&quot;&gt;&lt;img alt=&quot;Project Manager&quot; src=&quot;http://bluegriffon.org/public/shots/projectManager20081217.png&quot; /&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
</channel>
</rss>