Author: fabien
Date: 2008-12-02 05:19:13 -0800 (Tue, 02 Dec 2008)
New Revision: 6536
Log:
Corrected new documentation local (build) path so that index.html can be found 
in test programs when no env variable is set. Added svn:ignore filters to test 
and lib subdirs.

Modified:
   branches/branch-1.3/lib/
   branches/branch-1.3/test/
   branches/branch-1.3/test/demo.cxx
   branches/branch-1.3/test/help.cxx


Property changes on: branches/branch-1.3/lib
___________________________________________________________________
Name: svn:ignore
   - lib*

   + lib*
*.lib
*.a



Property changes on: branches/branch-1.3/test
___________________________________________________________________
Name: svn:ignore
   - CubeView
CubeViewUI.cxx
CubeViewUI.h
adjuster
arc
ask
bitmap
blocks
boxtype
browser
button
buttons
cairo_test
checkers
clock
colbrowser
color_chooser
cube
cursor
curve
demo
doublebuffer
editor
fast_slow
fast_slow.cxx
fast_slow.h
file_chooser
fonts
forms
fractals
fullscreen
gl_overlay
glpuzzle
hello
help
iconize
image
inactive
inactive.cxx
inactive.h
input
input_choice
keyboard
keyboard_ui.cxx
keyboard_ui.h
label
line_style
list_visuals
mandelbrot
mandelbrot_ui.cxx
mandelbrot_ui.h
menubar
message
minimum
navigation
output
overlay
pack
pixmap
pixmap_browser
preferences
preferences.cxx
preferences.h
radio
radio.cxx
radio.h
resize
resize.cxx
resize.h
resizebox
scroll
shape
shiny
shiny_panel.cxx
shiny_panel.h
subwindow
sudoku
symbols
tabs
tabs.cxx
tabs.h
threads
tile
tiled_image
unittests
utf8
valuators
valuators.cxx
valuators.h
*.bck
*.exe
*.ilk
fltk*.lib
fltk*.exp

   + CubeView
CubeViewUI.cxx
CubeViewUI.h
adjuster
arc
ask
bitmap
blocks
boxtype
browser
button
buttons
cairo_test
checkers
clock
colbrowser
color_chooser
cube
cursor
curve
demo
doublebuffer
editor
fast_slow
fast_slow.cxx
fast_slow.h
file_chooser
fonts
forms
fractals
fullscreen
gl_overlay
glpuzzle
hello
help
iconize
image
inactive
inactive.cxx
inactive.h
input
input_choice
keyboard
keyboard_ui.cxx
keyboard_ui.h
label
line_style
list_visuals
mandelbrot
mandelbrot_ui.cxx
mandelbrot_ui.h
menubar
message
minimum
navigation
output
overlay
pack
pixmap
pixmap_browser
preferences
preferences.cxx
preferences.h
radio
radio.cxx
radio.h
resize
resize.cxx
resize.h
resizebox
scroll
shape
shiny
shiny_panel.cxx
shiny_panel.h
subwindow
sudoku
symbols
tabs
tabs.cxx
tabs.h
threads
tile
tiled_image
unittests
utf8
valuators
valuators.cxx
valuators.h
*.bck
*.exe
*.ilk
fltk*.lib
fltk*.exp
fltk*.dll


Modified: branches/branch-1.3/test/demo.cxx
===================================================================
--- branches/branch-1.3/test/demo.cxx   2008-12-02 11:10:03 UTC (rev 6535)
+++ branches/branch-1.3/test/demo.cxx   2008-12-02 13:19:13 UTC (rev 6536)
@@ -364,7 +364,7 @@
 }
 
 int main(int argc, char **argv) {
-  putenv((char *)"FLTK_DOCDIR=../documentation");
+  putenv((char *)"FLTK_DOCDIR=../documentation/html");
   char buf[256];
   strcpy(buf, argv[0]);
 #if ( defined _MSC_VER || defined __MWERKS__ ) && defined _DEBUG

Modified: branches/branch-1.3/test/help.cxx
===================================================================
--- branches/branch-1.3/test/help.cxx   2008-12-02 11:10:03 UTC (rev 6535)
+++ branches/branch-1.3/test/help.cxx   2008-12-02 13:19:13 UTC (rev 6536)
@@ -50,7 +50,7 @@
   help = new Fl_Help_Dialog;
 
   if (argc < 2)
-    help->load("../documentation/index.html");
+    help->load("../documentation/html/index.html");
   else
     help->load(argv[1]);
 

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to