You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2006/12/28 21:01:32 UTC

svn commit: r490780 - in /directory/trunks/ldapstudio: ./ ldapstudio-browser-core/ ldapstudio-browser-core/META-INF/ ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/ ldapstudio-browser-core/src/main/java/org/apache/di...

Author: seelmann
Date: Thu Dec 28 12:01:30 2006
New Revision: 490780

URL: http://svn.apache.org/viewvc?view=rev&rev=490780
Log:
Resolved antlr classloader problem: introduced ldapstudio-jars plugin and removed antlr.jar from plugins. Integrated browser-core and browser-ui into LS build.

Added:
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/default_schema.ldif
      - copied, changed from r490692, directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/model/schema/default_schema.ldif
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/apache/
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/apache/directory/
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/apache/directory/ldapstudio/
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/apache/directory/ldapstudio/browser/
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/apache/directory/ldapstudio/browser/core/
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/apache/directory/ldapstudio/browser/core/browsercoremessages.properties
    directory/trunks/ldapstudio/ldapstudio-browser-ui/ivy.xml
    directory/trunks/ldapstudio/ldapstudio-jars/
    directory/trunks/ldapstudio/ldapstudio-jars/.classpath
    directory/trunks/ldapstudio/ldapstudio-jars/.project
    directory/trunks/ldapstudio/ldapstudio-jars/META-INF/
    directory/trunks/ldapstudio/ldapstudio-jars/META-INF/MANIFEST.MF
    directory/trunks/ldapstudio/ldapstudio-jars/build.properties
    directory/trunks/ldapstudio/ldapstudio-jars/build.xml
    directory/trunks/ldapstudio/ldapstudio-jars/ivy.xml
    directory/trunks/ldapstudio/ldapstudio-jars/plugin.properties
Removed:
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/browsercoremessages.properties
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/model/schema/default_schema.ldif
Modified:
    directory/trunks/ldapstudio/build.xml
    directory/trunks/ldapstudio/ldapstudio-browser-core/.classpath
    directory/trunks/ldapstudio/ldapstudio-browser-core/META-INF/MANIFEST.MF
    directory/trunks/ldapstudio/ldapstudio-browser-core/build.properties
    directory/trunks/ldapstudio/ldapstudio-browser-core/build.xml
    directory/trunks/ldapstudio/ldapstudio-browser-core/ivy.xml
    directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/model/schema/Schema.java
    directory/trunks/ldapstudio/ldapstudio-browser-ui/META-INF/MANIFEST.MF
    directory/trunks/ldapstudio/ldapstudio-browser-ui/build.properties
    directory/trunks/ldapstudio/ldapstudio-browser-ui/build.xml
    directory/trunks/ldapstudio/ldapstudio-ldapbrowser/.classpath
    directory/trunks/ldapstudio/ldapstudio-ldapbrowser/META-INF/MANIFEST.MF
    directory/trunks/ldapstudio/ldapstudio-ldapbrowser/build.properties
    directory/trunks/ldapstudio/ldapstudio-schemas-plugin/.classpath
    directory/trunks/ldapstudio/ldapstudio-schemas-plugin/META-INF/MANIFEST.MF
    directory/trunks/ldapstudio/ldapstudio-schemas-plugin/build.properties
    directory/trunks/ldapstudio/ldapstudio-schemas-plugin/ivy.xml

Modified: directory/trunks/ldapstudio/build.xml
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/build.xml?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/build.xml (original)
+++ directory/trunks/ldapstudio/build.xml Thu Dec 28 12:01:30 2006
@@ -114,6 +114,33 @@
             </fileset>
         </copy>
 
+	<!-- Creation of the Browser Core Plugin -->
+        <ant dir="ldapstudio-browser-core" inheritAll="no" />
+        <!-- Copy of the Browser Core Plugin in the "plugins" folder of the RCP app -->
+        <copy todir="${ldapstudio-complete.build}/plugins">
+            <fileset dir="${basedir}/ldapstudio-browser-core/target">
+                <include name="*.jar" />
+            </fileset>
+        </copy>
+
+	<!-- Creation of the Browser UI Plugin -->
+        <ant dir="ldapstudio-browser-ui" inheritAll="no" />
+        <!-- Copy of the Browser UI Plugin in the "plugins" folder of the RCP app -->
+        <copy todir="${ldapstudio-complete.build}/plugins">
+            <fileset dir="${basedir}/ldapstudio-browser-ui/target">
+                <include name="*.jar" />
+            </fileset>
+        </copy>
+
+	<!-- Creation of the Jars Plugin -->
+        <ant dir="ldapstudio-jars" inheritAll="no" />
+        <!-- Copy of the Jars Plugin in the "plugins" folder of the RCP app -->
+        <copy todir="${ldapstudio-complete.build}/plugins">
+            <fileset dir="${basedir}/ldapstudio-jars/target">
+                <include name="*.jar" />
+            </fileset>
+        </copy>
+
         <!-- Setting Permissions -->
         <antcall target="setPermission_${ldapstudio-rcp.os.name}" />
     </target>
@@ -146,6 +173,7 @@
         <ant dir="ldapstudio-ldapbrowser" inheritAll="no" target="javadoc" />
         <ant dir="ldapstudio-browser-core" inheritAll="no" target="javadoc" />
         <ant dir="ldapstudio-browser-ui" inheritAll="no" target="javadoc" />
+        <ant dir="ldapstudio-jars" inheritAll="no" target="javadoc" />
     </target>
 
     <!-- ================================== -->
@@ -160,6 +188,7 @@
         <ant dir="ldapstudio-dsml-command" inheritAll="no" target="resolve" />
         <ant dir="ldapstudio-ldapbrowser" inheritAll="no" target="resolve" />
         <ant dir="ldapstudio-browser-core" inheritAll="no" target="resolve" />
+        <ant dir="ldapstudio-jars" inheritAll="no" target="resolve" />
     </target>
 
     <!-- ================================== -->
@@ -175,6 +204,7 @@
         <ant dir="ldapstudio-ldapbrowser" inheritAll="no" target="clean" />
         <ant dir="ldapstudio-browser-core" inheritAll="no" target="clean" />
         <ant dir="ldapstudio-browser-ui" inheritAll="no" target="clean" />
+        <ant dir="ldapstudio-jars" inheritAll="no" target="clean" />
         <delete dir="${ldapstudio-complete.output}" />
     </target>
 </project>

Modified: directory/trunks/ldapstudio/ldapstudio-browser-core/.classpath
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-core/.classpath?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-core/.classpath (original)
+++ directory/trunks/ldapstudio/ldapstudio-browser-core/.classpath Thu Dec 28 12:01:30 2006
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
 	<classpathentry kind="src" path="src/main/java"/>
+	<classpathentry kind="src" path="src/main/resources"/>
 	<classpathentry kind="lib" path="lib/commons-codec-1.3.jar"/>
 	<classpathentry kind="lib" path="lib/poi-2.5.1-final-20040804.jar"/>
-	<classpathentry kind="lib" path="lib/antlr-2.7.6.jar"/>
 	<classpathentry kind="lib" path="lib/commons-collections-3.1.jar"/>
 	<classpathentry kind="lib" path="lib/dom4j-1.6.1.jar"/>
 	<classpathentry kind="lib" path="lib/ldapstudio-dsml-parser-0.1.jar"/>

Modified: directory/trunks/ldapstudio/ldapstudio-browser-core/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-core/META-INF/MANIFEST.MF?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-core/META-INF/MANIFEST.MF (original)
+++ directory/trunks/ldapstudio/ldapstudio-browser-core/META-INF/MANIFEST.MF Thu Dec 28 12:01:30 2006
@@ -7,8 +7,9 @@
 Bundle-Vendor: %providerName
 Bundle-Localization: plugin
 Require-Bundle: org.eclipse.core.runtime,
- org.eclipse.search
-Eclipse-AutoStart: true
+ org.eclipse.search,
+ org.apache.directory.ldapstudio.jars
+Eclipse-LazyStart: true
 Export-Package: org.apache.directory.ldapstudio.browser.core,
  org.apache.directory.ldapstudio.browser.core.events,
  org.apache.directory.ldapstudio.browser.core.internal.model,
@@ -25,10 +26,9 @@
  org.apache.directory.ldapstudio.browser.core.model.schema.parser,
  org.apache.directory.ldapstudio.browser.core.propertypageproviders,
  org.apache.directory.ldapstudio.browser.core.utils
-Bundle-ClassPath: browser-core.jar,
+Bundle-ClassPath: .,
  lib/commons-codec-1.3.jar,
  lib/poi-2.5.1-final-20040804.jar,
- lib/antlr-2.7.6.jar,
  lib/commons-collections-3.1.jar,
  lib/dom4j-1.6.1.jar,
  lib/ldapstudio-dsml-parser-0.1.jar,

Modified: directory/trunks/ldapstudio/ldapstudio-browser-core/build.properties
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-core/build.properties?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-core/build.properties (original)
+++ directory/trunks/ldapstudio/ldapstudio-browser-core/build.properties Thu Dec 28 12:01:30 2006
@@ -1,11 +1,12 @@
-bin.includes = META-INF/,\
+source.. = src/main/java/
+output.. = bin/
+bin.includes = .,\
+               META-INF/,\
                plugin.xml,\
                lib/,\
-               browser-core.jar,\
                plugin.properties,\
                about.html,\
                about_files/,\
-               lib/antlr-2.7.6.jar,\
                lib/commons-collections-3.1.jar,\
                lib/dom4j-1.6.1.jar,\
                lib/ldapstudio-dsml-parser-0.1.jar,\
@@ -13,18 +14,4 @@
                lib/shared-asn1-0.9.6-SNAPSHOT.jar,\
                lib/shared-ldap-0.9.6-SNAPSHOT.jar,\
                lib/xpp3-1.1.3_8.jar
-jars.compile.order = browser-core.jar
-src.includes = src/main/java/,\
-               plugin.xml,\
-               plugin.properties,\
-               lib/,\
-               build.properties,\
-               META-INF/,\
-               .settings/,\
-               .project,\
-               .classpath,\
-               antlr.xml,\
-               about.html,\
-               about_files/,
-source.browser-core.jar = src/main/java
-output.browser-core.jar = bin/
+jars.compile.order = 

Modified: directory/trunks/ldapstudio/ldapstudio-browser-core/build.xml
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-core/build.xml?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-core/build.xml (original)
+++ directory/trunks/ldapstudio/ldapstudio-browser-core/build.xml Thu Dec 28 12:01:30 2006
@@ -58,6 +58,8 @@
 		<copy todir="${project.build}">
 			<fileset dir="${basedir}">
 				<include name="plugin.xml" />
+				<include name="plugin.properties" />
+				<include name="about.html" />
 			</fileset>
 		</copy>
 		<mkdir dir="${project.build}/${lib.dir}" />
@@ -72,6 +74,18 @@
 				<include name="**" />
 			</fileset>
 		</copy>
+		<mkdir dir="${project.build}/about_files" />
+		<copy todir="${project.build}/about_files">
+			<fileset dir="${basedir}/about_files">
+				<include name="**" />
+			</fileset>
+		</copy>
+		<mkdir dir="${project.build}/ressources" />
+		<copy todir="${project.build}">
+			<fileset dir="${basedir}/src/main/resources">
+				<include name="**" />
+			</fileset>
+		</copy>		
 		<javac
 			source="1.5"
 			debug="yes"

Modified: directory/trunks/ldapstudio/ldapstudio-browser-core/ivy.xml
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-core/ivy.xml?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-core/ivy.xml (original)
+++ directory/trunks/ldapstudio/ldapstudio-browser-core/ivy.xml Thu Dec 28 12:01:30 2006
@@ -19,7 +19,6 @@
 <ivy-module version="1.0">
 	<info organisation="org.apache.directory.ldapstudio" module="ldapstudio-browser-core"/>
 	<dependencies>
-		<dependency org="antlr" name="antlr" rev="2.7.5"/>
 		<dependency org="commons-codec" name="commons-codec" rev="1.3"/>
 		<dependency org="org.apache.poi" name="poi" rev="2.5.1-final-20040804"/>
     	<dependency org="org.apache.directory.ldapstudio" name="ldapstudio-dsml-parser" rev="0.1"/>

Modified: directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/model/schema/Schema.java
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/model/schema/Schema.java?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/model/schema/Schema.java (original)
+++ directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/model/schema/Schema.java Thu Dec 28 12:01:30 2006
@@ -72,7 +72,7 @@
         try
         {
             URL url = Schema.class.getClassLoader().getResource(
-                "org/apache/directory/ldapstudio/browser/core/model/schema/default_schema.ldif" );
+                "default_schema.ldif" );
             InputStream is = url.openStream();
             Reader reader = new InputStreamReader( is );
 

Copied: directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/default_schema.ldif (from r490692, directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/model/schema/default_schema.ldif)
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/default_schema.ldif?view=diff&rev=490780&p1=directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/java/org/apache/directory/ldapstudio/browser/core/model/schema/default_schema.ldif&r1=490692&p2=directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/default_schema.ldif&r2=490780
==============================================================================
    (empty)

Added: directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/apache/directory/ldapstudio/browser/core/browsercoremessages.properties
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/apache/directory/ldapstudio/browser/core/browsercoremessages.properties?view=auto&rev=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/apache/directory/ldapstudio/browser/core/browsercoremessages.properties (added)
+++ directory/trunks/ldapstudio/ldapstudio-browser-core/src/main/resources/org/apache/directory/ldapstudio/browser/core/browsercoremessages.properties Thu Dec 28 12:01:30 2006
@@ -0,0 +1,218 @@
+
+copy_n_of_s=Copy {0}of {1}
+
+event__added_att_to_dn=Added {0} to {1}
+event__deleted_att_from_dn=Deleted {0} from {1}
+event__dn_attributes_initialized={0}: attributes initialized
+event__dn_children_initialized={0}: children initialized
+event__empty_value_added_to_att_at_dn=Empty value added to {0} at {1}
+event__empty_value_deleted_from_att_at_dn=Empty value deleted from {0} at {1}
+event__added_dn=Added {0}
+event__deleted_dn=Deleted {0}
+event__moved_oldrdn_from_oldparent_to_newparent=Moved {0} from {1} to {2}
+event__renamed_olddn_to_newdn=Renamed {0} to {1}
+event__added_val_to_att_at_dn=Added {0} to {1} at {2}
+event__deleted_val_from_att_at_dn=Deleted {0} from {1} at {2}
+event__replaced_oldval_by_newval_at_att_at_dn=Replaced {0} by {1} at {2} at {3}
+event__renamed_oldval_by_newval_at_dn=Renamed {0} by {1} at {2}
+
+
+model__empty_connection=Empty Connection is not allowed\!
+model__empty_string_value=<EMPTY STRING VALUE>
+model__empty_binary_value=<EMPTY BINARY VALUE>
+model__empty_entry=Empty Entry is not allowed\!
+model__empty_attribute=Empty Attribute is not allowed\!
+model__empty_value=Empty Value is not allowed\!
+model__empty_url=Empty URL is not allowed\!
+model__empty_dn=Empty DN is not allowed\!
+model__empty_rdn=Empty RDN is not allowed\!
+model__url_no_dn=No DN
+model__empty_password=Empty password is not allowed\!
+model__loading_schema=Loading Schema...
+model__invalid_record=Record is invalid
+model__invalid_rdn=Invalid RDN
+model__invalid_protocol=Invalid protocol
+model__invalid_url=Invalid URL
+model__loading_rootdse=Loading Root DSE...
+model__setting_base_dn=Setting Base DN...
+model__no_such_entry=Entry doesn't exist or wasn't returned from server
+model__binding=Binding...
+model__connecting=Connecting...
+
+model_filter_missing_closing_parenthesis=Missing closing parenthesis ')'
+model_filter_missing_filter_expression=Missing filter expression
+model__attributes_entry_is_not_myself=Attribute's entry isn't myself
+model__values_attribute_is_not_myself=Value's attribute isn't myself
+
+model__no_connection_provider=No connection provider set.
+model__no_connection=No Connection
+model__no_auth_handler=No authentification handler
+model__no_credentials=No credentials
+model__no_referral_handler=No referral handler
+model__no_referral_connection=No referral connection
+model__unknown_host=Unknow Host: 
+model__url_no_host=No host
+model__url_no_port=No port
+model__url_no_scope=No scope
+model__url_no_filter=No filter
+model__error_loading_rootdse=Error occurred while loading root DSE
+model__error_setting_base_dn=Can't set Base DN entry
+model__error_setting_metadata=Can't set Metadata entries
+model__no_schema_information=No schema information returned by server, using default schema.
+model__missing_schema_location=Missing schema location in RootDSE, using default schema.
+model__error_loading_schema=Error occurred while loading schema, using default schema
+model__attribute_does_not_exist=Attribute doesn't exist\!
+model__attribute_already_exists=Attribute already exists\!
+model__error_logging_modification=Error while logging modification
+
+model__move_between_different_connections_not_supported=Move between different connections not supported\!
+model__copied_n_entries=Copied {0} entries
+model__deleted_n_entries=Deleted {0} entries
+model__retrieved_n_entries=Fetched {0} entries
+model__retrieved_1_entry=Fetched 1 entry
+
+
+ldif__imported_n_entries_m_errors=Imported {0} entries, {1} errors
+ldif__n_errors_see_logfile={0} errors occurred, see logfile for details
+ldif__imported_into_host_port_on_date=# Imported into ldap://{0}:{1} on {2}
+ldif__import_into_host_port_failed_on_date=# Import into ldap://{0}:{1} failed on {2}
+ldif__error_msg=# ERROR: {0}
+
+dsml__n_errors_see_responsefile={0} errors occurred, see response file for details
+
+model__unsupported_hash=Unsupported hash method
+model__url_no_protocol=No protocol
+model__url_no_attributes=No attributes
+model__url_no_extensions=No extensions
+model__no_hash=Plaintext
+
+jobs__error_occurred=Error occurred
+jobs__progressmonitor_check_cancellation=Check Cancellation
+jobs__progressmonitor_report_progress=Report Progress
+
+jobs__search_name=Search
+jobs__search_task=Performing search {0}
+jobs__search_error_1=Error while performing search
+jobs__search_error_n=Error while performing searches
+
+jobs__check_bind_name=Check Authentication
+jobs__check_bind_task=Checking authentication
+jobs__check_bind_error=The authentication failed
+jobs__check_network_name=Check Network Parameter
+jobs__check_network_task=Checking network parameter
+jobs__check_network_error=The connection failed
+
+jobs__fetch_basedns_name=Fetch Base DNs
+jobs__fetch_basedns_task=Fetching base DNs
+jobs__fetch_basedns_error=Error while fetching base DNs
+
+jobs__copy_entries_name_1=Copy Entry
+jobs__copy_entries_name_n=Copy Entries
+jobs__copy_entries_task_1="Copying {0} to {1}
+jobs__copy_entries_task_n=Copying {0} entries to {1}
+jobs__copy_entries_error_1=Error while copying entry
+jobs__copy_entries_error_n=Error while copying entries
+
+jobs__create_entry_name_1=Create Entry
+jobs__create_entry_name_n=Create Entries
+jobs__create_entry_task_1=Creating entry {0}
+jobs__create_entry_task_n=Creating {0} entries
+jobs__create_entry_error_1=Error while creating entry
+jobs__create_entry_error_n=Error while creating entries
+
+jobs__execute_ldif_name=Execute LDIF
+jobs__execute_ldif_task=Executing LDIF
+jobs__execute_ldif_error=Error while executing LDIF
+
+jobs__create_values_name_1=Create Value
+jobs__create_values_name_n=Create Values
+jobs__create_values_task_1=Creating value
+jobs__create_values_task_n=Creating values
+jobs__create_values_error_1=Error while creating value
+jobs__create_values_error_n=Error while creating values
+
+jobs__delete_attributes_name_1=Delete Attribute
+jobs__delete_attributes_name_n=Delete Attributes
+jobs__delete_attributes_task_1=Deleting attribute
+jobs__delete_attributes_task_n=Deleting attributes
+jobs__delete_attributes_error_1=Error while deleting attribute
+jobs__delete_attributes_error_n=Error while deleting attributes
+
+jobs__delete_entries_name_1=Delete Entry
+jobs__delete_entries_name_n=Delete Entries
+jobs__delete_entries_task_1=Deleting entry {0}
+jobs__delete_entries_task_n=Deleting {0} entries
+jobs__delete_entries_error_1=Error while deleting entry
+jobs__delete_entries_error_n=Error while deleting entries
+
+jobs__reload_schemas_name_1=Reload Schema
+jobs__reload_schemas_name_n=Reload Schemas
+jobs__reload_schemas_task=Reloading schema of {0}
+jobs__reload_schemas_error_1=Error while reloading schema
+jobs__reload_schemas_error_n=Error while reloading schemas
+
+jobs__open_connections_name_1=Open Connection
+jobs__open_connections_name_n=Open Connections
+jobs__open_connections_task=Opening connection {0}
+jobs__open_connections_error_1=Error while opening connection
+jobs__open_connections_error_n=Error while opening connections
+
+jobs__export_ldif_name=LDIF Export
+jobs__export_ldif_task=Exporting LDIF
+jobs__export_ldif_error=Error while exporting LDIF
+jobs__export_cvs_error=Error while exporting CVS
+jobs__export_csv_name=CSV Export
+jobs__export_csv_task=Exporting CSV
+jobs__export_progress=Exported {0} entries
+jobs__export_xls_name=XLS Export
+jobs__export_xls_task=Exporting XLS
+jobs__export_xls_error=Error while exporting XLS
+jobs__export_dsml_name=DSML Export
+jobs__export_dsml_task=Exporting DSML
+jobs__export_dsml_error=Error while exporting DSML
+
+jobs__read_entry_name=Read Entry
+jobs__read_entry_task=Reading entry {0}
+jobs__read_entry_error=Error while reading entry
+
+jobs__move_entry_name_1=Move Entry
+jobs__move_entry_name_n=Move Entries
+jobs__move_entry_task_1=Moving entry
+jobs__move_entry_task_n=Moving entries
+jobs__move_entry_error_1=Error while moving entry
+jobs__move_entry_error_n=Error while moving entries
+
+jobs__rename_entry_name=Rename Entry
+jobs__rename_entry_task=Renaming entry {0}
+jobs__rename_entry_error=Error while renaming entry
+
+jobs__rename_value_name_1=Rename Value
+jobs__rename_value_name_n=Rename Values
+jobs__rename_value_task_1=Renaming Value
+jobs__rename_value_task_n=Renaming Values
+jobs__rename_value_error_1=Error while renaming value
+jobs__rename_value_error_n=Error while renaming values
+
+jobs__import_ldif_name=Import LDIF
+jobs__import_ldif_task=Importing LDIF
+jobs__import_ldif_error=Error while importing LDIF
+
+jobs__import_dsml_name=Import DSML
+jobs__import_dsml_task=Importing DSML
+jobs__import_dsml_error=Error while importing DSML
+
+jobs__init_entries_title_attandsub=Read Attributes and Children
+jobs__init_entries_title_subonly=Read Children
+jobs__init_entries_title_attonly=Read Attributes
+jobs__init_entries_title=Read Entries
+jobs__init_entries_task=Reading entry {0}
+jobs__init_entries_progress_att=Reading attributes of {0}
+jobs__init_entries_progress_sub=Reading children of {0}
+jobs__init_entries_progress_subcount=Got {0} children of {1}, sorting...
+jobs__init_entries_error_1=Error while reading entry
+jobs__init_entries_error_n=Error while reading entries
+
+jobs__modify_value_error=Error while modifying value
+jobs__modify_value_name=Modify Value
+jobs__modify_value_task=Modifying Value
+jobs__copy_entries_source_and_target_are_equal=Source- and target entry are equal\!

Modified: directory/trunks/ldapstudio/ldapstudio-browser-ui/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-ui/META-INF/MANIFEST.MF?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-ui/META-INF/MANIFEST.MF (original)
+++ directory/trunks/ldapstudio/ldapstudio-browser-ui/META-INF/MANIFEST.MF Thu Dec 28 12:01:30 2006
@@ -6,7 +6,7 @@
 Bundle-Activator: org.apache.directory.ldapstudio.browser.ui.BrowserUIPlugin
 Bundle-Vendor: %providerName
 Bundle-Localization: plugin
-Require-Bundle: org.apache.directory.ldapstudio.browser.core;visibility:=reexport,
+Require-Bundle: org.apache.directory.ldapstudio.browser.core,
  org.eclipse.core.runtime,
  org.eclipse.core.resources,
  org.eclipse.search,
@@ -17,5 +17,5 @@
  org.eclipse.ui.views,
  org.eclipse.ui.forms,
  org.eclipse.jface.text
-Eclipse-AutoStart: true
-Bundle-ClassPath: browser-ui.jar
+Eclipse-LazyStart: true
+Bundle-ClassPath: .

Modified: directory/trunks/ldapstudio/ldapstudio-browser-ui/build.properties
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-ui/build.properties?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-ui/build.properties (original)
+++ directory/trunks/ldapstudio/ldapstudio-browser-ui/build.properties Thu Dec 28 12:01:30 2006
@@ -1,25 +1,12 @@
-bin.includes = META-INF/,\
-               plugin.xml,\
-               icons/,\
-               lib/,\
-               browser-ui.jar,\
-               plugin.properties,\
-               templates/,\
-               about.html,\
-               about_files/
-jars.compile.order = browser-ui.jar
-src.includes = .classpath,\
-               .project,\
+source.. = src/main/java/
+output.. = bin/
+bin.includes = .,\
                META-INF/,\
-               build.properties,\
+               plugin.xml,\
                icons/,\
                lib/,\
                plugin.properties,\
-               plugin.xml,\
-               src/,\
                templates/,\
-               TODO,\
                about.html,\
                about_files/
-source.browser-ui.jar = src/
-output.browser-ui.jar = bin/
+jars.compile.order = 

Modified: directory/trunks/ldapstudio/ldapstudio-browser-ui/build.xml
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-ui/build.xml?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-ui/build.xml (original)
+++ directory/trunks/ldapstudio/ldapstudio-browser-ui/build.xml Thu Dec 28 12:01:30 2006
@@ -28,34 +28,72 @@
 
 	<property name="repository.dir" location="../dependencies/externals/"/>
 
+	<!-- Configuring Ivy (Needs to be AFTER the $repository.dir declaration) -->
+	<ivy:configure file="../tools/ivyconf.xml"/>
+	
+	<!-- ================================== -->
+	<!--               RESOLVE              -->
+	<!-- ================================== -->
+	<target name="resolve" description="--> retreive dependencies with ivy">
+		<mkdir dir="${basedir}/${lib.dir}" />
+		<ivy:retrieve/>
+	</target>
+		
 	<!-- ================================== -->
 	<!--             CLASSPATH              -->
 	<!-- ================================== -->
 	<target name="build-classpath" description="Computes a classpath according to current OS" >
+		
 		<path id="classpath">
 			<fileset dir="../dependencies/eclipse/3.2">
 				<include name="**/*.jar"/>
 			</fileset>
 			<fileset dir="${lib.dir}" />
+			<pathelement location="${basedir}/../ldapstudio-browser-core/target/classes"/>
+			<pathelement location="${basedir}/../ldapstudio-browser-core/target/build"/>
+	        <pathelement location="target/classes"/>
 		</path>
+				
 	</target>
-
+	
 	<!-- ================================== -->
 	<!--             COMPILE                -->
 	<!-- ================================== -->
-	<target name="compile" depends="checkclasses,build-classpath" unless="classes-up2date" description="Compiles the plugin">
+	<target name="compile" depends="resolve,checkclasses,build-classpath" unless="classes-up2date" description="Compiles the plugin">
+		
 		<mkdir dir="${project.build}" />
 		<copy todir="${project.build}">
 			<fileset dir="${basedir}">
 				<include name="plugin.xml" />
+				<include name="plugin.properties" />
+				<include name="about.html" />
 			</fileset>
 		</copy>
+		<mkdir dir="${project.build}/${lib.dir}" />
+		<copy todir="${project.build}/${lib.dir}">
+			<fileset dir="${basedir}/${lib.dir}">
+				<include name="*.jar" />
+			</fileset>
+		</copy>		
 		<mkdir dir="${project.build}/META-INF" />
 		<copy todir="${project.build}/META-INF">
 			<fileset dir="${basedir}/META-INF">
 				<include name="**" />
 			</fileset>
 		</copy>
+		<mkdir dir="${project.build}/icons" />
+		<copy todir="${project.build}/icons">
+			<fileset dir="${basedir}/icons">
+				<include name="**" />
+			</fileset>
+		</copy>
+		<mkdir dir="${project.build}/templates" />
+		<copy todir="${project.build}/templates">
+			<fileset dir="${basedir}/templates">
+				<include name="**" />
+			</fileset>
+		</copy>
+		
 		<javac
 			source="1.5"
 			debug="yes"
@@ -63,7 +101,7 @@
 			excludes=""
 			destdir="${project.build}"
 			classpathref="classpath"
-			listfiles="yes" />
+			listfiles="yes" verbose="false" />
 
 		<tstamp>
 			<format pattern="yyyy-MMM-dd, HH:mm 'GMT'Z" property="timestamp" locale="en" />
@@ -109,6 +147,7 @@
 				<exclude name="about.html"/>
 				<exclude name="build.properties"/>
 				<exclude name="build.xml"/>
+				<exclude name="ivy.xml"/>
 				<exclude name="plugin.properties"/>
 				<exclude name="plugin.xml"/>
 				<exclude name="about_files/**"/>

Added: directory/trunks/ldapstudio/ldapstudio-browser-ui/ivy.xml
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-browser-ui/ivy.xml?view=auto&rev=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-browser-ui/ivy.xml (added)
+++ directory/trunks/ldapstudio/ldapstudio-browser-ui/ivy.xml Thu Dec 28 12:01:30 2006
@@ -0,0 +1,21 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<ivy-module version="1.0">
+	<info organisation="org.apache.directory.ldapstudio" module="ldapstudio-browser-ui"/>
+</ivy-module>
\ No newline at end of file

Added: directory/trunks/ldapstudio/ldapstudio-jars/.classpath
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-jars/.classpath?view=auto&rev=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-jars/.classpath (added)
+++ directory/trunks/ldapstudio/ldapstudio-jars/.classpath Thu Dec 28 12:01:30 2006
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry exported="true" kind="lib" path="lib/antlr-2.7.6.jar"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>

Added: directory/trunks/ldapstudio/ldapstudio-jars/.project
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-jars/.project?view=auto&rev=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-jars/.project (added)
+++ directory/trunks/ldapstudio/ldapstudio-jars/.project Thu Dec 28 12:01:30 2006
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>ldapstudio-jars</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.ManifestBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.SchemaBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.PluginNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>

Added: directory/trunks/ldapstudio/ldapstudio-jars/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-jars/META-INF/MANIFEST.MF?view=auto&rev=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-jars/META-INF/MANIFEST.MF (added)
+++ directory/trunks/ldapstudio/ldapstudio-jars/META-INF/MANIFEST.MF Thu Dec 28 12:01:30 2006
@@ -0,0 +1,20 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %pluginName
+Bundle-SymbolicName: org.apache.directory.ldapstudio.jars
+Bundle-Version: 0.0.0.Development-Version
+Bundle-Localization: plugin
+Bundle-Vendor: %providerName
+Export-Package: antlr,
+ antlr.ASdebug,
+ antlr.actions.cpp,
+ antlr.actions.csharp,
+ antlr.actions.java,
+ antlr.actions.python,
+ antlr.build,
+ antlr.collections,
+ antlr.collections.impl,
+ antlr.debug,
+ antlr.debug.misc,
+ antlr.preprocessor
+Bundle-ClassPath: lib/antlr-2.7.6.jar

Added: directory/trunks/ldapstudio/ldapstudio-jars/build.properties
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-jars/build.properties?view=auto&rev=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-jars/build.properties (added)
+++ directory/trunks/ldapstudio/ldapstudio-jars/build.properties Thu Dec 28 12:01:30 2006
@@ -0,0 +1,3 @@
+bin.includes = META-INF/,\
+               lib/antlr-2.7.6.jar,\
+               plugin.properties

Added: directory/trunks/ldapstudio/ldapstudio-jars/build.xml
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-jars/build.xml?view=auto&rev=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-jars/build.xml (added)
+++ directory/trunks/ldapstudio/ldapstudio-jars/build.xml Thu Dec 28 12:01:30 2006
@@ -0,0 +1,120 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project name="ldapstudio-jars" default="jar" xmlns:ivy="antlib:fr.jayasoft.ivy.ant">
+	<property name="project.name" value="org.apache.directory.ldapstudio.jars" />
+	<property name="project.version" value="0.1.0" />
+
+	<property name="project.output" value="${basedir}/target" />
+	<property name="project.build" value="${project.output}/build" />
+	<property name="project.src" value="${basedir}/src/main/java" />
+
+	<property name="lib.dir" value="lib" />
+
+	<property name="repository.dir" location="../dependencies/externals/"/>
+
+	<!-- Configuring Ivy (Needs to be AFTER the $repository.dir declaration) -->
+	<ivy:configure file="../tools/ivyconf.xml"/>
+
+	<!-- ================================== -->
+	<!--               RESOLVE              -->
+	<!-- ================================== -->
+	<target name="resolve" description="--> retreive dependencies with ivy">
+		<ivy:retrieve/>
+	</target>
+
+	<!-- ================================== -->
+	<!--             CLASSPATH              -->
+	<!-- ================================== -->
+	<target name="build-classpath" description="Computes a classpath according to current OS" >
+		<path id="classpath">
+			<fileset dir="../dependencies/eclipse/3.2">
+				<include name="**/*.jar"/>
+			</fileset>
+			<fileset dir="${lib.dir}" />
+		</path>
+	</target>
+
+	<!-- ================================== -->
+	<!--              JAVADOC               -->
+	<!-- ================================== -->
+	<target name="javadoc" description="Generate Javadoc files">
+		<mkdir dir="${basedir}/doc" />
+		<javadoc destdir="${basedir}/doc">
+			<fileset dir="src/main/java" defaultexcludes="yes">
+				<include name="org/apache/directory/ldapstudio/**"/>
+			</fileset>
+		</javadoc>
+	</target>
+	
+	<!-- ================================== -->
+	<!--             COMPILE                -->
+	<!-- ================================== -->
+	<target name="compile" depends="resolve,build-classpath" unless="classes-up2date" description="Compiles the plugin">
+		<mkdir dir="${project.build}" />
+		<copy todir="${project.build}">
+			<fileset dir="${basedir}">
+				<include name="plugin.xml" />
+			</fileset>
+		</copy>
+		<mkdir dir="${project.build}/${lib.dir}" />
+		<copy todir="${project.build}/${lib.dir}">
+			<fileset dir="${basedir}/${lib.dir}">
+				<include name="*.jar" />
+			</fileset>
+		</copy>
+		<mkdir dir="${project.build}/META-INF" />
+		<copy todir="${project.build}/META-INF">
+			<fileset dir="${basedir}/META-INF">
+				<include name="**" />
+			</fileset>
+		</copy>
+		
+		<tstamp>
+			<format pattern="yyyy-MMM-dd, HH:mm 'GMT'Z" property="timestamp" locale="en" />
+		</tstamp>
+		<echo message="${project.name}-${project.version} compiled ${timestamp} by ${user.name}" file="${project.build}/compile.timestamp" />
+	</target>
+	
+	<!-- ================================== -->
+	<!--              JAR                   -->
+	<!-- ================================== -->
+	<target name="jar" description="Creates jar file" depends="compile">
+		<jar destfile="${project.output}/${project.name}_${project.version}.jar" manifest="${project.build}/META-INF/MANIFEST.MF">
+			<fileset dir="${project.build}" excludes="compile.timestamp" />
+		</jar>
+	</target>
+
+	<!-- ================================== -->
+	<!--               CLEAN                -->
+	<!-- ================================== -->
+	<target name="clean" description="Deletes any generated file (javadoc, classes, jars, distribution)">
+		<delete includeemptydirs="true">
+			<fileset dir="${basedir}">
+				<exclude name=".classpath"/>
+				<exclude name=".project"/>
+				<exclude name="build.properties"/>
+				<exclude name="build.xml"/>
+				<exclude name="ivy.xml"/>
+				<exclude name="plugin.properties"/>
+				<exclude name="plugin.xml"/>
+				<exclude name="META-INF/**"/>
+			</fileset>
+		</delete>
+	</target>
+</project>

Added: directory/trunks/ldapstudio/ldapstudio-jars/ivy.xml
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-jars/ivy.xml?view=auto&rev=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-jars/ivy.xml (added)
+++ directory/trunks/ldapstudio/ldapstudio-jars/ivy.xml Thu Dec 28 12:01:30 2006
@@ -0,0 +1,24 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<ivy-module version="1.0">
+	<info organisation="org.apache.directory.ldapstudio" module="ldapdstudio-jars"/>
+	<dependencies>
+		<dependency org="antlr" name="antlr" rev="2.7.6"/>
+    </dependencies>
+</ivy-module>
\ No newline at end of file

Added: directory/trunks/ldapstudio/ldapstudio-jars/plugin.properties
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-jars/plugin.properties?view=auto&rev=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-jars/plugin.properties (added)
+++ directory/trunks/ldapstudio/ldapstudio-jars/plugin.properties Thu Dec 28 12:01:30 2006
@@ -0,0 +1,3 @@
+pluginName=Ldapstudio JARs Plug-in
+providerName=Apache Software Foundation
+

Modified: directory/trunks/ldapstudio/ldapstudio-ldapbrowser/.classpath
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-ldapbrowser/.classpath?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-ldapbrowser/.classpath (original)
+++ directory/trunks/ldapstudio/ldapstudio-ldapbrowser/.classpath Thu Dec 28 12:01:30 2006
@@ -3,7 +3,6 @@
 	<classpathentry kind="src" path="src/main/java"/>
 	<classpathentry kind="src" path="src/test/java"/>
 	<classpathentry exported="true" kind="lib" path="lib/xpp3-1.1.3_8.jar"/>
-	<classpathentry exported="true" kind="lib" path="lib/antlr-2.7.6.jar"/>
 	<classpathentry exported="true" kind="lib" path="lib/commons-collections-3.1.jar"/>
 	<classpathentry exported="true" kind="lib" path="lib/shared-asn1-0.9.6-SNAPSHOT.jar"/>
 	<classpathentry exported="true" kind="lib" path="lib/shared-ldap-0.9.6-SNAPSHOT.jar"/>

Modified: directory/trunks/ldapstudio/ldapstudio-ldapbrowser/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-ldapbrowser/META-INF/MANIFEST.MF?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-ldapbrowser/META-INF/MANIFEST.MF (original)
+++ directory/trunks/ldapstudio/ldapstudio-ldapbrowser/META-INF/MANIFEST.MF Thu Dec 28 12:01:30 2006
@@ -7,11 +7,11 @@
 Bundle-Vendor: apache.org
 Bundle-Localization: plugin
 Require-Bundle: org.eclipse.ui,
- org.eclipse.core.runtime
+ org.eclipse.core.runtime,
+ org.apache.directory.ldapstudio.jars
 Eclipse-LazyStart: true
 Bundle-ClassPath: .,
  lib/xpp3-1.1.3_8.jar,
- lib/antlr-2.7.6.jar,
  lib/commons-collections-3.1.jar,
  lib/shared-asn1-0.9.6-SNAPSHOT.jar,
  lib/shared-ldap-0.9.6-SNAPSHOT.jar,

Modified: directory/trunks/ldapstudio/ldapstudio-ldapbrowser/build.properties
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-ldapbrowser/build.properties?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-ldapbrowser/build.properties (original)
+++ directory/trunks/ldapstudio/ldapstudio-ldapbrowser/build.properties Thu Dec 28 12:01:30 2006
@@ -6,7 +6,6 @@
                plugin.xml,\
                build.properties,\
                lib/xpp3-1.1.3_8.jar,\
-               lib/antlr-2.7.6.jar,\
                lib/commons-collections-3.1.jar,\
                lib/shared-asn1-0.9.6-SNAPSHOT.jar,\
                lib/shared-ldap-0.9.6-SNAPSHOT.jar,\

Modified: directory/trunks/ldapstudio/ldapstudio-schemas-plugin/.classpath
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-schemas-plugin/.classpath?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-schemas-plugin/.classpath (original)
+++ directory/trunks/ldapstudio/ldapstudio-schemas-plugin/.classpath Thu Dec 28 12:01:30 2006
@@ -2,11 +2,10 @@
 <classpath>
 	<classpathentry kind="src" path="src/main/java"/>
 	<classpathentry kind="src" path="src/main/resources"/>
-	<classpathentry output="target/test-classes" kind="src" path="src/test/java"/>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/3.8.1"/>
-	<classpathentry kind="lib" path="lib/antlr-2.7.6.jar"/>
 	<classpathentry kind="lib" path="lib/commons-collections-3.1.jar"/>
 	<classpathentry kind="lib" path="lib/commons-configuration-1.2.jar"/>
 	<classpathentry kind="lib" path="lib/commons-lang-2.1.jar"/>

Modified: directory/trunks/ldapstudio/ldapstudio-schemas-plugin/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-schemas-plugin/META-INF/MANIFEST.MF?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-schemas-plugin/META-INF/MANIFEST.MF (original)
+++ directory/trunks/ldapstudio/ldapstudio-schemas-plugin/META-INF/MANIFEST.MF Thu Dec 28 12:01:30 2006
@@ -7,10 +7,10 @@
 Bundle-Vendor: apache.org
 Bundle-Localization: plugin
 Require-Bundle: org.eclipse.ui,
- org.eclipse.core.runtime
+ org.eclipse.core.runtime,
+ org.apache.directory.ldapstudio.jars
 Eclipse-LazyStart: true
 Bundle-ClassPath: .,
- lib/antlr-2.7.6.jar,
  lib/apacheds-core-plugin-1.1.0-SNAPSHOT.jar,
  lib/apacheds-core-shared-1.1.0-SNAPSHOT.jar,
  lib/commons-collections-3.1.jar,

Modified: directory/trunks/ldapstudio/ldapstudio-schemas-plugin/build.properties
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-schemas-plugin/build.properties?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-schemas-plugin/build.properties (original)
+++ directory/trunks/ldapstudio/ldapstudio-schemas-plugin/build.properties Thu Dec 28 12:01:30 2006
@@ -9,7 +9,6 @@
                log4j.conf,\
                ressources/,\
                toc.xml,\
-               lib/antlr-2.7.6.jar,\
                lib/apacheds-core-plugin-1.1.0-SNAPSHOT.jar,\
                lib/apacheds-core-shared-1.1.0-SNAPSHOT.jar,\
                lib/commons-collections-3.1.jar,\
@@ -19,4 +18,5 @@
                lib/nlog4j-1.2.24.jar,\
                lib/shared-ldap-0.9.6-SNAPSHOT.jar,\
                lib/ui-forms-3.2.0-v20060315.jar,\
-               lib/velocity-dep-1.4.jar
+               lib/velocity-dep-1.4.jar,\
+               src/main/resources/

Modified: directory/trunks/ldapstudio/ldapstudio-schemas-plugin/ivy.xml
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-schemas-plugin/ivy.xml?view=diff&rev=490780&r1=490779&r2=490780
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-schemas-plugin/ivy.xml (original)
+++ directory/trunks/ldapstudio/ldapstudio-schemas-plugin/ivy.xml Thu Dec 28 12:01:30 2006
@@ -19,7 +19,6 @@
 <ivy-module version="1.0">
     <info organisation="org.apache.directory.ldapstudio" module="ldapdtudio-schemas-plugin"/>
     <dependencies>
-        <dependency org="antlr" name="antlr" rev="2.7.6"/>
 		<dependency org="commons-collections" name="commons-collections" rev="3.1"/>
 		<dependency org="commons-configuration" name="commons-configuration" rev="1.2"/>
 		<dependency org="commons-lang" name="commons-lang" rev="2.1"/>