Revision 312

View differences:

trunk/applications/appgvSIG/A.txt
1
 ============================================================================
2
                   The Apache Software License, Version 1.1
3
 ============================================================================
4
 
5
 Copyright (C) 2000 The Apache Software Foundation. All rights reserved.
6
 
7
 Redistribution and use in source and binary forms, with or without modifica-
8
 tion, are permitted provided that the following conditions are met:
9
 
10
 1. Redistributions of  source code must  retain the above copyright  notice,
11
    this list of conditions and the following disclaimer.
12
 
13
 2. Redistributions in binary form must reproduce the above copyright notice,
14
    this list of conditions and the following disclaimer in the documentation
15
    and/or other materials provided with the distribution.
16
 
17
 3. The end-user documentation included with the redistribution, if any, must
18
    include  the following  acknowledgment:  "This product includes  software
19
    developed  by the  Apache Software Foundation  (http://www.apache.org/)."
20
    Alternately, this  acknowledgment may  appear in the software itself,  if
21
    and wherever such third-party acknowledgments normally appear.
22
 
23
 4. The names "Batik" and  "Apache Software Foundation"  must not be  used to
24
    endorse  or promote  products derived  from this  software without  prior
25
    written permission. For written permission, please contact
26
    apache@apache.org.
27
 
28
 5. Products  derived from this software may not  be called "Apache", nor may
29
    "Apache" appear  in their name,  without prior written permission  of the
30
    Apache Software Foundation.
31
 
32
 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
33
 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
34
 FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
35
 APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
36
 INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
37
 DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
38
 OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
39
 ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
40
 (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
41
 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42
 
43
 This software  consists of voluntary contributions made  by many individuals
44
 on  behalf  of the Apache Software  Foundation. For more  information on the
45
 Apache Software Foundation, please see <http://www.apache.org/>.
0 46

  
trunk/applications/appgvSIG/build.xml
1
<project name="Generar extension en MDIAPP" default="dist" basedir=".">
2
    <description>
3
        Instala el plugin
4
    </description>
5
  <!-- set global properties for this build -->
6
  <property name="buildDate" value="20041018"/>
7
  <property name="version" value="0.2.0 beta ${buildDate}"/>
8
  <property name="src" location="src"/>
9
  <property name="build" location="bin"/>
10
  <property name="dist"  location="dist"/>
11
  <property name="plugin" value="com.iver.cit.gvsig"/>
12
  <property name="fmapdir" value="../FMAP 03"/>
13
  <property name="extensionDir" location="../mdiApp produccion/extensiones"/>
14
  <property name="makeZip" location="makeZip"/>
15
  <property name="zipName" value="gvSIG-${version}"/>
16

  
17
  <target name="init">
18
    <!-- Create the time stamp -->
19
    <tstamp/>
20
    <!-- Create the build directory structure used by compile -->
21
    <mkdir dir="${build}"/>
22
  	<!-- Creamos un fichero con el timeStamp para que lo lea el FPanelAbout -->
23
  	<buildnumber/> 
24
  	
25
  </target>
26
	
27

  
28
  <target name="compile" depends="init"
29
        description="compile the source " >
30
    <!-- Compile the java code from ${src} into ${build} 
31
    <javac srcdir="${src}" destdir="${build}"/>-->
32
  </target>
33

  
34
  <target name="distSinFuentes" depends="compile"
35
        description="generate the distribution" >
36
    <!-- Create the distribution directory -->
37
    <mkdir dir="${dist}"/>
38

  
39
    <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
40
    <jar jarfile="${dist}/fmap.jar" basedir="${fmapdir}/bin"/>
41
    <jar jarfile="${dist}/${plugin}.jar" basedir="${build}"/>
42
    <copy file="config/config.xml" todir="${dist}"/>
43
    <copy file="config/about.htm" todir="${dist}"/>  	
44
    <copy file="config/plugin.dtd" todir="${dist}"/>
45
    <copy file="build.number" todir="${dist}"/>
46
    <copy todir="${dist}">
47
    	<fileset dir="." includes="text*.properties"/>
48
    </copy>
49
    <copy todir="${dist}/images">
50
    	<fileset dir="images/" includes="*"/>
51
    </copy>
52
    <copy todir="${dist}">
53
    	<fileset dir="./lib" includes="*.jar,*.zip"/>
54
    </copy>
55
    <copy todir="${dist}">
56
    	<fileset dir="../FMAP/lib" includes="*.jar"/>
57
    </copy>
58
    <copy todir="${dist}">
59
    	<fileset dir="./config" 
60
    		includes="mapping.xml"/>
61
    </copy>
62

  
63
    <move todir="${extensionDir}/${plugin}/">
64
    	<fileset dir="${dist}" includes="**/**"/>
65
    </move>
66
  </target>
67

  
68
  <target name="dist" depends="compile"
69
        description="generate the distribution" >
70
    <!-- Create the distribution directory -->
71
    <mkdir dir="${dist}"/>
72

  
73
    <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
74
    <copy todir="${build}">
75
    	<fileset dir="${src}" includes="**"/>
76
    </copy>
77
    <jar jarfile="${dist}/fmap.jar" basedir="${fmapdir}/bin"/>
78
    <jar jarfile="${dist}/${plugin}.jar" basedir="${build}"/>
79
    <copy file="config/config.xml" todir="${dist}"/>
80
    <copy file="config/about.htm" todir="${dist}"/>  	
81
    <copy file="config/plugin.dtd" todir="${dist}"/>
82
    <copy file="build.number" todir="${dist}"/>
83
    <copy todir="${dist}">
84
    	<fileset dir="." includes="text*.properties"/>
85
    </copy>
86
    <copy todir="${dist}/images">
87
    	<fileset dir="images/" includes="*"/>
88
    </copy>
89
    <copy todir="${dist}">
90
    	<fileset dir="./lib" includes="*.jar,*.zip"/>
91
    </copy>
92
    <copy todir="${dist}">
93
    	<fileset dir="../FMAP/lib" includes="*.jar"/>
94
    </copy>
95
    <copy todir="${dist}">
96
    	<fileset dir="./config" 
97
    		includes="mapping.xml"/>
98
    </copy>
99

  
100
    <move todir="${extensionDir}/${plugin}/">
101
    	<fileset dir="${dist}" includes="**/**"/>
102
    </move>
103
  </target>
104

  
105
  <target name="makeZip"
106
  	description="Genera un zip con todo lo necesario para ejecutar gvSIG"
107
  	depends="dist">
108
    <!-- Create the distribution directory -->
109
    <mkdir dir="${dist}/${zipName}"/>
110
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/bin" manifest="../mdiApp/manifest.mf"/>
111
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/" includes="images/*" update="true"/>
112
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/" includes="plugin.dtd" update="true"/>
113
    <copy todir="${dist}/${zipName}">
114
		<fileset dir="../mdiApp">
115
			<include name="extensiones/${plugin}/**"/>
116
			<include name="extensiones/plugin.*"/>
117
			<include name="plugin.*"/>
118
		</fileset>  
119
		<!-- fileset dir="${dist}" includes="gvSIG.jar"/ -->
120
		<fileset dir="../mdiApp">
121
			<include name="lib/**"/>
122
		</fileset>  
123
		<fileset dir="distFiles" includes="**/**"/>
124
    </copy>
125
	<zip zipfile="${zipName}.zip">
126
		<fileset dir="${dist}">
127
			<include name="**/**"/>
128
		</fileset>
129
	</zip>
130
    <delete dir="${dist}"/>
131
  </target>
132

  
133
  <target name="clean"
134
        description="clean up" >
135
    <!-- Delete the ${build} and ${dist} directory trees -->
136
    <delete dir="${build}"/>
137
    <delete dir="${dist}"/>
138
  </target>
139
</project>
140

  
0 141

  
trunk/applications/appgvSIG/.classpath
1
<?xml version="1.0" encoding="UTF-8"?>
2
<classpath>
3
	<classpathentry kind="src" path="src"/>
4
	<classpathentry kind="lib" path="lib/JimiProClasses.zip"/>
5
	<classpathentry kind="lib" path="lib/castor-0.9.5.3-xml.jar"/>
6
	<classpathentry kind="lib" path="lib/xercesImpl.jar"/>
7
	<classpathentry kind="lib" path="lib/batik-awt-util.jar"/>
8
	<classpathentry kind="lib" path="lib/batik-ext.jar"/>
9
	<classpathentry kind="lib" path="lib/batik-gui-util.jar"/>
10
	<classpathentry kind="lib" path="lib/batik-gvt.jar"/>
11
	<classpathentry kind="lib" path="lib/batik-util.jar"/>
12
	<classpathentry kind="lib" path="lib/xml-apis.jar"/>
13
	<classpathentry kind="lib" path="lib/ermapper.jar"/>
14
	<classpathentry kind="lib" path="lib/jep-2.24.jar"/>
15
	<classpathentry kind="lib" path="lib/JTS-1.4.jar"/>
16
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
17
	<classpathentry kind="lib" path="lib/iver-utiles.jar"/>
18
	<classpathentry kind="lib" path="lib/wmsclient.jar"/>
19
	<classpathentry kind="lib" path="/FMap 03/lib/cms.jar"/>
20
	<classpathentry kind="src" path="/FMap 03"/>
21
	<classpathentry kind="lib" path="/mdiApp produccion/lib/log4j-1.2.8.jar"/>
22
	<classpathentry kind="src" path="/mdiApp produccion"/>
23
	<classpathentry sourcepath="/FMap 03/lib/gt2-main.jar" kind="lib" path="/FMap 03/lib/gt2-main.jar"/>
24
	<classpathentry kind="output" path="bin"/>
25
</classpath>
0 26

  
trunk/applications/appgvSIG/gpl.txt
1
		    GNU GENERAL PUBLIC LICENSE
2
		       Version 2, June 1991
3

  
4
 Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
                       59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
6
 Everyone is permitted to copy and distribute verbatim copies
7
 of this license document, but changing it is not allowed.
8

  
9
			    Preamble
10

  
11
  The licenses for most software are designed to take away your
12
freedom to share and change it.  By contrast, the GNU General Public
13
License is intended to guarantee your freedom to share and change free
14
software--to make sure the software is free for all its users.  This
15
General Public License applies to most of the Free Software
16
Foundation's software and to any other program whose authors commit to
17
using it.  (Some other Free Software Foundation software is covered by
18
the GNU Library General Public License instead.)  You can apply it to
19
your programs, too.
20

  
21
  When we speak of free software, we are referring to freedom, not
22
price.  Our General Public Licenses are designed to make sure that you
23
have the freedom to distribute copies of free software (and charge for
24
this service if you wish), that you receive source code or can get it
25
if you want it, that you can change the software or use pieces of it
26
in new free programs; and that you know you can do these things.
27

  
28
  To protect your rights, we need to make restrictions that forbid
29
anyone to deny you these rights or to ask you to surrender the rights.
30
These restrictions translate to certain responsibilities for you if you
31
distribute copies of the software, or if you modify it.
32

  
33
  For example, if you distribute copies of such a program, whether
34
gratis or for a fee, you must give the recipients all the rights that
35
you have.  You must make sure that they, too, receive or can get the
36
source code.  And you must show them these terms so they know their
37
rights.
38

  
39
  We protect your rights with two steps: (1) copyright the software, and
40
(2) offer you this license which gives you legal permission to copy,
41
distribute and/or modify the software.
42

  
43
  Also, for each author's protection and ours, we want to make certain
44
that everyone understands that there is no warranty for this free
45
software.  If the software is modified by someone else and passed on, we
46
want its recipients to know that what they have is not the original, so
47
that any problems introduced by others will not reflect on the original
48
authors' reputations.
49

  
50
  Finally, any free program is threatened constantly by software
51
patents.  We wish to avoid the danger that redistributors of a free
52
program will individually obtain patent licenses, in effect making the
53
program proprietary.  To prevent this, we have made it clear that any
54
patent must be licensed for everyone's free use or not licensed at all.
55

  
56
  The precise terms and conditions for copying, distribution and
57
modification follow.
58

59
		    GNU GENERAL PUBLIC LICENSE
60
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61

  
62
  0. This License applies to any program or other work which contains
63
a notice placed by the copyright holder saying it may be distributed
64
under the terms of this General Public License.  The "Program", below,
65
refers to any such program or work, and a "work based on the Program"
66
means either the Program or any derivative work under copyright law:
67
that is to say, a work containing the Program or a portion of it,
68
either verbatim or with modifications and/or translated into another
69
language.  (Hereinafter, translation is included without limitation in
70
the term "modification".)  Each licensee is addressed as "you".
71

  
72
Activities other than copying, distribution and modification are not
73
covered by this License; they are outside its scope.  The act of
74
running the Program is not restricted, and the output from the Program
75
is covered only if its contents constitute a work based on the
76
Program (independent of having been made by running the Program).
77
Whether that is true depends on what the Program does.
78

  
79
  1. You may copy and distribute verbatim copies of the Program's
80
source code as you receive it, in any medium, provided that you
81
conspicuously and appropriately publish on each copy an appropriate
82
copyright notice and disclaimer of warranty; keep intact all the
83
notices that refer to this License and to the absence of any warranty;
84
and give any other recipients of the Program a copy of this License
85
along with the Program.
86

  
87
You may charge a fee for the physical act of transferring a copy, and
88
you may at your option offer warranty protection in exchange for a fee.
89

  
90
  2. You may modify your copy or copies of the Program or any portion
91
of it, thus forming a work based on the Program, and copy and
92
distribute such modifications or work under the terms of Section 1
93
above, provided that you also meet all of these conditions:
94

  
95
    a) You must cause the modified files to carry prominent notices
96
    stating that you changed the files and the date of any change.
97

  
98
    b) You must cause any work that you distribute or publish, that in
99
    whole or in part contains or is derived from the Program or any
100
    part thereof, to be licensed as a whole at no charge to all third
101
    parties under the terms of this License.
102

  
103
    c) If the modified program normally reads commands interactively
104
    when run, you must cause it, when started running for such
105
    interactive use in the most ordinary way, to print or display an
106
    announcement including an appropriate copyright notice and a
107
    notice that there is no warranty (or else, saying that you provide
108
    a warranty) and that users may redistribute the program under
109
    these conditions, and telling the user how to view a copy of this
110
    License.  (Exception: if the Program itself is interactive but
111
    does not normally print such an announcement, your work based on
112
    the Program is not required to print an announcement.)
113

114
These requirements apply to the modified work as a whole.  If
115
identifiable sections of that work are not derived from the Program,
116
and can be reasonably considered independent and separate works in
117
themselves, then this License, and its terms, do not apply to those
118
sections when you distribute them as separate works.  But when you
119
distribute the same sections as part of a whole which is a work based
120
on the Program, the distribution of the whole must be on the terms of
121
this License, whose permissions for other licensees extend to the
122
entire whole, and thus to each and every part regardless of who wrote it.
123

  
124
Thus, it is not the intent of this section to claim rights or contest
125
your rights to work written entirely by you; rather, the intent is to
126
exercise the right to control the distribution of derivative or
127
collective works based on the Program.
128

  
129
In addition, mere aggregation of another work not based on the Program
130
with the Program (or with a work based on the Program) on a volume of
131
a storage or distribution medium does not bring the other work under
132
the scope of this License.
133

  
134
  3. You may copy and distribute the Program (or a work based on it,
135
under Section 2) in object code or executable form under the terms of
136
Sections 1 and 2 above provided that you also do one of the following:
137

  
138
    a) Accompany it with the complete corresponding machine-readable
139
    source code, which must be distributed under the terms of Sections
140
    1 and 2 above on a medium customarily used for software interchange; or,
141

  
142
    b) Accompany it with a written offer, valid for at least three
143
    years, to give any third party, for a charge no more than your
144
    cost of physically performing source distribution, a complete
145
    machine-readable copy of the corresponding source code, to be
146
    distributed under the terms of Sections 1 and 2 above on a medium
147
    customarily used for software interchange; or,
148

  
149
    c) Accompany it with the information you received as to the offer
150
    to distribute corresponding source code.  (This alternative is
151
    allowed only for noncommercial distribution and only if you
152
    received the program in object code or executable form with such
153
    an offer, in accord with Subsection b above.)
154

  
155
The source code for a work means the preferred form of the work for
156
making modifications to it.  For an executable work, complete source
157
code means all the source code for all modules it contains, plus any
158
associated interface definition files, plus the scripts used to
159
control compilation and installation of the executable.  However, as a
160
special exception, the source code distributed need not include
161
anything that is normally distributed (in either source or binary
162
form) with the major components (compiler, kernel, and so on) of the
163
operating system on which the executable runs, unless that component
164
itself accompanies the executable.
165

  
166
If distribution of executable or object code is made by offering
167
access to copy from a designated place, then offering equivalent
168
access to copy the source code from the same place counts as
169
distribution of the source code, even though third parties are not
170
compelled to copy the source along with the object code.
171

172
  4. You may not copy, modify, sublicense, or distribute the Program
173
except as expressly provided under this License.  Any attempt
174
otherwise to copy, modify, sublicense or distribute the Program is
175
void, and will automatically terminate your rights under this License.
176
However, parties who have received copies, or rights, from you under
177
this License will not have their licenses terminated so long as such
178
parties remain in full compliance.
179

  
180
  5. You are not required to accept this License, since you have not
181
signed it.  However, nothing else grants you permission to modify or
182
distribute the Program or its derivative works.  These actions are
183
prohibited by law if you do not accept this License.  Therefore, by
184
modifying or distributing the Program (or any work based on the
185
Program), you indicate your acceptance of this License to do so, and
186
all its terms and conditions for copying, distributing or modifying
187
the Program or works based on it.
188

  
189
  6. Each time you redistribute the Program (or any work based on the
190
Program), the recipient automatically receives a license from the
191
original licensor to copy, distribute or modify the Program subject to
192
these terms and conditions.  You may not impose any further
193
restrictions on the recipients' exercise of the rights granted herein.
194
You are not responsible for enforcing compliance by third parties to
195
this License.
196

  
197
  7. If, as a consequence of a court judgment or allegation of patent
198
infringement or for any other reason (not limited to patent issues),
199
conditions are imposed on you (whether by court order, agreement or
200
otherwise) that contradict the conditions of this License, they do not
201
excuse you from the conditions of this License.  If you cannot
202
distribute so as to satisfy simultaneously your obligations under this
203
License and any other pertinent obligations, then as a consequence you
204
may not distribute the Program at all.  For example, if a patent
205
license would not permit royalty-free redistribution of the Program by
206
all those who receive copies directly or indirectly through you, then
207
the only way you could satisfy both it and this License would be to
208
refrain entirely from distribution of the Program.
209

  
210
If any portion of this section is held invalid or unenforceable under
211
any particular circumstance, the balance of the section is intended to
212
apply and the section as a whole is intended to apply in other
213
circumstances.
214

  
215
It is not the purpose of this section to induce you to infringe any
216
patents or other property right claims or to contest validity of any
217
such claims; this section has the sole purpose of protecting the
218
integrity of the free software distribution system, which is
219
implemented by public license practices.  Many people have made
220
generous contributions to the wide range of software distributed
221
through that system in reliance on consistent application of that
222
system; it is up to the author/donor to decide if he or she is willing
223
to distribute software through any other system and a licensee cannot
224
impose that choice.
225

  
226
This section is intended to make thoroughly clear what is believed to
227
be a consequence of the rest of this License.
228

229
  8. If the distribution and/or use of the Program is restricted in
230
certain countries either by patents or by copyrighted interfaces, the
231
original copyright holder who places the Program under this License
232
may add an explicit geographical distribution limitation excluding
233
those countries, so that distribution is permitted only in or among
234
countries not thus excluded.  In such case, this License incorporates
235
the limitation as if written in the body of this License.
236

  
237
  9. The Free Software Foundation may publish revised and/or new versions
238
of the General Public License from time to time.  Such new versions will
239
be similar in spirit to the present version, but may differ in detail to
240
address new problems or concerns.
241

  
242
Each version is given a distinguishing version number.  If the Program
243
specifies a version number of this License which applies to it and "any
244
later version", you have the option of following the terms and conditions
245
either of that version or of any later version published by the Free
246
Software Foundation.  If the Program does not specify a version number of
247
this License, you may choose any version ever published by the Free Software
248
Foundation.
249

  
250
  10. If you wish to incorporate parts of the Program into other free
251
programs whose distribution conditions are different, write to the author
252
to ask for permission.  For software which is copyrighted by the Free
253
Software Foundation, write to the Free Software Foundation; we sometimes
254
make exceptions for this.  Our decision will be guided by the two goals
255
of preserving the free status of all derivatives of our free software and
256
of promoting the sharing and reuse of software generally.
257

  
258
			    NO WARRANTY
259

  
260
  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
262
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
266
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
267
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
REPAIR OR CORRECTION.
269

  
270
  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
POSSIBILITY OF SUCH DAMAGES.
279

  
280
		     END OF TERMS AND CONDITIONS
281

282
	    How to Apply These Terms to Your New Programs
283

  
284
  If you develop a new program, and you want it to be of the greatest
285
possible use to the public, the best way to achieve this is to make it
286
free software which everyone can redistribute and change under these terms.
287

  
288
  To do so, attach the following notices to the program.  It is safest
289
to attach them to the start of each source file to most effectively
290
convey the exclusion of warranty; and each file should have at least
291
the "copyright" line and a pointer to where the full notice is found.
292

  
293
    <one line to give the program's name and a brief idea of what it does.>
294
    Copyright (C) <year>  <name of author>
295

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

  
301
    This program is distributed in the hope that it will be useful,
302
    but WITHOUT ANY WARRANTY; without even the implied warranty of
303
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
304
    GNU General Public License for more details.
305

  
306
    You should have received a copy of the GNU General Public License
307
    along with this program; if not, write to the Free Software
308
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
309

  
310

  
311
Also add information on how to contact you by electronic and paper mail.
312

  
313
If the program is interactive, make it output a short notice like this
314
when it starts in an interactive mode:
315

  
316
    Gnomovision version 69, Copyright (C) year name of author
317
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318
    This is free software, and you are welcome to redistribute it
319
    under certain conditions; type `show c' for details.
320

  
321
The hypothetical commands `show w' and `show c' should show the appropriate
322
parts of the General Public License.  Of course, the commands you use may
323
be called something other than `show w' and `show c'; they could even be
324
mouse-clicks or menu items--whatever suits your program.
325

  
326
You should also get your employer (if you work as a programmer) or your
327
school, if any, to sign a "copyright disclaimer" for the program, if
328
necessary.  Here is a sample; alter the names:
329

  
330
  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
331
  `Gnomovision' (which makes passes at compilers) written by James Hacker.
332

  
333
  <signature of Ty Coon>, 1 April 1989
334
  Ty Coon, President of Vice
335

  
336
This General Public License does not permit incorporating your program into
337
proprietary programs.  If your program is a subroutine library, you may
338
consider it more useful to permit linking proprietary applications with the
339
library.  If this is what you want to do, use the GNU Library General
340
Public License instead of this License.
0 341

  
trunk/applications/appgvSIG/jalopy-config.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<jalopy>
3
    <general>
4
        <compliance>
5
            <version>14</version>
6
        </compliance>
7
        <style>
8
            <description>Sun Java Coding Convention</description>
9
            <name>Sun</name>
10
        </style>
11
    </general>
12
    <inspector>
13
        <enable>false</enable>
14
        <naming>
15
            <classes>
16
                <abstract>[A-Z][a-zA-Z0-9]+</abstract>
17
                <general>[A-Z][a-zA-Z0-9]+</general>
18
            </classes>
19
            <fields>
20
                <default>[a-z][\w]+</default>
21
                <defaultStatic>[a-z][\w]+</defaultStatic>
22
                <defaultStaticFinal>[a-zA-Z][\w]+</defaultStaticFinal>
23
                <private>[a-z][\w]+</private>
24
                <privateStatic>[a-z][\w]+</privateStatic>
25
                <privateStaticFinal>[a-zA-Z][\w]+</privateStaticFinal>
26
                <protected>[a-z][\w]+</protected>
27
                <protectedStatic>[a-z][\w]+</protectedStatic>
28
                <protectedStaticFinal>[a-zA-Z][\w]+</protectedStaticFinal>
29
                <public>[a-z][\w]+</public>
30
                <publicStatic>[a-z][\w]+</publicStatic>
31
                <publicStaticFinal>[a-zA-Z][\w]+</publicStaticFinal>
32
            </fields>
33
            <interfaces>[A-Z][a-zA-Z0-9]+</interfaces>
34
            <labels>\w+</labels>
35
            <methods>
36
                <default>[a-z][\w]+</default>
37
                <defaultStatic>[a-z][\w]+</defaultStatic>
38
                <defaultStaticFinal>[a-z][\w]+</defaultStaticFinal>
39
                <private>[a-z][\w]+</private>
40
                <privateStatic>[a-z][\w]+</privateStatic>
41
                <privateStaticFinal>[a-z][\w]+</privateStaticFinal>
42
                <protected>[a-z][\w]+</protected>
43
                <protectedStatic>[a-z][\w]+</protectedStatic>
44
                <protectedStaticFinal>[a-z][\w]+</protectedStaticFinal>
45
                <public>[a-z][\w]+</public>
46
                <publicStatic>[a-z][\w]+</publicStatic>
47
                <publicStaticFinal>[a-z][\w]+</publicStaticFinal>
48
            </methods>
49
            <packages>[a-z]+(?:\.[a-z]+)*</packages>
50
            <parameters>
51
                <default>[a-z][\w]+</default>
52
                <final>[a-z][\w]+</final>
53
            </parameters>
54
            <variables>[a-z][\w]*</variables>
55
        </naming>
56
        <tips>
57
            <adhereToNamingConvention>false</adhereToNamingConvention>
58
            <alwaysOverrideHashCode>false</alwaysOverrideHashCode>
59
            <avoidThreadGroups>false</avoidThreadGroups>
60
            <declareCollectionComment>false</declareCollectionComment>
61
            <dontIgnoreExceptions>false</dontIgnoreExceptions>
62
            <dontSubstituteObjectEquals>false</dontSubstituteObjectEquals>
63
            <neverDeclareException>false</neverDeclareException>
64
            <neverDeclareThrowable>false</neverDeclareThrowable>
65
            <neverInvokeWaitOutsideLoop>false</neverInvokeWaitOutsideLoop>
66
            <neverReturnZeroArrays>false</neverReturnZeroArrays>
67
            <neverUseEmptyFinally>false</neverUseEmptyFinally>
68
            <obeyContractEquals>false</obeyContractEquals>
69
            <overrideToString>false</overrideToString>
70
            <referToObjectsByInterface>false</referToObjectsByInterface>
71
            <replaceStructureWithClass>false</replaceStructureWithClass>
72
            <stringLiterallI18n>false</stringLiterallI18n>
73
            <useInterfaceOnlyForTypes>false</useInterfaceOnlyForTypes>
74
            <wrongCollectionComment>false</wrongCollectionComment>
75
        </tips>
76
    </inspector>
77
    <internal>
78
        <version>6</version>
79
    </internal>
80
    <messages>
81
        <priority>
82
            <general>30000</general>
83
            <parser>30000</parser>
84
            <parserJavadoc>30000</parserJavadoc>
85
            <printer>30000</printer>
86
            <printerJavadoc>30000</printerJavadoc>
87
            <transform>30000</transform>
88
        </priority>
89
        <showErrorStackTrace>true</showErrorStackTrace>
90
    </messages>
91
    <misc>
92
        <threadCount>1</threadCount>
93
    </misc>
94
    <printer>
95
        <alignment>
96
            <methodCallChain>true</methodCallChain>
97
            <parameterMethodDeclaration>false</parameterMethodDeclaration>
98
            <ternaryOperator>true</ternaryOperator>
99
            <variableAssignment>false</variableAssignment>
100
            <variableIdentifier>false</variableIdentifier>
101
        </alignment>
102
        <backup>
103
            <directory>bak</directory>
104
            <level>0</level>
105
        </backup>
106
        <blanklines>
107
            <after>
108
                <block>1</block>
109
                <braceLeft>0</braceLeft>
110
                <class>1</class>
111
                <declaration>0</declaration>
112
                <footer>1</footer>
113
                <header>0</header>
114
                <interface>1</interface>
115
                <lastImport>2</lastImport>
116
                <method>1</method>
117
                <package>1</package>
118
            </after>
119
            <before>
120
                <block>1</block>
121
                <braceRight>0</braceRight>
122
                <caseBlock>1</caseBlock>
123
                <comment>
124
                    <javadoc>1</javadoc>
125
                    <multiline>1</multiline>
126
                    <singleline>1</singleline>
127
                </comment>
128
                <controlStatement>1</controlStatement>
129
                <declaration>1</declaration>
130
                <footer>0</footer>
131
                <header>0</header>
132
            </before>
133
            <keepUpTo>1</keepUpTo>
134
        </blanklines>
135
        <braces>
136
            <empty>
137
                <cuddle>false</cuddle>
138
                <insertStatement>false</insertStatement>
139
            </empty>
140
            <insert>
141
                <dowhile>false</dowhile>
142
                <for>false</for>
143
                <ifelse>true</ifelse>
144
                <while>false</while>
145
            </insert>
146
            <remove>
147
                <block>true</block>
148
                <dowhile>false</dowhile>
149
                <for>false</for>
150
                <ifelse>false</ifelse>
151
                <while>false</while>
152
            </remove>
153
            <treatDifferent>
154
                <methodClass>false</methodClass>
155
                <methodClassIfWrapped>false</methodClassIfWrapped>
156
            </treatDifferent>
157
        </braces>
158
        <chunks>
159
            <blanklines>true</blanklines>
160
            <comments>true</comments>
161
        </chunks>
162
        <comments>
163
            <format>
164
                <multiline>true</multiline>
165
            </format>
166
            <javadoc>
167
                <check>
168
                    <innerclass>true</innerclass>
169
                    <tags>true</tags>
170
                    <throwsTags>true</throwsTags>
171
                </check>
172
                <fieldsShort>true</fieldsShort>
173
                <generate>
174
                    <class>23</class>
175
                    <constructor>23</constructor>
176
                    <field>1</field>
177
                    <method>23</method>
178
                </generate>
179
                <parseComments>true</parseComments>
180
                <tags>
181
                    <in-line />
182
                    <standard />
183
                </tags>
184
                <templates>
185
                    <class>/**| * DOCUMENT ME!| *| * @author $author$| */</class>
186
                    <constructor>
187
                        <bottom> */</bottom>
188
                        <exception> * @throws $exceptionType$ DOCUMENT ME!</exception>
189
                        <param> * @param $paramType$ DOCUMENT ME!</param>
190
                        <top>/**| * Crea un nuevo $objectType$.</top>
191
                    </constructor>
192
                    <interface>/**| * DOCUMENT ME!| *| * @author $author$| */</interface>
193
                    <method>
194
                        <bottom> */</bottom>
195
                        <exception> * @throws $exceptionType$ DOCUMENT ME!</exception>
196
                        <param> * @param $paramType$ DOCUMENT ME!</param>
197
                        <return> * @return DOCUMENT ME!</return>
198
                        <top>/**| * DOCUMENT ME!</top>
199
                    </method>
200
                    <variable>/**| * DOCUMENT ME!| */</variable>
201
                </templates>
202
            </javadoc>
203
            <remove>
204
                <javadoc>false</javadoc>
205
                <multiline>false</multiline>
206
                <singleline>false</singleline>
207
            </remove>
208
            <separator>
209
                <fillCharacter>-</fillCharacter>
210
                <insert>false</insert>
211
                <insertRecursive>false</insertRecursive>
212
                <text>
213
                    <class>Inner Classes</class>
214
                    <constructor>Constructors</constructor>
215
                    <field>Instance fields</field>
216
                    <initializer>Instance initializers</initializer>
217
                    <interface>Inner Interfaces</interface>
218
                    <method>Methods</method>
219
                    <static>Static fields/initializers</static>
220
                </text>
221
            </separator>
222
        </comments>
223
        <environment />
224
        <footer>
225
            <keys />
226
            <smartMode>0</smartMode>
227
            <use>false</use>
228
        </footer>
229
        <header>
230
            <keys />
231
            <smartMode>0</smartMode>
232
            <use>false</use>
233
        </header>
234
        <history>
235
            <policy>disabled</policy>
236
        </history>
237
        <imports>
238
            <grouping>
239
                <defaultDepth>3</defaultDepth>
240
                <packages>*:0|gnu:2|java:2|javax:2</packages>
241
            </grouping>
242
            <policy>disabled</policy>
243
            <sort>true</sort>
244
        </imports>
245
        <indentation>
246
            <caseFromSwitch>true</caseFromSwitch>
247
            <continuation>
248
                <block>true</block>
249
                <operator>false</operator>
250
            </continuation>
251
            <firstColumnComments>true</firstColumnComments>
252
            <label>false</label>
253
            <policy>
254
                <deep>false</deep>
255
            </policy>
256
            <sizes>
257
                <braceCuddled>1</braceCuddled>
258
                <braceLeft>1</braceLeft>
259
                <braceRight>0</braceRight>
260
                <braceRightAfter>1</braceRightAfter>
261
                <continuation>4</continuation>
262
                <deep>55</deep>
263
                <extends>-1</extends>
264
                <general>4</general>
265
                <implements>-1</implements>
266
                <leading>0</leading>
267
                <tabs>8</tabs>
268
                <throws>-1</throws>
269
                <trailingComment>1</trailingComment>
270
            </sizes>
271
            <tabs>
272
                <enable>false</enable>
273
                <onlyLeading>false</onlyLeading>
274
            </tabs>
275
        </indentation>
276
        <misc>
277
            <arrayBracketsAfterIdent>false</arrayBracketsAfterIdent>
278
            <forceFormatting>false</forceFormatting>
279
            <insertExpressionParentheses>true</insertExpressionParentheses>
280
            <insertLoggingConditional>false</insertLoggingConditional>
281
            <insertTrailingNewline>true</insertTrailingNewline>
282
            <insertUID>false</insertUID>
283
        </misc>
284
        <sorting>
285
            <declaration>
286
                <class>false</class>
287
                <constructor>false</constructor>
288
                <enable>true</enable>
289
                <interface>false</interface>
290
                <method>false</method>
291
                <order>static|field|initializer|constructor|method|interface|class</order>
292
                <variable>false</variable>
293
            </declaration>
294
            <modifier>
295
                <enable>false</enable>
296
                <order>public|protected|private|abstract|static|final|synchronized|transient|volatile|native|strictfp</order>
297
            </modifier>
298
        </sorting>
299
        <whitespace>
300
            <after>
301
                <comma>true</comma>
302
                <semicolon>true</semicolon>
303
                <typeCast>true</typeCast>
304
            </after>
305
            <before>
306
                <braces>true</braces>
307
                <brackets>false</brackets>
308
                <bracketsTypes>false</bracketsTypes>
309
                <caseColon>false</caseColon>
310
                <operator>
311
                    <not>false</not>
312
                </operator>
313
                <parentheses>
314
                    <methodCall>false</methodCall>
315
                    <methodDeclaration>false</methodDeclaration>
316
                    <statement>true</statement>
317
                </parentheses>
318
            </before>
319
            <padding>
320
                <braces>true</braces>
321
                <brackets>false</brackets>
322
                <operator>
323
                    <assignment>true</assignment>
324
                    <bitwise>true</bitwise>
325
                    <logical>true</logical>
326
                    <mathematical>true</mathematical>
327
                    <relational>true</relational>
328
                    <shift>true</shift>
329
                </operator>
330
                <parenthesis>false</parenthesis>
331
                <typeCast>false</typeCast>
332
            </padding>
333
        </whitespace>
334
        <wrapping>
335
            <always>
336
                <after>
337
                    <arrayElement>0</arrayElement>
338
                    <braceRight>false</braceRight>
339
                    <extendsTypes>false</extendsTypes>
340
                    <implementsTypes>false</implementsTypes>
341
                    <label>true</label>
342
                    <methodCallChained>false</methodCallChained>
343
                    <ternaryOperator>
344
                        <first>false</first>
345
                        <second>false</second>
346
                    </ternaryOperator>
347
                    <throwsTypes>false</throwsTypes>
348
                </after>
349
                <before>
350
                    <braceLeft>false</braceLeft>
351
                    <extends>false</extends>
352
                    <implements>false</implements>
353
                    <throws>false</throws>
354
                </before>
355
                <parameter>
356
                    <methodCall>false</methodCall>
357
                    <methodCallNested>false</methodCallNested>
358
                    <methodDeclaration>false</methodDeclaration>
359
                </parameter>
360
            </always>
361
            <general>
362
                <beforeOperator>false</beforeOperator>
363
                <enable>true</enable>
364
                <lineLength>80</lineLength>
365
            </general>
366
            <ondemand>
367
                <after>
368
                    <assignment>false</assignment>
369
                    <leftParenthesis>false</leftParenthesis>
370
                    <parameter>false</parameter>
371
                    <types>
372
                        <extends>false</extends>
373
                        <implements>false</implements>
374
                        <throws>false</throws>
375
                    </types>
376
                </after>
377
                <before>
378
                    <rightParenthesis>false</rightParenthesis>
379
                </before>
380
                <groupingParentheses>false</groupingParentheses>
381
            </ondemand>
382
        </wrapping>
383
    </printer>
384
</jalopy>
385

  
0 386

  
trunk/applications/appgvSIG/text_en.properties
1
(escala_m?xima)=(maximum scale)                
2
(escala_m?nima)=(minimum scale)
3
A0=A0
4
A1=A1
5
A2=A2
6
A3=A3
7
A4=A4
8
A5=A5
9
A6=A6
10
abrir=Open
11
Abrir_Imagen=Open Picture
12
abrir_proyecto=Open project
13
abrir_tooltip=Open an existing project
14
Abrir_una_capa=Open Layer
15
Accion_Predefinida=Predefined Action
16
Aceptar=OK
17
acerca_de=About...
18
activar_regla=Activate ruler
19
adjust_transparency=Set Transparency
20
agrupar=Group
21
agrupar_graficos=Group graphics
22
agrupar_linea=Grouping graphic line with graphics.  
23
Ajustar_transparencia=Adjust Transparency
24
ajustes_linea_grafica=Adjustments of graphic line
25
alias=Alias
26
alineamiento=Alignment:
27
alinear=Align
28
alinear_graficos=Align graphics
29
alta=High
30
alto=Height
31
altura=Height:
32
Altura_fija_de_texto=Fixed text hight
33
Anadir=Add
34
Anadir=Add
35
Anadir_al_conjunto=Add to set
36
Anadir_Capa= Add Layer
37
Anadir_capa=Add layer
38
Anadir_todos=Add All
39
Anadir_todos=Add all
40
ancho=Width
41
Ancho_Contorno=Wide Outline
42
Ancho_de_l?nea= Wide Line
43
anchura=Width:
44
angulo_rotacion=Angle of rotation:
45
Anterior=Previous
46
anterior=Previous
47
Aplicar=Apply
48
Aplicar=Apply
49
Archivo=File
50
Archivos_de_Disco=Disc files
51
automatico=Automatic
52
Ayuda=Help
53
background_color=Background color
54
baja=Low
55
Bajar_capa=Move layer down
56
bmp=BMP files
57
Bold=Bold
58
borrador=Draft
59
borrar=Remove
60
Calcular_intervalos=Compute intervals
61
calidad=Quality
62
Cambios_de_estilo=Style changes
63
Cambio_Color=Change Color
64
Cambio_de_estilo=Style change
65
Cambio_Estilo=Change Style
66
Campo=Field
67
campo=Field
68
Campos=Fields
69
campo_altura_texto=Higth of text field:
70
Campo_clasifica=Classification field
71
Campo_de_clasificacion=Clasification field
72
Campo_de_etiquetado=Labelling field
73
cancel=Cancel
74
Cancelar=Cancel
75
Cancelar=Cancel
76
Capas=Layers
77
Capas=Layers
78
Capas_del_localizador=Locator layers
79
capaWMS=WMSLayer
80
cargar_leyenda=Load legendactivar_regla=Activate ruler
81
Centimetros=Centimeters
82
Cerrar=Close
83
Circulo=Circle
84
circulo=Circle
85
coincidir_tama?o=Coinciding size:
86
colocar_alrededor_seleccionados=To place around the graphics selected.  
87
colocar_alrededor_todos=Placing around all the graphics.  
88
colocar_a_margenes=Placing with reference to margins.
89
colocar_delante=Before
90
colocar_detras=Behind
91
color=Color:
92
Color_Contorno= Color Outline
93
Color_de_la_L?nea=Line Color
94
Color_de_Relleno= Fill color: 
95
Color_final=End color
96
Color_final=Final color: 
97
Color_inicial=Intial color: 
98
Color_inicio=Begin color
99
color_texto=Text color:
100
comentarios=Comments
101
configurar=Configuring
102
configurar_localizador=Configure Locator Map ...
103
Configurar_localizador=Configure locator
104
confirmar_borrar=The element will be removed. Are you sure?
105
conservar_escala_visualizacion=Maintain scale of viewing
106
creation_date=Creation date
107
Cruz=Cross
108
Cuadrado=Square
109
cuando_activo=When active
110
Derecha=Right
111
Derecho=Right
112
desagrupar=Ungroup
113
desagrupar_graficos=Ungroup graphics
114
Descripcion=Description
115
descripcion=Description
116
desde_arriba=Since up:
117
desde_izquierda=Since the left:
118
Desplazamiento=Displacement
119
Detalles=Details
120
detalles=Details
121
DGNFiles=DGNFiles
122
DGNFiles=DGNFiles
123
distance_units=Distance units
124
distribuir=Distributing:
125
divisiones_izquierda=Divisions to the left
126
documentos_existentes=Existing documents
127
Dxffiles=DXFFiles
128
Editar_leyenda=Edit style
129
editar_propiedades=Edit properties
130
Elegir_Color=Select Color
131
Elegir_Fuente=Font Choose
132
Eliminar=Delete
133
eliminar_capa=Delete Layer
134
Encuadre=Zooms
135
Encuadre_Vista=View frame Pan
136
enlace_vivo=Alive link
137
Enlazar_a_ficheros_de_imagen=Link to image files
138
en_el_mapa= In the Layout:
139
En_metros=In meters
140
En_pixels=In pixels
141
Error_abriendo_el_fichero=Error opening file
142
error_escritura=Can't write file
143
error_lectura=Can't read file
144
Escala=Scale
145
escala=Scale
146
Escala_Maxima=Maximum scale
147
Escala_Minima=Minimum scale
148
escala_usuario=Scale specified by the user
149
espaciado_horizontal=Horizontal grid spacing
150
espaciado_vertical=Vertical grid spacing
151
espacio=Space:
152
Estilo=Style: 
153
Etiqueta=Label
154
Etiqueta=Label
155
Etiquetado=Labelling
156
Examinar=Browser
157
exportar=Export
158
exportar_a=Export to...
159
extension=Extension
160
Fichero=File
161
filtro=Filter
162
finalizar=Finalize
163
Font=Font
164
Fuente=Font
165
fuente=Font
166
General=General
167
Generar_Intervalos=Generate Intervals
168
gestion_encuadre=Management of Fit in
169
grados=degrees
170
Grosor_de_linea=Line width
171
grosor_linea=Line width:
172
Gr?ficos=Graphics
173
guardado=Saved in
174
Guardar=Save
175
Guardar=Save
176
guardar_cambios=save changes?
177
Guardar_el_zoom_actual=Save present zoom
178
guardar_leyenda=Save legend
179
Guardar_leyenda=Save Style
180
guardar_proyecto=Save project
181
guardar_tooltip=Save the project
182
Habilitar_etiquetado=Enble labelling
183
hasta=to
184
Herramientas=Tools
185
Herramientas_vista=View tools
186
Hiperenlace=Hiperlink
187
horizontal=Horizontal
188
Identificar_Resultados=Identify Results
189
Igual_que_la_impresora=Igual que la impresora
190
igual_todos_lados=Equal displacement for all sides.
191
Imagen=Image
192
imagen=Image
193
importar=Import
194
Imprimir=Print
195
Inferior=Lower
196
infobreak=It shows the elements of the layer using a range of colors.  
197
infodef=It shows all the elements of a layer using the same symbol.  
198
informacion=Information
199
Informaci?n=Information
200
infovalue=It shows elements of the layer using a symbol by each value. 
201
Inicializando=Initializing
202
Insertar=Insert
203
insertar_circulo=Insert Circle
204
insertar_escala=Insert Scale
205
insertar_imagen=Insert Image
206
insertar_leyenda=Insert Legend
207
insertar_linea=Insert Line
208
insertar_poligono=Insert Poligon
209
insertar_punto=Insert Point
210
insertar_recta=Insert Rect
211
insertar_rectangulo=Insert Rectangle
212
insertar_texto=Insert Text
213
insertar_vista=Insert View
214
Intervalo=Interval
215
Intervalos=Intervals
216
Intervalos=Intervals
217
Intervalos_equidistantes=    Equality Intervals
218
Intervalos_por_rupturas_naturales=    Intervals by natural breaks.
219
introduce_nombre=Type the new name
220
Italic=Italic
221
Izquierda=Left
222
Izquierdo=Left
223
jpg=JPEG files
224
Kilometros=Kilometers
225
kilometros=Kilometers
226
leyenda=Legend
227
Linea=Line
228
linea=Line
229
linea_grafica=Graphic line
230
Link=Link
231
malla_activada=Active grid
232
mantener_intervalo=Maintaining interval
233
Mapa=Map
234
mapas=Maps
235
map_units=Map units
236
marco_vista=Framework of the View
237
marco_vista=Framework of the view
238
margenes=Margins:
239
medir_area=Measure area
240
medir_distancias=Measure distances
241
Metros=Meters
242
metros=Meters
243
Milimetros=Milimeters
244
Millas=Miles
245
modification_date=Modification date
246
Mostrar_Contorno=Show Outline
247
Mostrar_siempre=To show always
248
Muestra_atributos=Show attributes of selected layers.
249
Muestra_los_atributos_de_las_capas_seleccionadas=Show selected layers attributes
250
M?s_100=The number of values is over 100, and does not contribute information
251
Nivel_de_transparencia=Transparency Level
252
nombre=Name
253
Nombres=Names
254
nombre_capa=Name of the layer
255
Nombre_que_se_le_dara_al_zoom=Name for the zoom
256
nombre_sesion=Session name
257
normal=Normal
258
No_de_intervalos=Nr of intervals
259
No_mostrar=Not to show the layer when the scale 
260
No_reconocido=Nor recognized
261
No_Shape=This Layer is not of type Shape
262
Nueva_tabla=New Table
263
nuevo=New
264
Nuevo_conjunto=New set
265
nuevo_proyecto=New project
266
nuevo_tamano_fuente=New size of font:
267
nuevo_tooltip=Create a new project
268
N?m_intervalos=Number of Intervals
269
ok=Ok
270
orientacion=Orientation:
271
Origen_de_Datos=Data Origin: 
272
Otros=Other
273
owner=Owner
274
path=Path
275
Perimetro=Perimeter
276
Personalizado=Custom
277
Pies=Feet
278
Plain=Plain
279
png=PNG files
280
poligono=Poligon
281
por_debajo_de =under: 
282
por_encima_de=above:
283
Por_favor_active_el_tema=You must active theme first
284
posicion_linea=Position of the line
285
Preparar_pagina=Prepare Page
286
preparar_pagina=Prepare page
287
presentacion=Presentation
288
Previsualizacion=Preview
289
Previsualizacion_de_simbolo=Symbol preview
290
propiedades=Properties
291
Propiedades_del_Tema=Theme properties
292
Propiedades_de_la_Capa=Properties of the layer
293
Propiedades_escala_grafica=Properties of the scale bar
294
propiedades_grafico=Graphic properties
295
propiedades_mapa=Map properties
296
propiedades_marco_imagenes=Properties of the framework of the Picture
297
propiedades_marco_leyenda=Properties of the framework of the legend
298
propiedades_marco_vista=Properties of the framework of the view
299
propiedades_sesion=Session properties
300
propiedades_tabla=Table properties
301
Propiedades_texto=Properties of text
302
propiedades_tema=Layer properties
303
propiedades_vista=View properties
304
Pulgadas=Inches
305
punto=Point
306
Quitar=Remove
307
Quitar=Remove
308
Quitar_capa=Remove layer
309
Quitar_Todos=Remove All
310
Quitar_todos=Remove all
311
Rango_de_escalas=Rank of Scales
312
Rasterfiles=Rasterfiles
313
recorte_vista=Cut to view
314
recta=Rect
315
rectangulo=Rectangle
316
Recuperar_leyenda=Load Style
317
Recuperar_y_eliminar_otros_zoom=Recover and delete other zoom
318
refrescar=Refresh
319
registros=registers
320
rellenar_marco_vista=Fill framework of the view
321
relleno=Fill:
322
renombrar=Rename
323
resolucion_resultado=Resolution of the result:
324
Sample=Sample
325
Seleccionar=Select
326
seleccionar_capas=Select Layers
327
Seleccionar_del_conjunto=Select from set
328
Seleccionar_fichero=Select file
329
seleccionar_formato=Select Format
330
seleccionar_por_punto=Select by point
331
seleccionar_por_rectangulo=Select by rectangle
332
seleccionar_todos=Select all
333
seleccione_fecha=Select date...
334
seleccion_fuente=Selection of font
335
Seleccion_por_tema=Selection by theme
336
selection_color=Selection color
337
Servidor=Server
338
servidor=Server
339
Se_va_a_tener_en_cuenta_para_borrar_los_registros_desde=... to delete registers from
340
Shapefile=Shapefile
341
Shapefiles=Shapefiles
342
siempre=Allways
343
Siguiente=Next
344
siguiente=Next
345
Simbolo=Symbol
346
Simbolog?a=Symbology
347
Simbolo_unico=Unique symbol
348
simplificar=Simplify
349
sin_titulo=No title
350
sincronizar_color_borde_relleno=Sincronize color of stroke and fill:
351
Size=Size
352
Solo_para_capas_vectoriales=Only for vector layers
353
Style=Style
354
Subir_capa=Move layer up
355
Superior=Upper
356
S?mbolo=Symbol
357
S?mbolo_?nico=Unique symbol
358
Tabla=Table
359
Tabla=Table
360
tablas=Tables
361
Tabla_de_Atributos=Table of Attributes
362
Tabla_de_prueba=Test Table
363
tamano=Tama?o:
364
tamano_metros=Size in meters
365
tama?o_pagina=Pase Size
366
tama?o_posicion=Size and position
367
Tema=Layer
368
texto=Text
369
tipos_de_documentos=Document types
370
Tipo_de_intervalos=Type of intervals
371
Tipo_de_leyenda=Type of legend
372
Tipo_de_linea=Line type
373
tipo_fichero_proyecto=gvSIG project file
374
tipo_leyenda=Legend files (*.XML)
375
tipo_linea=Stroke:
376
Tipo_no_reconocido=Type not recognized
377
tipo_relleno=Fill:
378
tipo_simbolo=Type of symbol:
379
titulo=Project manager
380
titulo_confirmar=Confirmaci?n
381
Transparencia=Transparency
382
transparencia=Transparency
383
Triangulo=Triangle
384
Unidades=Units
385
unidades=Units:
386
untitled=untitled
387
Un_Layer=It should select a layer
388
utilizar_margenes_impresora=Utilizing margins of the printer. 
389
vacia=Empty
390
Valor=Value
391
Valor=Value
392
Valores=Values
393
Valores_unicos=single values
394
Valores_?nicos=Unique values
395
ventana_proyecto=Project window
396
Ver=View
397
vertical=Vertical
398
ver_tabla_atributos=See table of attributes
399
ver_tooltip=Show project window
400
visible=Visible
401
Vista=View
402
vistas=Views
403
visualizacion= Viewing
404
Visualizacion=Visualization
405
visualizar_cuadricula=Visualize Grid
406
WMS=WMS
407
Yardas=Yards
408
Zoom_al_Tema=Zoom to layer
409
Zoom_Completo= Full Extent
410
Zoom_Completo_Vista= View frame Full Extent 
411
Zoom_Menos=Zoom Out
412
Zoom_Menos_Vista=View frame Zoom Out
413
Zoom_M?s=Zoom In
414
Zoom_M?s_Vista=View frame Zoom In 
415
Zoom_Previo=Zoom Previous
416
Zoom_Real=Zoom 1:1
417
Zoom_Select=Zoom to selected
0 418

  
trunk/applications/appgvSIG/NotasFJP.txt
1
- Cuando se abre el cuadro de di?logo de leyenda, cargar bien
2
  los datos del s?mbolo actual.
3

  
4
- Internacionalizar los strings.
5

  
6
- Corregir la pantalla de inicio, y hacer un cuadro de di?logo "About"
7

  
8
- Habilitar el fileChooser que usa la aplicaci?n mdi para que permita
9
  devolver un array de Files (File[]), y abrirlo para que pueda seleccionar
10
  varios ficheros a la vez.
11

  
12
- Algunos arcos no se dibujan bien en los dgn. Meter lo del libro de java.
13

  
14
- Hay que completar el soporte de shape file. Ahora mismo no acepta multipunto, ni shapes 3D
15
  ni escritura.
16

  
17
- P?gina 75, ?ltimo p?rrafo del libro de software libre:
18
"Las condiciones y/o restricciones que imponen las licencias s?lo pueden
19
ser precisadas por los propios autores, que seg?n la normativa de propiedad
20
intelectual son los propietarios de la obra. En cualquier caso, la
21
propiedad de la obra ser? de los autores, ya que la licencia no supone
22
transferencia de propiedad, sino solamente derecho de uso y, en algunos
23
casos, de distribuci?n."
24
"...tambi?n es necesario saber
25
que cada nueva versi?n de un programa es considerada como una nueva
26
obra. El autor tiene, otra vez, plena potestad para hacer con su obra
27
lo que le apetezca, incluso distribuirla con t?rminos y condiciones totalmente
28
diferentes (o sea, una licencia diferente a la anterior). As?, si el lector
29
es autor ?nico de un programa podr? publicar una versi?n bajo una
30
licencia de software libre y, si le apeteciere, otra posterior bajo una licencia
31
propietaria. En caso de existir m?s autores, y que la nueva versi?n
32
contenga c?digo cuya autor?a les corresponda y que se vaya a publicar
33
bajo otras condiciones, todos ellos han de dar el visto bueno al cambio
34
de licencia." 
35

  
36
- Consideraciones sobre modelo de negocio para el software libre:
37
	? En realidad hacemos lo mismo que ahora, solo que la licencia de MapObjects y ArcView ya
38
	no existe. En lugar de que se la lleve Esri, no se la lleva nadie. A nosotros no nos deja
39
	en peor lugar que ahora, en todo caso mejor: Se puede dar formaci?n sobre nuestra herramienta
40
	a otros desarrolladores, e incluso cobrarles por una Certificaci?n en el uso de nuestras
41
	librer?as.
42
	? Los servicios se dividen en 2: Soporte t?cnico para usuarios del programa b?sico y/o 
43
	funcionalidades nuevas que se hayan desarrollado para un cliente y Proyectos en los que
44
	se necesite programar nuevas funcionalidades o integrar el programa con otras aplicaciones
45
	del cliente final.
46
	? Con el CIT se deber?a firmar un contrato de mantenimiento especial (que se vean favorecidos
47
	respecto al resto de clientes, pero que no deje de ser una entrada fija de dinero a IVER).
48
	? Es posible que exista financiaci?n de Europa para proyectos de este tipo. Ya no solo en
49
	el desarrollo, que no creo que sea mucho lo que se pueda sacar, sino en proyectos de 
50
	implantaci?n y soporte a gran escala (a partir de la Comunidad Valenciana, por ejemplo).
51

  
52
- Sugerencia de Felipe: Ojo con copiar demasiado al ArcView, porque nos pueden meter puros
53
  legales los de ESRI (aunque no los ganen, nos pueden putear). (Dise?o de los formularios).
54

  
55
- Pasar los cuadros de di?logo m?s usuados (leyendas y abrir capas al FMap, y utilizar unos
56
  derivados dentro de GVSIG.
57

  
58
- ?Se puede utilizar los datasources de GT2?. Derivar de ellos para que entreguen entidades
59
  de las nuestras adem?s de las de JTS.
60

  
61
- La ventana de asignaci?n de leyendas no debe depender del TOC. Se debe abrir con un layer
62
  para inicializar como m?ximo, y fuera de la ventana que se asigne su leyenda a los temas
63
  activos.
64
  
65
- Ser?a una buena idea eliminar la dependencia de las capas con el FMap que las contiene. De
66
  esta forma, una misma capa podr?a estar en 2 MapControls a la vez, y supongo que nos
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff