Revision 36623

View differences:

tags/v1_12_0_Build_1402/frameworks/_fwAndami/pom.xml
1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<groupId>org.gvsig</groupId>
5
	<artifactId>_fwAndami</artifactId>
6
	<packaging>jar</packaging>
7
	<version>1.9-SNAPSHOT</version>
8
	<name>_fwAndami</name>
9
	<url>http://gvsig.org</url>
10
	<parent>
11
		<groupId>org.gvsig</groupId>
12
		<artifactId>gvsig-library-base-pom</artifactId>
13
		<version>1.9-SNAPSHOT</version>
14
	</parent>
15
	<properties>
16
        <build-dir>${basedir}/../build</build-dir>
17
    </properties>
18
	<dependencies>
19
		<dependency>
20
			<groupId>org.gvsig</groupId>
21
			<artifactId>libInternationalization
22
			</artifactId>
23
			<version>1.9-SNAPSHOT</version>
24
		</dependency>
25
		<dependency>
26
			<groupId>org.gvsig</groupId>
27
			<artifactId>libExceptions</artifactId>
28
			<version>1.9-SNAPSHOT</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>org.gvsig</groupId>
32
			<artifactId>libIverUtiles</artifactId>
33
			<version>1.9-SNAPSHOT</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>org.gvsig</groupId>
37
			<artifactId>libUIComponent</artifactId>
38
			<version>1.9-SNAPSHOT</version>
39
		</dependency>
40
		<dependency>
41
			<groupId>org.gvsig.legacy</groupId>
42
			<artifactId>javaws</artifactId>
43
			<version>gvsig</version>
44
		</dependency>
45
		<dependency>
46
			<groupId>org.gvsig.legacy</groupId>
47
			<artifactId>jh</artifactId>
48
			<version>gvsig</version>
49
		</dependency>
50
		<dependency>
51
			<groupId>org.gvsig.legacy</groupId>
52
			<artifactId>JWizardComponent</artifactId>
53
			<version>1.2.2</version>
54
		</dependency>
55
		<dependency>
56
			<groupId>org.gvsig.legacy</groupId>
57
			<artifactId>kxml2</artifactId>
58
			<version>gvsig</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>org.gvsig.legacy</groupId>
62
			<artifactId>castor</artifactId>
63
			<version>gvsig</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>org.gvsig.legacy</groupId>
67
			<artifactId>commons-codec</artifactId>
68
			<version>gvsig</version>
69
		</dependency>
70
		<dependency>
71
			<groupId>org.gvsig.legacy</groupId>
72
			<artifactId>commons-collections</artifactId>
73
			<version>gvsig</version>
74
		</dependency>
75
		<dependency>
76
			<groupId>org.gvsig.legacy</groupId>
77
			<artifactId>JUF</artifactId>
78
			<version>gvsig</version>
79
		</dependency>
80
		<dependency>
81
			<groupId>org.gvsig.legacy</groupId>
82
			<artifactId>xerces</artifactId>
83
			<version>gvsig</version>
84
		</dependency>
85
		<dependency>
86
			<groupId>org.gvsig.legacy</groupId>
87
			<artifactId>xml-apis</artifactId>
88
			<version>gvsig</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>org.gvsig.legacy</groupId>
92
			<artifactId>xmlrpc</artifactId>
93
			<version>gvsig</version>
94
		</dependency>
95
		<dependency>
96
			<groupId>org.gvsig.legacy</groupId>
97
			<artifactId>tempFileManager</artifactId>
98
			<version>gvsig</version>
99
		</dependency>
100
		<dependency>
101
			<groupId>org.gvsig.legacy</groupId>
102
			<artifactId>looks</artifactId>
103
			<version>gvsig</version>
104
		</dependency>
105
	</dependencies>
106
	<build>
107
		<sourceDirectory>src</sourceDirectory>
108
		<testSourceDirectory>src-test</testSourceDirectory>
109
		<resources>
110
			<resource>
111
				<directory>src</directory>
112
				<includes>
113
					<include>**/*.gif</include>
114
					<include>**/*.png</include>
115
					<include>**/*.PNG</include>
116
					<include> **/*.bmp</include>
117
					<include> **/*.jpg</include>
118
					<include> **/*.jpeg</include>
119
				</includes>
120
			</resource>
121
			<resource>
122
                <directory>config</directory>
123
				<includes>
124
                	<include>**/*.properties</include>
125
                </includes>
126
            	<targetPath>com/iver/andami</targetPath>
127
			</resource>
128
		</resources>
129
		<plugins>
130
			<plugin>
131
				<artifactId>maven-clean-plugin</artifactId>
132
				<configuration>
133
					<filesets>
134
						<fileset>
135
							<directory> ${gvsig-lib-dir}</directory>
136
							<includes>
137
								<include> **/**</include>
138
							</includes>
139
							<followSymlinks>false</followSymlinks>
140
						</fileset>
141
						
142
						<fileset>
143
							<directory> ${gvsig-path}</directory>
144
							<includes>
145
								<include>*_fwAndami*.jar</include>
146
							</includes>
147
						</fileset>
148
						</filesets>
149
				</configuration>
150
			</plugin>
151
		</plugins>
152
	</build>
153
	<profiles>
154
		<profile>
155
			<id>install-extension</id>
156
			<activation>
157
				<property>
158
					<name>install-extension</name>
159
				</property>
160
			</activation>
161
			<build>
162
				<plugins>
163
					<plugin>
164
						<groupId>org.apache.maven.plugins
165
						</groupId>
166
						<artifactId>maven-dependency-plugin
167
						</artifactId>
168
						<executions>
169
							<execution>
170
								<id>copy-own-dependencies-for-andami
171
								</id>
172
								<phase>install</phase>
173
								<goals>
174
									<goal>copy-dependencies</goal>
175
								</goals>
176
								<configuration>
177
									<outputDirectory> ${gvsig-lib-dir}</outputDirectory>
178
									<overWriteReleases>true</overWriteReleases>
179
									<overWriteSnapshots> false</overWriteSnapshots>
180
									<overWriteIfNewer>true</overWriteIfNewer>
181
									<excludeTransitive>false</excludeTransitive>
182
								</configuration>
183
							</execution>
184
							<execution>
185
								<id>copy-andami</id>
186
								<phase>install</phase>
187
								<goals>
188
									<goal>copy</goal>
189
								</goals>
190
								<configuration>
191
									<artifactItems>
192
										<artifactItem>
193
											<groupId>org.gvsig</groupId>
194
											<artifactId>_fwAndami</artifactId>
195
											<version>1.9-SNAPSHOT</version>
196
											<type>jar</type>
197
											<overWrite>true</overWrite>
198
										</artifactItem>
199
									</artifactItems>
200
									<outputDirectory> ${gvsig-path}</outputDirectory>
201
									<overWriteReleases>true</overWriteReleases>
202
									<overWriteSnapshots> false</overWriteSnapshots>
203
									<overWriteIfNewer>true</overWriteIfNewer>
204
									<excludeTransitive>false</excludeTransitive>
205
								</configuration>
206
							</execution>
207
						</executions>
208
					</plugin>
209
				</plugins>
210
			</build>
211
		</profile>
212
	</profiles>
213
</project>
tags/v1_12_0_Build_1402/frameworks/_fwAndami/andami-config.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<andami-config locale-language="es" locale-country="ES"
3
    locale-variant=""
4
    lookAndFeel="com.jgoodies.looks.plastic.PlasticXPLookAndFeel" pluginsDirectory="gvSIG/extensiones">
5
    <andami update="true"/>
6
    <plugin name="com.iver.cit.gvsig.jdbc_spatial" update="false"/>
7
    <plugin name="com.iver.gvsig.datalocator" update="false"/>
8
    <plugin name="com.iver.gvsig.addeventtheme" update="false"/>
9
    <plugin name="org.gvsig.backup" update="false"/>
10
    <plugin name="org.gvsig.tableImport" update="false"/>
11
    <plugin name="org.gvsig.hyperlink" update="false"/>
12
    <plugin name="org.gvsig.iconThemeBase" update="false"/>
13
    <plugin name="org.gvsig.quickInfo" update="false"/>
14
    <plugin name="org.gvsig.layerLoadingOrder" update="false"/>
15
    <plugin name="com.iver.core" update="false"/>
16
    <plugin name="es.unex.sextante" update="false"/>
17
    <plugin name="es.gva.cit.gvsig.catalogClient" update="false"/>
18
    <plugin name="org.gvsig.selectionTools" update="false"/>
19
    <plugin name="org.gvsig.georeferencing" update="false"/>
20
    <plugin name="com.iver.cit.gvsig.wcs" update="false"/>
21
    <plugin name="es.prodevelop.cit.gvsig.arcims" update="false"/>
22
    <plugin name="org.gvsig.extended-symbology" update="false"/>
23
    <plugin name="com.iver.cit.gvsig.dwg" update="false"/>
24
    <plugin name="com.iver.cit.gvsig.geoprocessextensions" update="false"/>
25
    <plugin name="org.gvsig.rastertools" update="false"/>
26
    <plugin name="org.gvsig.sde" update="false"/>
27
    <plugin name="org.gvsig.gpe" update="false"/>
28
    <plugin name="org.gvsig.tableExport" update="false"/>
29
    <plugin name="org.gvsig.scripting" update="false"/>
30
    <plugin name="org.gvsig.tableSummarize" update="false"/>
31
    <plugin name="com.iver.gvsig.centerviewpoint" update="false"/>
32
    <plugin name="org.gvsig.quickPrint" update="false"/>
33
    <plugin name="com.iver.cit.gvsig.wfs2" update="false"/>
34
    <plugin name="org.gvsig.i18n" update="false"/>
35
    <plugin name="com.iver.cit.gvsig.wms" update="false"/>
36
    <plugin name="com.iver.cit.gvsig" update="false"/>
37
    <plugin name="com.iver.cit.gvsig.geoprocess" update="false"/>
38
    <plugin name="com.iver.cit.gvsig.oracle_spatial" update="false"/>
39
    <plugin name="org.gvsig.crs" update="false"/>
40
    <plugin name="com.iver.cit.gvsig.annotation" update="false"/>
41
    <plugin name="com.iver.cit.gvsig.cad" update="false"/>
42
    <plugin name="es.iver.derivedGeom" update="false"/>
43
    <plugin name="com.iver.gvsig.expressionfield" update="false"/>
44
    <plugin name="es.udc.cartolab.gvsig.navtable" update="false"/>
45
    <plugin name="org.gvsig.chartlegend" update="false"/>
46
</andami-config>
0 47

  
tags/v1_12_0_Build_1402/frameworks/_fwAndami/gvsig-desktop.l4j.ini
1
###############################
2
# gvSIG runtime configuration #
3
###############################
4

  
5
# Starting memory
6
# -Xms128m
7

  
8
# Maximum memory
9
# -Xmx512m
10

  
11
# Maximum perm space size
12
# -XX:MaxPermSize=96m
13

  
14
# Disable hardware accelerated java2D drawing through Direct3D 
15
# -Dsun.java2d.d3d=false
16

  
17
# For Java parameters documentation and more parameters look at:
18
# http://download.oracle.com/javase/6/docs/technotes/tools/windows/java.html
19
# http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html
20

  
21
# Environment variable expansion is supported, for example:
22
#-Dsomevar="%SOMEVAR%"
0 23

  
tags/v1_12_0_Build_1402/frameworks/_fwAndami/build.xml
1
<project name="_fwAndami" default="create-jar" basedir=".">
2
	<!-- set global properties for this build -->
3
	<property name="src" location="src" />
4
	<property name="src-test" location="src-test"/>
5
	<property name="build" location="bin" />
6
	<property name="build-test" location="bin-test" />
7
	<property name="dist" location="dist" />
8
	<property name="lib" location="lib" />
9
	<property name="appDir" location="gvSIG" />
10
	<property name="extensiones" location="${appDir}/extensiones" />
11
	<property name="build-doc" value="build-doc"/>
12
	<property name="jarName" value="andami.jar"/>
13
	<property name="debug" value="off" />
14
	<import file="../binaries/ant/utilities.xml"/>
15
<!--	<import file="compile-classpath.xml"/> -->
16
	<property name="webapps" location="c:\webservers\jakarta-tomcat-5.0.25\webapps\" />
17
	<property name="webdir" location="web" />
18
	<property name="keystore" location="keystore" />
19
	<property name="schemas" location="schemas" />
20

  
21
	<target name="init">
22
		<!-- Create the time stamp -->
23
		<tstamp />
24
		<echo>
25
			Compiling ${ant.project.name}...
26
		</echo>
27
	</target>
28

  
29
    <target name="batch-build"
30
    	    description="compile the sources, create the jar file for Andami framework"
31
    	    depends="init,compile,create-jar">
32
    </target>
33

  
34
    <target name="compile" description="compile the source" >
35
        <!-- Compile the Java code from ${src} to ${build} -->
36
    	<mkdir dir="${build}" />
37
		<loadEclipseClasspath project="${basedir}"/>
38
		<gvSIG-javac
39
			classpath="${eclipseClasspath}"/>
40
<!--        <javac	srcdir="${src}"
41
				destdir="${build}"
42
        		source="1.4"
43
				target="1.4"
44
				debug="${debug}"
45
				debuglevel="${debuglevel}">
46
        	<classpath refid="_fwAndami.compile-classpath"/>
47
        </javac> -->
48
    	<copy todir="${build}">
49
    		<fileset
50
    			dir="src"
51
    			excludes="**/*.java"/>
52
		</copy>
53
    </target>
54

  
55
	<!--Crea un jar con el codigo de andami-->
56
	<target name="create-jar" description="Crea el jar de la aplicacion">
57
        <copy todir="${build}/com/iver/andami/">
58
                <fileset dir="config" includes="*.properties" />
59
        </copy>
60
    	<mkdir dir="${appDir}" />
61
		<jar manifest="MANIFEST.MF" destfile="${jarName}" basedir="${build}" />
62
	</target>
63

  
64
	  <target name="clean" description="delete binaries and jar files" >
65
	    <!-- Delete the ${build} and ${dist} directory trees -->
66
	    <delete dir="${build}"/>
67
	    <delete dir="${dist}"/>
68
	    <delete file="${jarName}"/>
69
	    <delete dir="${appDir}"/>
70
	  </target>
71

  
72
    <target name="build-doc" depends="" description="Genera un zip con la documentación">
73
		<javadoc
74
			packagenames="com.iver.andami.*"
75
			sourcepath="src"
76
			defaultexcludes="yes"
77
			destdir="${build-doc}/andami-api"
78
			windowtitle="andami API">
79
		</javadoc>
80
	</target>
81

  
82

  
83
	<!-- Genera las clases a partir de los esquemas -->
84
	<target name="generate-andami-config-classes">
85

  
86
		<delete>
87
			<fileset dir="${src}" includes="com/iver/andami/config/generate/**" />
88
		</delete>
89
		<java classname="org.exolab.castor.builder.SourceGenerator">
90
			<classpath>
91
				<pathelement path="lib/castor-0.9.5.3-xml.jar" />
92
				<pathelement path="lib/xerces_2_5_0.jar" />
93
			</classpath>
94
			<arg value="-i" />
95
			<arg value="${schemas}/andami-config.xsd" />
96
			<arg value="-package" />
97
			<arg value="com.iver.andami.config.generate" />
98
			<arg value="-dest" />
99
			<arg value="${src}" />
100
		</java>
101
	</target>
102

  
103
	<!-- Genera las clases a partir de los esquemas -->
104
	<target name="generate-plugin-config">
105
		<delete>
106
			<fileset dir="${src}" includes="com/iver/andami/plugins/config/generate/**" />
107
		</delete>
108
		<java classname="org.exolab.castor.builder.SourceGenerator">
109
			<classpath>
110
				<pathelement path="lib/castor-0.9.5.3-xml.jar" />
111
				<pathelement path="lib/xerces_2_5_0.jar" />
112
			</classpath>
113
			<arg value="-i" />
114
			<arg value="${schemas}/plugin-config.xsd" />
115
			<arg value="-package" />
116
			<arg value="com.iver.andami.plugins.config.generate" />
117
			<arg value="-dest" />
118
			<arg value="${src}" />
119
		</java>
120
	</target>
121

  
122
	<!-- Genera las clases a partir de los esquemas -->
123
	<target name="generate-plugin-persistence">
124
		<delete>
125
			<fileset dir="${src}" includes="com/iver/andami/persistence/generate/**" />
126
		</delete>
127
		<java classname="org.exolab.castor.builder.SourceGenerator">
128
			<classpath>
129
				<pathelement path="lib/castor-0.9.5.3-xml.jar" />
130
				<pathelement path="lib/xerces_2_5_0.jar" />
131
			</classpath>
132
			<arg value="-i" />
133
			<arg value="${schemas}/plugin-persistence.xsd" />
134
			<arg value="-package" />
135
			<arg value="com.iver.andami.persistence.generate" />
136
			<arg value="-dest" />
137
			<arg value="${src}" />
138
		</java>
139

  
140
	</target>
141

  
142
	<!--Copia los jar que hay en el subdirectorio lib al directorio web-->
143
	<target name="move-jars" description="Pone todos los jar en el directorio web" depends="create-jar">
144
		<copy todir="${webdir}">
145
			<fileset dir="lib" includes="**/*" />
146
		</copy>
147
	</target>
148

  
149
	<!--Comprime las extensiones en un zip y las mete en el directorio web-->
150
	<target name="extensiones" description="Copia el directorio de extensiones">
151
		<zip zipfile="${webdir}/extensiones.zip">
152
			<fileset dir="${extensiones}" includes="**/*" excludes="CVS" excludesfile=".cvsignore" />
153
		</zip>
154
	</target>
155

  
156
	<target name="run-tests" depends="batch-build,compile-tests">
157
		<antcall target="generic-run-tests">
158
			<param name="TestSuite.Name" value="com.iver.andami.AllTests"/>
159
		</antcall>
160
	</target>
161
</project>
0 162

  
tags/v1_12_0_Build_1402/frameworks/_fwAndami/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

  
tags/v1_12_0_Build_1402/frameworks/_fwAndami/.classpath
1
<?xml version="1.0" encoding="UTF-8"?>
2
<classpath>
3
	<classpathentry kind="src" path="src"/>
4
	<classpathentry kind="src" output="bin-test" path="src-test"/>
5
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
6
	<classpathentry kind="lib" path="lib/castor-0.9.5.3-xml.jar"/>
7
	<classpathentry kind="lib" path="lib/javaws.jar"/>
8
	<classpathentry kind="lib" path="lib/iver-utiles.jar" sourcepath="/libIverUtiles"/>
9
	<classpathentry kind="lib" path="lib/tempFileManager.jar"/>
10
	<classpathentry kind="lib" path="lib/xml-apis.jar"/>
11
	<classpathentry kind="lib" path="lib/xerces_2_5_0.jar"/>
12
	<classpathentry kind="lib" path="lib/commons-dbcp-1.0-dev-20020806.zip"/>
13
	<classpathentry kind="lib" path="lib/commons-pool-1.2.zip"/>
14
	<classpathentry kind="lib" path="lib/commons-collections-3.1.zip"/>
15
	<classpathentry kind="lib" path="lib/commons-codec-1.3.jar"/>
16
	<classpathentry kind="lib" path="lib/xmlrpc-2.0.1.jar"/>
17
	<classpathentry kind="lib" path="lib/gvsig-i18n.jar" sourcepath="/libInternationalization/src"/>
18
	<classpathentry kind="lib" path="lib/jcalendar.jar"/>
19
	<classpathentry kind="lib" path="lib/kxml2.jar"/>
20
	<classpathentry kind="lib" path="lib/JWizardComponent.jar"/>
21
	<classpathentry kind="lib" path="lib/looks-2.1.4.jar"/>
22
	<classpathentry kind="lib" path="lib/jcommon-1.0.10.jar"/>
23
	<classpathentry kind="lib" path="lib/jfreechart-1.0.6.jar"/>
24
	<classpathentry kind="lib" path="lib/jh.jar"/>
25
	<classpathentry kind="var" path="JUNIT_HOME/junit.jar"/>
26
	<classpathentry kind="lib" path="lib/org.gvsig.exceptions.jar"/>
27
	<classpathentry kind="lib" path="lib/jai_core.jar"/>
28
	<classpathentry kind="lib" path="lib/ant-1.8.1.jar"/>
29
	<classpathentry kind="lib" path="lib/ant-contrib-1.0b3.jar"/>
30
	<classpathentry kind="lib" path="lib/ant-launcher-1.8.1.jar"/>
31
	<classpathentry kind="lib" path="lib/antform-2.0.jar"/>
32
	<classpathentry kind="lib" path="lib/log4j-1.2.14.jar"/>
33
	<classpathentry kind="lib" path="lib/slf4j-api-1.5.5.jar"/>
34
	<classpathentry kind="lib" path="lib/slf4j-log4j12-1.5.5.jar"/>
35
	<classpathentry kind="lib" path="lib/org.gvsig.andamiupdater-1.0.0-SNAPSHOT.jar"/>
36
	<classpathentry kind="lib" path="lib/org.gvsig.ui.jar"/>
37
	<classpathentry kind="lib" path="lib/batik-gui-util-1.7.jar"/>
38
	<classpathentry kind="lib" path="lib/batik-util-1.7.jar"/>
39
	<classpathentry kind="lib" path="lib/batik-xml-1.7.jar"/>
40
	<classpathentry kind="lib" path="lib/org.gvsig.installer.lib.api-1.0.1-SNAPSHOT.jar"/>
41
	<classpathentry kind="lib" path="lib/org.gvsig.installer.lib.impl-1.0.1-SNAPSHOT.jar"/>
42
	<classpathentry kind="lib" path="lib/org.gvsig.installer.lib.spi-1.0.1-SNAPSHOT.jar"/>
43
	<classpathentry kind="lib" path="lib/org.gvsig.installer.prov.plugin-1.0.1-SNAPSHOT.jar"/>
44
	<classpathentry kind="lib" path="lib/org.gvsig.installer.swing.api-1.0.1-SNAPSHOT.jar"/>
45
	<classpathentry kind="lib" path="lib/org.gvsig.installer.swing.impl-1.0.1-SNAPSHOT.jar"/>
46
	<classpathentry kind="lib" path="lib/org.gvsig.tools.lib-3.0.0-SNAPSHOT.jar"/>
47
	<classpathentry kind="lib" path="lib/org.gvsig.tools.swing.api-3.0.0-SNAPSHOT.jar"/>
48
	<classpathentry kind="lib" path="lib/org.gvsig.tools.swing.impl-3.0.0-SNAPSHOT.jar"/>
49
	<classpathentry kind="lib" path="lib/org.gvsig.tools.swing.serv.field-3.0.0-SNAPSHOT.jar"/>
50
	<classpathentry kind="lib" path="lib/org.gvsig.tools.swing.serv.jform-3.0.0-SNAPSHOT.jar"/>
51
	<classpathentry kind="lib" path="lib/org.gvsig.tools.swing.serv.jlist-3.0.0-SNAPSHOT.jar"/>
52
	<classpathentry kind="lib" path="lib/org.gvsig.tools.swing.spi-3.0.0-SNAPSHOT.jar"/>
53
	<classpathentry kind="output" path="bin"/>
54
</classpath>
0 55

  
tags/v1_12_0_Build_1402/frameworks/_fwAndami/theme/andami-theme.xml
1
<AndamiProperties>
2
	<ApplicationImages>
3
		<SplashImages>
4
			<!--Splash path="theme/logoIver.png" timer="1000"/-->
5
			<Splash path="theme/splash.png" timer="10000" version="1.12.0 devel" x="270" y="240" fontsize="18" color="80,170,240"/>
6
		</SplashImages>
7
		<!--BackgroundImage path="theme/logo_es.png"/-->
8
		<!--WallpaperType value="CENTERED"/-->
9
		<Icon path="theme/icon.png"/>
10
	</ApplicationImages>
11
	<ApplicationName value="gvSIG 1.12.0 devel"/>
12
</AndamiProperties>
0 13

  
tags/v1_12_0_Build_1402/frameworks/_fwAndami/src-test/com/iver/andami/AllTests.java
1
package com.iver.andami;
2

  
3
import junit.framework.Test;
4
import junit.framework.TestSuite;
5

  
6
public class AllTests {
7

  
8
	public static Test suite() {
9
		TestSuite suite = new TestSuite("Test for com.iver.andami");
10
		//$JUnit-BEGIN$
11

  
12
		//$JUnit-END$
13
		return suite;
14
	}
15

  
16
}
0 17

  
tags/v1_12_0_Build_1402/frameworks/_fwAndami/config/text_eu.properties
1
#Translations for language [eu]
2
#Mon Sep 21 10:01:58 CEST 2009
3
aceptar=Ados
4
cancel_the_application_termination=Utzi aplikazioaren itxiera
5
cancelar=Utzi
6
com.iver.andami.messages.Messages=Mezua
7
creating_main_window=
8
deselect_all=Garbitu hautapena
9
deselect_all_resources=Garbitu elementu guztien hautapena
10
discard_changes=Baztertu aldaketak
11
discard_changes_and_exit=Baztertu dauden aldaketak eta irten
12
Ejecutando\ comando\:\ =Execute command\:
13
en=hemen\:
14
error_parsing_comboscale_elements=Errorea comboscale-aren elementuak identifikatzean
15
error_parsing_comboscale_value=Errorea comboscale-aren balioa identifikatzean
16
Error_reading_andami_config_New_file_created_A_backup_was_made_on_=Errorea andami-config.xml irakurtzean. Fitxategi berria sortuko da. Segurtasun kopia egin da hemen\:
17
Error_reading_isocodes_file=Errorea fitxategia hizkuntzaren ISO kodeekin irakurtzean
18
Error_reading_plugin_persinstence_New_file_created_A_backup_was_made_on_=Errorea plugin-persistence.xml irakurtzean. Fitxategi berria sortuko da. Segurtasun kopia egin da hemen\:
19
Icon_not_found_=Ez da ikonoa aurkitu
20
incorrect_color=
21
incorrect_position=
22
incorrect_size=
23
KeyMapping.Caracter_no_valido=Karakterea ez da baliozkoa\:
24
Launcher.config_mal_formado='config.xml' fitxategia txarto eratuta dago
25
Launcher.config_no_encontrado='config.xml' fitxategia ez da aurkitu
26
Launcher.Dependencia_no_resuelta_en_plugin=Mendekotasuna ez da plugin-ean ebatzi
27
Launcher.Dos_skin_extension=Dos skin luzapena. Azkena erabiliko dugu
28
Launcher.Error_con_las_librerias_del_plugin=Errorea plugin-aren liburutegietan
29
Launcher.error_getting_class_loader_for_status_bar_control=Errorea egoera barrarako kargatzailea lortzean
30
Launcher.Error_instanciando_la_extension=Errorea luzapena instantziatzean
31
Launcher.Error_localizando_la_clase_de_la_extension=Errorea luzapen-mota aurkitzean
32
Launcher.Hay_dependencias_circulares=Plugin-en artean mendekotasun zirkularrak daude
33
Launcher.Ignorando_el_directorio=Ez hartu direktorioa kontuan
34
Launcher.labelset_class=Etiketa-mota (labelset) ezin izan da aurkitu
35
Launcher.look_and_feel=Ezin izan da jarri 'look and feel'
36
Launcher.No_se_encontro_la_clase_de_la_extension=Luzapen-mota ezin izan da aurkitu
37
Launcher.No_se_encontro_la_clase_mdi_manager=Mdi manager klasea ezin izan da aurkitu
38
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=mdi manager klasea ezin izan da atzitu
39
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Andamiren konfigurazioa ezin izan da gorde
40
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=Ezin izan da mdi manager klasea instantziatu
41
Launcher.No_se_puede_acceder_a=Ezin izan da honakoa atzitu\:
42
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Errorea plugin-en konfigurazioa gordetzean
43
Launcher.Two_extensions_with_the_same_priority=Lehentasun bereko bi luzapen, bakarra kargatuko da.
44
Launcher.Two_menus_with_the_same_position=Posizio bereko bi menu, bakarra kargatuko da.
45
login_exit=Irteera
46
login_invalid_user=Erabiltzailea ez da baliozkoa
47
login_name=Izena
48
login_ok=Ok
49
login_password=Pasahitza
50
MDIFrame.Error_no_capturado_por_el_usuario=Erabiltzaileak kapturatu ez duen errorea
51
MDIFrame.quiere_salir=Ziur zaude irten nahi duzula?
52
MDIFrame.salir=Irten
53
MDIManagerFactory.No_skin_extension_in_the_plugins=Ez da aurkitu 'skin' luzapenik plugin-en artean
54
memory_usage=
55
Menu_type_not_supported_=
56
Messages._no_se_encontro_la_traduccion_para=Ez da itzulpenik aurkitu honetarako\:
57
Messages.no_se_encontro_la_traduccion_para=Ez da horretarako itzulpenik aurkitu
58
No_extension_associated_with_this_event_=Ez dago gertaera horri lotutako luzapenik
59
No_se_encontro_la_extension_especificada_en_el_parametro_exclusiveUI=Ez da aurkitu zehaztutako estentsioa 'exclusiveUI' parametroan\:
60
No_se_encontro_la_traduccion_para=Ez da itzulpenik aurkitu honetarako\:
61
ok=Ados
62
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Izen bereko bi klase plugin-ean
63
PluginClassLoader.Error_reading_file=Errorea fitxategia irakurtzean\:
64
PluginServices.Bug\ en\ el\ c\u00f3digo=Errorea aplikazioan
65
PluginServices.Bug_en_el_codigo=Bug-a kodean
66
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ \ \\n\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
67
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=Aplikazioaren errore larria. Komenigarria da aplikaziotik irtetea.
68
PluginServices.Error_grave_de_la_aplicaci\u00f3n=Errore larria aplikazioan.
69
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Ezin izan da arezko erlojua jarri
70
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=Saguaren kurtsorea ezin izan da berrezarri
71
Preferences=Lehentasunak
72
Resource_was_not_saved=Ez da baliabidea gorde
73
restore_defaults=Berrezarri aukera lehenetsiak
74
save_resources=Gorde baliabideak
75
save_selected_resources_and_exit=Gorde hautatutako osagaiak eta irten
76
select_all=Hautatu dena
77
select_all_resources=Hautatu osagai guztiak
78
select_resources_to_save_before_exit=Irten aurretik hautatuta dauden osagaiak gordeko dira
79
setting_up_event_queue=
80
SplashWindow.configuring_proxy=
81
SplashWindow.Iniciando=Hasten...
82
SplashWindow.initializing_extensions=
83
SplashWindow.installing_extensions_controls=
84
SplashWindow.installing_extensions_labels=
85
SplashWindow.installing_extensions_menus=
86
SplashWindow.loading_plugin_settings=
87
SplashWindow.looking_for_a_skin=
88
SplashWindow.looking_for_updates=
89
SplashWindow.post_initializing_extensions=
90
SplashWindow.preparing_workbench=
91
SplashWindow.reading_plugins_config.xml=
92
SplashWindow.setting_up_applications_name_and_icons=
93
SplashWindow.setting_up_class_loaders=
94
SplashWindow.setting_up_master_extension=
95
SplashWindow.starting_plugin_internationalization_system=
96
StatusBar.Aplicacion_iniciada=Aplikazioa hasita dago
97
The_following_resource_could_not_be_saved_=Ezin izan da baliabide hau gorde\:
98
Unable_to_find_icon=Ezin izan da ikonoa aurkitu
99
Window_properties_not_stored_correctly_Window_state_will_not_be_restored=
100
y_en=y en
0 101

  
tags/v1_12_0_Build_1402/frameworks/_fwAndami/config/text_nl.properties
1
#Translations for language [nl]
2
#Tue Aug 11 10:49:14 CEST 2009
3
aceptar=
4
cancel_the_application_termination=
5
cancelar=
6
com.iver.andami.messages.Messages=
7
creating_main_window=
8
deselect_all=
9
deselect_all_resources=
10
discard_changes=
11
discard_changes_and_exit=
12
Ejecutando\ comando\:\ =
13
en=
14
error_parsing_comboscale_elements=
15
error_parsing_comboscale_value=
16
Error_reading_andami_config_New_file_created_A_backup_was_made_on_=
17
Error_reading_isocodes_file=
18
Error_reading_plugin_persinstence_New_file_created_A_backup_was_made_on_=
19
Icon_not_found_=
20
incorrect_color=
21
incorrect_position=
22
incorrect_size=
23
KeyMapping.Caracter_no_valido=
24
Launcher.config_mal_formado=
25
Launcher.config_no_encontrado=
26
Launcher.Dependencia_no_resuelta_en_plugin=
27
Launcher.Dos_skin_extension=
28
Launcher.Error_con_las_librerias_del_plugin=
29
Launcher.error_getting_class_loader_for_status_bar_control=
30
Launcher.Error_instanciando_la_extension=
31
Launcher.Error_localizando_la_clase_de_la_extension=
32
Launcher.Hay_dependencias_circulares=
33
Launcher.Ignorando_el_directorio=
34
Launcher.labelset_class=
35
Launcher.look_and_feel=
36
Launcher.No_se_encontro_la_clase_de_la_extension=
37
Launcher.No_se_encontro_la_clase_mdi_manager=
38
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=
39
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=
40
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=
41
Launcher.No_se_puede_acceder_a=
42
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=
43
Launcher.Two_extensions_with_the_same_priority=
44
Launcher.Two_menus_with_the_same_position=
45
login_exit=
46
login_invalid_user=
47
login_name=
48
login_ok=
49
login_password=
50
MDIFrame.Error_no_capturado_por_el_usuario=
51
MDIFrame.quiere_salir=
52
MDIFrame.salir=
53
MDIManagerFactory.No_skin_extension_in_the_plugins=
54
memory_usage=
55
Menu_type_not_supported_=
56
No_extension_associated_with_this_event_=
57
No_se_encontro_la_extension_especificada_en_el_parametro_exclusiveUI=
58
No_se_encontro_la_traduccion_para=
59
ok=Ok
60
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=
61
PluginClassLoader.Error_reading_file=
62
PluginServices.Bug\ en\ el\ c\u00f3digo=
63
PluginServices.Bug_en_el_codigo=
64
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ \ \\n\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
65
PluginServices.Error_grave_de_la_aplicaci\u00f3n=
66
PluginServices.No_se_pudo_poner_el_reloj_de_arena=
67
Preferences=
68
Resource_was_not_saved=
69
restore_defaults=
70
save_resources=
71
save_selected_resources_and_exit=
72
select_all=
73
select_all_resources=
74
select_resources_to_save_before_exit=
75
setting_up_event_queue=
76
SplashWindow.configuring_proxy=
77
SplashWindow.Iniciando=
78
SplashWindow.initializing_extensions=
79
SplashWindow.installing_extensions_controls=
80
SplashWindow.installing_extensions_labels=
81
SplashWindow.installing_extensions_menus=
82
SplashWindow.loading_plugin_settings=
83
SplashWindow.looking_for_a_skin=
84
SplashWindow.looking_for_updates=
85
SplashWindow.post_initializing_extensions=
86
SplashWindow.preparing_workbench=
87
SplashWindow.reading_plugins_config.xml=
88
SplashWindow.setting_up_applications_name_and_icons=
89
SplashWindow.setting_up_class_loaders=
90
SplashWindow.setting_up_master_extension=
91
SplashWindow.starting_plugin_internationalization_system=
92
StatusBar.Aplicacion_iniciada=
93
The_following_resource_could_not_be_saved_=
94
Unable_to_find_icon=
95
Window_properties_not_stored_correctly_Window_state_will_not_be_restored=
96
y_en=
0 97

  
tags/v1_12_0_Build_1402/frameworks/_fwAndami/config/text_en_US.properties
1
#Translations for language [en_US]
2
#Mon Sep 21 10:01:58 CEST 2009
3
aceptar=Ok
4
cancel_the_application_termination=Do not close project
5
cancelar=Cancel
6
com.iver.andami.messages.Messages=Messages
7
creating_main_window=
8
deselect_all=Clear selection
9
deselect_all_resources=Clear selection of resources
10
discard_changes=Discard changes
11
discard_changes_and_exit=Discard changes and exit
12
Ejecutando\ comando\:\ =Execute command\:
13
en=in
14
error_parsing_comboscale_elements=Error parsing combo-scale elements.
15
error_parsing_comboscale_value=Error parsing combo-scale value.
16
Error_reading_andami_config_New_file_created_A_backup_was_made_on_=Error reading configuration file 'andami-config.xml'\: New file created. A backup copy was saved in
17
Error_reading_isocodes_file=Error reading file with ISO language code.
18
Error_reading_plugin_persinstence_New_file_created_A_backup_was_made_on_=Error reading configuration file 'plugin-persistence.xml'. New file created. A backup copy was saved in
19
Icon_not_found_=Icon not found
20
incorrect_color=
21
incorrect_position=
22
incorrect_size=
23
KeyMapping.Caracter_no_valido=Invalid character
24
Launcher.config_mal_formado=. Malformed 'config.xml' file
25
Launcher.config_no_encontrado='config.xml' file not found
26
Launcher.Dependencia_no_resuelta_en_plugin=Unsatisfied plugin dependency
27
Launcher.Dos_skin_extension=Two skin extensions. Using the last one.
28
Launcher.Error_con_las_librerias_del_plugin=Plugin library error
29
Launcher.error_getting_class_loader_for_status_bar_control=Error getting class loader for status bar
30
Launcher.Error_instanciando_la_extension=Cannot instantiate extension
31
Launcher.Error_localizando_la_clase_de_la_extension=Cannot locate extension class
32
Launcher.Hay_dependencias_circulares=Circular plugin dependencies encountered
33
Launcher.Ignorando_el_directorio=Ignoring the directory
34
Launcher.labelset_class=Cannot find label set class (labelset)
35
Launcher.look_and_feel=Cannot set system 'look and feel'
36
Launcher.No_se_encontro_la_clase_de_la_extension=Cannot find extension class
37
Launcher.No_se_encontro_la_clase_mdi_manager=Cannot find MDI manager class
38
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=Cannot access MDI manager
39
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Cannot save Andami configuration
40
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=Cannot instantiate MDI manager
41
Launcher.No_se_puede_acceder_a=Cannot access
42
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Cannot save plugins configuration
43
Launcher.Two_extensions_with_the_same_priority=Found two extensions with the same priority. Will only load one.
44
Launcher.Two_menus_with_the_same_position=Found two menus with the same position. Will only load one.
45
login_exit=Exit
46
login_invalid_user=Invalid user
47
login_name=Name
48
login_ok=Ok
49
login_password=Password
50
MDIFrame.Error_no_capturado_por_el_usuario=Unexpected error encountered
51
MDIFrame.quiere_salir=Do you want to quit the application?
52
MDIFrame.salir=Exit
53
MDIManagerFactory.No_skin_extension_in_the_plugins=No "skin" extension among registered plugins
54
memory_usage=
55
Menu_type_not_supported_=
56
No_extension_associated_with_this_event_=No extension associated with this event.
57
No_se_encontro_la_extension_especificada_en_el_parametro_exclusiveUI=The extension specified by the 'exclusiveUI' parameter was not found\:
58
No_se_encontro_la_traduccion_para=Cannot find translation for
59
ok=Ok
60
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Two classes with the same name
61
PluginClassLoader.Error_reading_file=Error reading file\:
62
PluginServices.Bug\ en\ el\ c\u00f3digo=General application error.
63
PluginServices.Bug_en_el_codigo=Bug in program code.
64
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ \ \\n\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
65
PluginServices.Error_grave_de_la_aplicaci\u00f3n=Fatal error in application.
66
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Cannot set hour glass.
67
Preferences=Preferences...
68
Resource_was_not_saved=Resource was not saved
69
restore_defaults=Restore option defaults
70
save_resources=Save resources
71
save_selected_resources_and_exit=Save selected resources and exit
72
select_all=Select all
73
select_all_resources=Select all resources
74
select_resources_to_save_before_exit=The selected resources will be saved before exiting the application
75
setting_up_event_queue=
76
SplashWindow.configuring_proxy=
77
SplashWindow.Iniciando=Initializing...
78
SplashWindow.initializing_extensions=
79
SplashWindow.installing_extensions_controls=
80
SplashWindow.installing_extensions_labels=
81
SplashWindow.installing_extensions_menus=
82
SplashWindow.loading_plugin_settings=
83
SplashWindow.looking_for_a_skin=
84
SplashWindow.looking_for_updates=
85
SplashWindow.post_initializing_extensions=
86
SplashWindow.preparing_workbench=
87
SplashWindow.reading_plugins_config.xml=
88
SplashWindow.setting_up_applications_name_and_icons=
89
SplashWindow.setting_up_class_loaders=
90
SplashWindow.setting_up_master_extension=
91
SplashWindow.starting_plugin_internationalization_system=
92
StatusBar.Aplicacion_iniciada=Application started.
93
The_following_resource_could_not_be_saved_=The following resource could not be saved\:
94
Unable_to_find_icon=Unable to find icon
95
Window_properties_not_stored_correctly_Window_state_will_not_be_restored=
96
y_en=and in
tags/v1_12_0_Build_1402/frameworks/_fwAndami/config/text_pl.properties
1
#Translations for language [pl]
2
#Thu Oct 29 12:16:21 CET 2009
3
aceptar=Akceptuj
4
cancel_the_application_termination=
5
cancelar=Anuluj
6
com.iver.andami.messages.Messages=Komunikaty
7
creating_main_window=
8
deselect_all=
9
deselect_all_resources=
10
discard_changes=
11
discard_changes_and_exit=
12
Ejecutando\ comando\:\ =Wykonaj komend\u0119\:
13
en=w
14
error_parsing_comboscale_elements=B\u0142\u0105d przy analizie element\u00f3w obiektu skala
15
error_parsing_comboscale_value=B\u0142\u0105d przy analizie warto\u015bci obiektu skala
16
Error_reading_andami_config_New_file_created_A_backup_was_made_on_=
17
Error_reading_isocodes_file=B\u0142\u0105d przy odczytywaniu  pliku kod\u00f3w ISO dla j\u0119zyk\u00f3w
18
Error_reading_plugin_persinstence_New_file_created_A_backup_was_made_on_=
19
Icon_not_found_=Nie znaleziony ikony
20
incorrect_color=
21
incorrect_position=
22
incorrect_size=
23
KeyMapping.Caracter_no_valido=Niew\u0142a\u015bciwy znak
24
Launcher.config_mal_formado=. Plik config.xml niepoprawnie sformatowany
25
Launcher.config_no_encontrado=Nie znaleziono pliku config.xml
26
Launcher.Dependencia_no_resuelta_en_plugin=Niewystarczaj\u0105ca zale\u017cno\u015b\u0107 wtyczki
27
Launcher.Dos_skin_extension=Dwie sk\u00f3rki.
28
Launcher.Error_con_las_librerias_del_plugin=B\u0142\u0105d biblioteki wtyczek
29
Launcher.error_getting_class_loader_for_status_bar_control=B\u0142\u0105d za\u0142adowania klasy do pasku stanu
30
Launcher.Error_instanciando_la_extension=Nie mo\u017cna utwo\u017cy\u0107 instancji rozsze\u017cenia
31
Launcher.Error_localizando_la_clase_de_la_extension=Nie mo\u017cna zlokalizowa\u0107 klasy rozsze\u017cenia
32
Launcher.Hay_dependencias_circulares=Zap\u0119tlenie zalo\u017cno\u015bci wtyczki
33
Launcher.Ignorando_el_directorio=Ignorowanie katalogu
34
Launcher.labelset_class=Nie mo\u017cna znale\u017a\u0107 klasy etykiet
35
Launcher.look_and_feel=Nie mo\u017cna ustawi\u0107 systemu 'look and feel'
36
Launcher.No_se_encontro_la_clase_de_la_extension=Nie mo\u017cna znale\u017a\u0107 klasy rozsze\u017cenia
37
Launcher.No_se_encontro_la_clase_mdi_manager=Nie mo\u017cna znale\u017a\u0107 klasy mdi manager
38
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=Grak dost\u0119pu do mdi manager
39
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Nie mo\u017cna zapisa\u0107 konfiguracji Andami
40
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=NIe mo\u017cna utwo\u017cy\u0107 instancji mdi manager
41
Launcher.No_se_puede_acceder_a=Brak dost\u0119pu do
42
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Nie mo\u017cna zapisa\u0107 konfiguracji wtyczek
43
Launcher.Two_extensions_with_the_same_priority=Dwa rozszerzenia z takim samym priorytetem. Zostanie za\u0142adowane tylko jedno.
44
Launcher.Two_menus_with_the_same_position=Dwa menu o tej samej pozycji. Zostanie za\u0142adowane tylko jedno.
45
login_exit=Wyj\u015bcie
46
login_invalid_user=Niew\u0142a\u015bciwy u\u017cytkownik
47
login_name=Nazwa
48
login_ok=OK
49
login_password=Has\u0142o
50
MDIFrame.Error_no_capturado_por_el_usuario=B\u0142\u0105d u\u017cytkownika
51
MDIFrame.quiere_salir=Zamkn\u0105\u0107 gvSIG?
52
MDIFrame.salir=Wyj\u015bcie
53
MDIManagerFactory.No_skin_extension_in_the_plugins=Brak sk\u00f3rek we wtyczkach
54
memory_usage=
55
Menu_type_not_supported_=
56
No_extension_associated_with_this_event_=Brak rozszerzenia powi\u0105zanego z tym zdarzeniem
57
No_se_encontro_la_extension_especificada_en_el_parametro_exclusiveUI=
58
No_se_encontro_la_traduccion_para=Nie mo\u017cna znale\u017a\u0107 t\u0142umaczenia dla
59
ok=Ok
60
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Dwie klasy z t\u0105 sam\u0105 nazw\u0105
61
PluginClassLoader.Error_reading_file=B\u0142\u0105d wej\u015bcia/wyj\u015bcia
62
PluginServices.Bug\ en\ el\ c\u00f3digo=B\u0142\u0105d aplikacji
63
PluginServices.Bug_en_el_codigo=B\u0142\u0105d kodu
64
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ \ \\n\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
65
PluginServices.Error_grave_de_la_aplicaci\u00f3n=Krytyczny b\u0142\u0105d
66
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Nie mo\u017cna ustawi\u0107 zegara
67
Preferences=Preferencje
68
Resource_was_not_saved=
69
restore_defaults=Przywr\u00f3\u0107 domy\u015blne
70
save_resources=
71
save_selected_resources_and_exit=
72
select_all=Zaznacz wszystko
73
select_all_resources=
74
select_resources_to_save_before_exit=
75
setting_up_event_queue=
76
SplashWindow.configuring_proxy=
77
SplashWindow.Iniciando=Inicjalizowanie...
78
SplashWindow.initializing_extensions=
79
SplashWindow.installing_extensions_controls=
80
SplashWindow.installing_extensions_labels=
81
SplashWindow.installing_extensions_menus=
82
SplashWindow.loading_plugin_settings=
83
SplashWindow.looking_for_a_skin=
84
SplashWindow.looking_for_updates=
85
SplashWindow.post_initializing_extensions=
86
SplashWindow.preparing_workbench=
87
SplashWindow.reading_plugins_config.xml=
88
SplashWindow.setting_up_applications_name_and_icons=
89
SplashWindow.setting_up_class_loaders=
90
SplashWindow.setting_up_master_extension=
91
SplashWindow.starting_plugin_internationalization_system=
92
StatusBar.Aplicacion_iniciada=Aplikacja uruchomiana
93
The_following_resource_could_not_be_saved_=
94
Unable_to_find_icon=Nie mo\u017cna znale\u017a\u0107 ikony
95
Window_properties_not_stored_correctly_Window_state_will_not_be_restored=
96
y_en=oraz w
0 97

  
tags/v1_12_0_Build_1402/frameworks/_fwAndami/config/text_it.properties
1
#Translations for language [it]
2
#Mon Sep 21 10:01:58 CEST 2009
3
aceptar=Accetta
4
cancel_the_application_termination=Termina la chiusura dell'applicazione
5
cancelar=Cancella
6
com.iver.andami.messages.Messages=Messaggi
7
creating_main_window=
8
deselect_all=Deseleziona tutto
9
deselect_all_resources=Deseleziona tutte le risorse
10
discard_changes=Scarta modifiche
11
discard_changes_and_exit=Scarta le modifiche esistenti ed esce
12
Ejecutando\ comando\:\ =Esegui comando\:
13
en=in
14
error_parsing_comboscale_elements=Errore nell'esame degli elementi ComboScale
15
error_parsing_comboscale_value=Errore nell'esame del valore ComboScale
16
Error_reading_andami_config_New_file_created_A_backup_was_made_on_=Errore nel leggere il file andami-config.xml. Verr\u00e0 creato un nuovo file. E' stata effettuata una copia di sicurezza in
17
Error_reading_isocodes_file=Errore di lettura dei codici ISO della lingua
18
Error_reading_plugin_persinstence_New_file_created_A_backup_was_made_on_=Errore nel leggere il file plugin-persistence.xml. Verr\u00e0 creato un nuovo file. E' stata effettuata una copia di sicurezza in
19
Icon_not_found_=Icona non trovata
20
incorrect_color=
21
incorrect_position=
22
incorrect_size=
23
KeyMapping.Caracter_no_valido=Carattere non valido\:
24
Launcher.config_mal_formado=. Documento 'config.xml' mal formato
25
Launcher.config_no_encontrado=. Documento 'config.xml' non trovato
26
Launcher.Dependencia_no_resuelta_en_plugin=La dipendenza non risulta in plugin
27
Launcher.Dos_skin_extension=Due skin-extension. Usare l'ultima
28
Launcher.Error_con_las_librerias_del_plugin=Errore con la libreria del plugin
29
Launcher.error_getting_class_loader_for_status_bar_control=Errore nell'ottenere il loader delle classi per la barra di stato
30
Launcher.Error_instanciando_la_extension=Errore ricorrendo all'estensione
31
Launcher.Error_localizando_la_clase_de_la_extension=Errore localizzando la classe dell'estensione
32
Launcher.Hay_dependencias_circulares=Ci sono dipendenze circolari tra i plugins
33
Launcher.Ignorando_el_directorio=Ignorando il registro
34
Launcher.labelset_class=Non si \u00e9 trovata la classe delle etichette (labelset)
35
Launcher.look_and_feel=Non si \u00e9 potuto porre il 'look and feel'
36
Launcher.No_se_encontro_la_clase_de_la_extension=Non si \u00e9 trovata la classe dell'estensione
37
Launcher.No_se_encontro_la_clase_mdi_manager=No si \u00e9 trovata la classe mdi manager
38
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=Non si \u00e9 potuto accedere alla clase mdi manager
39
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Non si \u00e9 potuta salvare la configurazione di Andami
40
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=Non si \u00e9 potuto ricorrere alla classe mdi manager
41
Launcher.No_se_puede_acceder_a=Non si puo' accedere a
42
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Si \u00e9 prodotto un errore salvando la configurazione dei plugins
43
Launcher.Two_extensions_with_the_same_priority=Due estensioni con la stessa priorita', se ne carichera' solo una.
44
Launcher.Two_menus_with_the_same_position=Due men\u00fa con la stessa posizione, se ne carichera' solo uno
45
login_exit=Uscita
46
login_invalid_user=Utente non valido
47
login_name=Nome
48
login_ok=Ok
49
login_password=Password
50
MDIFrame.Error_no_capturado_por_el_usuario=Errore non catturato per l'usario
51
MDIFrame.quiere_salir=Sei sicuro di voler uscire?
52
MDIFrame.salir=Uscire
53
MDIManagerFactory.No_skin_extension_in_the_plugins=Non si \u00e9 trovato nessuna estensione 'skin' tra i plugins
54
memory_usage=
55
Menu_type_not_supported_=
56
Messages._no_se_encontro_la_traduccion_para=Non si \u00e9 incontrata la traduzione per
57
Messages.no_se_encontro_la_traduccion_para=Non \u00e8 stata individuata la traduzione per
58
No_extension_associated_with_this_event_=Nessuna estensione associata a questo evento
59
No_se_encontro_la_extension_especificada_en_el_parametro_exclusiveUI=Non \u00e8 stata trovata l'estensione specificata nel parametro 'exclusiveUI'\:
60
No_se_encontro_la_traduccion_para=Non si \u00e9 incontrata la traduzione per
61
ok=Accetta
62
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Due classi con lo stesso nome nel plugin
63
PluginClassLoader.Error_reading_file=Errore leggendo il file\:
64
PluginServices.Bug\ en\ el\ c\u00f3digo=Errore dell'applicazione
65
PluginServices.Bug_en_el_codigo=Bug nel codice
66
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ \ \\n\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
67
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=L'applicazione ha causato un errore grave. Si raccomanda caldamente di uscire dall'applicazione
68
PluginServices.Error_grave_de_la_aplicaci\u00f3n=Errore dell'applicazione. Si raccomanda di riavviare l'applicazione.
69
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Non si \u00e9 potuta porre la clessidra
70
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=Non si \u00e9 potuto riparare il cursore del mouse
71
Preferences=Preferenze
72
Resource_was_not_saved=La risorsa non \u00e8 stata salvata
73
restore_defaults=Ripristina opzioni predefinite
74
save_resources=Salva risorse
75
save_selected_resources_and_exit=Salva le risorse selezionate ed esci
76
select_all=Seleziona tutto
77
select_all_resources=Seleziona tutti gli elementi
78
select_resources_to_save_before_exit=Prima di uscire verranno salvate le risorse selezionate
79
setting_up_event_queue=
80
SplashWindow.configuring_proxy=
81
SplashWindow.Iniciando=Iniziando...
82
SplashWindow.initializing_extensions=
83
SplashWindow.installing_extensions_controls=
84
SplashWindow.installing_extensions_labels=
85
SplashWindow.installing_extensions_menus=
86
SplashWindow.loading_plugin_settings=
87
SplashWindow.looking_for_a_skin=
88
SplashWindow.looking_for_updates=
89
SplashWindow.post_initializing_extensions=
90
SplashWindow.preparing_workbench=
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff