Révision 484
tmp/org.txm.svn.rcp/src/svnenvironement/Activator.java (revision 484) | ||
---|---|---|
1 |
package svnenvironement; |
|
2 |
|
|
3 |
import org.eclipse.ui.plugin.AbstractUIPlugin; |
|
4 |
import org.osgi.framework.BundleContext; |
|
5 |
|
|
6 |
/** |
|
7 |
* The activator class controls the plug-in life cycle |
|
8 |
*/ |
|
9 |
public class Activator extends AbstractUIPlugin { |
|
10 |
|
|
11 |
// The plug-in ID |
|
12 |
public static final String PLUGIN_ID = "SVNEnvironement"; //$NON-NLS-1$ |
|
13 |
|
|
14 |
// The shared instance |
|
15 |
private static Activator plugin; |
|
16 |
|
|
17 |
/** |
|
18 |
* The constructor |
|
19 |
*/ |
|
20 |
public Activator() { |
|
21 |
} |
|
22 |
|
|
23 |
/* |
|
24 |
* (non-Javadoc) |
|
25 |
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) |
|
26 |
*/ |
|
27 |
public void start(BundleContext context) throws Exception { |
|
28 |
super.start(context); |
|
29 |
plugin = this; |
|
30 |
} |
|
31 |
|
|
32 |
/* |
|
33 |
* (non-Javadoc) |
|
34 |
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext) |
|
35 |
*/ |
|
36 |
public void stop(BundleContext context) throws Exception { |
|
37 |
plugin = null; |
|
38 |
super.stop(context); |
|
39 |
} |
|
40 |
|
|
41 |
/** |
|
42 |
* Returns the shared instance |
|
43 |
* |
|
44 |
* @return the shared instance |
|
45 |
*/ |
|
46 |
public static Activator getDefault() { |
|
47 |
return plugin; |
|
48 |
} |
|
49 |
|
|
50 |
} |
|
0 | 51 |
tmp/org.txm.svn.rcp/build.properties (revision 484) | ||
---|---|---|
1 |
source.. = src/ |
|
2 |
output.. = bin/ |
|
3 |
bin.includes = META-INF/,\ |
|
4 |
.,\ |
|
5 |
plugin.xml,\ |
|
6 |
OSGI-INF/l10n/bundle.properties |
|
0 | 7 |
tmp/org.txm.svn.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 484) | ||
---|---|---|
1 |
#Properties file for SVNEnvironementRCP |
|
2 |
command.label = Environnement SVN |
|
3 |
Bundle-Name = Environnement SVN |
|
0 | 4 |
tmp/org.txm.svn.rcp/OSGI-INF/l10n/bundle.properties (revision 484) | ||
---|---|---|
1 |
#Properties file for SVNEnvironementRCP |
|
2 |
command.label = SVN Environment |
|
3 |
Bundle-Name = SVNEnvironment |
|
0 | 4 |
tmp/org.txm.svn.rcp/plugin.xml (revision 484) | ||
---|---|---|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
|
2 |
<?eclipse version="3.4"?> |
|
3 |
<plugin> |
|
4 |
<extension |
|
5 |
point="org.eclipse.ui.menus"> |
|
6 |
<menuContribution |
|
7 |
locationURI="menu:menu.help.plugins"> |
|
8 |
<command |
|
9 |
commandId="org.txm.rcpapplication.commands.OpenBrowser" |
|
10 |
label="%command.label" |
|
11 |
style="push"> |
|
12 |
<parameter |
|
13 |
name="org.txm.rcpapplication.commands.commandParameter2" |
|
14 |
value="https://groupes.renater.fr/wiki/txm-users/public/extensions#environnement_svn"> |
|
15 |
</parameter> |
|
16 |
</command> |
|
17 |
</menuContribution> |
|
18 |
</extension> |
|
19 |
|
|
20 |
</plugin> |
|
0 | 21 |
tmp/org.txm.svn.rcp/.settings/org.eclipse.jdt.core.prefs (revision 484) | ||
---|---|---|
1 |
eclipse.preferences.version=1 |
|
2 |
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled |
|
3 |
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 |
|
4 |
org.eclipse.jdt.core.compiler.compliance=1.6 |
|
5 |
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error |
|
6 |
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error |
|
7 |
org.eclipse.jdt.core.compiler.source=1.6 |
|
0 | 8 |
tmp/org.txm.svn.rcp/.classpath (revision 484) | ||
---|---|---|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
|
2 |
<classpath> |
|
3 |
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> |
|
4 |
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> |
|
5 |
<classpathentry kind="src" path="src"/> |
|
6 |
<classpathentry kind="output" path="bin"/> |
|
7 |
</classpath> |
|
0 | 8 |
tmp/org.txm.svn.rcp/META-INF/MANIFEST.MF (revision 484) | ||
---|---|---|
1 |
Manifest-Version: 1.0 |
|
2 |
Bundle-ManifestVersion: 2 |
|
3 |
Bundle-Name: %Bundle-Name |
|
4 |
Bundle-SymbolicName: SVNEnvironmentRCP;singleton:=true |
|
5 |
Bundle-Version: 1.0.0.qualifier |
|
6 |
Bundle-Activator: svnenvironement.Activator |
|
7 |
Require-Bundle: org.eclipse.ui, |
|
8 |
org.eclipse.core.runtime, |
|
9 |
org.eclipse.team.svn;bundle-version="1.1.0", |
|
10 |
org.eclipse.team.svn.core;bundle-version="1.1.0", |
|
11 |
org.eclipse.team.svn.help;bundle-version="1.1.0", |
|
12 |
org.eclipse.team.svn.ui;bundle-version="1.1.0", |
|
13 |
org.polarion.eclipse.team.svn.connector;bundle-version="3.0.1", |
|
14 |
org.eclipse.team.ui;bundle-version="3.7.0", |
|
15 |
org.eclipse.team.core;bundle-version="3.7.0", |
|
16 |
org.polarion.eclipse.team.svn.connector.svnkit18;bundle-version="4.1.0" |
|
17 |
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 |
|
18 |
Bundle-ActivationPolicy: lazy |
|
19 |
Bundle-Vendor: Textometrie.org |
|
0 | 20 |
tmp/org.txm.svn.rcp/.project (revision 484) | ||
---|---|---|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
|
2 |
<projectDescription> |
|
3 |
<name>SVNEnvironmentRCP</name> |
|
4 |
<comment></comment> |
|
5 |
<projects> |
|
6 |
</projects> |
|
7 |
<buildSpec> |
|
8 |
<buildCommand> |
|
9 |
<name>org.eclipse.jdt.core.javabuilder</name> |
|
10 |
<arguments> |
|
11 |
</arguments> |
|
12 |
</buildCommand> |
|
13 |
<buildCommand> |
|
14 |
<name>org.eclipse.pde.ManifestBuilder</name> |
|
15 |
<arguments> |
|
16 |
</arguments> |
|
17 |
</buildCommand> |
|
18 |
<buildCommand> |
|
19 |
<name>org.eclipse.pde.SchemaBuilder</name> |
|
20 |
<arguments> |
|
21 |
</arguments> |
|
22 |
</buildCommand> |
|
23 |
</buildSpec> |
|
24 |
<natures> |
|
25 |
<nature>org.eclipse.pde.PluginNature</nature> |
|
26 |
<nature>org.eclipse.jdt.core.javanature</nature> |
|
27 |
</natures> |
|
28 |
</projectDescription> |
|
0 | 29 |
Formats disponibles : Unified diff