Revision 824

View differences:

org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
	<modelVersion>4.0.0</modelVersion>
5
	<groupId>org.gvsig</groupId>
6
	<artifactId>org.gvsig.vectorediting.app</artifactId>
7
	<packaging>pom</packaging>
8
	<version>1.0.38</version>
9
	<name>${project.artifactId}</name>
10
	<description>This plugin add to gvSIG a tool to show Vectorediting messages</description>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.vectorediting</artifactId>
14
		<version>1.0.38</version>
15
	</parent>
16
	<dependencyManagement>
17
		<dependencies>
18
		
19
		</dependencies>
20
	</dependencyManagement>
21

  
22
	<modules>
23
		<module>org.gvsig.vectorediting.app.mainplugin</module>
24
	</modules>
25

  
26
</project>
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/maven-howto.rst
1

  
2
==================================
3
Usefull maven "howtos" and FAQs
4
==================================
5

  
6
.. contents::
7

  
8
How to reduce the process of "install" to run as fast as possible.
9
-------------------------------------------------------------------
10

  
11
Can reduce install execution skiping test execution and compilation,
12
javadoc generation, test signature checking, license checking, and 
13
attach sources in jar.
14

  
15
  mvn  -Danimal.sniffer.skip=true -Dmaven.test.skip=true -Dsource.skip=true -DskipTests -Dmaven.javadoc.skip=true install
16

  
17
How to increment the build number of gvSIG plugins
18
----------------------------------------------------
19

  
20
To increase the build number of gvSIG plugins, yo can do:
21

  
22
  mvn -Dincrease-build-number process-sources
23
  
24
How to deploy a package of a gvSIG plugin
25
--------------------------------------------
26

  
27
Yo can deploy the package of a gvSIG plugin with:
28

  
29
  mvn -Ddeploy-package -Duser=USER -Dpassword=PASSWORD install
30

  
31
Notes:
32
- Require that the gvsig.package.info.poolURL property that this set to the correct value.
33
- The process uses WEBDAV to upload the packages, gvspkg and gvspki, and require 
34
  access to write in the location specified by gvsig.package.info.poolURL
35
- If "user" or "password" is not present, the process ask its each time it need.
36
- If folder specified in  gvsig.package.info.poolURL does not exist, the process try to create it.
37
- The process create a file "addon-request.txt" in the target with the information to 
38
  add to the ticket to request the update of the package in the main repository of
39
  packages of gvSIG.
40

  
41
How to skip attach sources in jar from command line
42
------------------------------------------------------
43

  
44
If in the project is enabled by default the generation of jar whith 
45
the sources of the project, you can disable this setting the property
46
"source.skip" to true in the command line::
47

  
48
    mvn -Dsource.skip=true  install
49

  
50
How to skip test compile from command line
51
--------------------------------------------
52

  
53
You can skip the compilation of test setting the propety "maven.test.skip" 
54
to true in the command line::
55

  
56
    mvn -Dmaven.test.skip=true  install
57

  
58

  
59
How to skip test execution from command line
60
----------------------------------------------
61

  
62
You can skip the tests execution setting the propety "skipTests" to true
63
in the command line::
64

  
65
    mvn -DskipTests install
66

  
67
How to skip javadoc generation from command line
68
--------------------------------------------------
69

  
70
You can skip the javadoc generation setting the property
71
"maven.javadoc.skip" to true in the command line::
72

  
73
    mvn -Dmaven.javadoc.skip=true  install
74

  
75
How to skip test signature cheks from command line
76
---------------------------------------------------
77

  
78
You can skip the signature check setting the property
79
"animal.sniffer.skip" to true in the command line::
80

  
81
    mvn -Danimal.sniffer.skip=true install
82

  
83
How to install a project without install submodules
84
----------------------------------------------------------
85

  
86
To install a project with submodules and only install the
87
parent project without submodules use the option "--non-recursive" ::
88

  
89
    mvn --non-recursive install
90

  
91
  
92
How to skip test compilation
93
--------------------------------
94

  
95
To configure a project to don't run the compilation
96
of test you can add to this pom the next configuration of
97
the plugin "maven-compiler-plugin"::
98

  
99
  <build>
100
    <plugins>
101
      ...
102
      <plugin>
103
        <!-- Skip compilation tests -->
104
        <groupId>org.apache.maven.plugins</groupId>
105
        <artifactId>maven-compiler-plugin</artifactId>
106
        <executions>
107
          <execution>
108
            <id>default-testCompile</id>
109
            <phase>process-test-sources</phase>
110
            <goals>
111
              <goal>testCompile</goal>
112
            </goals>
113
            <configuration>
114
              <skip>true</skip>
115
            </configuration>
116
          </execution>
117
        </executions>
118
      </plugin>
119
      ...
120
    </plugins>
121
  </build>
122

  
123
Skip test execution
124
----------------------
125

  
126
To configure a project to don't run the execution
127
of test you can add to this pom the next configuration of
128
the plugin "maven-surefire-plugin"::
129

  
130

  
131
  <build>
132
    <plugins>
133
      ...
134
      <plugin>
135
        <!-- Skip test execution -->
136
        <groupId>org.apache.maven.plugins</groupId>
137
        <artifactId>maven-surefire-plugin</artifactId>
138
        <configuration>
139
          <skipTests>true</skipTests>
140
        </configuration>
141
      </plugin>
142
      ...
143
    </plugins>
144
  </build>
145

  
146
Continue on test failure
147
-----------------------------
148

  
149
You can configure a project to continue on test execution 
150
failure. To do this add to the pom of the project the next 
151
configuration of plugin "maven-surefire-plugin" ::
152

  
153
  <build>
154
    <plugins>
155
      ...
156
      <plugin>
157
        <!-- Continue on test failure -->
158
        <groupId>org.apache.maven.plugins</groupId>
159
        <artifactId>maven-surefire-plugin</artifactId>
160
        <configuration>
161
          <testFailureIgnore>true</testFailureIgnore>
162
        </configuration>
163
      </plugin>
164
      ...
165
    </plugins>
166
  </build>
167

  
168

  
169
Set java compatibility
170
--------------------------
171

  
172
To set the compatibility with a java version  add to the 
173
pom of the project the next configuration of plugin 
174
"maven-compiler-plugin" ::
175

  
176
  <build>
177
    <plugins>
178
      ...
179
      <plugin>
180
          <!-- Set java compatibility -->
181
          <groupId>org.apache.maven.plugins</groupId>
182
          <artifactId>maven-compiler-plugin</artifactId>
183
          <configuration>
184
              <source>1.5</source>
185
              <target>1.5</target>
186
              <encoding>ISO-8859-1</encoding>
187
          </configuration>
188
      </plugin>
189
      ...
190
    </plugins>
191
  </build>
192

  
193
Packaging tests in jar
194
------------------------
195

  
196
Test classes do not packaging in jar by default.
197
To packing add to pom::
198

  
199
  <build>
200
    <plugins>
201
      ...
202
      <plugin>
203
        <!-- Packaging tests in jar -->
204
        <groupId>org.apache.maven.plugins</groupId>
205
        <artifactId>maven-jar-plugin</artifactId>
206
        <executions>
207
          <!-- Generates a jar file only with the test classes -->
208
          <execution>
209
            <goals>
210
              <goal>test-jar</goal>
211
            </goals>
212
            <configuration>
213
              <includes>
214
                <include>**/**</include>
215
              </includes>
216
            </configuration>
217
          </execution>
218
        </executions>
219
      </plugin> 
220
      ...
221
    </plugins>
222
  </build>
223

  
224
How to set a dependency with tests jar
225
-----------------------------------------
226

  
227
You can set a dependency with a test jar adding to
228
the declaration of the dependency the scope of
229
test and the type of "test-jar"::
230

  
231
  <dependency>
232
      <groupId>...</groupId>
233
      <artifactId>...</artifactId>
234
      <type>test-jar</type>
235
      <scope>test</scope>
236
  </dependency>
237

  
238
How use ant in maven
239
-------------------------
240

  
241
You can use ant embed in the pom of you project.
242
To do this use::
243

  
244
  <plugin>
245
    <artifactId>maven-antrun-plugin</artifactId>
246
    <version>1.7</version>
247
    <executions>
248
      <execution>
249
        <phase>generate-sources</phase>
250
        <configuration>
251
          <target>
252
            <echo>Hello world!</echo>
253
          </target>
254
        </configuration>
255
        <goals>
256
          <goal>run</goal>
257
        </goals>
258
      </execution>
259
    </executions>
260
  </plugin>
261

  
262
Fail when execute "mvn deploy" with "No connector available"
263
-------------------------------------------------------------
264

  
265
When execute a "mvn deploy" fail with the error::
266

  
267
  [INFO] ------------------------------------------------------------------------
268
  [ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy 
269
    (default-deploy) on project org.gvsig.desktop: Failed to deploy artifacts/metadata: 
270
    No connector available to access repository gvsig-repository (dav:https://devel.gvsig.org/m2repo/j2se) 
271
    of type default using the available factories WagonRepositoryConnectorFactory -> [Help 1]
272
  [ERROR] 
273
  
274
This happens to be configured the webdav wagon as an extension in the section "build"::
275

  
276
  ...
277
  <build>
278
    <extensions>
279
        <extension>
280
            <groupId>org.apache.maven.wagon</groupId>
281
            <artifactId>wagon-webdav-jackrabbit</artifactId>
282
            <version>1.0-beta-7</version>
283
        </extension>
284
    </extensions>
285
  ...
286

  
287
Fail when execute "mvn release: prepare" with "svn command failed... Could not authenticate"
288
------------------------------------------------------------------------------------------------
289

  
290
When running "mvn release: prepare" updates poms, compiles, and then
291
fails with the following error ::
292

  
293
  [INFO] ------------------------------------------------------------------------
294
  [ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.1:prepare 
295
    (default-cli) on project org.gvsig.desktop: Unable to commit files
296
  [ERROR] Provider message:
297
  [ERROR] The svn command failed.
298
  [ERROR] Command output:
299
  [ERROR] svn: Commit failed (details follow):
300
  [ERROR] svn: MKACTIVITY of '/svn/gvsig-desktop/!svn/act/931a27bc-57e8-45d9-adcd-5a2cf54a7045': 
301
    authorization failed: Could not authenticate to server: rejected Basic challenge (https://devel.gvsig.org)
302
  [ERROR] -> [Help 1]
303
  [ERROR] 
304
  [ERROR]
305

  
306
Apparently maven in linux system use the svn of system and if you're not
307
authenticated when trying to access to the repository, svn fails.
308

  
309
This is solved by executing a commit from the command line on
310
some file of the project (only if you have not enabled the option 
311
"store-passwords = no" in $ HOME / .subversion / config). For example, you 
312
can add or remove at the end of "pom.xml" a blank line and then run 
313
from the command line ::
314

  
315
  svn ci -m "" pom.xml
316
  
317
Another option that works on Windows in declaring the user and password in the command:
318

  
319
mvn release:prepare -Dusername=[username] -Dpassword=[password]
320

  
321

  
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/test/resources/README.txt
1
====
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
====
26

  
27
Put into this folder the resources needed by your test classes.
28

  
29
This folder is added to the Tests classpath, so you can load any resources 
30
through the ClassLoader.
31

  
32
By default, in this folder you can find an example of log4j configuration,
33
prepared to log messages through the console, so logging works when you
34
run your tests classes.
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/test/resources/log4j.xml
1
<?xml version="1.0" encoding="ISO-8859-1" ?>
2
<!--
3

  
4
    gvSIG. Desktop Geographic Information System.
5

  
6
    Copyright (C) 2007-2012 gvSIG Association.
7

  
8
    This program is free software; you can redistribute it and/or
9
    modify it under the terms of the GNU General Public License
10
    as published by the Free Software Foundation; either version 2
11
    of the License, or (at your option) any later version.
12

  
13
    This program is distributed in the hope that it will be useful,
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU General Public License for more details.
17

  
18
    You should have received a copy of the GNU General Public License
19
    along with this program; if not, write to the Free Software
20
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21
    MA  02110-1301, USA.
22

  
23
    For any additional information, do not hesitate to contact us
24
    at info AT gvsig.com, or visit our website www.gvsig.com.
25

  
26
-->
27
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
28

  
29
<!-- 
30
Log4J configuration file for unit tests execution.
31
 -->
32
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
33

  
34
	<!-- Appender configuration to show logging messages through the console -->
35
	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
36
		<layout class="org.apache.log4j.PatternLayout">
37
			<param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%c{2}.%M()]\n  %m%n" />
38
		</layout>
39
	</appender>
40

  
41
	<!-- 
42
	Activate logging messages of DEBUG level of higher only for the
43
	org.gvsig.tools packages.
44
	You can put full classes names or packages instead, to configure
45
	logging for all the classes and subpackages of the package.
46
	-->
47
	<category name="org.gvsig.tools">
48
		<priority value="DEBUG" />
49
	</category>
50
	<category name="org.gvsig.vectorediting">
51
		<priority value="DEBUG" />
52
	</category>
53

  
54
	<!-- 
55
	By default, show only logging messages of INFO level or higher, 
56
	through the previously configured CONSOLE appender. 
57
	-->
58
	<root>
59
		<priority value="INFO" />
60
		<appender-ref ref="CONSOLE" />
61
	</root>
62
</log4j:configuration>
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/java/org/gvsig/app/project/documents/view/toc/actions/EndEditingTocMenuEntry.java
1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.app.project.documents.view.toc.actions;
25

  
26
import org.slf4j.Logger;
27
import org.slf4j.LoggerFactory;
28

  
29
import org.gvsig.andami.PluginServices;
30
import org.gvsig.andami.plugins.IExtension;
31
import org.gvsig.app.project.documents.view.toc.AbstractTocContextMenuAction;
32
import org.gvsig.app.project.documents.view.toc.ITocItem;
33
import org.gvsig.fmap.mapcontext.layers.FLayer;
34
import org.gvsig.vectorediting.app.mainplugin.EditingExtension;
35

  
36

  
37
public class EndEditingTocMenuEntry extends AbstractTocContextMenuAction {
38

  
39
    public static final String EXTENSION_POINT_NAME = "EndEditing";
40

  
41
    private IExtension ext = null;
42

  
43
    private static Logger logger =
44
        LoggerFactory.getLogger(EndEditingTocMenuEntry.class);
45

  
46
	public String getGroup() {
47
		return "vectorEditing";
48
	}
49

  
50
	public int getGroupOrder() {
51
		return 0;
52
	}
53

  
54
	public int getOrder() {
55
		return 1;
56
	}
57

  
58
	public String getText() {
59
		return PluginServices.getText(this, "end_editing");
60
	}
61

  
62
	public boolean isEnabled(ITocItem item, FLayer[] selectedItems) {
63
	    return ((EditingExtension)getExtension()).isEnabled("end-editing");
64
	}
65

  
66
   public boolean isVisible(ITocItem item, FLayer[] selectedItems) {
67
        return ((EditingExtension)getExtension()).isVisible("end-editing");
68
    }
69

  
70

  
71
	public void execute(ITocItem item, FLayer[] selItems) {
72
	       getExtension().execute("end-editing");
73
	}
74

  
75
    private IExtension getExtension() {
76

  
77
        if (ext == null) {
78
            ext = PluginServices.getExtension(EditingExtension.class);
79
        }
80
        return ext;
81
    }
82

  
83
}
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/java/org/gvsig/app/project/documents/view/toc/actions/StartEditingTocMenuEntry.java
1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.app.project.documents.view.toc.actions;
25

  
26
import org.slf4j.Logger;
27
import org.slf4j.LoggerFactory;
28

  
29
import org.gvsig.andami.PluginServices;
30
import org.gvsig.andami.plugins.IExtension;
31
import org.gvsig.app.project.documents.view.toc.AbstractTocContextMenuAction;
32
import org.gvsig.app.project.documents.view.toc.ITocItem;
33
import org.gvsig.fmap.mapcontext.layers.FLayer;
34
import org.gvsig.vectorediting.app.mainplugin.EditingExtension;
35

  
36

  
37
public class StartEditingTocMenuEntry extends AbstractTocContextMenuAction {
38

  
39
    public static final String EXTENSION_POINT_NAME = "StartEditing";
40

  
41
    private IExtension ext = null;
42

  
43
    private static Logger logger =
44
        LoggerFactory.getLogger(StartEditingTocMenuEntry.class);
45

  
46
	public String getGroup() {
47
		return "vectorEditing";
48
	}
49

  
50
	public int getGroupOrder() {
51
		return 0;
52
	}
53

  
54
	public int getOrder() {
55
		return 0;
56
	}
57

  
58
	public String getText() {
59
		return PluginServices.getText(this, "start_editing");
60
	}
61

  
62
	public boolean isEnabled(ITocItem item, FLayer[] selectedItems) {
63
	    return ((EditingExtension)getExtension()).isEnabled("start-editing");
64
	}
65

  
66
   public boolean isVisible(ITocItem item, FLayer[] selectedItems) {
67
       return ((EditingExtension)getExtension()).isVisible("start-editing");
68
    }
69

  
70

  
71
	public void execute(ITocItem item, FLayer[] selItems) {
72
	       getExtension().execute("start-editing");
73
	}
74

  
75
    private IExtension getExtension() {
76

  
77
        if (ext == null) {
78
            ext = PluginServices.getExtension(EditingExtension.class);
79
        }
80
        return ext;
81
    }
82

  
83
}
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/java/org/gvsig/vectorediting/app/mainplugin/ServiceExtension.java
1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright ? 2007-2014 gvSIG Association
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.vectorediting.app.mainplugin;
25

  
26
import org.gvsig.andami.plugins.Extension;
27
import org.gvsig.app.ApplicationLocator;
28
import org.gvsig.app.ApplicationManager;
29
import org.gvsig.app.project.documents.view.ViewDocument;
30
import org.gvsig.app.project.documents.view.gui.IView;
31
import org.gvsig.fmap.mapcontext.layers.FLayer;
32
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
33
import org.gvsig.vectorediting.swing.api.EditingContext;
34
import org.gvsig.vectorediting.swing.api.EditingSwingLocator;
35
import org.gvsig.vectorediting.swing.api.EditingSwingManager;
36

  
37
public class ServiceExtension extends Extension {
38

  
39
    public void initialize() {
40
    }
41

  
42
    public void execute(String actionCommand) {
43
        IView view = getActiveView();
44
        EditingSwingManager swingManager =
45
            EditingSwingLocator.getSwingManager();
46

  
47
        if (view != null) {
48
            EditingContext editingContext =
49
                swingManager.getEditingContext(view.getMapControl());
50
            editingContext.activateService(actionCommand);
51
        }
52

  
53
    }
54

  
55
    public boolean isEnabled() {
56
        return this.isVisible();
57
    }
58

  
59
    @Override
60
    public boolean isEnabled(String action) {
61
        IView view = getActiveView();
62
        FLyrVect activeLayer = getActiveLayer(view);
63

  
64
        if ((view != null) && (activeLayer != null) && activeLayer.isEditing() && action!=null) {
65
            EditingSwingManager swingManager =
66
                EditingSwingLocator.getSwingManager();
67
            EditingContext editingContext =
68
                swingManager.getEditingContext(view.getMapControl());
69
            return editingContext.isServiceCompatible(action);
70
        }
71
        return false;
72
    }
73

  
74
    public boolean isVisible() {
75
        IView view = getActiveView();
76
        FLyrVect activeLayer = getActiveLayer(view);
77
        return ((view != null) && (activeLayer != null) && activeLayer
78
            .isEditing());
79
    }
80

  
81
    @Override
82
    public boolean isVisible(String action) {
83
        return this.isVisible();
84
    }
85

  
86
    @Override
87
    public boolean canQueryByAction() {
88
        return true;
89
    }
90

  
91
    private IView getActiveView() {
92

  
93
        ApplicationManager application = ApplicationLocator.getManager();
94
        IView view = (IView) application.getActiveComponent(ViewDocument.class);
95
        return view;
96
    }
97

  
98
    private FLyrVect getActiveLayer(IView view) {
99
        if (view != null) {
100
            ViewDocument viewDocument = view.getViewDocument();
101
            FLayer[] actives =
102
                viewDocument.getMapContext().getLayers().getActives();
103

  
104
            if ((actives.length == 1) && (actives[0] instanceof FLyrVect)) {
105
                return (FLyrVect) actives[0];
106
            }
107
        }
108
        return null;
109
    }
110
}
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/java/org/gvsig/vectorediting/app/mainplugin/EditingExtension.java
1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright ? 2007-2014 gvSIG Association
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.vectorediting.app.mainplugin;
25

  
26
import java.io.File;
27
import java.util.ArrayList;
28
import java.util.List;
29
import javax.swing.JOptionPane;
30
import org.apache.commons.io.FileUtils;
31

  
32
import org.slf4j.Logger;
33
import org.slf4j.LoggerFactory;
34

  
35
import org.gvsig.andami.IconThemeHelper;
36
import org.gvsig.andami.PluginServices;
37
import org.gvsig.andami.PluginsLocator;
38
import org.gvsig.andami.actioninfo.ActionInfo;
39
import org.gvsig.andami.plugins.Extension;
40
import org.gvsig.andami.plugins.IExtension;
41
import org.gvsig.andami.plugins.status.IExtensionStatus;
42
import org.gvsig.andami.plugins.status.IUnsavedData;
43
import org.gvsig.andami.plugins.status.UnsavedData;
44
import org.gvsig.app.ApplicationLocator;
45
import org.gvsig.app.ApplicationManager;
46
import org.gvsig.app.project.Project;
47
import org.gvsig.app.project.documents.Document;
48
import org.gvsig.app.project.documents.view.ViewDocument;
49
import org.gvsig.app.project.documents.view.ViewManager;
50
import org.gvsig.app.project.documents.view.gui.DefaultViewPanel;
51
import org.gvsig.app.project.documents.view.gui.IView;
52
import org.gvsig.app.project.documents.view.toc.actions.EndEditingTocMenuEntry;
53
import org.gvsig.app.project.documents.view.toc.actions.StartEditingTocMenuEntry;
54
import org.gvsig.app.project.documents.view.toolListeners.StatusBarListener;
55
import org.gvsig.fmap.dal.exception.DataException;
56
import org.gvsig.fmap.dal.feature.FeatureStore;
57
import org.gvsig.fmap.mapcontext.MapContext;
58
import org.gvsig.fmap.mapcontext.MapContextLocator;
59
import org.gvsig.fmap.mapcontext.layers.FLayer;
60
import org.gvsig.fmap.mapcontext.layers.FLayers;
61
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
62
import org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol;
63
import org.gvsig.fmap.mapcontext.rendering.symbols.SymbolException;
64
import org.gvsig.fmap.mapcontext.rendering.symbols.SymbolManager;
65
import org.gvsig.fmap.mapcontrol.MapControl;
66
import org.gvsig.fmap.mapcontrol.MapControlCreationListener;
67
import org.gvsig.fmap.mapcontrol.MapControlLocator;
68
import org.gvsig.fmap.mapcontrol.tools.Behavior.Behavior;
69
import org.gvsig.fmap.mapcontrol.tools.Behavior.MouseMovementBehavior;
70
import org.gvsig.tools.ToolsLocator;
71
import org.gvsig.tools.extensionpoint.ExtensionPoint;
72
import org.gvsig.tools.i18n.I18nManager;
73
import org.gvsig.tools.observer.Notification;
74
import org.gvsig.tools.observer.Observable;
75
import org.gvsig.tools.observer.Observer;
76
import org.gvsig.tools.swing.api.windowmanager.WindowManager.MODE;
77
import org.gvsig.utils.swing.threads.IMonitorableTask;
78
import org.gvsig.vectorediting.lib.spi.EditingProviderLocator;
79
import org.gvsig.vectorediting.lib.spi.EditingProviderManager;
80
import org.gvsig.vectorediting.swing.api.EditingContext;
81
import org.gvsig.vectorediting.swing.api.EditingSwingLocator;
82
import org.gvsig.vectorediting.swing.api.EditingSwingManager;
83

  
84
public class EditingExtension extends Extension implements Observer {
85

  
86
    private static final Logger logger = LoggerFactory.getLogger(EditingExtension.class);
87

  
88
    @Override
89
    public void execute(String actionCommand) {
90

  
91
        ApplicationManager application = ApplicationLocator.getManager();
92
        IView view = getActiveView();
93
        EditingSwingManager swingManager = EditingSwingLocator.getSwingManager();
94

  
95
        if (view != null) {
96

  
97
            FLyrVect layer = getActiveLayer(view);
98
            MapControl mapControl = view.getMapControl();
99
            EditingContext editingContext = swingManager.getEditingContext(mapControl);
100

  
101
            if ("start-editing".equals(actionCommand)) {
102

  
103
                if (canBeEdited(layer)) {
104
                    if( !mapControl.getProjection().equals(layer.getProjection()) ) {
105
                        String msg = "_The_layer_is_reproyected_on_the_fly"
106
                                + "_Not_all_editing_tools_work_properly"
107
                                + "_When_you_finish_editing"
108
                                + "_will_only_export_the_changes_to_another_layer";
109
                        application.messageDialog(msg, "_Warning", JOptionPane.WARNING_MESSAGE);
110
                    }
111
                    editingContext.beginEdition(layer);
112
                    editingContext.addObserver(this);
113
                    ApplicationLocator.getManager().refreshMenusAndToolBars();
114
                }
115

  
116
            } else if ("end-editing".equals(actionCommand)) {
117

  
118
                if ((layer != null) && layer.isEditing()) {
119
                    editingContext.endEdition(layer);
120
                    ApplicationLocator.getManager().refreshMenusAndToolBars();
121
                }
122

  
123
            }
124
        }
125
    }
126

  
127
    @Override
128
    public void initialize() {
129
        registerIcons();
130

  
131
        // Disable default view panel console. Uses editing context console.
132
        DefaultViewPanel.setDisableConsole(true);
133

  
134
        // Adding TOC menu entry
135
        ExtensionPoint exPoint = ToolsLocator.getExtensionPointManager().add(
136
                "View_TocActions", "");
137
        exPoint.append(
138
            StartEditingTocMenuEntry.EXTENSION_POINT_NAME,
139
                "TOC popup menu to start vector layer's editing",
140
                new StartEditingTocMenuEntry());
141
        exPoint.append(
142
            EndEditingTocMenuEntry.EXTENSION_POINT_NAME,
143
                "TOC popup menu to end vector layer's editing",
144
                new EndEditingTocMenuEntry());
145
    }
146

  
147

  
148
    private void registerIcons() {
149
        IconThemeHelper.registerIcon("vectorediting", "vector-editing", this);
150
    }
151

  
152
    @Override
153
    public void postInitialize() {
154
        super.postInitialize();
155
        registerSymbols();
156

  
157
        MapControlLocator.getMapControlManager().addMapControlCreationListener(new MapControlCreationListener() {
158

  
159
            @Override
160
            public MapControl mapControlCreated(MapControl mapControl) {
161
                EditingContext editingContext = EditingSwingLocator.getSwingManager().getEditingContext(mapControl);
162
                StatusBarListener sbl = new StatusBarListener(mapControl);
163
                editingContext.setDefaultBehaviors(new Behavior[] { new MouseMovementBehavior(sbl) });
164
                editingContext.addObserver(EditingExtension.this);
165
                ApplicationLocator.getManager().refreshMenusAndToolBars();
166
                return mapControl;
167
            }
168
        });
169
    }
170

  
171
    /**
172
     * Register all symbols in the plugin symbols folder in the providerManager.
173
     * The description of the symbols must be unique because the key used for registration is the proper description of the symbol.
174
     *
175
     */
176
    private void registerSymbols() {
177

  
178
        EditingProviderManager providerManager = EditingProviderLocator.getProviderManager();
179

  
180
        SymbolManager symbolManager = MapContextLocator.getSymbolManager();
181
        File symbolsFolder = FileUtils.getFile(getPlugin().getPluginDirectory(), "symbols","editing");
182
        ISymbol[] symbols = null;
183
        try {
184
            symbols = symbolManager.loadSymbols(symbolsFolder);
185
        } catch (SymbolException e) {
186
            logger.warn("No symbols loaded from "+symbolsFolder.getAbsolutePath(), e);
187
        }
188

  
189
        if (symbols != null) {
190
            for (ISymbol symbol : symbols) {
191
                String description = symbol.getDescription();
192
                providerManager.registerSymbol(description, symbol);
193
            }
194
        }
195
    }
196

  
197
    @Override
198
    public boolean isEnabled() {
199
        return true;
200
    }
201

  
202
    @Override
203
    public boolean isVisible() {
204
        return true;
205
    }
206

  
207
    @Override
208
    public boolean isVisible(String action) {
209
        IView view = getActiveView();
210
        FLyrVect activeLayer = getActiveLayer(view);
211

  
212
        if ("start-editing".equals(action)) {
213
            return ((view != null) && (activeLayer != null) && !activeLayer
214
                .isEditing());
215

  
216
        } else {
217
            return ((view != null) && (activeLayer != null) && activeLayer
218
                .isEditing());
219

  
220
        }
221
    }
222

  
223
    @Override
224
    public boolean isEnabled(String action) {
225

  
226
        IView vista = getActiveView();
227
        FLyrVect activeLayer = getActiveLayer(vista);
228

  
229
        if ("start-editing".equals(action)) {
230
            return (canBeEdited(activeLayer));
231

  
232
        } else if ("end-editing".equals(action)) {
233
            return activeLayer.isEditing();
234

  
235
        }
236

  
237
        return false;
238

  
239
    }
240

  
241
    @Override
242
    public boolean canQueryByAction() {
243
        return true;
244
    }
245

  
246
    private IView getActiveView() {
247
        ApplicationManager application = ApplicationLocator.getManager();
248
        IView view = (IView) application.getActiveComponent(ViewDocument.class);
249
        return view;
250
    }
251

  
252
    private boolean canBeEdited(FLyrVect layer) {
253
        if (layer != null && layer.isAvailable()) {
254

  
255
            boolean isNotTransformed =
256
                layer.getFeatureStore().getTransforms().isEmpty();
257

  
258
            return isNotTransformed && !layer.isEditing();
259
        }
260

  
261
        return false;
262
    }
263

  
264
    private FLyrVect getActiveLayer(IView vista) {
265
        if (vista != null) {
266
            ViewDocument viewDocument = vista.getViewDocument();
267
            FLayer[] actives =
268
                viewDocument.getMapContext().getLayers().getActives();
269

  
270
            if ((actives.length == 1) && (actives[0] instanceof FLyrVect)) {
271
                return (FLyrVect) actives[0];
272
            }
273
        }
274
        return null;
275
    }
276

  
277
    @Override
278
    public void update(Observable observable, Object notification) {
279

  
280
        if (notification instanceof Notification){
281
            ApplicationManager appManager = ApplicationLocator.getManager();
282
            Notification n = (Notification)notification;
283
            if (n.isOfType(EditingContext.CHANGE_SELECTED_TOOL_NOTIFICATION)){
284
                String name = (String)n.getValue();
285
                logger.trace("Changed selected tool to '{}'", name);
286
                PluginServices.getMainFrame().setSelectedTool(name);
287
                appManager.refreshMenusAndToolBars();
288

  
289
            } else if (n.isOfType(EditingContext.EXPORT_LAYER_NOTIFICATION)){
290
                exportLayer((FLyrVect)(n.getValue()));
291

  
292
            } else if (n.isOfType(EditingContext.REFRESH_TOOLS_NOTIFICATION)){
293
                appManager.refreshMenusAndToolBars();
294
            }
295
        }
296
    }
297

  
298
    private void exportLayer(FLyrVect layer)  {
299
        ApplicationManager appManager = ApplicationLocator.getManager();
300
        I18nManager i18nManager = ToolsLocator.getI18nManager();
301
        ActionInfo action = PluginsLocator.getActionInfoManager().getAction("layer-exportto");
302
        action.execute(new Object[] { layer, MODE.toInteger(MODE.DIALOG) });
303
        String msg = "_Do_you_want_to_finish_editing_If_not_exported_the_data_the_changes_will_be_lost";
304
        if( appManager.confirmDialog(
305
                i18nManager.getTranslation(msg),
306
                i18nManager.getTranslation("end_editing"),
307
                JOptionPane.YES_NO_OPTION,
308
                JOptionPane.QUESTION_MESSAGE)==JOptionPane.YES_OPTION ) {
309
            try {
310
                layer.getFeatureStore().cancelEditing();
311
            } catch (Exception e) {
312
                logger.warn("Can't abort editing of layer '"+layer.getName()+"'.",e);
313
                msg = "_Cant_finish_editing_See_the_error_log_for_more_information";
314
                appManager.messageDialog(msg, "_Warning", JOptionPane.WARNING_MESSAGE);
315
            }
316
        }
317
    }
318

  
319
    private List<FLyrVect> getEditedLayers(){
320
        ApplicationManager application = ApplicationLocator.getManager();
321
        List<FLyrVect> editedLayers = new ArrayList<>();
322

  
323
        Project project = application.getCurrentProject();
324
        for( Document document : project.getDocuments(ViewManager.TYPENAME) ) {
325
            ViewDocument view = (ViewDocument) document;
326
            MapContext mapContext = view.getMapContext();
327
            if (mapContext != null) {
328
                FLayers layers = mapContext.getLayers();
329
                for (int j = 0; j < layers.getLayersCount(); j++) {
330
                    FLayer lyr = layers.getLayer(j);
331
                    if (lyr instanceof FLyrVect) {
332
                        FLyrVect layerVect = (FLyrVect) lyr;
333
                        if (layerVect.isEditing()) {
334
                            editedLayers.add(layerVect);
335
                        }
336
                    }
337
                }
338
            }
339
        }
340
        return editedLayers;
341
    }
342

  
343
    private List<IUnsavedData> getUnsavedData(List<FLyrVect> editedLayers){
344
        List<IUnsavedData> unsavedData = new ArrayList<>();
345
        for (FLyrVect editedLayer : editedLayers) {
346
            IUnsavedData unsavedDataLayer = new UnsavedLayer(this, editedLayer);
347
            unsavedData.add(unsavedDataLayer);
348
        }
349
        return unsavedData;
350

  
351
    }
352

  
353
    private static class UnsavedLayer extends UnsavedData {
354
        private final FLyrVect layer;
355

  
356
        public UnsavedLayer(IExtension extension, FLyrVect layer) {
357
            super(extension);
358
            this.layer = layer;
359
        }
360

  
361
        @Override
362
        public String getDescription() {
363
            return layer.getName();
364
        }
365

  
366
        @Override
367
        public String getResourceName() {
368
            return layer.getFeatureStore().getFullName();
369
        }
370

  
371
        @Override
372
        public boolean saveData() {
373
            FeatureStore featureStore = layer.getFeatureStore();
374
            if(featureStore.isEditing()){
375
                try {
376
                    featureStore.finishEditing();
377
                    return true;
378
                } catch (DataException e) {
379
                    throw new RuntimeException(e);
380
                }
381
            }
382
            return true;
383
        }
384
    }
385

  
386
    @Override
387
    public IExtensionStatus getStatus() {
388
        List<FLyrVect> editedLayers = getEditedLayers();
389
        final List<IUnsavedData> unsavedData = getUnsavedData(editedLayers);
390

  
391
        return new IExtensionStatus() {
392

  
393
            @Override
394
            public boolean hasUnsavedData() {
395
                if(unsavedData == null){
396
                    return false;
397
                }
398
                return !unsavedData.isEmpty();
399
            }
400

  
401
            @Override
402
            public boolean hasRunningProcesses() {
403
                return false;
404
            }
405

  
406
            @Override
407
            public IUnsavedData[] getUnsavedData() {
408
                if(unsavedData == null){
409
                    return null;
410
                }
411
                return unsavedData.toArray(new IUnsavedData[0]);
412
            }
413

  
414
            @Override
415
            public IMonitorableTask[] getRunningProcesses() {
416
                return null;
417
            }
418
        };
419
    }
420
}
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/resources-plugin/i18n/text.properties
1
start_editing = Comenzar edici\u00f3n
2
end_editing = Terminar edici\u00f3n
3
insert_point = Insertar punto
4
insert_multipoint = Insertar MultiPunto
5
insert_line = Insertar l\u00ednea
6
insert_arc = Insertar arco
7
insert_circle_cr = Insertar c\u00edrculo (centro y radio)
8
insert_circumference_cr = Insertar circunferencia (centro y radio)
9
insert_circle_3p = Insertar c\u00edrculo (tres puntos)
10
insert_circumference_3p = Insertar circunferencia (tres puntos)
11
insert_ellipse = Insertar elipse
12
insert_filled_ellipse = Insertar elipse rellena
13
insert_polyline = Insertar polil\u00ednea
14
insert_polygon = Insertar pol\u00edgono
15
insert_regular_polygon = Insertar pol\u00edgono regular
16
insert_filled_regular_polygon = Insertar pol\u00edgono regular relleno
17
insert_rectangle = Insertar rect\u00e1ngulo
18
insert_filled_rectangle =  Insertar rect\u00e1ngulo relleno
19
insert_spline= Insertar curva spline
20
insert_filled_spline = Insertar curva spline rellena
21
insert_rectangular_matrix = Matriz rectangular de geometr\u00edas
22
insert_polar_matrix = Matriz polar de geometr\u00edas
23
modify_internal_polygon = Pol\u00edgono interno
24
modify_explode_geometry = Descomponer geometr\u00eda
25
modify_move = Mover geometr\u00eda
26
modify_rotate = Rotar geometr\u00eda
27
modify_duplicate = Duplicar geometr\u00eda
28
modify_split_line = Partir linea por un punto
29
modify_split = Partir geometr\u00eda
30
modify_scale = Escalar geometr\u00eda
31
modify_simplify = Simplificar geometr\u00eda
32
modify_join = Unir geometr\u00edas
33
insert_autopolygon = Insertar autopol\u00edgono
34
modify_stretch = Estirar geometr\u00eda
35
modify_extend_line = Alargar l\u00ednea hasta objeto
36
modify_trim_line = Recortar l\u00ednea por un objeto
37
modify_edit_vertex = Editar v\u00e9rtice
38
modify_convert_to_polyline= Convertir a polil\u00ednea
39
modify_reverse_direction=Invertir direcci\u00f3n
40
uniqueselection = Seleccione una \u00fanica geometr\u00eda
41
selectvertex = Seleccione un v\u00e9rtice
42
new_position = Nueva posici\u00f3n
43
insert_vertex = Insertar v\u00e9rtice
44
remove_vertex = Eliminar v\u00e9rtice
45
selection=Selecci\u00f3n
46
invalid_option=Opci\u00f3n no v\u00e1lida
47
center=Centro
48
radius=Radio
49
save_changes_performed=Guardar cambios realizados
50
discard= Descartar
51
discard_and_loose_changes= Descartar cambios y perder los cambios
52
continue= Continuar
53
do_not_save_yet_stay_in_editing_mode= No guardar los cambios y seguir en modo edici\u00f3n
54
indicate_new_point= Indique un nuevo punto
55
arc_mode = Modo arco
56
line_mode = Modo l\u00ednea
57
select_new_tool= Seleccione una nueva herramienta
58
draw_geometry_to_internal_polygon= Seleccione una herramienta para dibujar un pol\u00edgono interno
59
draw_geometry_to_autopolygon = Seleccione una herramienta para dibujar un autopol\u00edgono
60
draw_geometry_to_split = Seleccione una herramienta para partir las geometr\u00edas
61
draw_geometry_to_select_vertex = Seleccione una herramienta poligonal para seleccionar v\u00e9rtices
62
save = Guardar
63
discard = Descartar
64
continue = Continuar
65
export = Exportar
66
ask_save_layer = \u00bfDesea guardar la capa
67
can_not_write_layer =  No existe writer para este formato de capa o no tiene permisos de escritura.\n\u00bfQu\u00e9 desea hacer?
68
save_changes_performed = Guardar cambios realizados
69
discard_and_loose_changes = Descartar y perder los cambios
70
export_to_another_format = Exportar a otro formato
71
do_not_save_yet_stay_in_editing_mode = No guardar los cambios y seguir editando
72
first_point= Primer punto
73
second_point= Segundo punto
74
third_point= Tercer punto
75
start_point= Punto de inicio
76
middle_point= Punto medio
77
end_point= Punto final
78
first_point_A_axis = Primer punto del eje A
79
second_point_A_axis = Segundo punto del eje A
80
length_of_B_axis= Longitud del eje B
81
inscribed = Inscrito
82
circumscribed = Circunscrito
83
sides_of_regular_polygon = Indique los lados del poligono regular
84
center_of_regular_polygon = Centro del pol\u00edguno regular
85
point_of_circle = Punto del c\u00edrculo del pol\u00edgono
86
sides = Lados
87
key_arc_mode = A
88
key_line_mode = L
89
key_close = C
90
key_finish = F
91
key_inscribed = I
92
key_circumscribed = C
93
key_remove_last_point = Q
94
remove_last_point = Quitar \u00faltimo punto
95
close_polyline = Cerrar polil\u00ednea
96
close_spline = Cerrar curva spline
97
new_point = Nuevo punto
98
new_value = Nuevo valor
99
finished = finalizada
100
center_of_rotation = Centro de rotaci\u00f3n
101
angle_of_rotation = \u00c1ngulo de rotaci\u00f3n (grados)
102
origin_point = Origen
103
scale_factor_or_reference_point = Factor de escala o punto de referencia
104
second_scale_point = Segundo punto para la escala
105
tolerance = Tolerancia
106
line_to_extend = Seleccione l\u00ednea para alargar
107
line_to_trim = Seleccione l\u00ednea para partir
108
modify_smooth_line = Suavizar l\u00ednea
109
intermediate_steps_1_9 = Pasos intermedios [1,9]
110
algorithm = algoritmo
111
natural_cubic_splines = Splines c\u00fabicos naturales
112
bezier_curves = Curvas B\u00e9zier
113
b_splines = B-splines
114
key_natural_cubic_splines = 1
115
key_bezier_curves = 2
116
key_b_splines = 3
117
columns_number = N\u00famero de columnas
118
rows_number = N\u00famero de filas
119
distance_between_columns = Distancia entre columnas
120
distance_between_rows = Distancia entre filas
121
key_yes= S
122
key_no = N
123
yes = Si
124
no = No
125
number_of_total_elements = N\u00famero de elementos totales
126
rotate_elements = Rotar elementos?
127
angle_between_elements = Angulo entre elementos
128
modify = modificar
129
insert = insertar
130
Modify = Modificar
131
Insert = Insertar
132
_The_layer_is_reproyected_on_the_fly_Not_all_editing_tools_work_properly_When_you_finish_editing_will_only_export_the_changes_to_another_layer=La capa esta reproyectada el vuelo.\nNo todas las herramientas de edici\u00f3n funcionar\u00e1n correctamente.\nCuando termine edici\u00f3n solo podra exportar los cambios a otra capa.
133
_Do_you_want_to_finish_editing_If_not_exported_the_data_the_changes_will_be_lost=\u00bf Desea terminar la edici\u00f3n ?\nSi no ha exportado los datos y termina edici\u00f3n, los cambios realizados se perder\u00e1n.
134
_Cant_finish_editing_See_the_error_log_for_more_information=No se puede terminar la edici\u00f3n.\nConsulte el registro de errores para mas informaci\u00f3n.
135

  
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/resources-plugin/i18n/text_en.properties
1
start_editing = Start editing
2
end_editing = End editing
3
insert_point = Insert point
4
insert_multipoint = Insert MultiPoint
5
insert_line = Insert line
6
insert_arc = Insert arc
7
insert_circle_cr=Insert circle (center & radius)
8
insert_circumference_cr=Insert circumference (center & radius)
9
insert_circle_3p = Insert circle (three point)
10
insert_circumference_3p = Insert circumference (three points)
11
insert_ellipse = Insert ellipse
12
insert_filled_ellipse = Insert filled ellipse
13
insert_polyline = Insert polyline
14
insert_polygon = Insert polygon
15
insert_regular_polygon = Insert regular polygon
16
insert_filled_regular_polygon = Insert filled regular polygon
17
insert_rectangle = Insert rectangle
18
insert_filled_rectangle = Insert filled rectangle
19
insert_spline= Insert spline curve
20
insert_filled_spline = Insert filled spline
21
insert_rectangular_matrix = Rectangular matrix of geometries
22
insert_polar_matrix = Polar matrix of geometries
23
modify_internal_polygon = Internal polygon
24
modify_explode_geometry = Explode geometry
25
modify_move = Move geometry
26
modify_rotate = Rotate geometry
27
modify_duplicate = Duplicate geometry
28
modify_split_line = Split line open by a point
29
modify_split = Split geometry
30
modify_scale = Scale geometry
31
modify_simplify = Simplify geometry
32
insert_autopolygon = Insert autopolygon
33
modify_join = Join geometries
34
modify_stretch = Stretch geometry
35
modify_extend_line = Extend line to object
36
modify_trim_line = Trim line by object
37
modify_edit_vertex = Edit vertex
38
modify_convert_to_polyline= Convert to polyline
39
modify_reverse_direction=Reverse direction
40
uniqueselection = Select only one geometry
41
selectvertex = Select a vertex
42
new_position = New position
43
insert_vertex = Insertr vertex
44
remove_vertex = Remove vertex
45
selection=Selection
46
invalid_option=Invalid option
47
center=Center
48
radius=Radius
49
save_changes_performed=Save changed performed
50
discard= Discard
51
discard_and_loose_changes= Discard changes and loose changes
52
continue= Continue
53
do_not_save_yet_stay_in_editing_mode= Don't save changes and continue editing
54
indicate_new_point= Indicate new point
55
arc_mode = Arc mode
56
line_mode = Line mode
57
select_new_tool= Select a new tool
58
draw_geometry_to_interal_polygon= Select tool to draw a internal polygon
59
draw_geometry_to_autopolygon = Select tool to draw an autopolygon
60
draw_geometry_to_split = Select tool to split selected geometries
61
draw_geometry_to_select_vertex = Select a polygonal tool to select vertex
62
save = Save
63
discard = Discard
64
continue = Continue
65
export = Export
66
ask_save_layer = Would you really like to save the layer
67
can_not_write_layer =  There are not writer for this layer format or you don't have write permissions.\nWhat do you want to do?
68
save_changes_performed = Save changed performed
69
discard_and_loose_changes = Discard and loose changes
70
export_to_another_format = Export to another format
71
do_not_save_yet_stay_in_editing_mode = Do not save changes and continue editing
72
first_point= First point
73
second_point= Second point
74
start_point= Start point
75
middle_point= Middle point
76
third_point= Third point
77
end_point= End point
78
first_point_A_axis = First point of A axis
79
second_point_A_axis = Second point of A axis
80
length_of_B_axis= Length of B axis
81
inscribed = Inscribed
82
circumscribed = Circumscribed
83
sides_of_regular_polygon = Indicate sides of regular polygon
84
center_of_regular_polygon = Center of regular polygon
85
point_of_circle = Point of circle of  polygon
86
sides = Sides
87
key_arc_mode = A
88
key_line_mode = L
89
key_close = C
90
key_finish = F
91
key_inscribed = I
92
key_circumscribed = C
93
key_remove_last_point = R
94
remove_last_point = Remove last point
95
close_polyline = Close polyline
96
close_spline = Close spline curve
97
new_point = New point
98
new_value = New value
99
finished = finished
100
center_of_rotation=Center of rotation
101
angle_of_rotation=Angle of rotation (degree)
102
origin_point = Origin
103
scale_factor_or_reference_point = Scale factor or reference point
104
second_scale_point = Second scale point
105
tolerance = Tolerance
106
line_to_extend = Select line to extend
107
line_to_trim = Select line to trim
108
modify_smooth_line = Smooth line
109
intermediate_steps_1_9 = Intermediate steps [1,9]
110
algorithm = algorithm
111
natural_cubic_splines = Natural cubic splines
112
bezier_curves = Bezier curves
113
b_splines = B-splines
114
key_natural_cubic_splines = 1
115
key_bezier_curves = 2
116
key_b_splines = 3
117
columns_number = Number of columns
118
rows_number = Number of rows
119
distance_between_columns = Distance between columns
120
distance_between_rows = Distance between rows
121
key_yes= Y
122
key_no = N
123
yes = Yes
124
no = No
125
number_of_total_elements = Number of total elements
126
rotate_elements = Rotate elements?
127
angle_between_elements = Angle between elements
128
modify = modify
129
insert = insert
130
Modify = Modify
131
Insert = Insert
132
_The_layer_is_reproyected_on_the_fly_Not_all_editing_tools_work_properly_When_you_finish_editing_will_only_export_the_changes_to_another_layer=The layer is reproyected on the fly.\nNot all editing tools work properly.\nWhen you finish editing will only export the changes to another layer will be allowed.
133
_Do_you_want_to_finish_editing_If_not_exported_the_data_the_changes_will_be_lost=Do you want to finish editing?\nIf not exported the data and finish editing, the changes will be lost.
134
_Cant_finish_editing_See_the_error_log_for_more_information=Unable to finish editing.\nSee the error log for more information
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.38/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/resources-plugin/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<!-- gvSIG. Desktop Geographic Information System. Copyright (C) 2007-2013 gvSIG
3
  Association. This program is free software; you can redistribute it and/or modify
4
  it under the terms of the GNU General Public License as published by the Free Software
5
  Foundation; either version 3 of the License, or (at your option) any later version.
6
  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
7
  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
8
  PURPOSE. See the GNU General Public License for more details. You should have received
9
  a copy of the GNU General Public License along with this program; if not, write to
10
  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
11
  USA. For any additional information, do not hesitate to contact us at info AT gvsig.com,
12
  or visit our website www.gvsig.com. -->
13
<plugin-config>
14
  <depends plugin-name="org.gvsig.app.mainplugin" />
15
  <resourceBundle name="text" />
16
  <libraries library-dir="lib" />
17
  <extensions>
18
    <extension class-name="org.gvsig.vectorediting.app.mainplugin.EditingExtension"
19
      description="" active="true" priority="1">
20

  
21
      <action name="start-editing" label="start_editing" tooltip="start_editing"
22
        position="600800000" action-command="start-editing" icon="vector-editing"
23
        accelerator="" />
24

  
25
      <action name="end-editing" label="end_editing" tooltip="end_editing"
26
        position="600800000" action-command="end-editing" icon="vector-editing"
27
        accelerator="" />
28

  
29
      <menu text="Layer/start_editing" name="start-editing" />
30
      <menu text="Layer/end_editing" name="end-editing" />
31

  
32
      <tool-bar name="vector_editing" position="600800000">
33
        <action-tool name="start-editing" />
34
        <action-tool name="end-editing" />
35
      </tool-bar>
36

  
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff