<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Activiti Modeler inside Eclipse in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/activiti-modeler-inside-eclipse/m-p/15696#M6910</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;During the Activiti Community Kick-Off in Stuttgart, we investigated the idea of running the Activiti Modeler inside Eclipse. Finally, I found the time to fix a user agent check, which prohibited opening the modeler with the internal browser of Eclipse. The fix is already committed in Subversion and will be included in the next Activiti release.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;On Windows the internal browser of Eclipse defaults to Internet Explorer, which lacks the SVG support required by the modeler. However,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Windows users can install "AJAX Tools Framework Mozilla IDE" from &lt;/SPAN&gt;&lt;A href="http://www.eclipse.org/atf/" rel="nofollow noopener noreferrer"&gt;http://www.eclipse.org/atf/&lt;/A&gt;&lt;SPAN&gt; to replace the it with the rendering engine of Mozilla Firefox.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Given this first success, I would now like to discuss further options for integration.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The next obvious step, is to import the file-system-based repository of the modeler residing in 'apps/activiti-model-repository' into an Eclipse project. That allows direct access to the BPMN 2.0 XML using the XML editor of Eclipse.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anybody know how to teach Eclipse that it should open a file with the extension '.oryx.xml' in a browser and append the absolute path of the file to the URL of the modeler like in the following example? &lt;/SPAN&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;A href="http://localhost:8080/activiti-modeler/p/editor?id=/home/falko/activiti-5.0.beta1/apps/activiti-model-repository/examples/VacationRequest/VacationRequest.oryx.xml" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/activiti-modeler/p/editor?id=/home/falko/activiti-5.0.beta1/apps/activiti-model-repository/examples/VacationRequest/VacationRequest.oryx.xml&lt;/A&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Sep 2010 20:05:20 GMT</pubDate>
    <dc:creator>falko_menge</dc:creator>
    <dc:date>2010-09-08T20:05:20Z</dc:date>
    <item>
      <title>Activiti Modeler inside Eclipse</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-modeler-inside-eclipse/m-p/15696#M6910</link>
      <description>During the Activiti Community Kick-Off in Stuttgart, we investigated the idea of running the Activiti Modeler inside Eclipse. Finally, I found the time to fix a user agent check, which prohibited opening the modeler with the internal browser of Eclipse. The fix is already committed in Subversion and</description>
      <pubDate>Wed, 08 Sep 2010 20:05:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-modeler-inside-eclipse/m-p/15696#M6910</guid>
      <dc:creator>falko_menge</dc:creator>
      <dc:date>2010-09-08T20:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Modeler inside Eclipse</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-modeler-inside-eclipse/m-p/15697#M6911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Wow, that's impressive stuff Falko !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Unfortunately I dont have any Eclipse knowledge, so I'm not a real big help here &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 07:51:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-modeler-inside-eclipse/m-p/15697#M6911</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2010-09-09T07:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Modeler inside Eclipse</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-modeler-inside-eclipse/m-p/15698#M6912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In an eclipse-plugin, you can create an Extention-point on org.eclipse.ui.editors which allows you to plugin internal and external editors (&lt;/SPAN&gt;&lt;A href="http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/extension-points/org_eclipse_core_runtime_contentTypes.html" rel="nofollow noopener noreferrer"&gt;http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/extension-points/org_eclipse_core_runtime_contentTypes.html&lt;/A&gt;&lt;SPAN&gt;). An external editor should be of type &lt;/SPAN&gt;&lt;A href="http://help.eclipse.org/galileo/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/api/org/eclipse/ui/IEditorLauncher.html" rel="nofollow noopener noreferrer"&gt;IEditorLauncher&lt;/A&gt;&lt;SPAN&gt;, which has just one method: open(IPath file).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just a thought, but I'm quite shure eclipse exposes methods/classes that allow you to launch an URL in the system browser, without you having to worry about platform an stuf. If this is available, the only thing you have to do is create a url (&lt;/SPAN&gt;&lt;A href="http://localhost:8080/activiti-modeler/p/editor?id=" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/activiti-modeler/p/editor?id=&lt;/A&gt;&lt;SPAN&gt;…) based on the .oryx.xml file in your custom IEditorLauncher.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 08:16:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-modeler-inside-eclipse/m-p/15698#M6912</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2010-09-09T08:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti Modeler inside Eclipse</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-modeler-inside-eclipse/m-p/15699#M6913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've been using Eclipse Galileo in a Windows XP VM.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 14:46:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-modeler-inside-eclipse/m-p/15699#M6913</guid>
      <dc:creator>falko_menge</dc:creator>
      <dc:date>2010-10-14T14:46:32Z</dc:date>
    </item>
  </channel>
</rss>

