rwdhypernote 0.03 → 0.04
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Readme.txt +4 -0
- data/code/superant.com.hypernote/listhypernotelinks.rb +12 -9
- data/code/superant.com.hypernote/listhypernotes.rb +15 -7
- data/configuration/rwdhypernote.cnf +1 -1
- data/configuration/rwdhypernoteversion.cnf +1 -1
- data/gui/frontwindow0/superant.com.hypernote/20editlinks.rwd +1 -1
- data/lang/templangfile.rb +15 -15
- data/lang/xlocallangfile.rb +15 -15
- data/rwd_files/HowTo_HyperNote.txt +4 -0
- metadata +9 -9
data/Readme.txt
CHANGED
@@ -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
|
-
|
28
|
-
|
29
|
-
|
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
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
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
|
-
|
46
|
+
anotelinkarray.each do |x|
|
44
47
|
#if it is a file...
|
45
48
|
if(!test(?d,x))
|
46
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
39
|
-
|
44
|
+
|
45
|
+
bnotearray = Dir[@@tmproot].entries.sort
|
46
|
+
bnotearray.each do |x|
|
40
47
|
if(test(?d,x))
|
41
|
-
|
48
|
+
anotearray.push(x) #appends to the end of the array...
|
42
49
|
end
|
43
50
|
end
|
44
51
|
end
|
45
52
|
end
|
46
|
-
|
53
|
+
anotearray.each do |x|
|
47
54
|
#if it is a file...
|
55
|
+
p x
|
48
56
|
if(!test(?d,x))
|
49
|
-
|
57
|
+
anotearray.delete(x)
|
50
58
|
else #it is a directory...
|
51
59
|
findnotefiles(x + "/**")
|
52
60
|
end
|
@@ -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=\"
|
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"',
|
data/lang/xlocallangfile.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"',
|
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.
|
7
|
-
date: 2005-02-
|
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/
|
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/
|
58
|
+
- code/superant.com.hypernote/savehypernoterecord.rb
|
56
59
|
- code/superant.com.hypernote/savelinkrecord.rb
|
57
|
-
- code/superant.com.hypernote/
|
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
|