Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2391 - in development/laboratory/ide/eclipse: magic plugins plugins/features plugins/plugin plugins/plugin/src/net/dpml/ide/eclipse/plugins/magic plugins/update

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: peter AT neubauer.se
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r2391 - in development/laboratory/ide/eclipse: magic plugins plugins/features plugins/plugin plugins/plugin/src/net/dpml/ide/eclipse/plugins/magic plugins/update
  • Date: Sat, 23 Apr 2005 18:33:15 -0400

Author: peter AT neubauer.se
Date: Sat Apr 23 18:33:10 2005
New Revision: 2391

Added:
development/laboratory/ide/eclipse/plugins/
- copied from r2390, development/laboratory/ide/eclipse/magic/
Removed:
development/laboratory/ide/eclipse/magic/
Modified:
development/laboratory/ide/eclipse/plugins/features/build.properties
development/laboratory/ide/eclipse/plugins/features/feature.xml
development/laboratory/ide/eclipse/plugins/plugin/plugin.xml

development/laboratory/ide/eclipse/plugins/plugin/src/net/dpml/ide/eclipse/plugins/magic/MagicContainer.java
development/laboratory/ide/eclipse/plugins/update/site.xml
Log:
reshuffle twoards DPML Studio layout


Modified: development/laboratory/ide/eclipse/plugins/features/build.properties
==============================================================================
Binary files
development/laboratory/ide/eclipse/magic/features/build.properties (original)
and development/laboratory/ide/eclipse/plugins/features/build.properties
Sat Apr 23 18:33:10 2005 differ

Modified: development/laboratory/ide/eclipse/plugins/features/feature.xml
==============================================================================
--- development/laboratory/ide/eclipse/magic/features/feature.xml
(original)
+++ development/laboratory/ide/eclipse/plugins/features/feature.xml Sat
Apr 23 18:33:10 2005
@@ -2,14 +2,14 @@
<feature
id="net.dpml.ide.eclipse.plugins.Magic"
label="Magic Eclipse"
- version="0.1.92">
+ version="0.1.93">

<description url="http://www.dpml.net/magic-eclpse-integration";>
This enables eclipse to bild a java project using Magic index file as
the source for the creation of source folders and the mounting of dependency
jars as dynamic classpath entries.
</description>

<copyright url="http://www.dpml.net";>
- /*
+ /*
* Copyright 2005 Peter Neubauer
*
* Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
@@ -59,8 +59,8 @@

<plugin
id="net.dpml.ide.eclipse.plugins.Magic"
- download-size="500Kb"
- install-size="500Kb"
- version="0.1.92"/>
+ download-size="1500"
+ install-size="1500"
+ version="0.1.93"/>

</feature>

Modified: development/laboratory/ide/eclipse/plugins/plugin/plugin.xml
==============================================================================
--- development/laboratory/ide/eclipse/magic/plugin/plugin.xml (original)
+++ development/laboratory/ide/eclipse/plugins/plugin/plugin.xml Sat
Apr 23 18:33:10 2005
@@ -3,7 +3,7 @@
<plugin
id="net.dpml.ide.eclipse.plugins.Magic"
name="Eclipse Magic Plug-in"
- version="0.1.92"
+ version="0.1.93"
provider-name="DPML"
class="net.dpml.ide.eclipse.plugins.magic.MagicPlugin">
<runtime>

Modified:
development/laboratory/ide/eclipse/plugins/plugin/src/net/dpml/ide/eclipse/plugins/magic/MagicContainer.java
==============================================================================
---
development/laboratory/ide/eclipse/magic/plugin/src/net/dpml/ide/eclipse/plugins/magic/MagicContainer.java
(original)
+++
development/laboratory/ide/eclipse/plugins/plugin/src/net/dpml/ide/eclipse/plugins/magic/MagicContainer.java
Sat Apr 23 18:33:10 2005
@@ -143,7 +143,7 @@
* the indx file could not be found (missing project prefs
for
* example)
*/
- private void getIndexFile() throws Exception
+ private void getIndexFile()
{
IScopeContext projectScope = new ProjectScope( m_reosurceProject );
IEclipsePreferences projectNode = projectScope
@@ -155,7 +155,9 @@
}
else
{
- throw new Exception( "could not find index file!" );
+ m_log.log( new Status( Status.ERROR, "net.dpml.MagicPlugin",
+ 0, "Could not initialize get Index file from prefs",
null) );
+
}
if ( indexPath != null )
{
@@ -170,6 +172,7 @@
*/
public IClasspathEntry[] getClasspathEntries()
{
+ getIndexFile();
if ( m_index == null )
{
return null;
@@ -242,6 +245,15 @@
*/
public String getDescription()
{
+ try
+ {
+ getIndexFile();
+ }
+ catch ( Exception e )
+ {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
return "[" + m_indexFile + "] Magic Dependencies";
}


Modified: development/laboratory/ide/eclipse/plugins/update/site.xml
==============================================================================
--- development/laboratory/ide/eclipse/magic/update/site.xml (original)
+++ development/laboratory/ide/eclipse/plugins/update/site.xml Sat Apr 23
18:33:10 2005
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
- <feature url="features/net.dpml.ide.eclipse.plugins.Magic_0.1.92.jar"
id="net.dpml.ide.eclipse.plugins.Magic" version="0.1.92">
+ <feature url="features/net.dpml.ide.eclipse.plugins.Magic_0.1.93.jar"
id="net.dpml.ide.eclipse.plugins.Magic" version="0.1.93">
<category name="DPML"/>
</feature>
<category-def name="DPML" label="DPML Eclipse Plugins"/>



  • svn commit: r2391 - in development/laboratory/ide/eclipse: magic plugins plugins/features plugins/plugin plugins/plugin/src/net/dpml/ide/eclipse/plugins/magic plugins/update, peter, 04/23/2005

Archive powered by MHonArc 2.6.24.

Top of Page