<feed xmlns='http://www.w3.org/2005/Atom'>
<title>inkscape/src/ui/dialog/scriptdialog.h, branch livecoding</title>
<subtitle>An experimental livecoding plugin for Inkscape</subtitle>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/'/>
<entry>
<title>Remove the disabled script dialog and the nonfunctional Java binding</title>
<updated>2013-07-23T10:54:01+00:00</updated>
<author>
<name>Krzysztof Kosi??ski</name>
<email>tweenk.pl@gmail.com</email>
</author>
<published>2013-07-23T10:54:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=eb7b26af09df66f30ba50058e9e4a583028cd81a'/>
<id>eb7b26af09df66f30ba50058e9e4a583028cd81a</id>
<content type='text'>
(bzr r12428)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r12428)</pre>
</div>
</content>
</entry>
<entry>
<title>documentation</title>
<updated>2012-02-20T17:47:58+00:00</updated>
<author>
<name>Kris De Gussem</name>
<email>kris.degussem@gmail.com</email>
</author>
<published>2012-02-20T17:47:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=f3014b0c21602d1e52ce240b6f4682cb5a92386a'/>
<id>f3014b0c21602d1e52ce240b6f4682cb5a92386a</id>
<content type='text'>
(bzr r11003)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r11003)</pre>
</div>
</content>
</entry>
<entry>
<title>dropped unused variables</title>
<updated>2011-11-18T15:12:39+00:00</updated>
<author>
<name>Kris De Gussem</name>
<email>kris.degussem@gmail.com</email>
</author>
<published>2011-11-18T15:12:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=290f89399b7f3af1a8629271b915c3340fe57ca8'/>
<id>290f89399b7f3af1a8629271b915c3340fe57ca8</id>
<content type='text'>
(bzr r10743)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r10743)</pre>
</div>
</content>
</entry>
<entry>
<title>Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in all 1074 Vim modelines.</title>
<updated>2010-11-17T02:12:56+00:00</updated>
<author>
<name>Chris Morgan</name>
<email>chris.morganiser@gmail.com</email>
</author>
<published>2010-11-17T02:12:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=144819c918dc761641c3cb5a490205fb73194ee3'/>
<id>144819c918dc761641c3cb5a490205fb73194ee3</id>
<content type='text'>
The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline").

Also corrected five deviant modestrings:
* src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end
* src/ui/dialog/tile.cpp: removed gratuitous second colon at the end
* src/helper/units-test.h: removed gratuitous space before a colon
* share/extensions/export_gimp_palette.py: missing textwidth=99

That's my geekiest commit yet.

(bzr r9900)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline").

Also corrected five deviant modestrings:
* src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end
* src/ui/dialog/tile.cpp: removed gratuitous second colon at the end
* src/helper/units-test.h: removed gratuitous space before a colon
* share/extensions/export_gimp_palette.py: missing textwidth=99

That's my geekiest commit yet.

(bzr r9900)</pre>
</div>
</content>
</entry>
<entry>
<title>From trunk</title>
<updated>2008-10-27T18:03:09+00:00</updated>
<author>
<name>Ted Gould</name>
<email>ted@gould.cx</email>
</author>
<published>2008-10-27T18:03:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=7dbe11bc23efa5f51a9b84e7d0f6dd16e63e0902'/>
<id>7dbe11bc23efa5f51a9b84e7d0f6dd16e63e0902</id>
<content type='text'>
(bzr r6885)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r6885)</pre>
</div>
</content>
</entry>
<entry>
<title>The dialog to panel refactoring:</title>
<updated>2007-11-22T00:14:41+00:00</updated>
<author>
<name>gustav_b</name>
<email>gustav_b@users.sourceforge.net</email>
</author>
<published>2007-11-22T00:14:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=5caa6ff4dfb7b538555d60fa2732272bf8b9828b'/>
<id>5caa6ff4dfb7b538555d60fa2732272bf8b9828b</id>
<content type='text'>
 * Made the current dialogs subclass the Panel class instead of the
   Dialog class.

 * Extended the Panel class with some functionality that the dialogs
   relied on.

 * Added a PanelDialog class which is a dialog container for a
   single panel with the dialog behavior as a template parameter.
 
(* Fixed coding style for the Panel and Dialog class)

For details, see
http://www.nabble.com/Re%3A-Dockable-dialogs%2C-todo-list-p12728194.html
http://www.nabble.com/Re%3A-Inkscape-overcomes-Xara-in-Google-Trends-p13126622.html

(bzr r4126)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * Made the current dialogs subclass the Panel class instead of the
   Dialog class.

 * Extended the Panel class with some functionality that the dialogs
   relied on.

 * Added a PanelDialog class which is a dialog container for a
   single panel with the dialog behavior as a template parameter.
 
(* Fixed coding style for the Panel and Dialog class)

For details, see
http://www.nabble.com/Re%3A-Dockable-dialogs%2C-todo-list-p12728194.html
http://www.nabble.com/Re%3A-Inkscape-overcomes-Xara-in-Google-Trends-p13126622.html

(bzr r4126)</pre>
</div>
</content>
</entry>
<entry>
<title>Dockable dialogs patch applied </title>
<updated>2007-08-29T21:27:07+00:00</updated>
<author>
<name>gustav_b</name>
<email>gustav_b@users.sourceforge.net</email>
</author>
<published>2007-08-29T21:27:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=731f2b5adbb6f9e9fc853a6506c695fd2fcec320'/>
<id>731f2b5adbb6f9e9fc853a6506c695fd2fcec320</id>
<content type='text'>
(https://sourceforge.net/tracker/?func=detail&amp;atid=604308&amp;aid=1688508&amp;group_id=93438)

(bzr r3613)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(https://sourceforge.net/tracker/?func=detail&amp;atid=604308&amp;aid=1688508&amp;group_id=93438)

(bzr r3613)</pre>
</div>
</content>
</entry>
<entry>
<title>Added some set_size_requests to ishmal's cool work so dialogs look nice from the</title>
<updated>2006-08-28T08:00:22+00:00</updated>
<author>
<name>Jon Phillips</name>
<email>jon@fabricatorz.com</email>
</author>
<published>2006-08-28T08:00:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=1d55dded992e1696c32cc8ffed23a1910120e1cc'/>
<id>1d55dded992e1696c32cc8ffed23a1910120e1cc</id>
<content type='text'>
beginning...

(bzr r1648)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
beginning...

(bzr r1648)</pre>
</div>
</content>
</entry>
<entry>
<title>moving trunk for module inkscape</title>
<updated>2006-01-16T02:36:01+00:00</updated>
<author>
<name>MenTaLguY</name>
<email>mental@rydia.net</email>
</author>
<published>2006-01-16T02:36:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=179fa413b047bede6e32109e2ce82437c5fb8d34'/>
<id>179fa413b047bede6e32109e2ce82437c5fb8d34</id>
<content type='text'>
(bzr r1)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r1)</pre>
</div>
</content>
</entry>
</feed>
