Düster Horst wrote:
I try to start grass60 with the command grass60 and the following messages
appears:
[snip]
Error in startup script: couldn't read file
"/usr/local/grass-6.0.0/docs/nviz/help.tcl": no such file or dir
ectory
while executing
That bug was introduced in:
revision 1.9
date: 2005/01/11 13:36:59; author: markus; state: Exp; lines: +34 -3
added help button with Quick Intro
due to:
@@ -27,6 +27,20 @@
#############################################################################
source $env(GISBASE)/etc/epsg_option.tcl
+#HTML help
+source $env(GISBASE)/docs/nviz/help.tcl
+proc make_help_window { w } {
+
+ frame $w
+ frame $w.f2
+ frame $w.f1
+
+ pack $w -side top -expand 1 -fill both
+ pack $w.f1 -side top -expand 1 -fill both
+ pack $w.f2 -side bottom -expand 0 -fill both
+
+}
+
proc searchGISRC { filename } {
global database
NVIZ is supposed to be an optional component. Please remove the
reference to $env(GISBASE)/docs/nviz/help.tcl, and anything which
depends upon it, from gis_set.tcl.
--
Glynn Clements <glynn@gclements.plus.com>
On Sat, Apr 09, 2005 at 04:03:52AM +0100, Glynn Clements wrote:
Düster Horst wrote:
> I try to start grass60 with the command grass60 and the following messages
> appears:
[snip]
> Error in startup script: couldn't read file
> "/usr/local/grass-6.0.0/docs/nviz/help.tcl": no such file or dir
> ectory
> while executing
That bug was introduced in:
revision 1.9
date: 2005/01/11 13:36:59; author: markus; state: Exp; lines: +34 -3
added help button with Quick Intro
due to:
@@ -27,6 +27,20 @@
#############################################################################
source $env(GISBASE)/etc/epsg_option.tcl
+#HTML help
>>> +source $env(GISBASE)/docs/nviz/help.tcl
+proc make_help_window { w } {
+
+ frame $w
+ frame $w.f2
+ frame $w.f1
+
+ pack $w -side top -expand 1 -fill both
+ pack $w.f1 -side top -expand 1 -fill both
+ pack $w.f2 -side bottom -expand 0 -fill both
+
+}
+
proc searchGISRC { filename } {
global database
NVIZ is supposed to be an optional component.
Oh, I was sort of unaware of that.
Please remove the
reference to $env(GISBASE)/docs/nviz/help.tcl, and anything which
depends upon it, from gis_set.tcl.
Why not moving visualization/nviz/html/help.tcl
to a different place? I hesitate to remove the help text from
the startup screen.
Markus
Markus Neteler wrote:
> NVIZ is supposed to be an optional component.
Oh, I was sort of unaware of that.
> Please remove the
> reference to $env(GISBASE)/docs/nviz/help.tcl, and anything which
> depends upon it, from gis_set.tcl.
Why not moving visualization/nviz/html/help.tcl
to a different place?
Will that file work without the rest of NVIZ?
I hesitate to remove the help text from the startup screen.
Help text is fine, but why the help text for NVIZ?
--
Glynn Clements <glynn@gclements.plus.com>
On Sat, Apr 09, 2005 at 11:31:39PM +0100, Glynn Clements wrote:
Markus Neteler wrote:
> > NVIZ is supposed to be an optional component.
>
> Oh, I was sort of unaware of that.
>
> > Please remove the
> > reference to $env(GISBASE)/docs/nviz/help.tcl, and anything which
> > depends upon it, from gis_set.tcl.
>
> Why not moving visualization/nviz/html/help.tcl
> to a different place?
Will that file work without the rest of NVIZ?
Yes, I think so. For me it does.
> I hesitate to remove the help text from the startup screen.
Help text is fine, but why the help text for NVIZ?
NVIZ offers help in its menu (see at the right).
It was implemented before we added HTML help to GRASS.
Markus