<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>Latest posts from “SIDE-Labs 1.0” board.</title>
	<description>Latest posts from forum “SIDE-Labs 1.0” on “SIDE-Labs Forums”.</description>
	<link>http://www.side-labs.org/forums/viewforum.php?f=6</link>
	<atom:link href="http://www.side-labs.org/forums/generate_feed.php?content=posts&amp;f%5B%5D=6" rel="self" type="application/rss+xml" />
	<lastBuildDate>Wed, 14 May 2008 09:04:40 +0200</lastBuildDate>

			<item>
			<dc:creator>markbnine</dc:creator>
			<pubDate>Tue, 31 Aug 2010 23:16:34 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1626#p1626</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1626#p1626</link>
			<title>Re: source code to jsf components</title>
			<description><![CDATA[Hi,<br />
<br />
Were the patches for the Tabbed Property Sheet applied to SVN?<br />
<br />
I am interested in adding the tabs to my Alfresco.<br />
<br />
Thanks, Mark]]></description>
		</item>
			<item>
			<dc:creator>avoglozin</dc:creator>
			<pubDate>Thu, 18 Mar 2010 13:26:18 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1146#p1146</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1146#p1146</link>
			<title>Re: source code to jsf components</title>
			<description><![CDATA[Hi,<br />
we are pleased to hear that you've started to use some components &quot;with minor changes&quot;. Even more that you are willing to contribute your patches. If you could attach them to a post here, I'm sure they will be useful.<br />
<br />
As for the missing classes, you are right, they are related to custom features of ours: <br />
- BrowseBean is responsible for incorporating some property values of objects into their name in the web client. Which means that if a &quot;Person&quot; node has properties &quot;firstname=John&quot; and &quot;lastname=Doe&quot;, you'll end up seeing &quot;John Doe&quot; in the Alfresco Web Client instead of the usual hex-code id, if &lt;firstname lastname&gt; was the configuration for &quot;Person&quot;. That what can be seen on the wiki: <a href="http://www.side-labs.org/wiki/index.php/Features:Alfresco:Components#BlueXML_Browse_Component" class="postlink">http://www.side-labs.org/wiki/index.php/Features:Alfresco:Components#BlueXML_Browse_Component</a><br />
- LucenceUtils (I'm doing a little bit of guessing here) is for searching nodes based on the properties.<br />
- the other classes exist because 1- we added support for association classes and 2- we offered the possibility to replicate the metadata/properties of objects into a database  separated from the Alfresco database. That replication database is created from what is put in the models, i.e. if you have data types &quot;Person&quot; and &quot;Company&quot;, you'll easily find the corresponding tables in the replication database, with specific column names (for instance, &quot;firstname&quot; and &quot;lastname&quot;) and know what objects exist, etc. Which is not that easy using the Alfresco database. That's the database that we are querying.<br />
<br />
The main purpose of the missing classes was to make using association classes possible.<br />
<br />
For Alfresco 3.2, we removed the association classes (and bringing them back is an issue still open for discussion), in part because of the amount of work and the complexity. So I do not recommend you head for those classes. If you're not into association classes, you're better off without them.<br />
<br />
How does the associationEditor class compile when you remove the import directives ?<br />
<br />
We'll get back to you for the availability of the classes.]]></description>
		</item>
			<item>
			<dc:creator>billerby</dc:creator>
			<pubDate>Tue, 16 Mar 2010 17:59:03 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1144#p1144</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1144#p1144</link>
			<title>Re: source code to jsf components</title>
			<description><![CDATA[Thanks,<br />
<br />
First, for the instructions for the TabbedPropertySheet to be complete, you will also have to add the following to the web-client-config-custom.xml:<br />
<div class="codewrapper"><div class="codetitle"><b>Code:</b></div><div class="codecontent">&nbsp; &nbsp;&lt;plug-ins&gt;<br />
&nbsp; &nbsp;&nbsp; &nbsp;&lt;element-readers&gt;<br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&lt;element-reader element-name=&quot;section&quot; class=&quot;com.bluexml.alfresco.modules.tabs.config.TabPanelsElementReader&quot; /&gt; <br />
&nbsp; &nbsp; &nbsp; &nbsp;&lt;/element-readers&gt;<br />
&nbsp; &nbsp;&lt;/plug-ins&gt;<br />
</div></div><br />
<br />
<br />
I have now incorporated your very nice looking TabbedPropertySheetComponent into my code base. I had to do some minor changes, the first one was probably related to me running 3.2 and that the component was built for Alfresco 2. The other change I did was to keep track of which tab is selected during a roundtrip to the server. This behaviour was present in the old forge component, and I had the need for it so I imlemented it.<br />
<br />
I know you are not supporting this code anymore, but I still wonder if you want my me to create a patch of my changes as a contribution for you? <br />
<br />
My next thing will be to incorporate your AssociationEditor. Unfortunatly, the code present in the svn-repository are missing some classes. The following imports are missing:<br />
<div class="codewrapper"><div class="codetitle"><b>Code:</b></div><div class="codecontent">import com.bluexml.alfresco.modules.browse.BrowseBean;<br />
import com.bluexml.alfresco.externalUpdater.SQLUpdater;<br />
import com.bluexml.alfresco.modules.associationSynchronization.NodeService;<br />
import com.bluexml.alfresco.utils.LuceneUtils;<br />
import com.bluexml.alfresco.dataLayer.sql.SQLRequester;<br />
import com.bluexml.alfresco.externalUpdater.DatabaseDictionary;<br />
</div></div><br />
<br />
I suspect your Sql-related classes could be some custom stuff to your product? Or are you querying the Alfresco tables?<br />
<br />
Anyway, it would be great if you could provide me with those missing classes, I can then try to make them work in Alfresco 3.2 and contribute the changes back to you.<br />
<br />
Au revoir<br />
/Erik]]></description>
		</item>
			<item>
			<dc:creator>bchevallereau</dc:creator>
			<pubDate>Mon, 15 Mar 2010 18:56:05 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1143#p1143</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1143#p1143</link>
			<title>Re: source code to jsf components</title>
			<description><![CDATA[Hi billerby,<br />
<br />
To be complete, if you want to activate custom association editor. You can define a file callled &quot;faces-config-custom.xml&quot; and to write :<br />
<div class="codewrapper"><div class="codetitle"><b>Code:</b></div><div class="codecontent">&lt;?xml version='1.0' encoding='UTF-8'?&gt;<br />
&lt;!DOCTYPE faces-config PUBLIC &quot;-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;http://java.sun.com/dtd/web-facesconfig_1_1.dtd&quot;&gt;<br />
&lt;faces-config&gt;<br />
&nbsp; &nbsp;<br />
&nbsp; &nbsp;&lt;component&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;component-type&gt;org.alfresco.faces.AssociationEditor&lt;/component-type&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;component-class&gt;org.alfresco.bluexml.UICustomAssociationEditor&lt;/component-class&gt;<br />
&nbsp; &nbsp;&lt;/component&gt;<br />
&nbsp; &nbsp;<br />
&nbsp; &nbsp;&lt;component&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;component-type&gt;org.alfresco.faces.ChildAssociationEditor&lt;/component-type&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;component-class&gt;org.alfresco.bluexml.UICustomChildAssociationEditor&lt;/component-class&gt;<br />
&nbsp; &nbsp;&lt;/component&gt;<br />
<br />
&lt;/faces-config&gt;<br />
</div></div><br />
<br />
After, if you want to use tabs :<br />
<div class="codewrapper"><div class="codetitle"><b>Code:</b></div><div class="codecontent">&lt;config evaluator=&quot;node-type&quot; condition=&quot;TYPE_NAME&quot;&gt;<br />
&lt;property-sheet&gt;<br />
&nbsp; &lt;show-property name=&quot;...&quot;/&gt;<br />
&lt;/property-sheet&gt;<br />
&lt;section uicomponent=&quot;tabs&quot; orientation=&quot;vertical&quot;&gt;<br />
&nbsp; &lt;section id=&quot;XXX&quot; label-id=&quot;XXXL&quot; description-id=&quot;XXXD&quot;&gt;<br />
&nbsp; &nbsp; &lt;property name=&quot;...&quot; /&gt;<br />
&nbsp; &lt;/section&gt;<br />
&lt;/section&gt;<br />
&lt;/config&gt;<br />
</div></div>]]></description>
		</item>
			<item>
			<dc:creator>billerby</dc:creator>
			<pubDate>Mon, 15 Mar 2010 10:25:06 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1141#p1141</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1141#p1141</link>
			<title>Re: source code to jsf components</title>
			<description><![CDATA[Yes I'm very interested. <br />
<br />
I only need an xml-configuration example for the tabbed property sheet.  The old one seems to have been replaced in order to conform to the Yahoo-tabView javascript components that you are using for the rendering.<br />
<br />
Thanks<br />
/Erik]]></description>
		</item>
			<item>
			<dc:creator>jckermagoret</dc:creator>
			<pubDate>Mon, 15 Mar 2010 10:14:40 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1140#p1140</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1140#p1140</link>
			<title>Re: source code to jsf components</title>
			<description><![CDATA[Hi,<br />
unfortunately, we don't support anymore these components based on Alfresco Web Client.<br />
<br />
Nevertheless, I'm going to look after the author's module to ask him more details.<br />
<br />
Are you also interested by the other modules?<br />
<br />
JC]]></description>
		</item>
			<item>
			<dc:creator>billerby</dc:creator>
			<pubDate>Mon, 15 Mar 2010 09:47:50 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1139#p1139</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1139#p1139</link>
			<title>Re: source code to jsf components</title>
			<description><![CDATA[Hi again,<br />
<br />
Since the configuration of the tabbed property sheet seems to be totally different in the svn-version compared to the one described here &quot;http://www.side-labs.org/wiki/index.php/Features:Alfresco:Components#BlueXML_Association_Editor_Component&quot; I wonder if there is any documentation of how to configure the tabs properly. By looking at the TabPanelsElementReader I notice a lot of new elements, and attributes and a lot of missing ones compared to the docs on the webpage mentioned above.<br />
<br />
Just a point in the right direction would make my day <img src="http://www.side-labs.org/forums/images/smilies/icon_e_smile.gif" alt=":)" title="Smile" /><br />
<br />
Thanks!<br />
/Erik]]></description>
		</item>
			<item>
			<dc:creator>billerby</dc:creator>
			<pubDate>Fri, 12 Mar 2010 22:56:34 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1138#p1138</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1138#p1138</link>
			<title>Re: source code to jsf components</title>
			<description><![CDATA[Thanks,<br />
<br />
This is great. I'm stuck with the Alfresco Explorer in my current development project, and we have a lot of metadata to edit and a lot of associations. I have already made use of the PropertySheet-component from the forge-project where it was originally posted. I however noticed that the component breaks the client side validation. This is because of how the parent property sheet component was written and I have submitted a contribution patch to Alfresco (<!-- m --><a class="postlink" href="https://issues.alfresco.com/jira/browse/ALF-1947">https://issues.alfresco.com/jira/browse/ALF-1947</a><!-- m -->) that in conjunction with a small fix in the tabbed property sheet component fixes that. I dont know if you guys ever made the client side validation work in your adaptation? Otherwise I can contribute that code (It looks like Alfresco will commit my patch in 3.3 - that is what I hope anyway). <br />
<br />
Next week I will try to use your AssociationEditor with 3.2, and if something breaks I promise to contribute the changes needed to get it fixed (that is if I succeed <img src="http://www.side-labs.org/forums/images/smilies/icon_e_smile.gif" alt=":)" title="Smile" /><br />
<br />
Have a nice weekend.<br />
<br />
/Erik]]></description>
		</item>
			<item>
			<dc:creator>jckermagoret</dc:creator>
			<pubDate>Fri, 12 Mar 2010 16:32:17 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1137#p1137</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1137#p1137</link>
			<title>Re: source code to jsf components</title>
			<description><![CDATA[Hi,<br />
you will find at the following url the code corresponding to these modules:<br />
* <!-- m --><a class="postlink" href="http://www.side-labs.org/svn/SIDE-Labs/trunk/1.0/">http://www.side-labs.org/svn/SIDE-Labs/trunk/1.0/</a><!-- m --><br />
<br />
Please feel free to change it and to contribute. It would be a great thing for your karma <img src="http://www.side-labs.org/forums/images/smilies/icon_e_smile.gif" alt=":-)" title="Smile" /><br />
<br />
What do you want to do exactly? We didn't port it on Alfresco 3.2 because we don't use Alfresco web client anymore, we only use Alfresco share now. What are your requirements?<br />
<br />
JC]]></description>
		</item>
			<item>
			<dc:creator>billerby</dc:creator>
			<pubDate>Fri, 12 Mar 2010 11:53:05 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1135#p1135</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=1135#p1135</link>
			<title>source code to jsf components</title>
			<description><![CDATA[Hi,<br />
<br />
In this webpage <!-- m --><a class="postlink" href="http://www.side-labs.org/wiki/index.php/Features:Alfresco:Components#BlueXML_Association_Editor_Component">http://www.side-labs.org/wiki/index.php ... _Component</a><!-- m --><br />
<br />
it says &quot;This components make available to all and are free.&quot;<br />
<br />
Where can I find those components? I'm really interested in the source code of your Association Editor and if there are compatibility issues with version 3.2 of Alfresco I'm willing to adapt them to make them work. <br />
<br />
Thanks<br />
/Erik]]></description>
		</item>
			<item>
			<dc:creator>pcb</dc:creator>
			<pubDate>Thu, 19 Mar 2009 17:24:20 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=788#p788</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=788#p788</link>
			<title>Re: Problem with quick start tutorial</title>
			<description><![CDATA[When updating BlueXML plugins, uncheck the option &quot;Show the latest version of a feature only&quot;. Then you can choose ONLY 1.2.60 for Alfresco generator...]]></description>
		</item>
			<item>
			<dc:creator>pcb</dc:creator>
			<pubDate>Thu, 19 Mar 2009 17:01:41 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=787#p787</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=787#p787</link>
			<title>Re: Problem with quick start tutorial</title>
			<description><![CDATA[New SLAM available at <!-- m --><a class="postlink" href="http://downloads.sourceforge.net/kerblue/SLAM-2.0.2-IzPack-installer.jar?use_mirror=">http://downloads.sourceforge.net/kerblu ... se_mirror=</a><!-- m --><br />
<br />
Regards,]]></description>
		</item>
			<item>
			<dc:creator>FranckTlse</dc:creator>
			<pubDate>Thu, 19 Mar 2009 16:48:05 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=786#p786</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=786#p786</link>
			<title>Re: Problem with quick start tutorial</title>
			<description><![CDATA[I'll wait for the new SLAM version to be available, thank you for the quick and precise answer.]]></description>
		</item>
			<item>
			<dc:creator>pcb</dc:creator>
			<pubDate>Thu, 19 Mar 2009 16:06:13 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=785#p785</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=785#p785</link>
			<title>Re: Problem with quick start tutorial</title>
			<description><![CDATA[Well...<br />
<br />
I see two problems :<br />
<br />
- Firstly, we're releasing a new version of SLAM that you'll have to download and use. This one is compatible with latest generator version.<br />
<br />
- We made a mistake by publishing 1.2.61 generator version on the update site. You must downgrade it and use 1.2.60.<br />
<br />
How ?<br />
<br />
On Eclipse (BlueXML Developer Studio), Help menu - Software updates - Manage configuration<br />
Browse to BlueXML Alfresco Generation and click on &quot;Replace with another version&quot;. Then choose an anterior one, ideally 1.2.60.<br />
But it's not enough into access and detect last version by update function. In your file browser, go to Eclipse directory. In &quot;features&quot;, delete &quot;org.bluexml.generator.alfresco_1.2.60&quot; directory, AND in &quot;plugins&quot;, delete &quot;org.bluexml.alfresco.generator_1.2.60.jar&quot;.<br />
<br />
Then update the bluexml plugins and find 1.2.60 version... With new SLAM (available in a few hours on our sourceforge space), it normally works well !<br />
<br />
We're trying to set a release process linking SLAM with our generators into avoid these mistakes...]]></description>
		</item>
			<item>
			<dc:creator>FranckTlse</dc:creator>
			<pubDate>Thu, 19 Mar 2009 15:34:08 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=784#p784</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=784#p784</link>
			<title>Re: Problem with quick start tutorial</title>
			<description><![CDATA[Cleaning temp and work do remove the error messages, Thanks for the fast answer.<br />
<br />
Yet, it does not work and I am not able to associate contents to the new data types defined in Blue XML studio. <img src="http://www.side-labs.org/forums/images/smilies/icon_e_sad.gif" alt=":(" title="Sad" /> Not sure how to troobleshoot that.<br />
<br />
I downloaded the latest version of SLAM available.<br />
<br />
Blue XML Alfresco Generator is version 1.2.61<br />
<br />
Are these versions incompatible ? I didn't know I was not supposed to update <img src="http://www.side-labs.org/forums/images/smilies/icon_e_sad.gif" alt=":(" title="Sad" /><br />
<br />
What version of alfreso generator should I use with SLAM ? Or is it better not to be using SLAM for now, and use the latest version of alfresco generator ?]]></description>
		</item>
			<item>
			<dc:creator>pcb</dc:creator>
			<pubDate>Thu, 19 Mar 2009 15:16:22 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=783#p783</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=783#p783</link>
			<title>Re: Problem with quick start tutorial</title>
			<description><![CDATA[Hi,<br />
<br />
This may come from several points :<br />
<br />
- Firstly, shutdown SLAM and delete &quot;temp&quot; and &quot;work&quot; directories. Start SLAM and see... IO errors often come from the shutdown failure of Tomcat (Tomcat 5.5 is unstable for shuting down).<br />
<br />
If it still not working, i need more informations :<br />
<br />
- Which SLAM version do you use (2.0.1 is the last available one).<br />
<br />
- In BlueXML Developer Studio, what the Alfresco Generator version ?<br />
<br />
<br />
Anyway, SLAM users must NOT update Alfresco generator (in BlueXML Developer Studio) with Update Site. SLAM is available for a range of generator versions, so we'll inform about that with next SLAM version.<br />
<br />
Thanks for using BxDS]]></description>
		</item>
			<item>
			<dc:creator>FranckTlse</dc:creator>
			<pubDate>Thu, 19 Mar 2009 14:54:29 +0100</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=782#p782</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=782#p782</link>
			<title>[solved] Problem with quick start tutorial</title>
			<description><![CDATA[I encountered a problem running the Quick Start tutorial from the wiki (<!-- m --><a class="postlink" href="http://wiki.bluexml.com/index.php/Quick_Start">http://wiki.bluexml.com/index.php/Quick_Start</a><!-- m -->)<br />
<br />
I managed to generate the project and deploy it to Alfresco, but when restarting Alfresco I get some error messages :<br />
<div class="codewrapper"><div class="codetitle"><b>Code:</b></div><div class="codecontent">13:01:35,668&nbsp; ERROR &#91;catalina.session.ManagerBase&#93; &quot;IOException&quot; lors du chargement des sessions persistantes: java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: org.alfresco.web.ui.common.component.UIListItem<br />
<br />
java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException<br />
: org.alfresco.web.ui.common.component.UIListItem<br />
&nbsp; &nbsp; &nbsp; &nbsp; at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1333)</div></div><br />
<br />
<br />
Has anyone else run into such problems ? For information I'm using the SLAM bundle with Alfreso+Liferay.]]></description>
		</item>
			<item>
			<dc:creator>bchevallereau</dc:creator>
			<pubDate>Wed, 28 May 2008 14:43:48 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=253#p253</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=253#p253</link>
			<title>[solved] Compatibility BlueXML library - Alfresco 3.0</title>
			<description><![CDATA[Hello,<br />
<br />
Our module is only available for the version Alfresco 2.9B. You can access to our code here :<br />
<!-- m --><a class="postlink" href="http://svn.bluexml.com/svn/bluexml/com/generator/alfresco/trunk/">http://svn.bluexml.com/svn/bluexml/com/ ... sco/trunk/</a><!-- m -->]]></description>
		</item>
			<item>
			<dc:creator>vengefullfoot</dc:creator>
			<pubDate>Wed, 28 May 2008 14:32:06 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=252#p252</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=252#p252</link>
			<title>[solved] Compatibility BlueXML library - Alfresco 3.0</title>
			<description><![CDATA[Hello,<br />
<br />
I'm working on the last nigthly builds of Alfresco (the future 3.0 version).<br />
There is a problem with BlueXMl libraries, which are calling org.alfresco.web.ui.common.Utils.getFileTypeImage instead of org.alfresco.repo.web.scripts.FileTypeImageUtils.getFileTypeImage ...<br />
<br />
Are you working on a branch of blueXML for ALfresco 3.0 ? If not is it possible to acces your source repository to make a patched version ?]]></description>
		</item>
			<item>
			<dc:creator>jckermagoret</dc:creator>
			<pubDate>Mon, 26 May 2008 16:04:20 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=251#p251</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=251#p251</link>
			<title>Re: Cannot seem to get quickstart tutorial running</title>
			<description><![CDATA[Hi,<br />
* Select your obl file, do a right-click and choose &quot;Deploy Alfresco Configuration&quot;;<br />
* Select  &quot;Copy to Alfresco Installation Foolder&quot; and, normally, everything is directly copied to Alfresco;<br />
* Restart Alfresco and everything should be fine<br />
<br />
When in Deploy Alfresco Configuration dialog window, you will see your Alfresco Configuration in Eclipse. If paths are wrong, go to Windows/Preference/BlueXML and adapt it to suit your needs.<br />
<br />
JC]]></description>
		</item>
			<item>
			<dc:creator>bchevallereau</dc:creator>
			<pubDate>Mon, 26 May 2008 14:55:54 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=250#p250</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=250#p250</link>
			<title>Re: Cannot seem to get quickstart tutorial running</title>
			<description><![CDATA[Hi,<br />
<br />
When you click on the obl file to deploy, in the new dialog, you can choose options like &quot;Copy&quot; or &quot;Delete&quot;. If you unselect &quot;Copy&quot; and &quot;Delete&quot;, you have a new folder in &quot;Alfresco Configuration&quot; containing all generated files (and next moved on your alfresco installation).<br />
<br />
The destination folder is the tomcat folder, so by default :<br />
<ul><li>For Windows : c:\alfresco\tomcat</li><li>For Linux/Mac : /opt/alfresco/tomcat</li></ul>]]></description>
		</item>
			<item>
			<dc:creator>Asterion</dc:creator>
			<pubDate>Mon, 26 May 2008 14:46:58 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=249#p249</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=249#p249</link>
			<title>Re: Cannot seem to get quickstart tutorial running</title>
			<description><![CDATA[I think the problem I am actually having (in my head) is exactly what files to copy where.  The problem is always post deployment so I assume I am either copying the wrong files or copying to the wrong place.  <br />
<br />
Is there a list of exactly which files to copy to exactly which locations?  I know it is inferred in the tutorial but the problem is making me feel like a newbee <img src="http://www.side-labs.org/forums/images/smilies/icon_redface.gif" alt=":oops:" title="Embarrassed" /> so feel free to treat me like one  <img src="http://www.side-labs.org/forums/images/smilies/icon_lol.gif" alt=":lol:" title="Laughing" />]]></description>
		</item>
			<item>
			<dc:creator>pcb</dc:creator>
			<pubDate>Thu, 15 May 2008 14:56:27 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=226#p226</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=226#p226</link>
			<title>Re: HTML Doc generation</title>
			<description><![CDATA[Ok thanks !]]></description>
		</item>
			<item>
			<dc:creator>bchevallereau</dc:creator>
			<pubDate>Thu, 15 May 2008 14:47:59 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=225#p225</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=225#p225</link>
			<title>Re: HTML Doc generation</title>
			<description><![CDATA[Hi,<br />
<br />
You are right, it's a bug  <img src="http://www.side-labs.org/forums/images/smilies/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" /> . It is added to Bugzilla (<!-- m --><a class="postlink" href="http://www.bluexml.net/bugs/show_bug.cgi?id=104">http://www.bluexml.net/bugs/show_bug.cgi?id=104</a><!-- m -->) and it is fixed.<br />
<br />
If you can't wait the next version, you can add the last link in the page <span style="font-weight: bold">overview-frame.html</span>. You must add at the end of the file :<br />
<div class="codewrapper"><div class="codetitle"><b>Code:</b></div><div class="codecontent">&lt;/BR&gt;&lt;A HREF=&quot;&#91;PACKAGE'S QUALIFIED NAME&#93;.html&quot; TARGET=&quot;packageFrame&quot;&gt;&#91;PACKAGE'S QUALIFIED NAME&#93;&lt;/A&gt;</div></div>]]></description>
		</item>
			<item>
			<dc:creator>pcb</dc:creator>
			<pubDate>Thu, 15 May 2008 14:21:11 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=224#p224</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=224#p224</link>
			<title>Re: HTML Doc generation</title>
			<description><![CDATA[The first problem is OK : it's just the focus...<br />
<br />
I tried your test suggestion and it's accurately matching the bug : I renamed 'Thesaurus' to 'AThesaurus' and i see it as a package link in the package frame. And my &quot;new last alphabetical&quot; item 'Tarif' doesn't appear in the package frame.. It may be a problem with a ending condition.<br />
<br />
Thanks<br />
<br />
PS: The problem is only the missed link in the package frame. The targeted page exists..]]></description>
		</item>
			<item>
			<dc:creator>bchevallereau</dc:creator>
			<pubDate>Thu, 15 May 2008 11:21:03 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=223#p223</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=223#p223</link>
			<title>Re: HTML Doc generation</title>
			<description><![CDATA[<div class="quotewrapper"><div class="quotetitle">pcb wrote:</div><div class="quotecontent">- I get the end dialog only when I click somewhere else (if I don't, I wait and nothing happens).</div></div><br />
<br />
If the generation is performed, it's maybe a problem of focus.<br />
<br />
<div class="quotewrapper"><div class="quotetitle">pcb wrote:</div><div class="quotecontent">- In the HTML package frame, one of my package is missing... (fyi it's the last alphabetical sorted package).</div></div><br />
<br />
It's curious. Can you chane the name of this package to see if it is generated ?]]></description>
		</item>
			<item>
			<dc:creator>pcb</dc:creator>
			<pubDate>Thu, 15 May 2008 10:09:01 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=222#p222</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=222#p222</link>
			<title>[solved] HTML Doc generation</title>
			<description><![CDATA[I have designed a model with many packages in it. All diagrams are contained in the same obldi files but in the matching &quot;sub-package&quot;. I'd like to generate an HTML doc, so I first create an &quot;allFiles.ref&quot; REF file and then I right-click and launch the doc generation.<br />
<br />
- I get the end dialog only when I click somewhere else (if I don't, I wait and nothing happens).<br />
- In the HTML package frame, one of my package is missing... (fyi it's the last alphabetical sorted package).]]></description>
		</item>
			<item>
			<dc:creator>voorhees</dc:creator>
			<pubDate>Wed, 14 May 2008 11:27:34 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=221#p221</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=221#p221</link>
			<title>Re: Operation in Class Diagram</title>
			<description><![CDATA[Hi,<br />
<br />
Thanks for your quick answer.  Perfect  <img src="http://www.side-labs.org/forums/images/smilies/icon_e_wink.gif" alt=";-)" title="Wink" />]]></description>
		</item>
			<item>
			<dc:creator>bchevallereau</dc:creator>
			<pubDate>Wed, 14 May 2008 09:18:24 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=220#p220</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=220#p220</link>
			<title>Re: Operation in Class Diagram</title>
			<description><![CDATA[Hi,<br />
<br />
A tab panel, called <span style="font-style: italic">Options</span>, is available in each dialog. This panel contains all meta-informations (extra informations) that can be added on the model. A meta-information called <span style="font-style: italic">type</span> is available on the concept of operation.<br />
<br />
BlueXML Developer Studio is not a modeler for Alfresco. BlueXML Developer Studio is a modeler with an Alfresco generator. So all meta-informations are not used by the Alfresco generator. It's the case for this meta-information. We think to add profile on BlueXML Developer Studio to hide all un-used meta-informations for a target platform.<br />
<br />
Actually, operations are generated as webscripts. We working on actually how to generate it as Alfresco action.]]></description>
		</item>
			<item>
			<dc:creator>voorhees</dc:creator>
			<pubDate>Wed, 14 May 2008 09:04:40 +0200</pubDate>
			<guid>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=219#p219</guid>
			<link>http://www.side-labs.org/forums/viewtopic.php?f=6&amp;p=219#p219</link>
			<title>[solved] Operation in Class Diagram</title>
			<description><![CDATA[Hello,<br />
<br />
I'm trying a little bit to develop class diagrams with BlueXML Developer Studio for Alfresco...<br />
When I create an operation on a class and I click on options, I have the choice between two types which are button or<br />
action.  <br />
<br />
I didn't find any example on this kind of use and I would like to know what is really possible to create in Alfresco with this ?<br />
<br />
What I'm looking for is to define Alfresco actions through BlueXML Developer Studio... <br />
<br />
Thanks for your answers.]]></description>
		</item>
	</channel>
</rss>