rwdgutenberg 0.05 → 0.06

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. data/Books/Shannon.gut +6 -0
  2. data/Books/shannon1948.html +7340 -0
  3. data/Readme.txt +5 -0
  4. data/code/superant.com.gutenberg/loadbookrecord.rb +7 -1
  5. data/code/superant.com.gutenberg/rungutenbergwindow.rb +51 -28
  6. data/code/superant.com.rwdtinkerbackwindow/listgemzips.rb +1 -1
  7. data/code/superant.com.rwdtinkerbackwindow/listzips.rb +1 -1
  8. data/code/superant.com.rwdtinkerbackwindow/loadconfigurationrecord.rb +1 -18
  9. data/code/superant.com.rwdtinkerbackwindow/saveconfigurationrecord.rb +2 -5
  10. data/configuration/rwdapplicationidentity.dist +2 -2
  11. data/configuration/rwdgutenberg.dist +2 -2
  12. data/configuration/rwdtinker.dist +2 -2
  13. data/configuration/tinkerwin2variables.dist +1 -1
  14. data/gui/00coreguibegin/applicationguitop.rwd +1 -1
  15. data/gui/frontwindow0/superant.com.gutenberg/35displaytab.rwd +8 -3
  16. data/gui/frontwindow0/superant.com.gutenberg/36displaytab.rwd +15 -0
  17. data/gui/frontwindow0/superant.com.gutenberg/40rwdgutenberg.rwd +1 -1
  18. data/gui/frontwindow0/superant.com.gutenberg/40rwdgutenberghtml.rwd +16 -0
  19. data/gui/tinkerbackwindows/superant.com.gutenberg/10viewnote.rwd +39 -0
  20. data/gui/tinkerbackwindows/superant.com.gutenberg/20listfiles.rwd +35 -0
  21. data/gui/tinkerbackwindows/superant.com.gutenberg/30booklistutilities.rwd +28 -0
  22. data/gui/tinkerbackwindows/superant.com.gutenberg/35displaytab.rwd +15 -0
  23. data/gui/tinkerbackwindows/superant.com.gutenberg/36displaytab.rwd +15 -0
  24. data/gui/tinkerbackwindows/superant.com.gutenberg/40rwdgutenberg.rwd +16 -0
  25. data/gui/tinkerbackwindows/superant.com.gutenberg/40rwdgutenberghtml.rwd +16 -0
  26. data/gui/tinkerbackwindows/superant.com.gutenberg/67viewconfiguration.rwd +29 -0
  27. data/gui/tinkerbackwindows/superant.com.gutendisplay/gutendisplayhtmlwindow.rwd +9 -0
  28. data/gui/tinkerbackwindows/superant.com.tinkerbackwindow/60editconfiguration.rwd +1 -15
  29. data/installed/rwdviewlogo-0.4.inf +4 -0
  30. data/rwd_files/HowTo_Gutenberg.txt +7 -0
  31. data/rwd_files/HowTo_Tinker.txt +4 -0
  32. data/rwdconfig.dist +3 -2
  33. metadata +18 -7
  34. data/lang/en/rwdcalendar/calendar-en.rb +0 -6
  35. data/lang/es/rwdcalendar/calendar-nl.rb +0 -6
  36. data/lang/nl/rwdcalendar/calendar-nl.rb +0 -6
  37. data/zips/rwdahelloworld-0.5.zip +0 -0
data/Readme.txt CHANGED
@@ -81,6 +81,11 @@ Steven Gibson
81
81
  steven@superant.com
82
82
 
83
83
  == Changelog
84
+ Version 0.06
85
+ Add html viewing tab
86
+ added reset button
87
+ updated for rwdtinker 1.66
88
+
84
89
  Version 0.05
85
90
  Fix bug with file advance
86
91
  updated for rwdtinker 1.65
@@ -2,7 +2,13 @@
2
2
  def rwdgutenloadbookrecord
3
3
 
4
4
  require 'fileutils'
5
-
5
+ @a_gutenbergdatapath = ""
6
+ @a_gutenbergdatainfo = ""
7
+ @a_gutenbergdatalocation = ""
8
+ @a_gutenbergdatalines = ""
9
+ @a_gutenbergdataspeed = ""
10
+ @a_gutenbergdatacomments = ""
11
+
6
12
 
7
13
  begin # exception trapped block
8
14
 
@@ -1,39 +1,54 @@
1
- # method to open new gutenberg window
1
+ # method to open new TEXT gutenberg window
2
2
  def rungutenbergwindow
3
-
4
- rwdgutenbergwindowtwo
3
+ @rwd_window = "gutendisplaywindowtwo"
4
+ rwdgutenbergwindowtwo
5
+ end
6
+
7
+ # method to open new HTML gutenberg window
8
+ def rungutenbergwindowhtml
9
+ @rwd_window = "gutendisplayhtmlwindowtwo"
10
+ rwdgutenbergwindowtwo
5
11
  end
6
-
7
12
  $tempnumber = 0
13
+
14
+ # start book from beginning
15
+ def rungutenbergreset
16
+ $booklocation = 0
17
+ $gutenbergcommand = "openbook"
18
+
19
+ rwdgutenbergwindowtwo
20
+ end
21
+
8
22
  # display text and advance text
9
23
  def rwdgutenbergwindowtwo
10
- tempdoc = ""
11
- @gutendisplayvariable = ""
12
- tempcount = 0
13
- if @rwd_tab== "rwdgutenberg"
14
- @rwd_window = "gutendisplaywindowtwo"
15
- end
16
-
17
- if $gutenbergcommand == "openbook"
18
- tmpfileName = @a_viewgutenberg + ".gut"
19
- fileName = File.join($rwdgutenberg_directory,tmpfileName)
20
- begin
21
- fd = File.open(fileName,"r")
22
- booktitle = fd.readline.chomp
23
- $stderr.print booktitle
24
- $bookfile=File.new(booktitle,"r") #opens the file thats in fileName as read only
24
+ begin
25
+ tempdoc = ""
26
+ @gutendisplayvariable = ""
27
+ tempcount = 0
28
+ $stderr.print "starting\n"
29
+
30
+ if $gutenbergcommand == "openbook"
31
+
32
+ # raise "forced error test" # raise RuntimeError
33
+ $stderr.print "testing string\n"
34
+ fileName = $rwdgutenberg_directory + "/" + @a_viewgutenberg + ".gut"
25
35
 
26
- rescue
36
+ $stderr.print "about to open file existence "
37
+ $stderr.print fileName
38
+ $stderr.print "\n"
39
+
40
+ fd = File.open(fileName,"r")
41
+ booktitle = fd.readline.chomp
42
+ $stderr.print booktitle
43
+ $bookfile=File.new(booktitle,"r") #opens the file thats in fileName as read only
44
+ $gutenbergcommand == "continue"
45
+
46
+
47
+
48
+ end
49
+
27
50
 
28
- $stderr.print "error: #{$!}"
29
- end
30
- $gutenbergcommand == "continue"
31
- end
32
-
33
-
34
51
  if $gutenbergcommand == "continue"
35
-
36
-
37
52
  tempcount = 0
38
53
  while tempcount < $booksteps
39
54
  tempdoc += $bookfile.gets #reads the file into the doc string
@@ -55,4 +70,12 @@
55
70
  $bookfile.close
56
71
  end
57
72
  @gutendisplayvariable = tempdoc
73
+
74
+
75
+ rescue SystemCallError , StandardError, RuntimeError
76
+ $stderr.print "system call error: " + $! + "\n"
77
+
78
+ $gutenbergcommand == "closebook"
79
+
80
+ end
58
81
  end
@@ -13,7 +13,7 @@ def findzipfiles(d)
13
13
  if(!test(?d,x))
14
14
  # only zip files
15
15
  if x =~ /\.zip/
16
- puts "#{x}" #opens the file thats in fileName as read only
16
+ #opens the file thats in fileName as read only
17
17
  $zipsarray = $zipsarray | ["#{x}"]
18
18
  end
19
19
  end
@@ -16,7 +16,7 @@ def listzipfilestoinstall
16
16
  a.each do |x|
17
17
  # only zip files
18
18
  if x =~ /\.zip/
19
- # puts "#{x}" #adds the file to the array to display on the screen
19
+ #adds the file to the array to display on the screen
20
20
  $zipsarraylocal = $zipsarraylocal | ["#{x}"]
21
21
  end
22
22
 
@@ -12,24 +12,7 @@ def loadconfigurationrecord
12
12
  fileName = File.join(ConfigurationDir, TinkerWin2ConfigurationFileName)
13
13
 
14
14
  fd = File.open(fileName,"r")
15
- @a_configline1= fd.readline.chomp
16
- @a_configline2 = fd.readline.chomp
17
- @a_configline3 = fd.readline.chomp
18
- @a_configline4 = fd.readline.chomp
19
- @a_configline5 = fd.readline.chomp
20
- @a_configline6 = fd.readline.chomp
21
- @a_configline7 =fd.readline.chomp
22
- @a_configline8 = fd.readline.chomp
23
- @a_configline9 = fd.readline.chomp
24
- @a_configline10 = fd.readline.chomp
25
- @a_configline11 =fd.readline.chomp
26
- @a_configline12 = fd.readline.chomp
27
- @a_configline13 =fd.readline.chomp
28
- @a_configline14 = fd.readline.chomp
29
-
30
- while ! fd.eof?
31
- @extraconfigdatadisplay = fd.readline
32
- end
15
+ @a_configurationfile = fd.read
33
16
  fd.close
34
17
  rescue SystemCallError, StandardError
35
18
  $stderr.print "system call error: " + $!
@@ -3,12 +3,9 @@ def saveconfigurationrecord
3
3
  require 'fileutils'
4
4
  if @a_configurationfilename
5
5
  newname = "%s" % [@a_configurationfilename] # grab the filename to create
6
- newdata =@a_configline1.to_s + "\n" + @a_configline2.to_s + "\n" + @a_configline3.to_s + "\n" + @a_configline4.to_s + "\n" + @a_configline5.to_s +
7
- "\n" + @a_configline6.to_s + "\n" + @a_configline7.to_s + "\n" + @a_configline8.to_s + "\n" +
8
- @a_configline9.to_s + "\n" + @a_configline10.to_s + "\n" + @a_configline11.to_s + "\n" +
9
- @a_configline12.to_s + "\n" + @a_configline13.to_s + "\n" + @a_configline14.to_s + "\n"
6
+ newdata =@a_configurationfile
10
7
 
11
- begin # exception trapped block
8
+ begin # exception trapped block
12
9
  fileName = File.join( ConfigurationDir, newname )
13
10
  fd = File.open(fileName,"w")
14
11
  fd.print(newdata) # save the record info to the file
@@ -1,3 +1,3 @@
1
- ##VERSION:1.63
2
- $rwdapplicationidentity = "rwdgutenberg book reader"
1
+ ##VERSION:1.66
2
+ $rwdapplicationidentity = "rwdtinker main application"
3
3
 
@@ -1,4 +1,4 @@
1
- ##VERSION:0.05
1
+ ##VERSION:0.06
2
2
  ##NAME:$rwdgutenberg_directory:0
3
3
  $rwdgutenberg_directory = "Books"
4
4
  ##NAME:$gutenbergcommand:0
@@ -12,5 +12,5 @@ $booksteps = 14
12
12
  $tinkerdocumentsarray += ["HowTo_Gutenberg.txt"]
13
13
  $tinkerhelpaboutarray += ["RwdGutenberg"]
14
14
  ##NAME:RwdGutenbergVersion:0
15
- RwdGutenbergVersion = "0.05"
15
+ RwdGutenbergVersion = "0.06"
16
16
 
@@ -1,4 +1,4 @@
1
- ##VERSION:1.65
1
+ ##VERSION:1.66
2
2
  ConfigurationDir = "configuration" # for use in program - init.rb has this value without using this constant
3
3
  CodeName = "rwdtinker"
4
4
  CodeNameFile = CodeName + ".rb"
@@ -14,6 +14,6 @@ LangDir = "lang"
14
14
  $rwdjumplink = ["helpscreen","tinkerbackwindow","returntomain","opendocuments","editconfiguration"]
15
15
  Browser_Exe = 'mozilla '
16
16
  $tinkerdocumentsarray +=["COPYING","HowTo_Tinker.txt","rwdapplications.html","RubyWebDialogs.html"]
17
- RwdTinkerVersion = "1.65"
17
+ RwdTinkerVersion = "1.66"
18
18
 
19
19
 
@@ -1,4 +1,4 @@
1
- ##VERSION:1.63
1
+ ##VERSION:1.66
2
2
  TinkerWin2ConfigurationFileName = "tinkerwin2variables.cnf" # this file name - do not change
3
3
  ##NAME:$zipslocation:0
4
4
  $zipslocation = "zips" # location of applets to add
@@ -1,4 +1,4 @@
1
1
  $rwdguivar=
2
2
  "<application>
3
- <window name=\"main\" title=\"RwdGutenberg Book Reader\">
3
+ <window name=\"main\" title=\"RwdGutenberg - RubyWebDialogs\">
4
4
  <tabs>"
@@ -1,10 +1,15 @@
1
1
  $rwdguivar=
2
2
  "
3
- <tab name=\"gutendisplaytab\" caption=\"Book Display\" >
3
+ <tab name=\"gutendisplaytexttab\" caption=\"Text Display\" >
4
4
 
5
5
  <p>%gutendisplayvariable%</p>
6
+ <horizontal>
7
+ <button caption=\'Read forward\' action=\'rwdgutenbergwindowtwo\'/>
8
+ <button caption=\'Start from the beginning\' action=\'rungutenbergreset\'/>
6
9
 
7
-
8
- <button caption=\'read forward\' action=\'rwdgutenbergwindowtwo\'/>
10
+
11
+ <button caption=\"Help\" action=\"runhelpwindowrwdgutenberg\"/>
12
+
13
+ </horizontal>
9
14
  </tab>"
10
15
 
@@ -0,0 +1,15 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"gutendisplayhtmltab\" caption=\"Html Display\" >
4
+
5
+ <p>%%gutendisplayvariable%%</p>
6
+ <horizontal>
7
+ <button caption=\'Read forward\' action=\'rwdgutenbergwindowtwo\'/>
8
+ <button caption=\'Start from the beginning\' action=\'rungutenbergreset\'/>
9
+
10
+
11
+ <button caption=\"Help\" action=\"runhelpwindowrwdgutenberg\"/>
12
+
13
+ </horizontal>
14
+ </tab>"
15
+
@@ -1,6 +1,6 @@
1
1
  $rwdguivar=
2
2
  "
3
- <tab name=\"rwdgutenberg\" caption=\"Gutenberg Display\">
3
+ <tab name=\"rwdgutenbergtext\" caption=\"Auto Text Display\">
4
4
  <table>
5
5
  <horizontal>
6
6
  Open a replacement window for
@@ -0,0 +1,16 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"rwdgutenberghtml\" caption=\"Auto HTML Display\">
4
+ <table>
5
+ <horizontal>
6
+ Open a replacement window for
7
+ Book Record: <text size=30 name=\"a_viewgutenberg\"/>
8
+ </horizontal>
9
+ <row><p> You should see that new window refresh every 15 seconds with </row>
10
+ <row><p> You can return to this screen by clicking on back arrows or the cancel button</row>
11
+
12
+
13
+ </table>
14
+ <button caption=\'Start Book\' action=\'rungutenbergwindowhtml\'/>
15
+ </tab>"
16
+
@@ -0,0 +1,39 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"superantcomgutenbergfile\" caption=\"View/Edit Booklist\">
4
+
5
+ <table>
6
+ <row>View your book list and detail on this Tab</row>
7
+ <row> <p> </row>
8
+ <row> <p align=\"right\">Book Record:</p> <text size=70 name=\"a_viewgutenberg\"/> </row>
9
+
10
+ </table>
11
+ <horizontal>
12
+ <button caption=\"Open Detail\" action=\"rwdgutenloadbookrecord\"/>
13
+
14
+ <button caption=\"Create book Note\" action=\"rwdgutenbergcreatebookrecord\"/>
15
+ <button caption=\"Save Changes\" action=\"savegutenbergrecord\"/>
16
+
17
+
18
+ <button caption=\"Clear\" action=\"clearbookscreendisplay\"/>
19
+ <button caption=\"Help\" action=\"runhelpwindowrwdgutenberg\"/>
20
+
21
+ </horizontal>
22
+ <table>
23
+ <row> <p align=\"right\">File Name:</p><text size=70 name=\"a_gutenbergdatapath\"/></row>
24
+ </horizontal>
25
+ <row><p align=\"left\">File Info:</p><text size=70 name=\"a_gutenbergdatainfo\"/></row>
26
+ <row><p align=\"left\">Bookmark:</p><text size=70 name=\"a_gutenbergdatalocation\"/></row>
27
+ <row><p align=\"left\">Lines/Page:</p><text size=70 name=\"a_gutenbergdatalines\"/></row>
28
+ <row><p align=\"left\">Speed:</p><text size=70 name=\"a_gutenbergdataspeed\"/></row>
29
+ <row><p align=\"left\">Comment:</p><text size=70 name=\"a_gutenbergdatacomments\"/></row>
30
+ </table>
31
+ <horizontal>
32
+ <button caption=\"List Booklists\" action=\"listgutrecordfiles\"/>
33
+
34
+
35
+
36
+ </horizontal>
37
+
38
+ <p>%%gutenbergrecordsresult%%</p>
39
+ </tab>"
@@ -0,0 +1,35 @@
1
+ $rwdguivar=
2
+ "
3
+
4
+ <tab name=\"rwdgutenberglistfiles\" caption=\"List Files\">
5
+
6
+ <table>
7
+ <row>List text files</row>
8
+ <row> <p> </row>
9
+ <row> <p align=\"right\">Directory to search:</p>
10
+ <text size=70 name=\"a_searchdirectorygutenberg\"/> </row>
11
+ <row> <p> </row>
12
+ <row> <p align=\"right\">New File:</p>
13
+ <text size=70 name=\"a_newfilegutenberg\"/> </row>
14
+ <row> <p align=\"right\">Name of File to Create:</p>
15
+ <text size=70 name=\"a_newgutenbergdata\"/> </row>
16
+ </table>
17
+ <horizontal>
18
+
19
+ <button caption=\"Create New File\" action=\"gutenbergcreatefile\"/>
20
+
21
+
22
+ <button caption=\"Help\" action=\"runhelpwindowrwdgutenberg\"/>
23
+
24
+ </horizontal>
25
+
26
+
27
+ <horizontal>
28
+ <button caption=\"List Text Files\" action=\"rwdgutenbergfiles\"/>
29
+
30
+
31
+ </horizontal>
32
+
33
+
34
+ <p>%%textsfilesrecordsresult%%</p>
35
+ </tab>"
@@ -0,0 +1,28 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"utilitiesrwdgutenberg\" caption=\"Booklist Utilities\">
4
+
5
+ <table>
6
+ <row> <p align=\"right\">Booklist Title:</p> <text size=70 name=\"a_viewgutenberg\"/> </row>
7
+ <row> <p align=\"right\">New Name:</p> <text size=70 name=\"a_changegutenbergdata\"/> </row>
8
+
9
+ </table>
10
+
11
+ <horizontal>
12
+ <button caption=\"Rename Book\" action=\"changegutenbergdata\"/>
13
+ <button caption=\"Copy Filename into New Booklist\" action=\"copygutenbergfilename\"/>
14
+ <button caption=\"Delete Booklist\" action=\"deletegutenbergrecord\"/>
15
+ <button caption=\"Help\" action=\"runhelpwindowrwdgutenberg\"/>
16
+ </horizontal>
17
+
18
+ <p>%%hypernotefilechangeresult%%</p>
19
+ <horizontal>
20
+
21
+
22
+ <button caption=\"List Booklists\" action=\"listgutrecordfiles\"/>
23
+
24
+
25
+ </horizontal>
26
+ <p>%%gutenbergrecordsresult%%</p>
27
+ <p>%%gutenbergfilechangeresult%%</p>
28
+ </tab>"
@@ -0,0 +1,15 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"gutendisplaytexttab\" caption=\"Text Display\" >
4
+
5
+ <p>%gutendisplayvariable%</p>
6
+ <horizontal>
7
+ <button caption=\'Read forward\' action=\'rwdgutenbergwindowtwo\'/>
8
+ <button caption=\'Start from the beginning\' action=\'rungutenbergreset\'/>
9
+
10
+
11
+ <button caption=\"Help\" action=\"runhelpwindowrwdgutenberg\"/>
12
+
13
+ </horizontal>
14
+ </tab>"
15
+
@@ -0,0 +1,15 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"gutendisplayhtmltab\" caption=\"Html Display\" >
4
+
5
+ <p>%%gutendisplayvariable%%</p>
6
+ <horizontal>
7
+ <button caption=\'Read forward\' action=\'rwdgutenbergwindowtwo\'/>
8
+ <button caption=\'Start from the beginning\' action=\'rungutenbergreset\'/>
9
+
10
+
11
+ <button caption=\"Help\" action=\"runhelpwindowrwdgutenberg\"/>
12
+
13
+ </horizontal>
14
+ </tab>"
15
+
@@ -0,0 +1,16 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"rwdgutenbergtext\" caption=\"Auto Text Display\">
4
+ <table>
5
+ <horizontal>
6
+ Open a replacement window for
7
+ Book Record: <text size=30 name=\"a_viewgutenberg\"/>
8
+ </horizontal>
9
+ <row><p> You should see that new window refresh every 15 seconds with </row>
10
+ <row><p> You can return to this screen by clicking on back arrows or the cancel button</row>
11
+
12
+
13
+ </table>
14
+ <button caption=\'Start Book\' action=\'rungutenbergwindow\'/>
15
+ </tab>"
16
+
@@ -0,0 +1,16 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"rwdgutenberghtml\" caption=\"Auto HTML Display\">
4
+ <table>
5
+ <horizontal>
6
+ Open a replacement window for
7
+ Book Record: <text size=30 name=\"a_viewgutenberg\"/>
8
+ </horizontal>
9
+ <row><p> You should see that new window refresh every 15 seconds with </row>
10
+ <row><p> You can return to this screen by clicking on back arrows or the cancel button</row>
11
+
12
+
13
+ </table>
14
+ <button caption=\'Start Book\' action=\'rungutenbergwindowhtml\'/>
15
+ </tab>"
16
+
@@ -0,0 +1,29 @@
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"viewrwdgutenbergconfiguration\" caption=\"RwdGutenberg Configuration\">
4
+
5
+
6
+
7
+ <table>
8
+ <row> <p> </row>
9
+ <row> <p align=\"right\">You can view or edit the configuration file here</row>
10
+ <row> <p> </row>
11
+ <horizontal>
12
+ <button caption=\"Fill Record\" action=\"loadrwdgutenbergconfiguration\"/>
13
+ <button caption=\"Save Changes\" action=\"saverwdgutenbergconfiguration\"/>
14
+ <button caption=\"Reload Variables\" action=\"loadrwdgutebergconfigurationvariables\"/>
15
+ <button caption=\"Help\" action=\"runhelpwindowrwdgutenberg\"/>
16
+ </horizontal>
17
+ <table>
18
+
19
+ </p> <textarea name=\"a_gutenconfigurationfile\"/> </row>
20
+
21
+ </table>
22
+ <p>%extragutenconfigdatadisplay%</p>
23
+ <p>
24
+ <p>%newgutenconfigurationresult%</p>
25
+
26
+
27
+
28
+ </tab>"
29
+
@@ -0,0 +1,9 @@
1
+ $rwdguivar=
2
+ "
3
+ <window name=\"gutendisplayhtmlwindowtwo\" title=\"Auto HTML Display\" refresh=#{BookViewDisplay}>
4
+ <small>
5
+ <p>%%gutendisplayvariable%%</p>
6
+ </small>
7
+ <cancel/>
8
+ </window>"
9
+
@@ -16,21 +16,7 @@ $rwdguivar=
16
16
 
17
17
  </horizontal>
18
18
  <table>
19
- <row> <p align=\"right\" >FileName:</p> <text size=70 name=\"a_configurationfilename\"/> </row>
20
- <row> <p align=\"right\">1:</p> <text size=70 name=\"a_configline1\"/> </row>
21
- <row> <p align=\"right\">2:</p> <text size=70 name=\"a_configline2\"/> </row>
22
- <row> <p align=\"right\">3:</p> <text size=70 name=\"a_configline3\"/> </row>
23
- <row> <p align=\"right\">4:</p> <text size=70 name=\"a_configline4\"/> </row>
24
- <row> <p align=\"right\">5:</p> <text size=70 name=\"a_configline5\"/> </row>
25
- <row> <p align=\"right\">6:</p> <text size=70 name=\"a_configline6\"/> </row>
26
- <row> <p align=\"right\">7:</p> <text size=70 name=\"a_configline7\"/> </row>
27
- <row> <p align=\"right\">8:</p> <text size=70 name=\"a_configline8\"/> </row>
28
- <row> <p align=\"right\">9:</p> <text size=70 name=\"a_configline9\"/> </row>
29
- <row> <p align=\"right\">10:</p> <text size=70 name=\"a_configline10\"/> </row>
30
- <row> <p align=\"right\">11:</p> <text size=70 name=\"a_configline11\"/> </row>
31
- <row> <p align=\"right\">12:</p> <text size=70 name=\"a_configline12\"/> </row>
32
- <row> <p align=\"right\">13:</p> <text size=70 name=\"a_configline13\"/> </row>
33
- <row> <p align=\"right\">14:</p> <text size=70 name=\"a_configline14\"/> </row>
19
+ <textarea name=\"a_configurationfile\"/>
34
20
 
35
21
 
36
22
  </table>
@@ -0,0 +1,4 @@
1
+ # rwdviewlogo - small applet to display one picture
2
+ code/dd0viewphoto
3
+ gui/cc0viewphoto
4
+ rwd_files/tinker.png
@@ -81,6 +81,13 @@ Steven Gibson
81
81
  steven@superant.com
82
82
 
83
83
  == Changelog
84
+ Version 0.06
85
+ clear fields with each new book record
86
+ catch missing or wrong filename for reading
87
+ Add html viewing tab
88
+ added reset button
89
+ updated for rwdtinker 1.66
90
+
84
91
  Version 0.05
85
92
  Fix bug with file advance
86
93
  updated for rwdtinker 1.65
@@ -227,6 +227,10 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
227
227
  Thanks, Steven Gibson
228
228
 
229
229
  == Changelog
230
+ Version 1.66
231
+ Fixed directory layout
232
+ increased size of config edit screen
233
+
230
234
  Version 1.65
231
235
  Changed documents listing screen - now using hash
232
236
  Changed helpabout screen - now using hash
data/rwdconfig.dist CHANGED
@@ -1,4 +1,4 @@
1
- ##VERSION:1.65
1
+ ##VERSION:1.66
2
2
  # rwdtinker core configuration file
3
3
  ##NAME: ConfigLocation:0
4
4
  ConfigLocation=""
@@ -10,8 +10,9 @@ $testharnessarray = ["rwdtinker_all_tests"]
10
10
  TestNow=false # turning this on will run the unit tests
11
11
  ##NAME:$testharness:0
12
12
  $testharness=true
13
- ##NAME:$tinkerdocumentsarray:0
13
+ ##NAME:$tinkerhelpaboutarray:0
14
14
  $tinkerhelpaboutarray = ["Tinker"]
15
+ ##NAME:$tinkerdocumentsarray:0
15
16
  $tinkerdocumentsarray = ["Readme.txt"]
16
17
 
17
18