rwdhypernote 0.03 → 0.04

Sign up to get free protection for your applications and to get access to all the features.
data/Readme.txt CHANGED
@@ -81,6 +81,10 @@ Steven Gibson
81
81
  steven@superant.com
82
82
 
83
83
  == Changelog
84
+ version 0.04
85
+ corrected bug in note name on link tab
86
+ cleaned up variable names in list notes
87
+
84
88
  version 0.03
85
89
  view and edit note
86
90
  view and edit links
@@ -23,27 +23,30 @@ end
23
23
  def rwdhypernotelistlinkdirs
24
24
  $noteslinksarray = [""]
25
25
  startlangdir = $rwdhypernote_directory
26
+ puts startlangdir
26
27
  #get a list of the files and subdirectories on the starting directory only
27
- alanghash = Array.new(Dir[startlangdir].entries.sort)
28
- #loop through the list, ignore the files and add all new directories found
29
- alanghash.each do |x|
28
+ anotelinkarray = Array.new(Dir[startlangdir].entries.sort)
29
+ p anotelinkarray
30
+ #loop through the list, ignore the files and add all new directories found
31
+ anotelinkarray.each do |x|
30
32
  #if a directory...
31
33
  if(test(?d,x))
32
34
  # add to the original list of directories
33
35
  @@tmproot = x + "/**"
34
36
  #adds the new ones to the array
35
- blanghash = Dir[@@tmproot].entries.sort
36
- blanghash.each do |x|
37
- if(test(?d,x))
38
- alanghash.push(x) #appends to the end of the array...
37
+ bnotelinkarray = Dir[@@tmproot].entries.sort
38
+ bnotelinkarray.each do |x|
39
+ p x
40
+ if(test(?d,x))
41
+ anotelinkarray.push(x) #appends to the end of the array...
39
42
  end
40
43
  end
41
44
  end
42
45
  end
43
- alanghash.each do |x|
46
+ anotelinkarray.each do |x|
44
47
  #if it is a file...
45
48
  if(!test(?d,x))
46
- alanghash.delete(x)
49
+ anotelinkarray.delete(x)
47
50
  else #it is a directory...
48
51
  findnotelinkfiles(x + "/**")
49
52
  end
@@ -9,7 +9,9 @@ def fillhypernotename(inffile)
9
9
  end
10
10
 
11
11
  def findnotefiles(d)
12
+ p d
12
13
  a = Array.new(Dir[d].entries.sort)
14
+ p a
13
15
  #loop through and get the files names
14
16
  a.each do |x|
15
17
  #adjust the filters to the files you want to see...
@@ -25,28 +27,34 @@ end
25
27
 
26
28
  def listnotedirs
27
29
  startlangdir = $rwdhypernote_directory
30
+
28
31
  $notesarray = [""]
32
+
29
33
  #get a list of the files and subdirectories on the starting directory only
30
- alanghash = Array.new(Dir[startlangdir].entries.sort)
34
+ anotearray = Array.new(Dir[startlangdir].entries.sort)
35
+
31
36
  #loop through the list, ignore the files and add all new directories found
32
- alanghash.each do |x|
37
+ anotearray.each do |x|
33
38
  #if a directory...
39
+
34
40
  if(test(?d,x))
35
41
  # add to the original list of directories
36
42
  @@tmproot = x + "/**"
37
43
  #adds the new ones to the array
38
- blanghash = Dir[@@tmproot].entries.sort
39
- blanghash.each do |x|
44
+
45
+ bnotearray = Dir[@@tmproot].entries.sort
46
+ bnotearray.each do |x|
40
47
  if(test(?d,x))
41
- alanghash.push(x) #appends to the end of the array...
48
+ anotearray.push(x) #appends to the end of the array...
42
49
  end
43
50
  end
44
51
  end
45
52
  end
46
- alanghash.each do |x|
53
+ anotearray.each do |x|
47
54
  #if it is a file...
55
+ p x
48
56
  if(!test(?d,x))
49
- alanghash.delete(x)
57
+ anotearray.delete(x)
50
58
  else #it is a directory...
51
59
  findnotefiles(x + "/**")
52
60
  end
@@ -1,5 +1,5 @@
1
1
 
2
- $rwdhypernote_directory = "Notes"
2
+ $rwdhypernote_directory = 'Notes'
3
3
  $notesarray = ["Notes/changes.txt"]
4
4
  $noteslinksarray = ["Notes/changes.lnk"]
5
5
  $rwdschedule_ftpsite = "ftp.mysite.com"
@@ -1,3 +1,3 @@
1
1
 
2
- RwdHyperNoteVersion = "0.03"
2
+ RwdHyperNoteVersion = "0.04"
3
3
 
@@ -6,7 +6,7 @@ $rwdguivar=
6
6
  <table>
7
7
  <row>View your event list and detail on this Tab</row>
8
8
  <row> <p> </row>
9
- <row> <p align=\"right\">Note Record:</p> <text size=70 name=\"a_viewnote\"/> </row>
9
+ <row> <p align=\"right\">Note Record:</p> <text size=70 name=\"a_viewhypernote\"/> </row>
10
10
  <row> <p> </row>
11
11
  <row> <p align=\"right\">Link Filename:</p> <text size=70 name=\"a_viewlinksnote\"/> </row>
12
12
 
data/lang/templangfile.rb CHANGED
@@ -1,16 +1,16 @@
1
- # English Language files for RwdTinker core
2
-
3
-
4
- :applet_installed => "applet installed!.",
5
- :clickfor_version => '"click for version"',
6
- :documents => '"Documents"',
7
- :help => '"Help"',
8
- :module_unknown => "Module unknown",
9
- :next => '"Next"',
10
- :rwdtinker_window_2 => "RwdTinker Window 2",
11
- :rwdtinker => "RwdTinker",
12
- :rwdtinker_help_window => '"RwdTinker Help Window"',
13
- :rwdtinker_back_window => '"RwdTinker Back Window"',
14
- :rwdtinker_help => '"RwdTinker Help"',
15
- :tinker_logo => "Tinker Logo",
1
+ # English Language files for RwdTinker core
2
+
3
+
4
+ :applet_installed => "applet installed!.",
5
+ :clickfor_version => '"click for version"',
6
+ :documents => '"Documents"',
7
+ :help => '"Help"',
8
+ :module_unknown => "Module unknown",
9
+ :next => '"Next"',
10
+ :rwdtinker_window_2 => "RwdTinker Window 2",
11
+ :rwdtinker => "RwdTinker",
12
+ :rwdtinker_help_window => '"RwdTinker Help Window"',
13
+ :rwdtinker_back_window => '"RwdTinker Back Window"',
14
+ :rwdtinker_help => '"RwdTinker Help"',
15
+ :tinker_logo => "Tinker Logo",
16
16
  :selection_panel => '"Selection Panel"',
@@ -1,16 +1,16 @@
1
- # English Language files for RwdTinker core
2
-
3
-
4
- :applet_installed => "applet installed!.",
5
- :clickfor_version => '"click for version"',
6
- :documents => '"Documents"',
7
- :help => '"Help"',
8
- :module_unknown => "Module unknown",
9
- :next => '"Next"',
10
- :rwdtinker_window_2 => "RwdTinker Window 2",
11
- :rwdtinker => "RwdTinker",
12
- :rwdtinker_help_window => '"RwdTinker Help Window"',
13
- :rwdtinker_back_window => '"RwdTinker Back Window"',
14
- :rwdtinker_help => '"RwdTinker Help"',
15
- :tinker_logo => "Tinker Logo",
1
+ # English Language files for RwdTinker core
2
+
3
+
4
+ :applet_installed => "applet installed!.",
5
+ :clickfor_version => '"click for version"',
6
+ :documents => '"Documents"',
7
+ :help => '"Help"',
8
+ :module_unknown => "Module unknown",
9
+ :next => '"Next"',
10
+ :rwdtinker_window_2 => "RwdTinker Window 2",
11
+ :rwdtinker => "RwdTinker",
12
+ :rwdtinker_help_window => '"RwdTinker Help Window"',
13
+ :rwdtinker_back_window => '"RwdTinker Back Window"',
14
+ :rwdtinker_help => '"RwdTinker Help"',
15
+ :tinker_logo => "Tinker Logo",
16
16
  :selection_panel => '"Selection Panel"',
@@ -81,6 +81,10 @@ Steven Gibson
81
81
  steven@superant.com
82
82
 
83
83
  == Changelog
84
+ version 0.04
85
+ corrected bug in note name on link tab
86
+ cleaned up variable names in list notes
87
+
84
88
  version 0.03
85
89
  view and edit note
86
90
  view and edit links
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.4
3
3
  specification_version: 1
4
4
  name: rwdhypernote
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.03"
7
- date: 2005-02-16
6
+ version: "0.04"
7
+ date: 2005-02-17
8
8
  summary: rwdhypernote application is a hierarchical note taker for RubyWebDialogs.
9
9
  require_paths:
10
10
  - "."
@@ -37,9 +37,13 @@ files:
37
37
  - code/01rwdcore/rwdwindowreturn.rb
38
38
  - code/superant.com.hypernote/archiveevent.rb
39
39
  - code/superant.com.hypernote/changehypernotename.rb
40
- - code/superant.com.hypernote/createnewnote.rb
40
+ - code/superant.com.hypernote/clearhypernotescreendisplay.rb
41
+ - code/superant.com.hypernote/clearlinkscreendisplay.rb
41
42
  - code/superant.com.hypernote/copyfilename.rb
43
+ - code/superant.com.hypernote/createnewnote.rb
44
+ - code/superant.com.hypernote/deletehypernoterecord.rb
42
45
  - code/superant.com.hypernote/helptexthashrwdhypernote.rb
46
+ - code/superant.com.hypernote/hyperlinkcreatelinkfile.rb
43
47
  - code/superant.com.hypernote/listhypernotelinks.rb
44
48
  - code/superant.com.hypernote/listhypernotes.rb
45
49
  - code/superant.com.hypernote/listlinknotes.rb
@@ -49,15 +53,11 @@ files:
49
53
  - code/superant.com.hypernote/loadnoterecord.rb
50
54
  - code/superant.com.hypernote/openhelpwindowrwdhyernote.rb
51
55
  - code/superant.com.hypernote/returntomain.rb
52
- - code/superant.com.hypernote/savehypernoterecord.rb
53
56
  - code/superant.com.hypernote/rwdhypernotehelpabout.rb
54
57
  - code/superant.com.hypernote/saveconfigurationrecord.rb
55
- - code/superant.com.hypernote/viewrwdschedulesconfiguration.rb
58
+ - code/superant.com.hypernote/savehypernoterecord.rb
56
59
  - code/superant.com.hypernote/savelinkrecord.rb
57
- - code/superant.com.hypernote/hyperlinkcreatelinkfile.rb
58
- - code/superant.com.hypernote/clearlinkscreendisplay.rb
59
- - code/superant.com.hypernote/clearhypernotescreendisplay.rb
60
- - code/superant.com.hypernote/deletehypernoterecord.rb
60
+ - code/superant.com.hypernote/viewrwdschedulesconfiguration.rb
61
61
  - code/superant.com.rwdtinkerbackwindow/controlclient.rb
62
62
  - code/superant.com.rwdtinkerbackwindow/diagnostictab.rb
63
63
  - code/superant.com.rwdtinkerbackwindow/helptexthashtinkerwin2.rb