rwdziprwdwwords 0.02

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/HowTo_Words.txt +132 -0
  2. data/rwdwwords-0.02.zip +0 -0
  3. metadata +40 -0
@@ -0,0 +1,132 @@
1
+ = RwdWords Program
2
+
3
+ How to Use the Words Program (rwdwords)
4
+
5
+ == What is is
6
+
7
+ includes is a web brower interface to dictionary lookup
8
+
9
+
10
+ download from http://rubyforge.org/frs/?group_id=444
11
+
12
+ run shell commands
13
+
14
+
15
+ The GUI interface used is RubyWebDialogs
16
+
17
+
18
+ Start the program by typing<br>
19
+ ruby init.rb
20
+
21
+ Then point your web browser to:
22
+ http://localhost:7705/
23
+
24
+ == using dictionary lookup
25
+
26
+
27
+
28
+ Enter the word you want to run for in the browser form and press Lookup.
29
+ After a second the browser should fill with the results of the command.
30
+
31
+ You should be able to run one search after another
32
+
33
+
34
+
35
+
36
+
37
+ The GUI interface used is RubyWebDialogs
38
+
39
+
40
+ Start the program by typing
41
+ ruby init.rb
42
+
43
+ Then point your web browser to:
44
+ http://localhost:7705/
45
+
46
+
47
+
48
+
49
+ == Using over a Network
50
+
51
+ To serve the application over your local LAN,change the last line in the
52
+ init.rb file to something like:
53
+ RwdTinker.file(RWDFile).serve(8080, "-r" ? ".rwduids" : nil)
54
+ Then you should be able to login at: http://yourhostname:8080
55
+
56
+ You have to authorize yourself. The .rwuids example is a string with
57
+ the name of the authorization file, relative to the home directory
58
+ of the user that started the service. This file has to be in the form of:
59
+
60
+ user1 = password
61
+ user2 = pass phrase
62
+
63
+ Thus the file .rwduids might contain:
64
+
65
+ erik = secret
66
+
67
+
68
+ == Requirements:
69
+ RubyWebDialogs - I am using 0.0.11 2004-3-9<br>
70
+ This package you downloaded rwddemo should have a runtime version of
71
+ the needed rubywebdialog files<br>
72
+
73
+ Ruby I am using version 1.8.2
74
+
75
+ I have tested this under Linux-Debian kernel 2.6.9
76
+
77
+ == Operation:
78
+ The code files reside in the code directory and are combined before
79
+ the main Class is loaded
80
+
81
+ The rwd files in gui are combined before the gui is activated
82
+
83
+ == Installing:
84
+
85
+ unzip the file
86
+ then cd to the directory
87
+ unzip rwdaspell-x.y.zip
88
+
89
+
90
+ == Trouble shooting:
91
+
92
+ If the program is not working, try looking at the ev subdirectory. That is where
93
+ the runtime of rubywebdialogs are.
94
+
95
+ for long term installation, I would suggest putting most files in a lib directory
96
+ like /usr/lib/rwdshell
97
+ then make a writable directory the local directory for command files to be written
98
+ like ~/rwdshell
99
+
100
+
101
+ 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.
102
+
103
+ Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
104
+
105
+ 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/
106
+
107
+
108
+ For more information see:
109
+ http://rwdapplications.rubyforge.org/wiki/wiki.pl
110
+
111
+ For more information about RubyWebDialogs see:<br>
112
+ http://www.erikveen.dds.nl/rubywebdialogs/index.html
113
+
114
+ Thanks, Steven Gibson
115
+
116
+ == Changelog
117
+ version 0.02
118
+ name changed to rwdwords from rwdspell
119
+ added fortune refresh window that should work on any Unixlike system
120
+
121
+ version 0.01
122
+ First release
123
+ can lookup dict.org entries
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
Binary file
metadata ADDED
@@ -0,0 +1,40 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.6
3
+ specification_version: 1
4
+ name: rwdziprwdwwords
5
+ version: !ruby/object:Gem::Version
6
+ version: "0.02"
7
+ date: 2005-03-09
8
+ summary: rwdwords is a Dictonary lookup tool using rwdtinker and RubyWebDialogs. Requires rwdtinker >1.56
9
+ require_paths:
10
+ - "."
11
+ email: steven@superant.com
12
+ homepage: http://rubyforge.org/projects/rwdapplications/
13
+ rubyforge_project: rwdapplications
14
+ description: rwdwords is a Dictonary lookup tool using rwdtinker and RubyWebDialogs. Requires rwdtinker >1.56
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
+ - rwdwwords-0.02.zip
30
+ - HowTo_Words.txt
31
+ test_files: []
32
+ rdoc_options:
33
+ - "--main"
34
+ - HowTo_Words.txt
35
+ extra_rdoc_files: []
36
+ executables: []
37
+ extensions: []
38
+ requirements:
39
+ - rwdtinker > 1.56
40
+ dependencies: []