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.


The next-generation Web Editor
based on the rendering engine of Firefox
17Dec 2008
17:58 - By BlueGriffon - Progress - one comment
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.

12Dec 2008
18:34 - By BlueGriffon - Progress - one comment
The "New Page" wizard being done and checked in, I started working on the Projects manager because w/o that, impossible to correctly handle jQuery-based pages and so on.

10Dec 2008
16:50 - By BlueGriffon - Fresh Meat - 5 comments
bluegriffon-20081210-win32.zip
c:\Documents and Settings\<login>\Application Data\Disruptive Innovations SARL\BlueGriffon08Dec 2008
17:49 - By BlueGriffon - Progress - 3 comments
I have some great news : I got formal authorization from Yahoo! to add YUI-based CSS Layouts to BlueGriffon. Let me thank Yahoo! (and in particular Nate Koechley and Christian Heilmann) and then Jake Myers, the guy behind the famous http://layouts.ironmyers.com. The first visible result is the new "New page wizard" that is not checked in yet. See below a very early screenshot of that wizard. Warning, the UI is not at all finalized.
24Nov 2008
17:34 - By BlueGriffon - Progress - one comment
We just built BlueGriffon for the first time on a Mac, only to discover we have a lot to do on the theme's side for that platform. But thanks to Laurent, we now have a cool build process on all platforms that will allow us to push fresh meat to this web site more often than before.
03Nov 2008
17:32 - By BlueGriffon - Progress
I've just added a context menu to the structure bar. The first menu item there is to manage the element's language.

31Oct 2008
18:11 - By BlueGriffon - Announcements - one comment
I am very happy to report that Bob Stein, the man behind VisiBone.com and the author of the amazing 216-Color Webmaster's Palette has given BlueGriffon the rights to include his palette in the app ! Stay tuned !
19Oct 2008
08:34 - By BlueGriffon - Announcements
Just a short note (from the W3C Technical Plenary Meeting on the French Riviera) to let readers of this blog know it's now syndicated on planet.mozilla.org.
13Oct 2008
11:47 - By BlueGriffon - Fresh Meat - 10 comments
bluegriffon-20081013-win32.zip.
c:\Documents and Settings\<login>\Application Data\Disruptive Innovations SARL\BlueGriffon08Oct 2008
12:31 - By BlueGriffon - Progress
Already working fine, only remain a few minor details to iron.

07Oct 2008
20:12 - By BlueGriffon - Progress - one comment
Currently adding a UI element to control the zoom factor. This is an important accessibility tool that is so simple to add to a Gecko>1.8-based app that BlueGriffon should not exist without. Will be ready in a few hours from now I guess, if my dying Vaio laptop does not collapse before...
06Oct 2008
16:56 - By LaurentJ - Progress - 2 comments
Here are the last changes on the web site:
06Oct 2008
16:08 - By BlueGriffon - Progress - 3 comments
It's only a beginning but it already works beautifully...

03Oct 2008
16:04 - By BlueGriffon - Thinking at loud
One of the nice features of text editors is table formatting. Think
MS Word and its Table Autoformat dialog. It's very easy to implement
that in BlueGriffon... Hehe 
02Oct 2008
17:41 - By BlueGriffon - Fresh Meat - one comment
bluegriffon-20081002-win32.zip. I guess the filename says it all. Warnings:
c:\Documents and Settings\<login>\Application Data\Disruptive Innovations SARL\BlueGriffon01Oct 2008
10:20 - By BlueGriffon - Progress
One thing that has always puzzled me in existing HTML+CSS wysiwyg
editors is
the impossibility to create a table in a really strict markup context.
I mean a table with no presentational attributes at all,
no inline styles at all and only a class and/or ID or the table itself.
Although almost nobody writes such tables, it's fairly simple for the
most common attributes. I suspect it's for three reasons only : first,
web sites use a lot of borderless tables ; second, existing editors
don't let you do that ; third, most people don't understand CSS well
enough. Let's suppose our table has ID mytable.
Then we have the following equivalences:
border
attribute on the <table>
element if the value if not
"0".
#mytable {
border: outset <value_of_the_attribute>px;
}
#mytable > * > tr > td,
#mytable > * > tr > th {
border: inset 1px;
}
cellspacing
attribute on the <table>
element
#mytable {
border-spacing: <value_of_the_attribute>px;
}
cellpadding
attribute on the <table>
element
#mytable > * > tr > td,
#mytable > * > tr > th {
padding: <value_of_the_attribute>px;
}
rules
and frame
attributes on the table element is only a
little bit more complex but it's a non-issue to map such an attribute
to CSS rules.width, align
and valign
attributes on <table>
and descendants of <table>
are also a non-issue with a trivial mapping to their CSS counterpartsalign
attribute on <table>, a
combination of 'margin-left: auto' and/or 'margin-right: auto'In other terms, it's not a problem implementing an editor that provides a user wishing to insert a table with the following choice : "HTML attributes only", "Inline styles when possible", "Style rules or inline styles when possible". As a matter of fact, it's already implemented in BlueGriffon. Please don't focus on the UI since it's absolutely not final, it's even sure it's going to evolve a lot for instance to let the user reuse existing CSS style rules instead of creating new ones.
« previous entries - page 1 of 2