rwdziprwdwcalc 0.50

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_RwdCalc.txt +110 -0
  2. data/rwdwcalc-0.50.zip +0 -0
  3. metadata +40 -0
data/HowTo_RwdCalc.txt ADDED
@@ -0,0 +1,110 @@
1
+ = HowTo use the RwdCalc Program
2
+
3
+
4
+ rwdcalc is a web brower interface to arithmetic commands
5
+
6
+
7
+ 3. use a calculator
8
+
9
+
10
+ The GUI interface used is RubyWebDialogs
11
+
12
+
13
+ Start the program by typing
14
+ ruby init.rb
15
+
16
+ Then point your web browser to:
17
+ http://localhost:7705/
18
+
19
+
20
+
21
+
22
+ == Calculator
23
+
24
+ add or multiply 2 numbers together
25
+
26
+ subtract or divide
27
+
28
+ see a running tape
29
+
30
+
31
+
32
+ == Documents
33
+
34
+ when you click on a document name, the document should pop up in a
35
+ browser window, or in another browser tab.
36
+
37
+ To exit, press the x inside the browser window.
38
+
39
+
40
+
41
+
42
+ Requirements:
43
+ RubyWebDialogs - I am using 0.0.11 2004-3-9
44
+ This package you downloaded rwddemo should have a runtime version of
45
+ the needed rubywebdialog files
46
+
47
+ Ruby I am using version 1.8.2
48
+
49
+ I have tested this under Linux-Debian kernel 2.6.9
50
+
51
+ Operation:
52
+ The code files reside in the code directory and are combined before
53
+ the main Class is loaded
54
+
55
+ The rwd files in gui are combined before the gui is activated
56
+
57
+ Installing:
58
+
59
+ untar the file
60
+ tar zxvf rwdshell-x.y.tar.gz
61
+ then cd to the directory
62
+ cd rwdshell-x.y
63
+ then start the init.rb program file
64
+ ruby init.rb
65
+ Trouble shooting:
66
+
67
+ If the program is not working, try looking at the ev subdirectory. That is where
68
+ the runtime of rubywebdialogs are.
69
+
70
+ for long term installation, I would suggest putting most files in a lib directory
71
+ like /usr/lib/rwdshell
72
+ then make a writable directory the local directory for command files to be written
73
+ like ~/rwdshell
74
+
75
+
76
+ 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.
77
+
78
+ Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
79
+
80
+ 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/
81
+
82
+
83
+ For more information see:
84
+ http://rwdapplications.rubyforge.org/wiki/wiki.pl
85
+
86
+
87
+ For more information about RubyWebDialogs see:
88
+ http://www.erikveen.dds.nl/rubywebdialogs/index.html
89
+
90
+ Thanks, Steven Gibson
91
+
92
+ == Changelog
93
+ Version 0.5
94
+ corrected selectiontab
95
+ added sample math demos
96
+ added script running tab
97
+ added script editing
98
+ added script rename, delete
99
+ updated for rwdtinker 1.51
100
+
101
+ Version 0.3
102
+ Changed directory structure to work with rwdtinker 1.4.
103
+ Added running tape
104
+ Added subtraction and division
105
+ moved to second window
106
+
107
+ Version 0.2
108
+ converted to rwdtinker applet
109
+
110
+
data/rwdwcalc-0.50.zip ADDED
Binary file
metadata ADDED
@@ -0,0 +1,40 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.3
3
+ specification_version: 1
4
+ name: rwdziprwdwcalc
5
+ version: !ruby/object:Gem::Version
6
+ version: "0.50"
7
+ date: 2005-02-08
8
+ summary: rwdcalc is calculator using rwdtinker and RubyWebDialogs.
9
+ require_paths:
10
+ - "."
11
+ email: steven@superant.com
12
+ homepage: http://rubyforge.org/projects/rwdapplications/
13
+ rubyforge_project: rwdapplications
14
+ description: rwdcalc 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
+ - rwdwcalc-0.50.zip
30
+ - HowTo_RwdCalc.txt
31
+ test_files: []
32
+ rdoc_options:
33
+ - "--main"
34
+ - HowTo_RwdCalc.txt
35
+ extra_rdoc_files: []
36
+ executables: []
37
+ extensions: []
38
+ requirements:
39
+ - rwdtinker > 1.50
40
+ dependencies: []