rwdziprwdwhypernote 0.04

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,97 @@
1
+ = rwdhypernote - for rwdtinker and RubyWebDialogs
2
+
3
+ rwdhypernote is a little hierarchical notes editor
4
+
5
+ The GUI interface used is RubyWebDialogs
6
+
7
+ RubyWebDialogs is a platform independent graphical user interface for Ruby applications. It generates HTML and serves it with an internal HTTP server, so you can use your favorite web browser as the front end for your Ruby application. All this means, that it can be used on almost every platform, like Ruby itself. http://www.erikveen.dds.nl/rubywebdialogs/
8
+
9
+ == Quick Start
10
+ Start the program by typing
11
+ ruby init.rb
12
+
13
+ Then point your web browser to:
14
+ http://localhost:7705/
15
+
16
+ To exit, press the x inside the browser window.
17
+
18
+ == rwdhypernote
19
+
20
+ This program is a hierarchical notes editor
21
+ text notes can be entered and saved in a Notes directory
22
+
23
+ Notes can be saved in a hierarchical structure in directories
24
+ Links can be recorded connecting Notes -similar to wikiwiki
25
+
26
+ == Tabs
27
+
28
+ There are tabs to enter notes and links and edit configurations
29
+
30
+ View/Edit Note - to create a note or edit and existing note
31
+
32
+ View/Edit Links - to edit links
33
+
34
+ Note Utilities - to rename or delete notes
35
+
36
+ Edit Configuration - to change the configuration of rwdhypernote
37
+
38
+
39
+ == Using over a Network
40
+
41
+ To serve the application over your local LAN,change the last line in the
42
+ init.rb file to something like:
43
+ RwdTinker.file(RWDFile).serve(8080, "-r" ? ".rwduids" : nil)
44
+ Then you should be able to login at: http://yourhostname:8080
45
+
46
+ You have to authorize yourself. The .rwuids example is a string with
47
+ the name of the authorization file, relative to the home directory
48
+ of the user that started the service. This file has to be in the form of:
49
+
50
+ user1 = password
51
+ user2 = pass phrase
52
+
53
+ Thus the file .rwduids might contain:
54
+
55
+ erik = secret
56
+
57
+ == Requirements:
58
+ RubyWebDialogs - I am using 0.0.12
59
+ Ruby I am using version 1.8.2
60
+
61
+
62
+ I have tested this under Linux-Debian kernel 2.6.9
63
+
64
+ == PROBLEMS:
65
+
66
+ Closing the browser doesn't terminate the application. You have to use the application's close-button And terminating the application doesn't terminate the application when running in network mode. You just log out.
67
+
68
+ Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
69
+
70
+
71
+ == contacts
72
+ For more information see:
73
+ http://rwdapplications.rubyforge.org/wiki/wiki.pl
74
+
75
+
76
+ For more information about RubyWebDialogs see:
77
+ http://www.erikveen.dds.nl/rubywebdialogs/index.html
78
+
79
+
80
+ Steven Gibson
81
+ steven@superant.com
82
+
83
+ == Changelog
84
+ version 0.03
85
+ view and edit note
86
+ view and edit links
87
+ rename and delete files
88
+
89
+ version 0.02
90
+ updated for rwdtinker 1.54
91
+ adding internal links
92
+ beginning help
93
+ helpabout
94
+
95
+ version 0.01
96
+ First Release
97
+
data/rwdhypernote.rb ADDED
@@ -0,0 +1,97 @@
1
+ = rwdhypernote - for rwdtinker and RubyWebDialogs
2
+
3
+ rwdhypernote is a little hierarchical notes editor
4
+
5
+ The GUI interface used is RubyWebDialogs
6
+
7
+ RubyWebDialogs is a platform independent graphical user interface for Ruby applications. It generates HTML and serves it with an internal HTTP server, so you can use your favorite web browser as the front end for your Ruby application. All this means, that it can be used on almost every platform, like Ruby itself. http://www.erikveen.dds.nl/rubywebdialogs/
8
+
9
+ == Quick Start
10
+ Start the program by typing
11
+ ruby init.rb
12
+
13
+ Then point your web browser to:
14
+ http://localhost:7705/
15
+
16
+ To exit, press the x inside the browser window.
17
+
18
+ == rwdhypernote
19
+
20
+ This program is a hierarchical notes editor
21
+ text notes can be entered and saved in a Notes directory
22
+
23
+ Notes can be saved in a hierarchical structure in directories
24
+ Links can be recorded connecting Notes -similar to wikiwiki
25
+
26
+ == Tabs
27
+
28
+ There are tabs to enter notes and links and edit configurations
29
+
30
+ View/Edit Note - to create a note or edit and existing note
31
+
32
+ View/Edit Links - to edit links
33
+
34
+ Note Utilities - to rename or delete notes
35
+
36
+ Edit Configuration - to change the configuration of rwdhypernote
37
+
38
+
39
+ == Using over a Network
40
+
41
+ To serve the application over your local LAN,change the last line in the
42
+ init.rb file to something like:
43
+ RwdTinker.file(RWDFile).serve(8080, "-r" ? ".rwduids" : nil)
44
+ Then you should be able to login at: http://yourhostname:8080
45
+
46
+ You have to authorize yourself. The .rwuids example is a string with
47
+ the name of the authorization file, relative to the home directory
48
+ of the user that started the service. This file has to be in the form of:
49
+
50
+ user1 = password
51
+ user2 = pass phrase
52
+
53
+ Thus the file .rwduids might contain:
54
+
55
+ erik = secret
56
+
57
+ == Requirements:
58
+ RubyWebDialogs - I am using 0.0.12
59
+ Ruby I am using version 1.8.2
60
+
61
+
62
+ I have tested this under Linux-Debian kernel 2.6.9
63
+
64
+ == PROBLEMS:
65
+
66
+ Closing the browser doesn't terminate the application. You have to use the application's close-button And terminating the application doesn't terminate the application when running in network mode. You just log out.
67
+
68
+ Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
69
+
70
+
71
+ == contacts
72
+ For more information see:
73
+ http://rwdapplications.rubyforge.org/wiki/wiki.pl
74
+
75
+
76
+ For more information about RubyWebDialogs see:
77
+ http://www.erikveen.dds.nl/rubywebdialogs/index.html
78
+
79
+
80
+ Steven Gibson
81
+ steven@superant.com
82
+
83
+ == Changelog
84
+ version 0.03
85
+ view and edit note
86
+ view and edit links
87
+ rename and delete files
88
+
89
+ version 0.02
90
+ updated for rwdtinker 1.54
91
+ adding internal links
92
+ beginning help
93
+ helpabout
94
+
95
+ version 0.01
96
+ First Release
97
+
Binary file
metadata ADDED
@@ -0,0 +1,42 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.4
3
+ specification_version: 1
4
+ name: rwdziprwdwhypernote
5
+ version: !ruby/object:Gem::Version
6
+ version: "0.04"
7
+ date: 2005-02-17
8
+ summary: rwdziprwdwhypernote is a hierarchical note editor using rwdtinker and RubyWebDialogs. Requires rwdtinker >1.51
9
+ require_paths:
10
+ - "."
11
+ email: steven@superant.com
12
+ homepage: http://rubyforge.org/projects/rwdapplications/
13
+ rubyforge_project: rwdapplications
14
+ description: rwdziprwdwhypernote is a hierarchical note editor using rwdtinker and RubyWebDialogs. Requires rwdtinker >1.51rwdcalc is calculator rwdtinker and RubyWebDialogs
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ -
22
+ - ">"
23
+ - !ruby/object:Gem::Version
24
+ version: 0.0.0
25
+ version:
26
+ platform: ruby
27
+ authors: []
28
+ files:
29
+ - rwdwhypernote-0.04.zip
30
+ - HowTo_HyperNote.txt
31
+ - rwdhypernote.rb
32
+ test_files: []
33
+ rdoc_options:
34
+ - "--main"
35
+ - HowTo_HyperNote.txt
36
+ extra_rdoc_files:
37
+ - HowTo_HyperNote.txt
38
+ executables: []
39
+ extensions: []
40
+ requirements:
41
+ - rwdtinker > 1.51
42
+ dependencies: []