Revision 38473

View differences:

tags/v2_0_0_Build_2049/extensions/extHelp/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5
                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
6

  
7
	<modelVersion>4.0.0</modelVersion>
8
	<artifactId>org.gvsig.help</artifactId>
9
	<packaging>jar</packaging>
10
	<version>2.0-SNAPSHOT</version>
11
	<name>Online basic help</name>
12
	<description>gvSIG help extension</description>
13
	<developers>
14
		<developer>
15
			<id>dcervera</id>
16
			<name>David Cervera</name>
17
			<email>dcervera@disid.com</email>
18
			<roles>
19
				<role>Developer</role>
20
			</roles>
21
		</developer>
22
		<developer>
23
			<id>cordinyana</id>
24
			<name>Cèsar Ordiñana</name>
25
			<email>cordin@disid.com</email>
26
			<roles>
27
				<role>Architect</role>
28
				<role>Developer</role>
29
			</roles>
30
		</developer>
31
	</developers>
32

  
33
	<parent>
34
		<groupId>org.gvsig</groupId>
35
		<artifactId>gvsig-base-extension-pom</artifactId>
36
		<version>2.0-SNAPSHOT</version>
37
	</parent>	
38
	<dependencies>
39
		<dependency>
40
			<groupId>org.gvsig</groupId>
41
			<artifactId>org.gvsig.andami</artifactId>
42
			<version>2.0-SNAPSHOT</version>
43
            <scope>compile</scope>
44
		</dependency>
45
        <dependency>
46
            <groupId>org.slf4j</groupId>
47
            <artifactId>slf4j-api</artifactId>
48
            <scope>compile</scope>
49
        </dependency>        
50
	</dependencies>
51
	<properties>
52
		<extension.install.dir>${gvsig.extensions.dir}/org.gvsig.help/
53
		</extension.install.dir>
54
		<gvsig-extension.install.dir>${gvsig.extensions.dir}/org.gvsig.app/
55
		</gvsig-extension.install.dir>
56
		<extension-appgvsig-lib-dir>${gvsig.extensions.dir}/org.gvsig.app/lib/
57
		</extension-appgvsig-lib-dir>
58
		<build-dir>${basedir}/../build</build-dir>
59
		<library-dir>lib</library-dir>
60
		<!--		 Path to the output directory for the distribution -->
61
		<extension.install.dir-output-directory>target/
62
		</extension.install.dir-output-directory>
63
		<distribution-output-directory>distribution/
64
		</distribution-output-directory>
65

  
66
		<!-- Path to the file descriptor to generate the extension-->
67
		<extension.install.dir-file>distribution/distribution.xml
68
		</extension.install.dir-file>
69
		<!-- Final name of the output directory for the distribution -->
70
		<distribution-final-name>extHelp
71
		</distribution-final-name>
72
		<application-name>extHelp</application-name>
73
		<output-dir_installers>target/installers/
74
		</output-dir_installers>
75
        <eclipse.project.name>extHelp</eclipse.project.name>
76
        <package.info.state>alpha6</package.info.state>
77
	</properties>
78
	<build>
79
		<sourceDirectory>src</sourceDirectory>
80
		<testSourceDirectory>src-test</testSourceDirectory>
81
        <plugins>
82
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
83
            <plugin>
84
                <groupId>org.apache.maven.plugins</groupId>
85
                <artifactId>maven-surefire-plugin</artifactId>
86
                <configuration>
87
                    <skipTests>true</skipTests>
88
                </configuration>
89
            </plugin>       
90
        </plugins>
91
	</build>
92
</project>
tags/v2_0_0_Build_2049/extensions/extHelp/build.xml
1
<project name="Generar extension en Andami" default="help-documentation-zip" basedir=".">
2
	<description>
3
        Prepara el manual de usuario para el plugin de de Ayuda de gvSIG en Andami.
4
    </description>
5
	<!-- set global properties for this build -->
6
	<property name="dist" location="dist-temp" />
7
	<property name="plugin" value="org.gvsig.help" />
8
	<property name="extension-dir" location="../build/product/gvSIG/extensiones" />
9
	<property name="mydist" location="dist" />
10
	<import file="../binaries/ant/utilities.xml" />
11

  
12
	<target name="init">
13
		<!-- Create the time stamp -->
14
		<tstamp />
15
		<!-- Create the build directory structure used by compile -->
16
		<mkdir dir="${dist}" />
17
	</target>
18

  
19
	<target name="help-documentation-zip">
20

  
21
		<!--get src="http://"
22
		 	dest="${mydist}/gvSIG/manual-de-usuario.zip"
23
	 	 /-->
24

  
25
		<unzip src="${mydist}/gvSIG/manual-de-usuario.zip" dest="${mydist}/gvSIG">
26
			<patternset>
27
				<include name="manual-de-usuario/es/map.jhm" />
28
			</patternset>
29
		</unzip>
30

  
31
		<loadfile property="add_text" srcFile="${mydist}/gvSIG/map.jhm.add" />
32
		<loadfile property="end_text" srcFile="${mydist}/gvSIG/end.add" />
33

  
34
		<property name="total" value="${add_text}${end_text}" />
35

  
36
		<replace file="${mydist}/gvSIG/manual-de-usuario/es/map.jhm" value="${total}">
37
			<replacetoken>
38
				<![CDATA[</map>]]></replacetoken>
39
		</replace>
40

  
41
		<zip destfile="${dist}/gvSIG/manual-de-usuario.zip" basedir="${mydist}/gvSIG" includes="manual-de-usuario/**/**" excludes="**/*.db" update="true" />
42
	</target>
43

  
44
	<target name="move-to-andami">
45
		<move todir="${extension-dir}/${plugin}/">
46
			<fileset dir="${dist}" includes="**/**" />
47
		</move>
48
	</target>
49

  
50
	<target name="clean">
51
		<delete dir="${dist}" failonerror="no" />
52
	</target>
53

  
54
</project>
tags/v2_0_0_Build_2049/extensions/extHelp/distribution/distribution.xml
1
<assembly>
2
	<id>distribution</id>
3
	<formats>
4
		<format>dir</format>
5
	</formats>
6
	<fileSets>
7
		<!-- Extructure for the extension -->
8
		<fileSet>
9
			<directory>config</directory>
10
			<outputDirectory>${extension.install.dir.name}
11
			</outputDirectory>
12
		</fileSet>
13
	</fileSets>
14
	<files>
15
		<file>
16
			<source>package.info</source>
17
			<outputDirectory>${extension.install.dir.name}
18
			</outputDirectory>
19
		</file>
20
	</files>
21

  
22
	<dependencySets>
23
		<dependencySet>
24
			<outputDirectory>${extension.install.dir.name}/${library-dir}
25
			</outputDirectory>
26
			<includes>
27
				<include>org.gvsig:org.gvsig.help
28
				</include>
29
			</includes>
30
		</dependencySet>
31
	</dependencySets>
32
</assembly>
tags/v2_0_0_Build_2049/extensions/extHelp/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Mon Jun 25 11:24:20 CEST 2012
3
buildNumber=2049
tags/v2_0_0_Build_2049/extensions/extHelp/dist/gvSIG/end.add
1

  
2
</map>
tags/v2_0_0_Build_2049/extensions/extHelp/dist/gvSIG/map.jhm.add
1
  <mapID target="com.iver.cit.gvsig.project.documents.gui.ProjectWindow" url="docs/proyectos-y-documentos-propios-de-gvsig/proyectosydocumentospropios.html" />
tags/v2_0_0_Build_2049/extensions/extHelp/dist/gvSIG/manual-de-usuario/es/help.hs
1
<?xml version='1.0' encoding='ISO-8859-1' ?>
2
<!DOCTYPE helpset
3
  PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 2.0//EN"
4
         "../dtd/helpset_2_0.dtd">
5

  
6
<helpset version="1.0">
7

  
8
  <!-- title -->
9
  <title>gvSIG - Ayuda en linea</title>
10

  
11
  <!-- maps -->
12
  <maps>
13
     <homeID>docs.introduccion-a-gvsig.copy_of_queesgvsig.html</homeID>
14
     <mapref location="map.jhm"/>
15
  </maps>
16

  
17
  <!-- views -->
18
  <view>
19
    <name>TOC</name>
20
    <label>Tabla de contenidos</label>
21
    <type>javax.help.TOCView</type>
22
    <data>toc.xml</data>
23
  </view>
24

  
25
  <view>
26
    <name>Index</name>
27
    <label>Indice analitico</label>
28
    <type>javax.help.IndexView</type>
29
    <data>index.xml</data>
30
  </view>
31

  
32
  <view>
33
    <name>Search</name>
34
    <label>Search</label>
35
    <type>javax.help.SearchView</type>
36
    <data engine="com.sun.java.help.search.DefaultSearchEngine">
37
      JavaHelpSearch
38
    </data>
39
  </view>
40

  
41
<!--
42
  <view>
43
    <name>Favorites</name>
44
    <label>Favoritos</label>
45
    <type>javax.help.FavoritesView</type>
46
  </view>
47
-->
48
  <presentation default="true" displayviewimages="false">
49
     <name>main window</name>
50
     <size width="700" height="400" />
51
     <location x="200" y="200" />
52
     <title>gvSIG - Ayuda en linea</title>
53
     <image>toplevelfolder</image>
54
     <toolbar>
55
	<helpaction image="action.back">javax.help.BackAction</helpaction>
56
	<helpaction image="action.forward">javax.help.ForwardAction</helpaction>
57
	<helpaction>javax.help.SeparatorAction</helpaction>
58
	<helpaction image="action.home">javax.help.HomeAction</helpaction>
59
	<!--helpaction image="action.reload">javax.help.ReloadAction</helpaction-->
60
	<helpaction>javax.help.SeparatorAction</helpaction>
61
	<helpaction image="action.print">javax.help.PrintAction</helpaction>
62
	<!--helpaction>javax.help.PrintSetupAction</helpaction-->
63
     </toolbar>
64
  </presentation>
65
</helpset>
tags/v2_0_0_Build_2049/extensions/extHelp/dist/gvSIG/manual-de-usuario/es/index.xml
1
<?xml version='1.0' encoding='ISO-8859-1'  ?>
2
<!DOCTYPE index
3
  PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp Index Version 1.0//EN"
4
         "http://java.sun.com/products/javahelp/index_1_0.dtd">
5

  
6
<index version="1.0">
7
   <indexitem text=".prof extension (profile data)" target="prof.profile"/>
8
   
9
   <indexitem text="accelerators (keyboard), see 'keyboard commands'"/>
10
   
11
   <indexitem text="adding an existing portfolio" target="proj.import"/>
12
   
13
   <indexitem text="adding an existing project" expand="false">
14
      <indexitem text="naming the project" target="proj.importdirectory"/>
15
      <indexitem text="naming the storage directory" target="proj.importdirectory"/>
16
      <indexitem text="procedures for" target="proj.importproject2"/>
17
   </indexitem>
18
   
19
   <indexitem text="analyzing program performance, see 'profiler'"/>
20
   
21
   <indexitem text="arguments" expand="false">
22
      <indexitem text="passing" target="debug.arguments"/>
23
      <indexitem text="specifying" target="debug.arguments"/>
24
   </indexitem>
25

  
26
   <indexitem text="assignments (keyboard), see 'keyboard commands'"/>
27

  
28
   <indexitem text="auto indent, source editor" target="edit.tabs"/>
29
   <indexitem text="auto indent, source editor - Secondary Window" target="edit.tabs" presentationtype="javax.help.SecondaryWindow" presentationname="main"/>
30
   <indexitem text="auto indent, source editor - Popup" target="edit.tabs" presentationtype="javax.help.Popup"/>
31

  
32
   <indexitem text="background color, source editor" target="edit.syntax"/>
33

  
34
   <indexitem text="BeanInfo file" target="proj.beansproject"/>
35

  
36
   <indexitem text="beans" expand="false">
37
      <indexitem text="adding existing sources to a bean project" target="proj.existingbeans"/>
38
      <indexitem text="changing bean file status" target="proj.existingbeans"/>
39
      <indexitem text="creating a bean project" target="proj.beansproject"/>
40
      <indexitem text="removing existing sources from a bean project" target="proj.existingbeans"/>
41
   </indexitem>
42
   
43
   <indexitem text="bindings (keyboard), see 'keyboard commands'"/>
44
   
45
   <indexitem text="break exception always" target="debug.addexception"/>
46
   
47
   <indexitem text="break exception on uncaught" target="debug.addexception"/>
48
   
49
   <indexitem text="breakpoints">
50
      <indexitem text="advanced functions" target="debug.breakpoint"/>
51
      <indexitem text="conditional" target="debug.conditional"/>
52
      <indexitem text="list of" target="debug.breakpoint"/>
53
      <indexitem text="location" target="debug.breakpoint"/>
54
      <indexitem text="window" target="debug.breakpoint"/>
55
   </indexitem>
56
   
57
   <indexitem text="browsing source code, see 'source browser'"/>
58
   
59
   <indexitem text="building projects">
60
      <indexitem text="Build menu" target="menus.build"/>
61
      <indexitem text="building projects" target="build.build"/>
62
      <indexitem text="javac" target="build.build"/>
63
   </indexitem>
64

  
65

  
66
   <indexitem text="call stack, moving on the" target="debug.stack"/>
67

  
68
   <indexitem text="callbacks, see `adding operations'"/>
69

  
70
   <indexitem text="changing the current project" target="proj.changeproject"/>
71
   
72
   <indexitem text="changing the status of a bean file" target="proj.existingbeans"/>
73

  
74
   <indexitem text="check in (version control)" target="version.version"/>
75

  
76
   <indexitem text="check in new (version control)" target="version.version"/>
77

  
78
   <indexitem text="choosing a Java compiler" target="build.compiler_pref"/>
79

  
80
   <indexitem text="Fast Javac" target="build.compiler_pref"/>
81

  
82
   <indexitem text="compiling a single file" target="build.compilefile"/>
83

  
84
   <indexitem text="compiling projects" target="build.build"/>
85

  
86

  
87
   <indexitem text="counted breakpoints" target="debug.counted"/>
88

  
89
   <indexitem text="Create Project Wizard">
90
      <indexitem text="adding existing sources to a bean project" target="proj.existingbeans"/>
91
      <indexitem text="naming a source file location" target="proj.appletwizard"/>
92
   </indexitem>
93

  
94
   <indexitem text="creating a portfolio">
95
      <indexitem text="steps for" target="proj.createportfolio"/>
96
      <indexitem text="using the dialog box for" target="proj.createportfolio"/>
97
   </indexitem>
98
   
99
   <indexitem text="Customizer file" target="proj.beansproject"/>
100
   
101
   <indexitem text="Debug/Browse Tab">
102
      <indexitem text="editing project attributes" target="proj.editproject"/>
103
      <indexitem text="output" target="debug.messages"/>
104
   </indexitem>
105
   
106
   <indexitem text="debugging">
107
      <indexitem text="-g option" target="debug.overview"/>
108
      <indexitem text="evaluating expressions" target="debug.eval"/>
109
      <indexitem text="prerequisites" target="debug.overview"/>
110
      <indexitem text="stack frames, viewing" target="debug.viewthreads"/>
111
      <indexitem text="starting" target="debug.start"/>
112
      <indexitem text="window, tab" target="debug.messages"/>
113
   </indexitem>
114
   
115
   <indexitem text="displaying a portfolio" target="proj.changeportfolio"/>
116
   
117
   <indexitem text="displaying a project" target="proj.changeproject"/>
118
   
119
   <indexitem text="editor, see 'source editor'"/>
120
   
121
   <indexitem text="evaluation history" target="debug.eval"/>
122
   
123
   <indexitem text="exceptions">
124
      <indexitem text="adding" target="debug.addexception"/>
125
      <indexitem text="break always" target="debug.addexception"/>
126
      <indexitem text="using the window" target="debug.exceptions"/>
127
      <indexitem text="window" target="debug.exceptions"/>
128
   </indexitem>
129
   
130
   <indexitem text="expanding objects and arrays" target="debug.eval"/>
131
   
132
   <indexitem text="expressions">
133
      <indexitem text="defined" target="debug.eval"/>
134
      <indexitem text="evaluating" target="debug.eval"/>
135
      <indexitem text="evaluation history" target="debug.eval"/>
136
      <indexitem text="using the evaluate button" target="debug.eval"/>
137
      <indexitem text="value of" target="debug.eval"/>
138
   </indexitem>
139
   
140
   
141
   
142
   <indexitem text="Fast Javac compiler" target="build.compiler_pref"/>
143
   
144
   <indexitem text="files, storing project" target="proj.paths"/>
145
   
146
   <indexitem text="flags, compiler see 'compiler options'"/>
147
   
148
   <indexitem text="fonts, setting in source editor" target="edit.font"/>
149
   
150
   
151
   
152
   <indexitem text="generating an HTML page" target="proj.generatehtml"/>
153
   <indexitem text="A Junk Entry" target="intentional.junk"/>
154
   
155
   
156
   <indexitem text="HTML file">
157
      <indexitem text="editing" target="proj.edithtml"/>
158
      <indexitem text="saving" target="proj.edithtml"/>
159
      <indexitem text="updating a run page URL" target="proj.edithtml"/>
160
   </indexitem>
161
   
162
   
163
   <indexitem text="ignore, exceptions list" target="debug.addexception"/>
164
   
165
   
166
   
167
   <indexitem text="JAR files">
168
      <indexitem text="defined" target="proj.beansproject"/>
169
   </indexitem>
170
   
171
   <indexitem text="JavaBeans, see 'beans'"/>
172
   
173
   <indexitem text="javadoc, use in class browser" target="browse.class"/>
174
   
175
   
176
   
177
   <indexitem text="line/column indicator, source editor" target="edit.controls"/>
178
   
179
   <indexitem text="local variables" target="debug.threads"/>
180
   
181
   <indexitem text="location of breakpoints" target="debug.breakpoint"/>
182
   
183
   <indexitem text="location, debugging" target="debug.run"/>
184
   
185
   
186
   
187
   <indexitem text="managing projects" target="proj.managertoc"/>
188
   
189
   <indexitem text="methods, stepping into" target="debug.step"/>
190
   
191
   
192
   
193
   <indexitem text="naming a project" target="proj.projectwizard"/>
194
   
195
   
196
   
197
   <indexitem text="opening a portfolio" target="proj.changeportfolio"/>
198
   
199
   <indexitem text="opening a project" target="proj.changeproject"/>
200
   
201
   
202
   <indexitem text="package">
203
     <indexitem text="creating a package project" target="proj.createpackage"/>
204
     <indexitem text="editing the name" target="proj.generaldisplay"/>
205
     <indexitem text="naming" target="proj.generaldisplay"/>
206
   </indexitem>
207
   
208
   <indexitem text="passing arguments to a standalone project" target="debug.arguments"/>
209
   
210
   <indexitem text="performance analysis, see 'profiler'"/>
211
   
212
   <indexitem text="portfolios">
213
      <indexitem text="Add Portfolio dialog box" target="proj.importportfolio"/>
214
      <indexitem text="changing" target="proj.changeportfolio"/>
215
      <indexitem text="Create Portfolio dialog box" target="proj.createportfolio"/>
216
      <indexitem text="removing" target="proj.removeportfolio"/>
217
   </indexitem>
218
   
219
   <indexitem text="Preferences menu" target="menus.preferences"/>
220
   
221
   <indexitem text="prerequisites, debugging" target="debug.overview"/>
222
   
223
   <indexitem text="printing profile data" target="prof.menus"/>
224
   
225
   <indexitem text="profiler">
226
      <indexitem text="customizing data filters" target="prof.custom"/>
227
   </indexitem>
228
   
229
   <indexitem text="Project Manager" target="proj.projectmanager"/>
230
   
231
   <indexitem text="project name" target="proj.generaldisplay"/>
232
   
233
   <indexitem text="project type" target="proj.generaldisplay"/>
234
   
235
   <indexitem text="projects">
236
      <indexitem text="contents" target="proj.managertoc"/>
237
      <indexitem text="copying an added project" target="proj.importwizard"/>
238
      <indexitem text="manager" target="proj.projectmanager"/>
239
      <indexitem text="using the project manager" target="proj.projectmanager"/>
240
   </indexitem>
241
   
242
   
243
   <indexitem text="quitting debugging" target="debug.enddebug"/>
244
   
245
   
246
   <indexitem text="RCS (version control)" target="version.version"/>
247
   
248
   <indexitem text="referencing an added project" target="proj.importwizard"/>
249
   
250
   <indexitem text="remote debugging">
251
      <indexitem text="agent password" target="debug.remotedebug"/>
252
      <indexitem text="classpaths" target="debug.remotedebug"/>
253
      <indexitem text="network connection" target="debug.remotedebug"/>
254
      <indexitem text="password" target="debug.remotedebug"/>
255
   </indexitem>
256
   
257
   <indexitem text="removing a portfolio" target="proj.removeportfolio"/>
258
   
259
   <indexitem text="removing a project" target="proj.removeproject"/>
260
      
261
   <indexitem text="replacing text, source editor" target="edit.replace"/>
262
   
263
   <indexitem text="requirements, debugging" target="debug.overview"/>
264
   
265
   <indexitem text="running a program to collect profile data" target="prof.profile"/>
266
   
267
   <indexitem text="running a project" target="proj.run"/>
268
   
269
   <indexitem text="running to a specific location" target="proj.run"/>
270
   
271
   
272
   
273
   <indexitem text="saving an HTML file" target="proj.edithtml"/>
274
   
275
   <indexitem text="SCCS (version control)" target="version.version"/>
276
   
277
   <indexitem text="shortcuts (keyboard), see 'keyboard commands'"/>
278
   
279
   <indexitem text="showing the stack frame source" target="debug.source"/>
280
      
281
   <indexitem text="source browser">
282
      <indexitem text="Browse menu" target="menus.browse"/>
283
      <indexitem text="browsing class files" target="browse.class"/>
284
      <indexitem text="javadoc, use in class browser" target="browse.class"/>
285
      <indexitem text="strings, searching for in source code" target="browse.strings"/>
286
   </indexitem>
287
   
288
   <indexitem text="source directory" target="proj.generaldisplay"/>
289
   
290
   <indexitem text="standalone project">
291
      <indexitem text="creating" target="proj.createstandalone"/>
292
      <indexitem text="running" target="proj.run"/>
293
      <indexitem text="specifying program arguments" target="debug.arguments"/>
294
   </indexitem>
295
   
296
   <indexitem text="starting debugging" target="debug.start"/>
297
   
298
   <indexitem text="starting over, debugging" target="debug.startover"/>
299
   
300
   <indexitem text="subprojects, creating" target="proj.nestedprojects"/>
301
   
302
   <indexitem text="subprojects, defined" target="proj.projects"/>
303
   
304
   <indexitem text="tabs, see 'component palette'"/>
305
   
306
   <indexitem text="threads">
307
      <indexitem text="data values" target="debug.variables"/>
308
      <indexitem text="evaluating data values" target="debug.variables"/>
309
      <indexitem text="variables, defined" target="debug.threads"/>
310
      <indexitem text="viewing threads" target="debug.viewthreads"/>
311
   </indexitem>
312
   
313
   <indexitem text="using the debugger" target="debug.overview"/>
314
   
315
   <indexitem text="using the Exceptions Window" target="debug.exceptions"/>
316
   
317
   <indexitem text="defined" target="debug.eval"/>
318
   
319
   <indexitem text="evaluating" target="debug.eval"/>
320
   
321
   <indexitem text="viewing" target="debug.threads"/>
322
   
323
   <indexitem text="version control">
324
      <indexitem text="check in" target="version.version"/>
325
      <indexitem text="check in new" target="version.version"/>
326
      <indexitem text="uncheckout" target="version.version"/>
327
   </indexitem>
328
   
329
   <indexitem text="viewing stack frames" target="debug.viewthreads"/>
330
   
331

  
332
   <indexitem text="Windows menu" target="menus.windows"/>
333

  
334

  
335
</index>
336

  
0 337

  
tags/v2_0_0_Build_2049/extensions/extHelp/config/about.htm
1
<html>
2
  <head>
3
    <title>Extension 3D del programa GvSIG </title>
4
    <meta content="">
5
    <style></style>
6
  </head>
7
  <body>
8
<table width="60%" border="0">
9
  <tr>
10
    <td width="64%"><img src="images/logo_horiz_bicolor_gva.png" width="329" height="50"></td>
11
    <td width="36%"><div align="right"><img src="images/logoIver.png" width="87" height="50"></div></td>
12
  </tr>
13
  <tr>
14
    <td colspan="2"><font face="Arial, Helvetica, sans-serif">&copy; Copyright
15
      Generalitat Valenciana, IVER T.I and other contributors 2005.</font></td>
16
  </tr>
17
</table>
18
  <h3>Extesi&oacute;n de la Aplicaci&oacute;n para el tratamiento de top&oacute;nimos del Instituto Geogr&aacute;fico Nacional</h3>
19
  <p><br><br><b> Build Number: #build.number#</b></p>
20
  </body>
21
</html>
tags/v2_0_0_Build_2049/extensions/extHelp/config/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<depends plugin-name="org.gvsig.app" />
4
	<resourceBundle name="text"/>
5
	<libraries library-dir="lib"/>
6
	<extensions>
7
		<extension class-name="org.gvsig.help.HelpExtension"
8
			description=""
9
			active="true"
10
			priority="1">
11
			<menu text="Ayuda/Ayuda"
12
				position="90010"
13
				action-command="Help"/>
14
		</extension>		
15
	</extensions>
16
</plugin-config>
tags/v2_0_0_Build_2049/extensions/extHelp/src/org/gvsig/help/HelpExtension.java
1
package org.gvsig.help;
2

  
3
import java.io.File;
4

  
5
import org.gvsig.andami.PluginServices;
6
import org.gvsig.andami.help.Help;
7
import org.gvsig.andami.plugins.Extension;
8
import org.slf4j.Logger;
9
import org.slf4j.LoggerFactory;
10

  
11

  
12
public class HelpExtension  extends Extension {
13

  
14

  
15
	private Logger log() {
16
		return LoggerFactory.getLogger("org.gvsig");
17
	}
18

  
19
	public void initialize() {
20
		// TODO Auto-generated method stub
21

  
22
	}
23

  
24
	public void execute(String actionCommand) {
25

  
26
		// If the option pressed is help control the help panel is created.
27
		if(actionCommand.equalsIgnoreCase("Help")){
28

  
29
			Help help = Help.getHelp();	//My constructor.
30
			help.show("docs.introduccion-a-gvsig.copy_of_queesgvsig.html");//Launch help panel.
31

  
32
			return;
33
		}
34
	}
35

  
36
	public boolean isEnabled() {
37
		return true;
38
	}
39

  
40
	public boolean isVisible() {
41
		return true;
42
	}
43

  
44
	public static String getExtensionPath() {
45
		String pluginName = "org.gvsig.help";
46
		PluginServices ps = PluginServices.getPluginServices(pluginName);
47
		return ps.getPluginDirectory().getAbsolutePath();
48
	}
49

  
50
	@Override
51
	public void postInitialize() {
52
		super.postInitialize();
53
		Help help = Help.getHelp();	//My constructor.
54
		help.addResource(HelpExtension.getExtensionPath()+File.separator+ "gvSIG"+File.separator+"manual-de-usuario.zip");//Documentation path.
55
		help.addHelp("manual-de-usuario");
56

  
57
	}
58

  
59
}
0 60

  

Also available in: Unified diff