<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-3732</id>
	<title>Nabble - Screem</title>
	<updated>2009-11-24T10:08:21Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Screem-f3732.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Screem-f3732.html" />
	<subtitle type="html">SCREEM is a GNOME website / tag based html editor (ie not WYSIWYG) which aims not only to aid in creating web pages, but also to provide useful site maintainance facilities as well, including automatic link updating, and site upload facilities. Screem home is &lt;a href=&quot;http://sourceforge.net/projects/screem/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26500746</id>
	<title>Re: HTML tag auto-completion</title>
	<published>2009-11-24T10:08:21Z</published>
	<updated>2009-11-24T10:08:21Z</updated>
	<author>
		<name>David Knight-6</name>
	</author>
	<content type="html">&lt;br&gt;On 17 Nov 2009, at 06:04, Jim Hayward wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; On Sun, 2009-11-15 at 17:52 +0000, David Knight wrote:
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; 2) The dtd in use by the document.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Is this list created from screem_ctags_model_autocomplete()? Or what is
&lt;br&gt;&amp;gt; the ctags model? It appears the if &amp;quot;cmodel&amp;quot; exists then the tag tree
&lt;br&gt;&amp;gt; list and the cmodel list are combined. What determines whether the ctags
&lt;br&gt;&amp;gt; model is created?
&lt;br&gt;&lt;br&gt;Ah, this is a third type of autocomplete I had forgotten about. &amp;nbsp; &amp;nbsp;It makes use of &lt;a href=&quot;http://ctags.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ctags.sourceforge.net/&lt;/a&gt;&amp;nbsp;and so provides auto complete for function names &amp;nbsp;when dealing with C, C++, PHP etc. &amp;nbsp; Not sure how much html support it has, I think just for name anchors.
&lt;br&gt;&lt;br&gt;The ctags model is created if there is a tag file in the site root, which can be set up to be automatically created in the site esttings.
&lt;br&gt;&lt;br&gt;The dtd autocompletion comes from html_key_press in screem-editor.c depending on the keypressed. &amp;nbsp;the screem_dtd_* methods in there lookup the appropriate completions. &amp;nbsp; screem_dtd_get_elements and screem_dtd_get_attributes &amp;nbsp;being the main ones.
&lt;br&gt;&lt;br&gt;The dtd in use is determined by an idle handler down in screem-page.c / screem-page-model.c (doesn't require the tree structure to be built)
&lt;br&gt;&lt;br&gt;&amp;gt; Is there anything that determines whether the tag tree or the DTD has
&lt;br&gt;&amp;gt; priority over the other for auto completion?
&lt;br&gt;&lt;br&gt;DTD has priority, but only applies in certain circumstances. &amp;nbsp;In screem_editor_keypress (screem-editor.c) &amp;nbsp;html_key_press returns a flag indicating if the key press was handled. &amp;nbsp;If it wasn't then the tag tree / ctag auto completion is then checked.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26500746&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/HTML-tag-auto-completion-tp26360762p26500746.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26384858</id>
	<title>Re: HTML tag auto-completion</title>
	<published>2009-11-16T22:04:24Z</published>
	<updated>2009-11-16T22:04:24Z</updated>
	<author>
		<name>Jim Hayward-3</name>
	</author>
	<content type="html">On Sun, 2009-11-15 at 17:52 +0000, David Knight wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Auto complete works from two sources. &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 1) The tag trees (the html tag tree is all uppercase, this could, and probably should be changed to lowercase)
&lt;br&gt;&lt;br&gt;Ok, I see the tag trees now. I think you are correct, these could
&lt;br&gt;probably be moved to lowercase.
&lt;br&gt;&lt;br&gt;&amp;gt; 2) The dtd in use by the document.
&lt;br&gt;&lt;br&gt;Is this list created from screem_ctags_model_autocomplete()? Or what is
&lt;br&gt;the ctags model? It appears the if &amp;quot;cmodel&amp;quot; exists then the tag tree
&lt;br&gt;list and the cmodel list are combined. What determines whether the ctags
&lt;br&gt;model is created?
&lt;br&gt;&lt;br&gt;Is there anything that determines whether the tag tree or the DTD has
&lt;br&gt;priority over the other for auto completion?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jim H
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26384858&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/HTML-tag-auto-completion-tp26360762p26384858.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26361434</id>
	<title>Re: HTML tag auto-completion</title>
	<published>2009-11-15T09:52:40Z</published>
	<updated>2009-11-15T09:52:40Z</updated>
	<author>
		<name>David Knight-6</name>
	</author>
	<content type="html">&lt;br&gt;On 15 Nov 2009, at 16:39, Jim Hayward wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi All,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Currently the auto-completion for HTML documents only works for
&lt;br&gt;&amp;gt; uppercase tags. Since most people probably no longer use uppercase tags
&lt;br&gt;&amp;gt; this makes the auto-completion not very useful for HTML documents.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I was considering adding an option to preferences to use lowercase HTML
&lt;br&gt;&amp;gt; tags.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Opinions or other options?
&lt;/div&gt;&lt;br&gt;&lt;br&gt;Auto complete works from two sources. &amp;nbsp;
&lt;br&gt;&lt;br&gt;1) The tag trees (the html tag tree is all uppercase, this could, and probably should be changed to lowercase)
&lt;br&gt;&lt;br&gt;2) The dtd in use by the document.
&lt;br&gt;&lt;br&gt;As xml documents use doctypes as well then the option would need to only apply to HTML documents (not xHTML, &amp;nbsp;HTML 5 may be xml, and may not be so that would be something that would need to be detected, not sure how it indicates this)
&lt;br&gt;&lt;br&gt;screem_page_is_markup(page) &amp;&amp; ! screem_page_is_xml(page) &amp;nbsp;might be enough to determine this (depends what HTML 5 does), although there is a TODO on screem_page_is_xml about caching the result.
&lt;br&gt;&lt;br&gt;I'm not sure if there needs to be an option, perhaps it should just automatically use lowercase. &amp;nbsp;If the option is put in then it should probably default to lowercase.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26361434&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/HTML-tag-auto-completion-tp26360762p26361434.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26360762</id>
	<title>HTML tag auto-completion</title>
	<published>2009-11-15T08:39:29Z</published>
	<updated>2009-11-15T08:39:29Z</updated>
	<author>
		<name>Jim Hayward-3</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;Currently the auto-completion for HTML documents only works for
&lt;br&gt;uppercase tags. Since most people probably no longer use uppercase tags
&lt;br&gt;this makes the auto-completion not very useful for HTML documents.
&lt;br&gt;&lt;br&gt;I was considering adding an option to preferences to use lowercase HTML
&lt;br&gt;tags.
&lt;br&gt;&lt;br&gt;Opinions or other options?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jim H 
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26360762&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/HTML-tag-auto-completion-tp26360762p26360762.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26256460</id>
	<title>Initial support for GtkSourceView style schemes now in CVS</title>
	<published>2009-11-08T10:30:14Z</published>
	<updated>2009-11-08T10:30:14Z</updated>
	<author>
		<name>Jim Hayward-3</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;I added initial support for GtkSourceView style schemes to CVS. You
&lt;br&gt;still cannot add/remove your own schemes from the preferences dialog.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jim H
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26256460&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Initial-support-for-GtkSourceView-style-schemes-now-in-CVS-tp26256460p26256460.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26249155</id>
	<title>Initial port to GtkSourceView2 now in CVS</title>
	<published>2009-11-07T14:14:51Z</published>
	<updated>2009-11-07T14:14:51Z</updated>
	<author>
		<name>Jim Hayward-3</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;My initial changes for the port to GtkSourceView2 and the other changes
&lt;br&gt;mentioned in my previous post are now in CVS.
&lt;br&gt;&lt;br&gt;Changing the default highlighting colors in preferences is still
&lt;br&gt;disabled. I hope to have at least support for GtkSourceView2's style
&lt;br&gt;schemes soon.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jim H
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26249155&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Initial-port-to-GtkSourceView2-now-in-CVS-tp26249155p26249155.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26245862</id>
	<title>Re: Anyone interested in trying out a few bug fixes</title>
	<published>2009-11-07T07:34:26Z</published>
	<updated>2009-11-07T07:34:26Z</updated>
	<author>
		<name>Jim Hayward-3</name>
	</author>
	<content type="html">On Sat, 2009-11-07 at 12:17 +0000, David Knight wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; With the above steps it works as intended, the bug is that the message &amp;nbsp;
&lt;br&gt;&amp;gt; is appearing even when the file hasn't changed.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Bugs 1510561, 1641871
&lt;br&gt;&lt;br&gt;I've never reproduced that bug in my limited testing of screem. All of
&lt;br&gt;the reporters of both bugs seem to be Ubuntu users. I wonder if this
&lt;br&gt;was/is an issue with an old version of libgnomevfs specific to Ubuntu.
&lt;br&gt;&lt;br&gt;I'm a Redhat/Fedora user. I have been using Redhat since they made their
&lt;br&gt;first releases that included the original early development release of
&lt;br&gt;GNOME. I can't remember what version that was now. I think something
&lt;br&gt;like 5.1/5.2. ALthough I did play with some really early Debian releases
&lt;br&gt;before the kernel reached 1.*. 
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jim H
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26245862&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Anyone-interested-in-trying-out-a-few-bug-fixes-tp26209745p26245862.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26244392</id>
	<title>Re: Anyone interested in trying out a few bug fixes</title>
	<published>2009-11-07T04:17:13Z</published>
	<updated>2009-11-07T04:17:13Z</updated>
	<author>
		<name>David Knight-6</name>
	</author>
	<content type="html">&lt;br&gt;On 6 Nov 2009, at 05:43, Jim Hayward wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; On Thu, 2009-11-05 at 19:33 +0000, David Knight wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'll throw in something else that needs sorting, the document has
&lt;br&gt;&amp;gt;&amp;gt; changed warning when saving.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Open a file in screem, edit it but don't save. Open the same file in
&lt;br&gt;&amp;gt; another editor, edit and save the file. Then try to save it in &amp;nbsp;
&lt;br&gt;&amp;gt; screem. I
&lt;br&gt;&amp;gt; have not tested this, what is the error being seen?
&lt;br&gt;&lt;br&gt;With the above steps it works as intended, the bug is that the message &amp;nbsp;
&lt;br&gt;is appearing even when the file hasn't changed.
&lt;br&gt;&lt;br&gt;Bugs 1510561, 1641871
&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26244392&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Anyone-interested-in-trying-out-a-few-bug-fixes-tp26209745p26244392.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26227232</id>
	<title>Re: Anyone interested in trying out a few bug fixes</title>
	<published>2009-11-05T21:43:27Z</published>
	<updated>2009-11-05T21:43:27Z</updated>
	<author>
		<name>Jim Hayward-3</name>
	</author>
	<content type="html">On Thu, 2009-11-05 at 19:33 +0000, David Knight wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I've not followed GDL development, has it stopped being so &amp;nbsp;
&lt;br&gt;&amp;gt; fragmented? &amp;nbsp;Each project which used it seemed to have their own &amp;nbsp;
&lt;br&gt;&amp;gt; version, with various patches.
&lt;br&gt;&lt;br&gt;I don't think the code being fragmented is an issue now. I think the
&lt;br&gt;early development before GDL was split off into it's own library was
&lt;br&gt;probably the cause of a lot of those issues. The API appears to be very
&lt;br&gt;stable.
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;nbsp;From the (regular) crashes reported / seen the segfaults seemed to be &amp;nbsp;
&lt;br&gt;&amp;gt; more with libcroco getting upset at being fed incomplete css and &amp;nbsp;
&lt;br&gt;&amp;gt; getting stuck rather than the document tree.
&lt;br&gt;&lt;br&gt;I have not really looked that closely at the problems yet. I'm still
&lt;br&gt;trying to familiarize myself with the code. I had to disable the tree
&lt;br&gt;for CSS just to keep screem from crashing every few seconds. It kind of
&lt;br&gt;made it difficult to test the port to GtkSourceView2. ;-)
&lt;br&gt;&lt;br&gt;&amp;gt; Disabling the document tree will have a bad side effect in that it &amp;nbsp;
&lt;br&gt;&amp;gt; will cause the select context feature to stop working, so you won't be &amp;nbsp;
&lt;br&gt;&amp;gt; able to select the content of the current tag, select the current tag, &amp;nbsp;
&lt;br&gt;&amp;gt; or select the parent tag. &amp;nbsp;Off the top of my head this is the only &amp;nbsp;
&lt;br&gt;&amp;gt; thing I know will break. &amp;nbsp;The Dreamweaver/Golive template support &amp;nbsp;
&lt;br&gt;&amp;gt; might use the tree model, I can't recall.
&lt;br&gt;&lt;br&gt;The tree is only disabled for CSS files. It still works for other file
&lt;br&gt;types. This may limit the side effects for now. Although I think the
&lt;br&gt;tree is still causing some random segfaults. 
&lt;br&gt;&lt;br&gt;&amp;gt; I'll throw in something else that needs sorting, the document has &amp;nbsp;
&lt;br&gt;&amp;gt; changed warning when saving. 
&lt;br&gt;&lt;br&gt;Open a file in screem, edit it but don't save. Open the same file in
&lt;br&gt;another editor, edit and save the file. Then try to save it in screem. I
&lt;br&gt;have not tested this, what is the error being seen?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jim H
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26227232&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Anyone-interested-in-trying-out-a-few-bug-fixes-tp26209745p26227232.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26221197</id>
	<title>Re: Anyone interested in trying out a few bug fixes</title>
	<published>2009-11-05T11:33:57Z</published>
	<updated>2009-11-05T11:33:57Z</updated>
	<author>
		<name>David Knight-6</name>
	</author>
	<content type="html">&lt;br&gt;On 5 Nov 2009, at 05:53, Jim Hayward wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; A few of the changes...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Port the code to GtkSourceView2. This is not yet complete. You &amp;nbsp;
&lt;br&gt;&amp;gt; currently
&lt;br&gt;&amp;gt; cannot edit the default highlighting colors in preferences. Printing &amp;nbsp;
&lt;br&gt;&amp;gt; is
&lt;br&gt;&amp;gt; also disabled. The current code uses libgnomeprint. This still needs &amp;nbsp;
&lt;br&gt;&amp;gt; to
&lt;br&gt;&amp;gt; be ported to the Gtk print API.
&lt;br&gt;&lt;br&gt;The easiest thing here might be to do what I originally did pinch the &amp;nbsp;
&lt;br&gt;code that gedit uses and adapt as necessary, not least because it will &amp;nbsp;
&lt;br&gt;then act the same as gedit and fit in better with the desktop overall.
&lt;br&gt;&lt;br&gt;&amp;gt; The completely outdated internal GDL code is no longer used. The code
&lt;br&gt;&amp;gt; now compiles against the system installed libgdl. One note, GDL is
&lt;br&gt;&amp;gt; broken with Gtk 2.18 client-side windows. I filed an upstream bug &amp;nbsp;
&lt;br&gt;&amp;gt; report
&lt;br&gt;&amp;gt; with the GDL developers. You can work around the problem by starting
&lt;br&gt;&amp;gt; screem with..
&lt;br&gt;&amp;gt; env GDK_NATIVE_WINDOWS=1 path/to/screem
&lt;br&gt;&lt;br&gt;I've not followed GDL development, has it stopped being so &amp;nbsp;
&lt;br&gt;fragmented? &amp;nbsp;Each project which used it seemed to have their own &amp;nbsp;
&lt;br&gt;version, with various patches.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The &amp;quot;document tree&amp;quot; is in pretty bad shape. It is totally broken for &amp;nbsp;
&lt;br&gt;&amp;gt; CSS
&lt;br&gt;&amp;gt; files. The tree is disabled for CSS files right now. I causes all &amp;nbsp;
&lt;br&gt;&amp;gt; kinds
&lt;br&gt;&amp;gt; of interesting segfaults. Closing the tree view and not using it at &amp;nbsp;
&lt;br&gt;&amp;gt; all
&lt;br&gt;&amp;gt; is recommended.
&lt;br&gt;&lt;br&gt;&amp;nbsp;From the (regular) crashes reported / seen the segfaults seemed to be &amp;nbsp;
&lt;br&gt;more with libcroco getting upset at being fed incomplete css and &amp;nbsp;
&lt;br&gt;getting stuck rather than the document tree.
&lt;br&gt;&lt;br&gt;Disabling the document tree will have a bad side effect in that it &amp;nbsp;
&lt;br&gt;will cause the select context feature to stop working, so you won't be &amp;nbsp;
&lt;br&gt;able to select the content of the current tag, select the current tag, &amp;nbsp;
&lt;br&gt;or select the parent tag. &amp;nbsp;Off the top of my head this is the only &amp;nbsp;
&lt;br&gt;thing I know will break. &amp;nbsp;The Dreamweaver/Golive template support &amp;nbsp;
&lt;br&gt;might use the tree model, I can't recall.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I'll throw in something else that needs sorting, the document has &amp;nbsp;
&lt;br&gt;changed warning when saving. &amp;nbsp;I could reproduce this with the ubuntu &amp;nbsp;
&lt;br&gt;packaged version of screem, but whenever I tried to reproduce it with &amp;nbsp;
&lt;br&gt;development versions I never could (including building from an ubuntu &amp;nbsp;
&lt;br&gt;source package).
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26221197&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Anyone-interested-in-trying-out-a-few-bug-fixes-tp26209745p26221197.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26209745</id>
	<title>Anyone interested in trying out a few bug fixes</title>
	<published>2009-11-04T21:53:31Z</published>
	<updated>2009-11-04T21:53:31Z</updated>
	<author>
		<name>Jim Hayward-3</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;I finally managed to get a chance to fix a few more bugs in the screem
&lt;br&gt;code in CVS. If anyone is interested in trying the changes let me know.
&lt;br&gt;&lt;br&gt;A few of the changes...
&lt;br&gt;&lt;br&gt;Port the code to GtkSourceView2. This is not yet complete. You currently
&lt;br&gt;cannot edit the default highlighting colors in preferences. Printing is
&lt;br&gt;also disabled. The current code uses libgnomeprint. This still needs to
&lt;br&gt;be ported to the Gtk print API.
&lt;br&gt;&lt;br&gt;The completely outdated internal GDL code is no longer used. The code
&lt;br&gt;now compiles against the system installed libgdl. One note, GDL is
&lt;br&gt;broken with Gtk 2.18 client-side windows. I filed an upstream bug report
&lt;br&gt;with the GDL developers. You can work around the problem by starting
&lt;br&gt;screem with..
&lt;br&gt;env GDK_NATIVE_WINDOWS=1 path/to/screem
&lt;br&gt;&lt;br&gt;Minor clean up to the glade files. These are going to have to be ported
&lt;br&gt;to GtkBuilder at some point.
&lt;br&gt;&lt;br&gt;Some minor cleanups to allow the current CVS code to work at all with
&lt;br&gt;Gtk 2.18. Most of the other changes at this time are just minor code
&lt;br&gt;cleanups and fix a few segfaults.
&lt;br&gt;&lt;br&gt;The &amp;quot;document tree&amp;quot; is in pretty bad shape. It is totally broken for CSS
&lt;br&gt;files. The tree is disabled for CSS files right now. I causes all kinds
&lt;br&gt;of interesting segfaults. Closing the tree view and not using it at all
&lt;br&gt;is recommended.
&lt;br&gt;&lt;br&gt;It is going to take a lot of work to get the code into a more modern
&lt;br&gt;state.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jim H
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26209745&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Anyone-interested-in-trying-out-a-few-bug-fixes-tp26209745p26209745.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25626115</id>
	<title>Patch - segfault entity wizard, fix depreciated use of gtkadjustment</title>
	<published>2009-09-26T07:54:09Z</published>
	<updated>2009-09-26T07:54:09Z</updated>
	<author>
		<name>Jim Hayward-3</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;I was looking at the archives and noticed there might be some interest
&lt;br&gt;in reviving Screem.
&lt;br&gt;&lt;br&gt;After sitting inactive so long, the code in CVS is appears to be a huge
&lt;br&gt;ball of depreciated GTK/GNOME API's. :-p
&lt;br&gt;&lt;br&gt;So, I guess to try and maybe get things started, I attached a simple
&lt;br&gt;patch. It fixes two things a segfault in the entity wizard when no
&lt;br&gt;document exists and the use of a non-zero value for page size in
&lt;br&gt;GtkAdjustment is depreciated.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jim H
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25626115&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&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;gtkadjustment_depreciated.patch.tar.bz2&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/25626115/0/gtkadjustment_depreciated.patch.tar.bz2&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Patch---segfault-entity-wizard%2C-fix-depreciated-use-of-gtkadjustment-tp25626115p25626115.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25321202</id>
	<title>Re: Hello and thanks!</title>
	<published>2009-09-06T12:49:58Z</published>
	<updated>2009-09-06T12:49:58Z</updated>
	<author>
		<name>David Knight-6</name>
	</author>
	<content type="html">&lt;br&gt;On 12 Aug 2009, at 20:03, Enrique Gimenez wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I could oversee the project though, revamp the website, request &amp;nbsp;
&lt;br&gt;&amp;gt; volunteers, dunno. This would be my first open project too, so &amp;nbsp;
&lt;br&gt;&amp;gt; please point me in the right direction to &amp;quot;pick it up&amp;quot;. =)
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Screem is the most workflow-oriented tool I've used, and with a &amp;nbsp;
&lt;br&gt;&amp;gt; little this-and-that could be a webdev's dream. It would be kinda &amp;nbsp;
&lt;br&gt;&amp;gt; sad to let it die over a bug.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So, how do I pick it up? what do I need?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Just find bugs, submit patches to me and/or the list and I'll try and &amp;nbsp;
&lt;br&gt;make sure they get applied, depending on the number/quality of patches &amp;nbsp;
&lt;br&gt;I'll sort out developer svn access and then ownership.
&lt;br&gt;&lt;br&gt;Along with bugs probably a big task that needs doing is catching up &amp;nbsp;
&lt;br&gt;with GTK/Gnome API changes, removing deprecated methods etc. and &amp;nbsp;
&lt;br&gt;probably moving to gtksourceview 2.
&lt;br&gt;&lt;br&gt;If you start on doing something large probably post to the list &amp;nbsp;
&lt;br&gt;stating your intentions so should anyone else be interested they won't &amp;nbsp;
&lt;br&gt;duplicate effort.
&lt;br&gt;&lt;br&gt;The code is a horrible mess to be honest so you might just run away &amp;nbsp;
&lt;br&gt;from it screaming :)
&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25321202&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hello-and-thanks%21-tp24855655p25321202.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24943572</id>
	<title>Re: Hello and thanks!</title>
	<published>2009-08-12T13:00:05Z</published>
	<updated>2009-08-12T13:00:05Z</updated>
	<author>
		<name>Raul Claro-2</name>
	</author>
	<content type="html">I would myself be very grateful if this package could keep up and be 
&lt;br&gt;available to Debian users in the future. &amp;nbsp;I liked it very much, prefered 
&lt;br&gt;to bluefish (the one I am forced to use now).
&lt;br&gt;&lt;br&gt;So I hope you find the help you need (I myself have no idea of 
&lt;br&gt;programming, etc.)
&lt;br&gt;&lt;br&gt;Raúl
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Enrique Gimenez wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Pity! I promise to take a look at the source, but I honestly doubt my 
&lt;br&gt;&amp;gt; programming skills are up to par for the task.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I could oversee the project though, revamp the website, request 
&lt;br&gt;&amp;gt; volunteers, dunno. This would be my first open project too, so please 
&lt;br&gt;&amp;gt; point me in the right direction to &amp;quot;pick it up&amp;quot;. =)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But I want to. I really feel the lack of a productivity/performance 
&lt;br&gt;&amp;gt; oriented, lightweight web production environment, since most other 
&lt;br&gt;&amp;gt; programs (ie. bluefish) are built with a more &amp;quot;do-it-all&amp;quot; approach, 
&lt;br&gt;&amp;gt; which apparently seeks to make it easy for the point-and-click type of 
&lt;br&gt;&amp;gt; user to build a site, but offers little help to the guy who's actually 
&lt;br&gt;&amp;gt; BUILDING WEBSITES for a living.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Screem is the most workflow-oriented tool I've used, and with a little 
&lt;br&gt;&amp;gt; this-and-that could be a webdev's dream. It would be kinda sad to let it 
&lt;br&gt;&amp;gt; die over a bug.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So, how do I pick it up? what do I need?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; chepi
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Tue, Aug 11, 2009 at 4:12 AM, David Knight &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24943572&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&lt;/a&gt; 
&lt;br&gt;&amp;gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24943572&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&lt;/a&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; On 6 Aug 2009, at 23:25, Enrique Gimenez wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; On that note, I would like to help this project with what I do,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; which is Web/UI design and usability. Please let me know.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; And by the way, I really miss the syntax-folding feature of
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; Notepad++
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://notepad-plus.sourceforge.net/commun/screenshots/scrsh_lexerXML.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://notepad-plus.sourceforge.net/commun/screenshots/scrsh_lexerXML.gif&lt;/a&gt;&amp;gt;...
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; can we do something about that?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Screem is essentially dead unless someone else picks it up.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; David
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; 30-Day
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; trial. Simplify your report design, integration and deployment - and
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; focus on
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; _______________________________________________
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Screem-devel mailing list
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24943572&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24943572&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with 
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Screem-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24943572&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24943572&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hello-and-thanks%21-tp24855655p24943572.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24942763</id>
	<title>Re: Hello and thanks!</title>
	<published>2009-08-12T12:03:48Z</published>
	<updated>2009-08-12T12:03:48Z</updated>
	<author>
		<name>Enrique Gimenez</name>
	</author>
	<content type="html">Pity! I promise to take a look at the source, but I honestly doubt my programming skills are up to par for the task. &lt;br&gt;&lt;br&gt;I could oversee the project though, revamp the website, request volunteers, dunno. This would be my first open project too, so please point me in the right direction to &amp;quot;pick it up&amp;quot;. =)&lt;br&gt;
&lt;br&gt;But I want to. I really  feel the lack of a productivity/performance oriented, lightweight web production environment, since most other programs (ie. bluefish) are built with a more &amp;quot;do-it-all&amp;quot; approach, which apparently seeks to make it easy for the point-and-click type of user to build a site, but offers little help to the guy who&amp;#39;s actually BUILDING WEBSITES for a living. &lt;br&gt;
&lt;br&gt;Screem is the most workflow-oriented tool I&amp;#39;ve used, and with a little this-and-that could be a webdev&amp;#39;s dream. It would be kinda sad to let it die over a bug. &lt;br&gt;&lt;br&gt;So, how do I pick it up? what do I need?&lt;br&gt;
&lt;br&gt;Thanks, &lt;br&gt;&lt;br&gt;&lt;br&gt;chepi&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Aug 11, 2009 at 4:12 AM, David Knight &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24942763&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&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;div style=&quot;word-wrap: break-word;&quot;&gt;&lt;div class=&quot;im&quot;&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On 6 Aug 2009, at 23:25, Enrique Gimenez wrote:&lt;/div&gt;&lt;br&gt;&lt;blockquote type=&quot;cite&quot;&gt;On that note, I would like to help this project with what I do, which is Web/UI design and usability. Please let me know. &lt;br&gt;
 &lt;br&gt;And by the way, I really miss the &lt;a href=&quot;http://notepad-plus.sourceforge.net/commun/screenshots/scrsh_lexerXML.gif&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;syntax-folding feature of Notepad++&lt;/a&gt;... can we do something about that?&lt;br&gt;&lt;/blockquote&gt;
&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Screem is essentially dead unless someone else picks it up.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;font color=&quot;#888888&quot;&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;David&lt;/div&gt;&lt;/font&gt;&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------&lt;br&gt;

Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on&lt;br&gt;
what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________&lt;br&gt;
Screem-devel mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24942763&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24942763&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hello-and-thanks%21-tp24855655p24942763.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24913616</id>
	<title>Re: Hello and thanks!</title>
	<published>2009-08-11T01:12:24Z</published>
	<updated>2009-08-11T01:12:24Z</updated>
	<author>
		<name>David Knight-6</name>
	</author>
	<content type="html">&lt;html&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On 6 Aug 2009, at 23:25, Enrique Gimenez wrote:&lt;/div&gt;&lt;br&gt;&lt;blockquote type=&quot;cite&quot;&gt;On that note, I would like to help this project with what I do, which is Web/UI design and usability. Please let me know. &lt;br&gt; &lt;br&gt;And by the way, I really miss the &lt;a href=&quot;http://notepad-plus.sourceforge.net/commun/screenshots/scrsh_lexerXML.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;syntax-folding feature of Notepad++&lt;/a&gt;... can we do something about that?&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;div&gt;Screem is essentially dead unless someone else picks it up.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;David&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24913616&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hello-and-thanks%21-tp24855655p24913616.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24913617</id>
	<title>Re: BUG   CRASH</title>
	<published>2009-08-07T02:59:41Z</published>
	<updated>2009-08-07T02:59:41Z</updated>
	<author>
		<name>David Knight-6</name>
	</author>
	<content type="html">&lt;br&gt;On 26 Jul 2009, at 17:11, Raul Claro wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; So I report, that Screem with Linux Debian Lenny keeps crashing &amp;nbsp;
&lt;br&gt;&amp;gt; after a
&lt;br&gt;&amp;gt; couple of minutes. This didn't happen with &amp;quot;Etch&amp;quot;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So it is becoming useless for me, something I regret very much, as it
&lt;br&gt;&amp;gt; was a very nice and useful tool. &amp;nbsp; Messages from log, see further &amp;nbsp;
&lt;br&gt;&amp;gt; down.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Was wondering how long it would take for this to start happening. &amp;nbsp; 
&lt;br&gt;Screem basically stopped development 3 1/2 - 4 years ago and no one &amp;nbsp;
&lt;br&gt;else picked it up. &amp;nbsp;I've kept the domain name going should anyone wish &amp;nbsp;
&lt;br&gt;to do.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jul 26 16:35:54 debian kernel: [ 2129.568469] screem[3470]: segfault &amp;nbsp;
&lt;br&gt;&amp;gt; at
&lt;br&gt;&amp;gt; c ip b738a452 sp bff955f0 error 6 in libglib-2.0.so. 
&lt;br&gt;&amp;gt; 0.1600.6[b7334000+b4000]
&lt;br&gt;&amp;gt; Jul 26 16:43:16 debian kernel: [ 2572.695089] screem[3619]: segfault &amp;nbsp;
&lt;br&gt;&amp;gt; at
&lt;br&gt;&amp;gt; 29 ip b7348455 sp bf952b70 error 6 in
&lt;br&gt;&amp;gt; libglib-2.0.so.0.1600.6[b72f2000+b4000]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jul 26 16:51:03 debian kernel: [ 3039.331638] screem[3631]: segfault &amp;nbsp;
&lt;br&gt;&amp;gt; at
&lt;br&gt;&amp;gt; 37fdf811 ip b71cfaf8 sp bf830e94 error 6 in &amp;nbsp;
&lt;br&gt;&amp;gt; libc-2.7.so[b715f000+155000]
&lt;br&gt;&amp;gt; Jul 26 16:56:18 debian kernel: [ 3354.845985] screem[3676]: segfault &amp;nbsp;
&lt;br&gt;&amp;gt; at
&lt;br&gt;&amp;gt; 60 ip b7199ebc sp bf8fea84 error 4 in libc-2.7.so[b712b000+155000]
&lt;/div&gt;&lt;br&gt;Not much use without a backtrace I'm afraid. &amp;nbsp;BugBuddy or whatever it &amp;nbsp;
&lt;br&gt;is being called these days should kick in when screem crashes and &amp;nbsp;
&lt;br&gt;offer to create a bug report, which would include the backtrace.
&lt;br&gt;&lt;br&gt;Most crashes tend to be when editing css, either inside html files, or &amp;nbsp;
&lt;br&gt;on their own.
&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24913617&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BUG---CRASH-tp24668174p24913617.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24855655</id>
	<title>Hello and thanks!</title>
	<published>2009-08-06T15:25:03Z</published>
	<updated>2009-08-06T15:25:03Z</updated>
	<author>
		<name>Enrique Gimenez</name>
	</author>
	<content type="html">Screem has really provided the kind of funcionality I was looking for. &lt;br&gt;&lt;br&gt;I&amp;#39;ve recently migrated to ubuntu from windows, and find the freedom of the open source environment incredibly cool. &lt;br&gt;&lt;br&gt;On that note, I would like to help this project with what I do, which is Web/UI design and usability. Please let me know. &lt;br&gt;
&lt;br&gt;And by the way, I really miss the &lt;a href=&quot;http://notepad-plus.sourceforge.net/commun/screenshots/scrsh_lexerXML.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;syntax-folding feature of Notepad++&lt;/a&gt;... can we do something about that?&lt;br&gt;&lt;br&gt;But it still feels like I found the best tool I&amp;#39;ll ever work with.&lt;br&gt;
&lt;br&gt;Thanks, &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Chepi&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24855655&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hello-and-thanks%21-tp24855655p24855655.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24702815</id>
	<title>BUG   CRASH</title>
	<published>2009-07-28T09:12:57Z</published>
	<updated>2009-07-28T09:12:57Z</updated>
	<author>
		<name>Raul Claro-2</name>
	</author>
	<content type="html">Screem, which I used a long time with delight with Linux Etch, now with 
&lt;br&gt;&amp;nbsp; Lenny keeps crashing after a couple of minutes.
&lt;br&gt;&lt;br&gt;Can anything be done about this? &amp;nbsp; &amp;nbsp;Messages from log, see further down.
&lt;br&gt;&lt;br&gt;I hope somebody can help me with this problem
&lt;br&gt;&lt;br&gt;Thank you very much
&lt;br&gt;&lt;br&gt;Raúl Claro
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Jul 26 16:35:54 debian kernel: [ 2129.568469] screem[3470]: segfault at
&lt;br&gt;c ip b738a452 sp bff955f0 error 6 in libglib-2.0.so.0.1600.6[b7334000+b4000]
&lt;br&gt;Jul 26 16:43:16 debian kernel: [ 2572.695089] screem[3619]: segfault at
&lt;br&gt;29 ip b7348455 sp bf952b70 error 6 in
&lt;br&gt;libglib-2.0.so.0.1600.6[b72f2000+b4000]
&lt;br&gt;&lt;br&gt;Jul 26 16:51:03 debian kernel: [ 3039.331638] screem[3631]: segfault at
&lt;br&gt;37fdf811 ip b71cfaf8 sp bf830e94 error 6 in libc-2.7.so[b715f000+155000]
&lt;br&gt;Jul 26 16:56:18 debian kernel: [ 3354.845985] screem[3676]: segfault at
&lt;br&gt;60 ip b7199ebc sp bf8fea84 error 4 in libc-2.7.so[b712b000+155000]
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with 
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24702815&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BUG---CRASH-tp24702815p24702815.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24668174</id>
	<title>BUG   CRASH</title>
	<published>2009-07-26T09:11:39Z</published>
	<updated>2009-07-26T09:11:39Z</updated>
	<author>
		<name>Raul Claro-2</name>
	</author>
	<content type="html">I took very, very long getting in touch with you, as I tried 
&lt;br&gt;registering, etc., unsuccessfully. &amp;nbsp;Finally I got into this list, and I 
&lt;br&gt;hope it helps.
&lt;br&gt;&lt;br&gt;So I report, that Screem with Linux Debian Lenny keeps crashing after a 
&lt;br&gt;couple of minutes. This didn't happen with &amp;quot;Etch&amp;quot;.
&lt;br&gt;&lt;br&gt;So it is becoming useless for me, something I regret very much, as it 
&lt;br&gt;was a very nice and useful tool. &amp;nbsp; Messages from log, see further down.
&lt;br&gt;&lt;br&gt;I hope you can answer or redirect this mail.
&lt;br&gt;&lt;br&gt;Thank you very much
&lt;br&gt;&lt;br&gt;Raúl Claro
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Jul 26 16:35:54 debian kernel: [ 2129.568469] screem[3470]: segfault at 
&lt;br&gt;c ip b738a452 sp bff955f0 error 6 in libglib-2.0.so.0.1600.6[b7334000+b4000]
&lt;br&gt;Jul 26 16:43:16 debian kernel: [ 2572.695089] screem[3619]: segfault at 
&lt;br&gt;29 ip b7348455 sp bf952b70 error 6 in 
&lt;br&gt;libglib-2.0.so.0.1600.6[b72f2000+b4000]
&lt;br&gt;&lt;br&gt;Jul 26 16:51:03 debian kernel: [ 3039.331638] screem[3631]: segfault at 
&lt;br&gt;37fdf811 ip b71cfaf8 sp bf830e94 error 6 in libc-2.7.so[b715f000+155000]
&lt;br&gt;Jul 26 16:56:18 debian kernel: [ 3354.845985] screem[3676]: segfault at 
&lt;br&gt;60 ip b7199ebc sp bf8fea84 error 4 in libc-2.7.so[b712b000+155000]
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24668174&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BUG---CRASH-tp24668174p24668174.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16161763</id>
	<title>Still Screeming?</title>
	<published>2008-03-19T08:55:24Z</published>
	<updated>2008-03-19T08:55:24Z</updated>
	<author>
		<name>Stephen Somers</name>
	</author>
	<content type="html">I have just discovered Screem and have to say that it is exactly the
&lt;br&gt;tool I was looking for. It has been running without any problems for a
&lt;br&gt;week now.
&lt;br&gt;&lt;br&gt;Then, last night, it started crashing and vanishing in the middle of
&lt;br&gt;edits. The only difference between before and now, so far as I can see,
&lt;br&gt;is that I started to rationalise style elements in some HTML files.
&lt;br&gt;Suddenly the renderer (ctrl-2) stopped functioning and then the
&lt;br&gt;disappearing act.
&lt;br&gt;&lt;br&gt;Although I can't find any posts after November 2006 I have seen a
&lt;br&gt;suggestion that development work is still going on - Is this true?
&lt;br&gt;&lt;br&gt;I really hope I haven't just bailed into a brilliant tool just after the
&lt;br&gt;bilge valves have been smashed off!
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Stephen
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16161763&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Still-Screeming--tp16161763p16161763.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7447392</id>
	<title>Re: Screem-devel Digest, Vol 2, Issue 2</title>
	<published>2006-11-20T10:11:35Z</published>
	<updated>2006-11-20T10:11:35Z</updated>
	<author>
		<name>Horst Pflugstaedt-2</name>
	</author>
	<content type="html">&amp;gt; Message: 1
&lt;br&gt;&amp;gt; Date: Sun, 19 Nov 2006 17:01:37 +0000
&lt;br&gt;&amp;gt; From: David A Knight &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7447392&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I would like to choose another default for the doctype, but could not
&lt;br&gt;&amp;gt; &amp;gt; find any file where to apply the change.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It is hard coded, you can't change it.
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;Greetings
&lt;br&gt;Horst
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys - and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7447392&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Screem-devel-Digest%2C-Vol-2%2C-Issue-2-tp7447392p7447392.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7431279</id>
	<title>Re: making changes to the website-skeleton</title>
	<published>2006-11-19T09:01:37Z</published>
	<updated>2006-11-19T09:01:37Z</updated>
	<author>
		<name>David A Knight-2</name>
	</author>
	<content type="html">On Thu, 2006-11-16 at 20:18 +0100, Horst Pflugstaedt wrote:
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; i'm just user, and I'm looking for a way to change the skeleton of a
&lt;br&gt;&amp;gt; page (in german: the &amp;quot;Grundgerüst&amp;quot;, accessible via insert -&amp;gt; HTML -&amp;gt;
&lt;br&gt;&amp;gt; Grundgerüst).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I would like to choose another default for the doctype, but could not
&lt;br&gt;&amp;gt; find any file where to apply the change.
&lt;br&gt;&lt;br&gt;It is hard coded, you can't change it.
&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Make your website SCREEM - Site Creating &amp; Editing EnvironMent
&lt;br&gt;&lt;br&gt;URL: &amp;nbsp;&lt;a href=&quot;http://www.screem.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.screem.org/&lt;/a&gt;&lt;br&gt;Mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7431279&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys - and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7431279&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&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; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/7431279/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/making-changes-to-the-website-skeleton-tp7384959p7431279.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7384959</id>
	<title>making changes to the website-skeleton</title>
	<published>2006-11-16T11:18:00Z</published>
	<updated>2006-11-16T11:18:00Z</updated>
	<author>
		<name>Horst Pflugstaedt-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;i'm just user, and I'm looking for a way to change the skeleton of a
&lt;br&gt;page (in german: the &amp;quot;Grundgerüst&amp;quot;, accessible via insert -&amp;gt; HTML -&amp;gt;
&lt;br&gt;Grundgerüst).
&lt;br&gt;&lt;br&gt;I would like to choose another default for the doctype, but could not
&lt;br&gt;find any file where to apply the change.
&lt;br&gt;&lt;br&gt;where (in the bianries) lies my path to wisdom?
&lt;br&gt;(screem 0.16.1, debian etch)
&lt;br&gt;&lt;br&gt;Thanks in advance
&lt;br&gt;Horst
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;lt;DarthVadr&amp;gt; Kira: JOIN THE DARK SIDE, YOUNG ONE.
&lt;br&gt;&amp;lt;kira&amp;gt; darth, I *am* the dark side.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys - and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7384959&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/making-changes-to-the-website-skeleton-tp7384959p7384959.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5567617</id>
	<title>is Screem project dead ?</title>
	<published>2006-07-30T16:09:24Z</published>
	<updated>2006-07-30T16:09:24Z</updated>
	<author>
		<name>Guillaume Chaussy</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;&lt;br&gt;I've take a look at the SourceForge page about Screem, and it looks like
&lt;br&gt;the project has been abandonned.
&lt;br&gt;&lt;br&gt;Am I right or not ? Please answer me, in order to know if I can hope a
&lt;br&gt;bit more from this IDE or not.
&lt;br&gt;&lt;br&gt;Thanks, Guillaume.
&lt;br&gt;&lt;br&gt;PS: it will be a really sad thing if screem is dead, no other tool
&lt;br&gt;(especially this bloat-unHIGed-ware called Bluefish) is relevant for web
&lt;br&gt;publication under the Gnome environment.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys -- and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5567617&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/is-Screem-project-dead---tp5567617p5567617.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5205536</id>
	<title>Research study on CVS - you can help and get paid!</title>
	<published>2006-07-03T20:17:12Z</published>
	<updated>2006-07-03T20:17:12Z</updated>
	<author>
		<name>Eric Gilbert-2</name>
	</author>
	<content type="html">I am a Computer Science graduate student at the University of &amp;nbsp;
&lt;br&gt;Illinois at Urbana-Champaign. I need your help in a study I want to &amp;nbsp;
&lt;br&gt;conduct. I have created a project called LifeSource that visualizes &amp;nbsp;
&lt;br&gt;CVS repositories. You can find screenshots and info here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://social.cs.uiuc.edu/people/gilbert&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://social.cs.uiuc.edu/people/gilbert&lt;/a&gt;&amp;nbsp;(info on me)
&lt;br&gt;&lt;a href=&quot;http://social.cs.uiuc.edu/people/gilbert/research.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://social.cs.uiuc.edu/people/gilbert/research.html&lt;/a&gt;&amp;nbsp;(info on &amp;nbsp;
&lt;br&gt;LifeSource, the CVS project)
&lt;br&gt;&lt;br&gt;LifeSource appeared as a Work-in-Progress paper at ACM's CHI 2006 in &amp;nbsp;
&lt;br&gt;Montreal (&lt;a href=&quot;http://www.chi2006.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.chi2006.org&lt;/a&gt;). I applied LifeSource to the &amp;nbsp;
&lt;br&gt;Azureus and Gaim CVS repositories. I would like to apply the same &amp;nbsp;
&lt;br&gt;visualization to your
&lt;br&gt;project. Next, I want to see if you as the visualized community find &amp;nbsp;
&lt;br&gt;it accurate, helpful, disturbing, etc.
&lt;br&gt;&lt;br&gt;In order to participate in the study, you will need to view the &amp;nbsp;
&lt;br&gt;LifeSource visualization once a week (on the web) for four weeks and &amp;nbsp;
&lt;br&gt;respond to two short online surveys.
&lt;br&gt;&lt;br&gt;You will receive a $20 gift certificate for your participation.
&lt;br&gt;&lt;br&gt;I can fully explain the process in the near future - just email me &amp;nbsp;
&lt;br&gt;back. I will provide all of the information of the methodology of the &amp;nbsp;
&lt;br&gt;study online. (We can set up a blog for study members to leave &amp;nbsp;
&lt;br&gt;further comments.)
&lt;br&gt;&lt;br&gt;Please let me know what you think. I plan on using the study in a &amp;nbsp;
&lt;br&gt;long paper to CHI 2007.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Eric
&lt;br&gt;&lt;br&gt;P.S. I apologize for the spam and will send no more.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Using Tomcat but need to do more? Need to support web services, security?
&lt;br&gt;Get stuff done quickly with pre-integrated technology to make your job easier
&lt;br&gt;Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
&lt;br&gt;&lt;a href=&quot;http://sel.as-us.falkag.net/sel?cmd=lnk&amp;kid=120709&amp;bid=263057&amp;dat=121642&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sel.as-us.falkag.net/sel?cmd=lnk&amp;kid=120709&amp;bid=263057&amp;dat=121642&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5205536&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Research-study-on-CVS---you-can-help-and-get-paid%21-tp5205536p5205536.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-3315969</id>
	<title>Re: bug?</title>
	<published>2006-03-09T00:02:18Z</published>
	<updated>2006-03-09T00:02:18Z</updated>
	<author>
		<name>David A Knight-2</name>
	</author>
	<content type="html">On Wed, 2006-03-08 at 23:17 -0500, Lizzeh wrote:
&lt;br&gt;&amp;gt; Hi there,
&lt;br&gt;&amp;gt; I'm running Screem 0.16 on Ubuntu Linux 5.10 and firefox 1.5 is my
&lt;br&gt;&amp;gt; default system browser. &amp;nbsp;I notice that if I hit the &amp;quot;external browser&amp;quot;
&lt;br&gt;&amp;gt; button to preview my page in Firefox, it always opens an arizona.edu
&lt;br&gt;&amp;gt; website, as well as the site I am working on. Is this a bug? If so,
&lt;br&gt;&amp;gt; I'd like to report it.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.ubuntuforums.org/showthread.php?t=140295&amp;highlight=firefox+%&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ubuntuforums.org/showthread.php?t=140295&amp;highlight=firefox+%&lt;/a&gt;&lt;br&gt;25u
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Make your website SCREEM - Site Creating &amp; Editing EnvironMent
&lt;br&gt;&lt;br&gt;URL: &amp;nbsp;&lt;a href=&quot;http://www.screem.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.screem.org/&lt;/a&gt;&lt;br&gt;Mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=3315969&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&lt;/a&gt;
&lt;br&gt;&lt;br&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; (198 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/3315969/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/bug--tp3315640p3315969.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-3315640</id>
	<title>bug?</title>
	<published>2006-03-08T20:17:12Z</published>
	<updated>2006-03-08T20:17:12Z</updated>
	<author>
		<name>Lizzeh Rodriguez</name>
	</author>
	<content type="html">Hi there,&lt;br&gt;I'm running Screem 0.16 on Ubuntu Linux 5.10 and firefox 1.5 is my default system browser.&amp;nbsp; I notice that if I hit the &amp;quot;external browser&amp;quot; button to preview my page in Firefox, it always opens an &lt;a href=&quot;http://arizona.edu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
arizona.edu&lt;/a&gt; website, as well as the site I am working on. Is this a bug? If so, I'd like to report it.&lt;br&gt;Thank you!&lt;br&gt;Liz&lt;br&gt;-- &lt;br&gt;&lt;a href=&quot;http://Lizzeh.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Lizzeh.com&lt;/a&gt;&lt;br&gt;Support open source!
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/bug--tp3315640p3315640.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-2920544</id>
	<title>Re: Syntax Highlighting</title>
	<published>2006-02-13T14:10:50Z</published>
	<updated>2006-02-13T14:10:50Z</updated>
	<author>
		<name>David A Knight-2</name>
	</author>
	<content type="html">On Mon, 2006-02-13 at 20:20 +0000, Hugh Morris wrote:
&lt;br&gt;&amp;gt; I'm a recent convert to Ubuntu (from MS Windows) and after looking at 
&lt;br&gt;&amp;gt; the availabel editors I've decided to give Screem a go. (HTML-Kit is one 
&lt;br&gt;&amp;gt; of the few things I was sorry to leave behind on Windows.) Is there any 
&lt;br&gt;&amp;gt; way to edit the default syntax-highlighting. I'm not wild about some of 
&lt;br&gt;&amp;gt; the colours.
&lt;br&gt;&lt;br&gt;default version in ubuntu breezy if very old. &amp;nbsp;if you add the breezy
&lt;br&gt;backports you can get 0.16.1 of screem which allows you to edit the
&lt;br&gt;highlighting colours.
&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Make your website SCREEM - Site Creating &amp; Editing EnvironMent
&lt;br&gt;&lt;br&gt;URL: &amp;nbsp;&lt;a href=&quot;http://www.screem.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.screem.org/&lt;/a&gt;&lt;br&gt;Mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=2920544&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&lt;/a&gt;
&lt;br&gt;&lt;br&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; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/2920544/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Syntax-Highlighting-tp2918852p2920544.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-2918829</id>
	<title>Re: about french translation.</title>
	<published>2006-02-13T12:37:23Z</published>
	<updated>2006-02-13T12:37:23Z</updated>
	<author>
		<name>David A Knight-2</name>
	</author>
	<content type="html">On Thu, 2006-02-09 at 14:09 +0100, Yaen Pujol wrote:
&lt;br&gt;&amp;gt; hello everyone here.
&lt;br&gt;&amp;gt; I'd like to help in french translation.
&lt;br&gt;&lt;br&gt;Translation was done through &lt;a href=&quot;http://www.iro.umontreal.ca/translation/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.iro.umontreal.ca/translation/&lt;/a&gt;&lt;br&gt;although I'm not sure if the pot file is up to date.
&lt;br&gt;&lt;br&gt;It also seems like some is being done via launchpad.net
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://launchpad.net/distros/ubuntu/breezy/+source/screem/+pots/screem&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://launchpad.net/distros/ubuntu/breezy/+source/screem/+pots/screem&lt;/a&gt;&lt;br&gt;&lt;br&gt;which I need to look at and possibly merge.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Make your website SCREEM - Site Creating &amp; Editing EnvironMent
&lt;br&gt;&lt;br&gt;URL: &amp;nbsp;&lt;a href=&quot;http://www.screem.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.screem.org/&lt;/a&gt;&lt;br&gt;Mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=2918829&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&lt;/a&gt;
&lt;br&gt;&lt;br&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; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/2918829/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/about-french-translation.-tp2849718p2918829.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-2918852</id>
	<title>Syntax Highlighting</title>
	<published>2006-02-13T12:20:11Z</published>
	<updated>2006-02-13T12:20:11Z</updated>
	<author>
		<name>Hugh Morris-2</name>
	</author>
	<content type="html">I'm a recent convert to Ubuntu (from MS Windows) and after looking at 
&lt;br&gt;the availabel editors I've decided to give Screem a go. (HTML-Kit is one 
&lt;br&gt;of the few things I was sorry to leave behind on Windows.) Is there any 
&lt;br&gt;way to edit the default syntax-highlighting. I'm not wild about some of 
&lt;br&gt;the colours.
&lt;br&gt;&lt;br&gt;Best wishes
&lt;br&gt;&lt;br&gt;Hugh
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
&lt;br&gt;for problems? &amp;nbsp;Stop! &amp;nbsp;Download the new AJAX search engine that makes
&lt;br&gt;searching your log files as easy as surfing the &amp;nbsp;web. &amp;nbsp;DOWNLOAD SPLUNK!
&lt;br&gt;&lt;a href=&quot;http://sel.as-us.falkag.net/sel?cmd=lnk&amp;kid=103432&amp;bid=230486&amp;dat=121642&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sel.as-us.falkag.net/sel?cmd=lnk&amp;kid=103432&amp;bid=230486&amp;dat=121642&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=2918852&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Syntax-Highlighting-tp2918852p2918852.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-2849718</id>
	<title>about french translation.</title>
	<published>2006-02-09T05:05:40Z</published>
	<updated>2006-02-09T05:05:40Z</updated>
	<author>
		<name>Yaen Pujol</name>
	</author>
	<content type="html">hello everyone here.
&lt;br&gt;I'd like to help in french translation.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
&lt;br&gt;for problems? &amp;nbsp;Stop! &amp;nbsp;Download the new AJAX search engine that makes
&lt;br&gt;searching your log files as easy as surfing the &amp;nbsp;web. &amp;nbsp;DOWNLOAD SPLUNK!
&lt;br&gt;&lt;a href=&quot;http://sel.as-us.falkag.net/sel?cmd=lnk&amp;kid=103432&amp;bid=230486&amp;dat=121642&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sel.as-us.falkag.net/sel?cmd=lnk&amp;kid=103432&amp;bid=230486&amp;dat=121642&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Screem-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=2849718&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Screem-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/screem-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/screem-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/about-french-translation.-tp2849718p2849718.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-1999716</id>
	<title>Re: Several thoughts</title>
	<published>2005-12-18T11:43:08Z</published>
	<updated>2005-12-18T11:43:08Z</updated>
	<author>
		<name>David A Knight-2</name>
	</author>
	<content type="html">On Sun, 2005-12-11 at 17:17 +0000, David A Knight wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; New global templates are added in &amp;nbsp;&amp;lt;prefix&amp;gt;/share/screem/templates and
&lt;br&gt;&amp;gt; look like
&lt;br&gt;&lt;br&gt;Site templates are now supported, stored in
&lt;br&gt;&amp;lt;prefix&amp;gt;/share/screem/sitetemplates
&lt;br&gt;&lt;br&gt;The url specified should point to a tar.gz, zip file etc.
&lt;br&gt;&lt;br&gt;There is a problem with this though. &amp;nbsp;gnome-vfs is broken with regards
&lt;br&gt;to accessing archive files so there were 2 options.
&lt;br&gt;&lt;br&gt;1) &amp;nbsp;allow only specific formats. &amp;nbsp;tar.gz, zip etc. and call the command
&lt;br&gt;line apps
&lt;br&gt;2) &amp;nbsp;call file-roller which will handle many formats without needing to
&lt;br&gt;worry about specific options
&lt;br&gt;&lt;br&gt;I have taken the file-roller option as screem is a gnome based app.
&lt;br&gt;This is not a hard dependency though, but without file-roller sites can
&lt;br&gt;not be created from a template.
&lt;br&gt;&lt;br&gt;using either option the template must be a file:/// &amp;nbsp;URI unfortunately.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Other than the .desktop style template definition site templates are
&lt;br&gt;nothing more than a zip file / tarball.
&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Make your website SCREEM - Site Creating &amp; Editing EnvironMent
&lt;br&gt;&lt;br&gt;URL: &amp;nbsp;&lt;a href=&quot;http://www.screem.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.screem.org/&lt;/a&gt;&lt;br&gt;Mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=1999716&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&lt;/a&gt;
&lt;br&gt;&lt;br&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; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/1999716/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Several-thoughts-tp1892754p1999716.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-1892754</id>
	<title>Re: Several thoughts</title>
	<published>2005-12-11T09:17:03Z</published>
	<updated>2005-12-11T09:17:03Z</updated>
	<author>
		<name>David A Knight-2</name>
	</author>
	<content type="html">On Mon, 2005-04-18 at 19:06 +0200, Sven Salzwedel wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Well, I think we should create a dialog that only asks for document
&lt;br&gt;&amp;gt; type, filename, template, css stylesheet and maybe encoding. The whole
&lt;br&gt;&amp;gt; HTML things aren't not that much used today, because CSS is the better
&lt;br&gt;&amp;gt; alternative and I think a modern IDE for web development should suggest
&lt;br&gt;&amp;gt; to use CSS. Maybe this dialog could be opened even when the document was
&lt;br&gt;&amp;gt; already created, so that you can edit this things dynamically. Maybe
&lt;br&gt;&amp;gt; I'll play a bit with glade today or tomorrow.
&lt;br&gt;&lt;br&gt;Well I've finally got around to doing something along these lines. &amp;nbsp;The
&lt;br&gt;attached screenshot is the current state that is in CVS.
&lt;br&gt;&lt;br&gt;Ignore the wrapping on the template filename, that is a bug already
&lt;br&gt;reported in gnome bugzilla and patches available.
&lt;br&gt;&lt;br&gt;I did have the templates always visible above the name/folder section
&lt;br&gt;before, but have gone with a mimicking of the standard save dialog.
&lt;br&gt;&lt;br&gt;The HTML Details tab there will only appear if the template is text/html
&lt;br&gt;or application/xhtml+xml so isn't always visible.
&lt;br&gt;&lt;br&gt;The Templates from Site will only appear if the current site has
&lt;br&gt;templates, either in /Templates or /&amp;lt;sitename&amp;gt;.data/Templates in the
&lt;br&gt;case of golive created sites.
&lt;br&gt;&lt;br&gt;New global templates are added in &amp;nbsp;&amp;lt;prefix&amp;gt;/share/screem/templates and
&lt;br&gt;look like
&lt;br&gt;&lt;br&gt;[Screem Template]
&lt;br&gt;Name=Strict HTML 4
&lt;br&gt;Comment=Strict HTML 4 Document
&lt;br&gt;Type=text/html
&lt;br&gt;URL=file:///usr/share/screem/resources/HTML/strict4.html
&lt;br&gt;Path=/Web Development/HTML
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Make your website SCREEM - Site Creating &amp; Editing EnvironMent
&lt;br&gt;&lt;br&gt;URL: &amp;nbsp;&lt;a href=&quot;http://www.screem.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.screem.org/&lt;/a&gt;&lt;br&gt;Mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=1892754&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br /&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;newdocument.png&lt;/strong&gt; (14K) &lt;a href=&quot;http://old.nabble.com/attachment/1892754/0/newdocument.png&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&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; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/1892754/1/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Several-thoughts-tp1892754p1892754.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-804287</id>
	<title>Re: Links not updating when I move a page</title>
	<published>2005-09-07T09:37:09Z</published>
	<updated>2005-09-07T09:37:09Z</updated>
	<author>
		<name>David A Knight-2</name>
	</author>
	<content type="html">On Wed, 2005-09-07 at 18:07 +1000, Simon Wong wrote:
&lt;br&gt;&amp;gt; The &amp;quot;Tip of the Day&amp;quot; says that if I move a page using the file tree any
&lt;br&gt;&amp;gt; links to that page will be updated, however, that is not happening.
&lt;br&gt;&lt;br&gt;Make sure you move rather than copy, which requires either a middle
&lt;br&gt;button drag or holding alt down to get the drag operation menu.
&lt;br&gt;&lt;br&gt;I have seen this not working in one case myself, and that was when there
&lt;br&gt;was a space in the pathname, so this could be the case here.
&lt;br&gt;&lt;br&gt;&amp;gt; In fact the file tree seems a tad unstable to me, I've had a few crashes
&lt;br&gt;&amp;gt; already while moving things around in a Site.
&lt;br&gt;&lt;br&gt;2 problems can cause this. &amp;nbsp;1 a bug with gtk. &amp;nbsp;this is worked around in
&lt;br&gt;0.15.x in one place, but not another as it isn't possible. &amp;nbsp;This avoids
&lt;br&gt;most of the crashes for me.
&lt;br&gt;&lt;br&gt;The other is a problem with the link fixing code I think, I haven't
&lt;br&gt;looked into it properly yet.
&lt;br&gt;&lt;br&gt;&amp;gt; P.S. I emailed you many moons ago about doing some doco work for you.
&lt;br&gt;&amp;gt; I'm back in the game and am trying to use SCREEM to do some &amp;quot;real&amp;quot;
&lt;br&gt;&amp;gt; website development work. &amp;nbsp;Should I be using the &amp;quot;stable&amp;quot; version or
&lt;br&gt;&amp;gt; will I be better of working with the devel version and supplying
&lt;br&gt;&amp;gt; debugging info ie is it more likely to get fixed in the 0.15.x series?
&lt;br&gt;&lt;br&gt;0.15.x series are more likely to get fixed yes. &amp;nbsp;In general the
&lt;br&gt;development series is better to use, just that there is always a chance
&lt;br&gt;of major breakages if large parts are modified. &amp;nbsp;The biggest planned
&lt;br&gt;change will probably not be going into 0.15.x so there shouldn't be
&lt;br&gt;problems.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Make your website SCREEM - Site Creating &amp; Editing EnvironMent
&lt;br&gt;&lt;br&gt;URL: &amp;nbsp;&lt;a href=&quot;http://www.screem.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.screem.org/&lt;/a&gt;&lt;br&gt;Mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=804287&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david@...&lt;/a&gt;
&lt;br&gt;&lt;br&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; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/804287/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/screem-devel-f3733.html&quot; embed=&quot;fixTarget[3733]&quot; target=&quot;_top&quot; &gt;screem-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Links-not-updating-when-I-move-a-page-tp800813p804287.html" />
</entry>

</feed>
