Revision 1649

View differences:

branches/gvSIG_CAD_Layout_version/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

  
branches/gvSIG_CAD_Layout_version/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.3.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 CAD"/>
13
  <property name="extensionDir" location="../Andami CAD/gvSIG/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="dist" 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
    <copy todir="${dist}/lib">
41
    	<fileset dir="./lib" includes="*.jar,*.zip"/>
42
    </copy>
43
    <copy todir="${dist}/lib">
44
    	<fileset dir="${fmapdir}/lib" includes="*.jar"/>
45
    </copy>
46
    <jar jarfile="${dist}/lib/fmap.jar" basedir="${fmapdir}/bin"/>
47
    <jar jarfile="${dist}/lib/${plugin}.jar" basedir="${build}"/>
48
    <copy file="config/config.xml" todir="${dist}"/>
49
    <copy file="config/about.htm" todir="${dist}"/>  	
50
    <copy file="build.number" todir="${dist}"/>
51
    <copy todir="${dist}">
52
    	<fileset dir="." includes="text*.properties"/>
53
    </copy>
54
    <copy todir="${dist}/images">
55
    	<fileset dir="images/" includes="*"/>
56
    </copy>
57

  
58
    <move todir="${extensionDir}/${plugin}/">
59
    	<fileset dir="${dist}" includes="**/**"/>
60
    </move>
61
  </target>
62

  
63
  <target name="makeZip"
64
  	description="Genera un zip con todo lo necesario para ejecutar gvSIG"
65
  	depends="dist">
66
    <!-- Create the distribution directory -->
67
    <mkdir dir="${dist}/${zipName}"/>
68
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/bin" manifest="../mdiApp/manifest.mf"/>
69
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/" includes="images/*" update="true"/>
70
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/" includes="plugin.dtd" update="true"/>
71
    <copy todir="${dist}/${zipName}">
72
		<fileset dir="../mdiApp">
73
			<include name="extensiones/${plugin}/**"/>
74
			<include name="extensiones/plugin.*"/>
75
			<include name="plugin.*"/>
76
		</fileset>  
77
		<!-- fileset dir="${dist}" includes="gvSIG.jar"/ -->
78
		<fileset dir="../mdiApp_v02_estable">
79
			<include name="lib/**"/>
80
		</fileset>  
81
		<fileset dir="distFiles" includes="**/**"/>
82
    </copy>
83
	<zip zipfile="${zipName}.zip">
84
		<fileset dir="${dist}">
85
			<include name="**/**"/>
86
		</fileset>
87
	</zip>
88
    <delete dir="${dist}"/>
89
  </target>
90

  
91
  <target name="clean"
92
        description="clean up" >
93
    <!-- Delete the ${build} and ${dist} directory trees -->
94
    <delete dir="${build}"/>
95
    <delete dir="${dist}"/>
96
  </target>
97
</project>
98

  
0 99

  
branches/gvSIG_CAD_Layout_version/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/xercesImpl.jar"/>
6
	<classpathentry kind="lib" path="lib/batik-awt-util.jar"/>
7
	<classpathentry kind="lib" path="lib/batik-ext.jar"/>
8
	<classpathentry kind="lib" path="lib/batik-gui-util.jar"/>
9
	<classpathentry kind="lib" path="lib/batik-gvt.jar"/>
10
	<classpathentry kind="lib" path="lib/batik-util.jar"/>
11
	<classpathentry kind="lib" path="lib/xml-apis.jar"/>
12
	<classpathentry kind="lib" path="lib/jep-2.24.jar"/>
13
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
14
	<classpathentry kind="lib" path="lib/wmsclient.jar"/>
15
	<classpathentry sourcepath="/gt" kind="lib" path="/FMap 03/lib/main-2.1.x.jar"/>
16
	<classpathentry kind="lib" path="/FMap 03/lib/geoapi-SNAPSHOT.jar"/>
17
	<classpathentry kind="lib" path="/FMap 03/lib/cms.jar"/>
18
	<classpathentry kind="lib" path="/FMap 03/lib/driver-manager-1.0.jar"/>
19
	<classpathentry kind="lib" path="/FMap 03/lib/jts-1.5.jar"/>
20
	<classpathentry kind="src" path="/Andami"/>
21
	<classpathentry kind="lib" path="/Andami/lib/castor-0.9.5.3-xml.jar"/>
22
	<classpathentry sourcepath="/Utiles/src" kind="lib" path="/Andami/lib/iver-utiles.jar"/>
23
	<classpathentry kind="lib" path="/Andami/lib/log4j-1.2.8.jar"/>
24
	<classpathentry kind="lib" path="/FMap 03/lib/gdbms.jar"/>
25
	<classpathentry kind="src" path="/FMap 03 CAD"/>
26
	<classpathentry kind="lib" path="lib/fsac.jar"/>
27
	<classpathentry kind="output" path="bin"/>
28
</classpath>
0 29

  
branches/gvSIG_CAD_Layout_version/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

  
branches/gvSIG_CAD_Layout_version/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

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

  
branches/gvSIG_CAD_Layout_version/applications/appgvSIG/build_sources.xml
1
<project name="Copiar las fuentes a un directorio" default="dist" basedir=".">
2
    <description>
3
        Copiar las fuentes a un directorio
4
    </description>
5
  <!-- set global properties for this build -->
6
  <property name="buildDate" value="${TSTAMP}"/>
7
  <property name="version" value="0.3"/>
8
  <property name="dist"  location="d:/fjp/COPUT/instala_gvsig/fuentes"/>
9
  <property name="fmapdir" value="../FMAP 03"/>
10
  <property name="andamidir" value="../Andami"/>
11
  <property name="makeZip" location="makeZip"/>
12
  <property name="zipName" value="gvSIG-${version}"/>
13

  
14
  <target name="init" depends="clean">
15
    <!-- Create the time stamp -->
16
    <tstamp/>
17
  	
18
  </target>
19
	
20

  
21

  
22
  <target name="dist" depends="init"
23
        description="generate the distribution" >
24
    <!-- Create the distribution directory -->
25
    <mkdir dir="${dist}"/>
26
    <mkdir dir="${dist}/Andami"/>
27
    <mkdir dir="${dist}/Andami/src"/>
28
    <mkdir dir="${dist}/Andami/lib"/>
29
    <mkdir dir="${dist}/FMap"/>        
30
    <mkdir dir="${dist}/FMap/src"/>    
31
    <mkdir dir="${dist}/FMap/lib"/>        
32
    <mkdir dir="${dist}/gvSIG"/>        
33
    <mkdir dir="${dist}/gvSIG/src"/>    
34
    <mkdir dir="${dist}/gvSIG/lib"/> 
35
    <mkdir dir="${dist}/gvSIG/images"/>       
36

  
37
    <!-- Put everything into the directory ${dist} -->
38
    <copy todir="${dist}/Andami/lib">
39
    	<fileset dir="${andamidir}/lib" includes="*.jar,*.zip"/>
40
    </copy>
41
    <copy todir="${dist}/FMap/lib">
42
    	<fileset dir="${fmapdir}/lib" includes="*.jar,*.zip"/>
43
    </copy>
44
    <copy todir="${dist}/gvSIG/lib">
45
    	<fileset dir="./lib" includes="*.jar,*.zip"/>
46
    </copy>
47
    <copy todir="${dist}/Andami/src">
48
    	<fileset dir="${andamidir}/src" includes="**/**"/>
49
    </copy>
50
    <copy todir="${dist}/FMap/src">
51
    	<fileset dir="${fmapdir}/src" includes="**/**" />
52
    </copy>
53
    <copy todir="${dist}/gvSIG/src">
54
    	<fileset dir="./src" includes="**/**"/>
55
    </copy>
56
    <copy todir="${dist}/gvSIG">
57
    	<fileset dir="." includes="text*.properties"/>
58
    </copy>
59
    <copy todir="${dist}/gvSIG/images">
60
    	<fileset dir="./images/" includes="*"/>
61
    </copy>
62
    <!-- BORRAMOS EL DIRECTIORIO DE EDICIÓN (PROVISIONAL) -->
63
	<delete dir="${dist}/FMap/src/com/iver/cit/gvsig/fmap/edition"/>
64

  
65
  </target>
66

  
67
  <target name="makeZip"
68
  	description="Genera un zip con todas las fuentes"
69
  	depends="dist">
70
	<zip destfile="${dist}/${zipName}.zip" basedir="${dist}" />
71
    <!-- <delete dir="${dist}"/> -->
72
  </target>
73

  
74
  <target name="clean"
75
        description="clean up" >
76
    <!-- Delete the ${build} and ${dist} directory trees -->
77
    <delete dir="${dist}"/>
78
  </target>
79
</project>
80

  
0 81

  
branches/gvSIG_CAD_Layout_version/applications/appgvSIG/NotasFJP.txt
1
- v03: Para los s?mbolos. Cada s?mbolo sigue el patr?n Composite,
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff