Revision 1409

View differences:

org.gvsig.raster.tools/tags/buildNumber_18/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Thu Jan 24 08:49:06 CET 2013
3
buildNumber=18
0 4

  
org.gvsig.raster.tools/tags/buildNumber_18/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/src/test/resources/README.txt
1
Put into this folder the resources needed by your test classes.
2

  
3
This folder is added to the Tests classpath, so you can load any resources 
4
through the ClassLoader.
5

  
6
By default, in this folder you can find an example of log4j configuration,
7
prepared to log messages through the console, so logging works when you
8
run your tests classes.
0 9

  
org.gvsig.raster.tools/tags/buildNumber_18/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/src/test/resources/log4j.xml
1
<?xml version="1.0" encoding="ISO-8859-1" ?>
2
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
3

  
4
<!-- 
5
Log4J configuration file for unit tests execution.
6
 -->
7
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
8

  
9
	<!-- Appender configuration to show logging messages through the console -->
10
	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
11
		<layout class="org.apache.log4j.PatternLayout">
12
			<param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%c{2}.%M()]\n  %m%n" />
13
		</layout>
14
	</appender>
15

  
16
	<!-- 
17
	Activate logging messages of DEBUG level of higher only for the
18
	org.gvsig.tools packages.
19
	You can put full classes names or packages instead, to configure
20
	logging for all the classes and subpackages of the package.
21
	-->
22
	<category name="org.gvsig.tools">
23
		<priority value="DEBUG" />
24
	</category>
25
	<category name="org.gvsig.raster">
26
		<priority value="DEBUG" />
27
	</category>
28

  
29
	<!-- 
30
	By default, show only logging messages of INFO level or higher, 
31
	through the previously configured CONSOLE appender. 
32
	-->
33
	<root>
34
		<priority value="INFO" />
35
		<appender-ref ref="CONSOLE" />
36
	</root>
37
</log4j:configuration>
0 38

  
org.gvsig.raster.tools/tags/buildNumber_18/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/src/test/java/org/gvsig/raster/app/extension/TestNoDataPanel.java
1
package org.gvsig.raster.app.extension;
2

  
3
import javax.swing.JFrame;
4

  
5
import org.gvsig.raster.tools.app.basic.tool.properties.panel.NoDataPanel;
6

  
7
public class TestNoDataPanel {
8
		private int                          w        = 510;
9
		private int                          h        = 300;
10
		private JFrame                       frame    = new JFrame();
11
		private NoDataPanel               desc     = null;
12

  
13
		public TestNoDataPanel() {
14
			desc = new NoDataPanel();
15
			frame.getContentPane().add(desc);
16
			frame.setSize(w, h);
17
			frame.setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
18
			frame.setVisible(true);
19
		}
20

  
21
		public static void main(String[] args) {
22
			new TestNoDataPanel();
23
		}
24
	}
0 25

  
org.gvsig.raster.tools/tags/buildNumber_18/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/src/test/java/org/gvsig/raster/app/extension/TestClipPanel.java
1
package org.gvsig.raster.app.extension;
2

  
3
import javax.swing.JFrame;
4

  
5
import org.gvsig.raster.tools.app.basic.tool.clip.ui.ClippingPanel;
6
import org.gvsig.tools.library.impl.DefaultLibrariesInitializer;
7

  
8
public class TestClipPanel {
9
		private int                          w        = 510;
10
		private int                          h        = 300;
11
		private JFrame                       frame    = new JFrame();
12
		private ClippingPanel               desc     = null;
13

  
14
		public TestClipPanel() {
15
			new DefaultLibrariesInitializer().fullInitialize();
16
			desc = new ClippingPanel(null);
17
			frame.getContentPane().add(desc);
18
			frame.setSize(w, h);
19
			frame.setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
20
			frame.setVisible(true);
21
		}
22

  
23
		public static void main(String[] args) {
24
			new TestClipPanel();
25
		}
26
	}
0 27

  
org.gvsig.raster.tools/tags/buildNumber_18/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/src/main/resources/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<depends plugin-name="org.gvsig.raster.tilecache.app" />
4
	<depends plugin-name="org.gvsig.app.document.table.app.mainplugin" />	
5
	<resourceBundle name="text"/>
6
	<libraries library-dir="lib"/>
7
	<extensions>
8
	
9
		<!--Menu Raster-->
10
	
11
		<extension class-name="org.gvsig.raster.tools.app.basic.RasterExtension"
12
			description=""
13
			active="true"
14
			priority="1">
15
			<tool-bar name="View_Tools_Zooms" position="3">
16
				<selectable-tool icon="layer-zoom-res-level" action-command="ZoomResolutionLevel" tooltip="goto_resolution_level" position="7"/>
17
			</tool-bar>
18
			<menu text="Layer/goto_resolution_level" 
19
				position="0" 
20
				action-command="ZoomResolutionLevel" 
21
				icon="layer-zoom-res-level"/>
22
				
23
			<menu text="Layer/regiones_interes"
24
				position="0" 
25
				action-command="RoisManager" 
26
				icon="layer-modify-roi"/>
27
				
28
			<menu text="Layer/histograma"
29
				position="0" 
30
				action-command="HistogramPanel" 
31
				icon="layer-histogram"/>
32
				
33
			<menu text="Layer/tablas_color"
34
				position="0" 
35
				action-command="ViewColorTable" 
36
				icon="layer-color-table"/>
37
				
38
			<menu text="Layer/generar_overviews"
39
				position="0" 
40
				action-command="Overviews" 
41
				icon="layer-modify-overviews"/>
42
			
43
			<menu text="Layer/propiedades_raster"
44
				position="0" 
45
				action-command="RasterProperties" 
46
				icon="layer-properties-raster"/>
47
				
48
			<menu text="Layer/filtros"
49
				position="0" 
50
				action-command="FilterPanel" 
51
				icon="layer-filter-raster"/>
52
				
53
			<menu text="Layer/enhanced_rad"
54
				position="0" 
55
				action-command="EnhancedPanel" 
56
				icon="layer-enhanced"/>
57
				
58
			<menu text="Layer/geolocation"
59
				position="0" 
60
				action-command="GeoLocation" 
61
				icon="layer-geolocalization"/>
62
				
63
			<!-- ************* -->
64
				
65
			<menu text="Layer/export_to/saveas"
66
				position="0" 
67
				action-command="SaveAs" 
68
				icon="layer-saveas"/>
69
				
70
			<menu text="Layer/export_to/recorte"
71
				position="0" 
72
				action-command="ClippingPanel" 
73
				icon="layer-clip-raster"/>
74
				
75
			<!-- ************* -->
76
			
77
			<menu text="View/export/salvar_raster_geo"
78
				position="0" 
79
				action-command="SaveRaster" 
80
				icon="view-export-georeferenced-raster"/>
81
				
82
			<menu text="View/seleccionar_capas_raster"
83
				position="0" 
84
				action-command="SelectLayer" 
85
				icon="view-select-raster-layer"/>
86
				
87
			<menu text="View/export/export_view_to_image"
88
				position="0" 
89
				action-command="SaveViewToImageRaster" 
90
				icon="layer-saveas"/>
91
			
92
			<menu text="View/analysisview"
93
				position="0" 
94
				action-command="ViewRasterAnalysis" 
95
				icon="view-raster-analysis"/>
96
		</extension>
97
		
98
		<extension class-name="org.gvsig.raster.tools.app.basic.tool.infobypoint.InfoByRasterPointExtension"
99
			description="Extensi?n encargada de gestionar la herramienta de info."
100
			active="true">
101
			 <action 
102
        		name="layer-info-by-raster-point"
103
        		label="_point_information"
104
        		tooltip="_Show_point_information"
105
        		action-command="INFO_BY_PIXEL" 
106
        		icon="layer-info-by-pixel"
107
        		position="0"
108
        		/>
109
		</extension>
110

  
111

  
112
		<extension class-name="org.gvsig.raster.tools.app.basic.tool.GenericToolBarModule"
113
			description="M?dulo de una barra de herramientas generica." 
114
			active="true" 
115
			priority="1">
116
		</extension>
117
		
118
		
119
		<!--<extension class-name="org.gvsig.raster.tools.app.basic.tool.infobypoint.InfoByRasterPointExtension"
120
			description="Informaci?n por p?xel"
121
			active="true"
122
			priority="1">
123
			<tool-bar name="Info_By_Pixel" position="3">
124
				<selectable-tool icon="info-by-pixel" action-command="INFO_BY_PIXEL" tooltip="info_by_pixel" position="7"/>
125
			</tool-bar>
126
		</extension>
127
		<extension class-name="org.gvsig.raster.tools.app.basic.SystemGCExtension"
128
			description=""
129
			active="true">
130
			<menu text="Test/System GC"/>
131
		</extension>
132
		<extension class-name="org.gvsig.raster.tools.app.basic.tool.infobypoint.InfoByRasterPointExtension"
133
			description="Extensi?n encargada de gestionar la herramienta de info."
134
			active="true"
135
			priority="29">
136
			<menu text="Vista/consulta"
137
				position="30030"
138
				is_separator="true"/>
139
			<menu text="Vista/consulta/informacion" position="3003010" action-command="INFO_BY_PIXEL" icon="view-query-information"/>
140
			<tool-bar name="View_Tools_Query" position="5">
141
				<selectable-tool icon="view-query-information" action-command="INFO_BY_PIXEL"  tooltip="informacion" position="1"/>
142
			</tool-bar>
143
		</extension>
144
		-->	
145
		
146
	</extensions>
147
</plugin-config>
0 148

  
org.gvsig.raster.tools/tags/buildNumber_18/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/src/main/resources/text_cs.properties
1
#Translations for language [cs]
2
#Mon Nov 06 09:04:31 CET 2006
3
activar=Activate
4
brillo=Jas
5
brillo_y_contraste=Jas a kontrats
6
compress=Komprese
7
confirmacion=Potvr\u010f \u017ee
8
contraste=Contrast
9
eliminar_extremos=Odstranit hrany
10
endinfo=Finalization Statistics
11
error_file_exists=Soubor u\u017e existuje. P\u0159ejete si jej p\u0159epsat?
12
error_file_not_writable=Nen\u00ed mo\u017en\u00e9 vytvo\u0159it v\u00fdstupn\u00ed soubor.
13
espere=Pros\u00edm \u010dekejte
14
file=Soubor
15
height=V\u00fd\u0161ka
16
lineal_directo=P\u0159\u00edmo line\u00e1rn\u00ed
17
linf_der=dole vpravo X
18
lsup_izq=Naho\u0159e vlevo X
19
msg_save_raster=Operace bude zru\u0161ena. Chcete pokra\u010dovat?
20
mtspixel=Mts/pixel
21
no=No
22
onSharpening=Aktivace doost\u0159ov\u00e1n\u00ed
23
previsualizacion=Preview
24
props=Vlastnosti
25
realce=vylep\u0161en\u00ed
26
realces=Vylep\u0161en\u00ed
27
recorte_colas=O\u0159ez fronty
28
resolution=Rozli\u0161en\u00ed ??
29
salvar_raster=Ulo\u017eit jako rastr
30
scale=M\u011b\u0159\u00edtko
31
seleccionar_fichero=vyber soubor
32
select=Vyber
33
selectBandaRefinado=V\u00fdb\u011br Panchromatick\u00e9ho p\u00e1sma
34
size=Velikost
35
tarea_en_progreso=B\u011b\u017e\u00edc\u00ed proces
36
time=\u010cas
37
width=Ampl\u00e0ria
38
yes=Ano
0 39

  
org.gvsig.raster.tools/tags/buildNumber_18/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/src/main/resources/build.number
1
#Build Number for ANT. Do not edit!
2
#Tue Apr 28 16:00:47 CEST 2009
3
build.number=2005
org.gvsig.raster.tools/tags/buildNumber_18/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/src/main/resources/text_fr.properties
1
#Translations for language [fr]
2
#Mon Oct 30 09:38:21 CET 2006
3
activar=Activate
4
brillo=Luminosit\u00e9
5
brillo_y_contraste=Luminosit\u00e9 et contrate
6
compress=Compression
7
confirmacion=Confirmation
8
contraste=Contraste
9
eliminar_extremos=Eliminer les extr\u00eames
10
endinfo=Statistiques
11
error_file_exists=Le fichier existe d\u00e9j\u00e0. Voulez-vous continuer ?
12
error_file_not_writable=Impossible d'\u00e9crire le fichier de sortie.
13
espere=Patientez s.v.p.
14
file=Fichier
15
height=Hauteur
16
lineal_directo=Lin\u00e9aire direct
17
linf_der=Inf. droite
18
lsup_izq=Sup. gauche
19
msg_save_raster=L'op\u00e9ration va \u00eatre annul\u00e9e ?
20
mtspixel=Mts/pixel
21
no=Non
22
onSharpening=Am\u00e9liorer la r\u00e9solution planim\u00e9trique
23
previsualizacion=Pr\u00e9visualisation.
24
props=Propri\u00e9t\u00e9s
25
realce=R\u00e9heussement
26
realces=
27
recorte_colas=Couper les r\u00e9sidus
28
resolution=R\u00e9solution
29
salvar_raster=Enregistrer le raster g\u00e9or\u00e9f\u00e9renc\u00e9.
30
scale=Echelle
31
seleccionar_fichero=S\u00e9lectionner le fichier
32
select=
33
selectBandaRefinado=S\u00e9lectionner la bande d'am\u00e9lioration.
34
size=Taille
35
tarea_en_progreso=T\u00e2che en progression.
36
time=Temps
37
width=Largeur
38
yes=Oui
0 39

  
org.gvsig.raster.tools/tags/buildNumber_18/org.gvsig.raster.tools/org.gvsig.raster.tools.app/org.gvsig.raster.tools.app.basic/src/main/resources/text_de.properties
1
#Translations for language [de]
2
#Wed Oct 08 17:54:43 CEST 2008
3
abrir_memoria=
4
accept=OK
5
activar=Aktivieren
6
addlibrary_supera_limite=
7
alto=H\u00f6he
8
ancho=Breite
9
ancho_alto=Breite x H\u00f6he
10
ancho_x_alto=
11
aplicando_filtros=
12
aplicar_transf=
13
aplicar_vista_previa=
14
apply=Anwenden
15
apply_all=
16
archivo=
17
aviso_salir_salvando=
18
aviso_write_transform=
19
b_splines=
20
back_transf=
21
band=
22
banda=
23
bandas=Farbstreifen
24
bands_number=
25
bands_panel=
26
bicubico=
27
bilinear=
28
borrar=L\u00f6schen
29
boton_limpiar=
30
boton_mostrar=
31
brillo=Helligkeit
32
brillo_y_contraste=Helligkeit und Kontrast
33
byte_order=
34
calculando_histograma=
35
cambiar_ruta=
36
cancel=Abbrechen
37
capa_a_reproyectar=
38
capa_nueva=
39
cargar=laden
40
cargar_en_toc=
41
celda=
42
center_raster=
43
cerrar=schlie\u00dfen
44
change_view_proj=
45
close=Schlie\u00dfen
46
color=Farbe\:
47
compress=Kompression
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff