rubyslippers 0.93 → 0.94

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. data/code/ii6rubyslippers/ii7listgemsremote.rb +20 -20
  2. data/code/ii6rubyslippers/rubyslippershelpabout.rb +14 -14
  3. data/code/ii6rubyslippers/runrubyslipperswindow.rb +8 -8
  4. data/configuration/aa0rwdframework.cnf +6 -2
  5. data/configuration/ii3rubyslippers.cnf +4 -4
  6. data/gui/aa2core/aa0rwdtop.rwd +1 -1
  7. data/gui/ii6rubyslippers/ii3viewgemdata.rwd +10 -10
  8. data/gui/ii6rubyslippers/ii4listgemrecordfiles.rwd +6 -7
  9. data/gui/ii6rubyslippers/ii6installgem.rwd +11 -11
  10. data/gui/ii6rubyslippers/ii7listgemsremote.rwd +10 -10
  11. data/gui/ii6rubyslippers/ii9gemcommands.rwd +16 -16
  12. data/gui/ii6rubyslippers/ij1gemfilesinstalled.rwd +16 -16
  13. data/gui/ii6rubyslippers/ij4gemserverscan.rwd +14 -14
  14. data/gui/ll1selectiontabbegin/selectiontabbegin.rwd +2 -2
  15. data/gui/ll5rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd +1 -1
  16. data/gui/tt0documentsbegin/tt0documentbegin.rwd +1 -1
  17. data/gui/ui3rubyslippers/ui3rubyslippers.rwd +3 -3
  18. data/gui/ui3rubyslippers/ui4rubyslippers.rwd +3 -3
  19. data/gui/xa5rwdtinkercallablewindow/1appname.rwd +5 -5
  20. data/gui/yg5rwdhelpabout/5version.rwd +1 -1
  21. data/gui/yi2rubyslippers/1rubyslippers.rwd +3 -3
  22. data/gui/yi2rubyslippers/2rubyslippers.rwd +3 -3
  23. data/gui/yi2rubyslippers/5version.rwd +9 -9
  24. data/installed/rubyslippers-0.93.inf +9 -9
  25. data/lang/en/rubyslippers/languagefile.rb +11 -0
  26. data/lang/en/rwdcalendar/calendar-en.rb +6 -0
  27. data/lang/en/rwdcore/languagefile.rb +10 -1
  28. data/lang/es/rubyslippers/languagefile.rb +12 -0
  29. data/lang/es/rwdcalendar/calendar-es.rb +6 -0
  30. data/lang/es/rwdcore/languagefile-es.rb +14 -0
  31. data/lang/jp/rubyslippers/languagefile.rb +13 -0
  32. data/lang/jp/rwdcore/languagefile.rb +9 -0
  33. data/lang/nl/rubyslippers/languagefile.rb +13 -0
  34. data/lang/nl/rwdcalendar/calendar-nl.rb +6 -0
  35. data/lang/nl/rwdcore/languagefile.rb +15 -3
  36. data/lang/templangfile.rb +27 -2
  37. data/lang/xlocallangfile.rb +29 -5
  38. data/rwd_files/HowTo_RubySlippers.txt +6 -9
  39. data/rwd_files/remotegemlist.txt +29 -19
  40. data/zips/rwdacalendar-0.5.zip +0 -0
  41. metadata +44 -38
  42. data/gui/ln6rubyslippersselectiontab/rubywindowsselectiontab.rwd +0 -11
  43. data/lang/es/rwdcore/languagefile.rb +0 -3
  44. data/rwd_files/HowTo_Shell.txt +0 -97
  45. data/zips/wrubyslippers-0.93.zip +0 -0
@@ -1,23 +1,23 @@
1
- def listgemsremote
2
-
3
-
4
- begin # exception trapped block
5
-
6
-
7
- commandline = $xpcommand + "gem query --remote"
8
- system( commandline+' > temp.output' )
9
- fileName = "temp.output"
10
-
11
-
12
- @gemsqueryresult = " gem listing retrieved remotely, click below to view it. "
13
-
1
+ def listgemsremote
2
+
3
+
4
+ begin # exception trapped block
5
+
6
+
7
+ commandline = $xpcommand + "gem query --remote"
8
+ system( commandline+' > temp.output' )
9
+ fileName = "temp.output"
10
+
11
+
12
+ @gemsqueryresult = " gem listing retrieved remotely, click below to view it. "
13
+
14
14
  path_to = File.join( "rwd_files", "remotegemlist.txt" )
15
15
  path_from = File.join( $progdir, fileName )
16
16
 
17
- FileUtils.cp(path_from, path_to)
18
-
19
- rescue
20
- @gemsqueryresult = "RubySlippers remote listing error"
21
- end # exception rescue
22
-
23
- end
17
+ FileUtils.cp(path_from, path_to)
18
+
19
+ rescue
20
+ @gemsqueryresult = "RubySlippers remote listing error"
21
+ end # exception rescue
22
+
23
+ end
@@ -1,14 +1,14 @@
1
- # Application RwdTinker orginally (c) 2004 Steven Gibson under GPL.
2
- # This application is a framework for writing programs from RubyWebDialogs
3
- # http://www.erikveen.dds.nl/rubywebdialogs/index.html
4
- # For more information about RwdTinker see http://www.rubyforge.net/projects/rwdapplications
5
-
6
- # return the version constant defined in the config file
7
- def runrubyslippersversion
8
- @rwd_window = "applicationversion"
9
- @versionappnamedisplay = "RubySlippers"
10
- @versioncopyrightdisplay = "(c) 2004 Steven Gibson "
11
- @versionnumberdisplay = "Version " + RubySlippersVersion
12
-
13
- end
14
-
1
+ # Application RwdTinker orginally (c) 2004 Steven Gibson under GPL.
2
+ # This application is a framework for writing programs from RubyWebDialogs
3
+ # http://www.erikveen.dds.nl/rubywebdialogs/index.html
4
+ # For more information about RwdTinker see http://www.rubyforge.net/projects/rwdapplications
5
+
6
+ # return the version constant defined in the config file
7
+ def runrubyslippersversion
8
+ @rwd_window = "applicationversion"
9
+ @versionappnamedisplay = "RubySlippers"
10
+ @versioncopyrightdisplay = "(c) 2004 Steven Gibson "
11
+ @versionnumberdisplay = "Version " + RubySlippersVersion
12
+
13
+ end
14
+
@@ -1,9 +1,9 @@
1
- # Application RwdAddresses orginally (c) 2004 Steven Gibson under GPL.
2
- # This application is a contact book
3
- # For more information about see http://www.rubyforge.net/projects/rwdapplications
4
-
5
- # call the window
6
- def runrubyslipperswindow
7
- @rwd_window = "rubyslipperswindow"
8
- end
1
+ # Application RwdAddresses orginally (c) 2004 Steven Gibson under GPL.
2
+ # This application is a contact book
3
+ # For more information about see http://www.rubyforge.net/projects/rwdapplications
4
+
5
+ # call the window
6
+ def runrubyslipperswindow
7
+ @rwd_window = "rubyslipperswindow"
8
+ end
9
9
 
@@ -1,9 +1,13 @@
1
- RwdTinkerVersion = "1.3"
1
+
2
+ RwdTinkerVersion = "1.4"
2
3
  CodeName = "rwdtinker"
3
4
  CodeNameFile = CodeName + ".rb"
4
5
  LangNameFile = "rwdlanguage.rb"
5
6
  RWDFile = "rwdtinker.rwd"
6
- $lang = "en"
7
+ #$lang = "jp"
8
+ $lang= "en"
9
+ #$lang= "nl"
10
+ #$lang= "es"
7
11
  @@codedir = "code"
8
12
  @@guidir = "gui"
9
13
  @@langdir = "lang"
@@ -1,8 +1,8 @@
1
-
2
- RubySlippersVersion = "0.93"
1
+
2
+ RubySlippersVersion = "0.94"
3
3
  #$gemdirectory = "c:\\ruby\\lib\\ruby\\gems\\1.8" # XP machine
4
- $gemdirectory = "/usr/lib/ruby/gems/1.8" # Linux machine
4
+ $gemdirectory = "/usr/lib/ruby/gems/1.8" # Linux machine
5
5
  #$gemspecificationsdirectory = "c:\\ruby\\lib\\ruby\\gems\\1.8\\specifications" # XP
6
6
  $gemspecificationsdirectory = "/usr/lib/ruby/gems/1.8/specifications"
7
7
  #$xpcommand = "cmd /C " # XP machines with cmd shell
8
- $xpcommand = " " # Linux machines
8
+ $xpcommand = " " # Linux machines
@@ -1,4 +1,4 @@
1
1
  $rwdguivar=
2
2
  "<application>
3
- <window name=\"main\" title=\"RubySlippers - A Front End for RubyGems\">
3
+ <window name=\"main\" title=\"RubySlippers - For RubyGems with RubyWebDialogs\">
4
4
  <tabs>"
@@ -1,11 +1,11 @@
1
- $rwdguivar=
2
- "
3
- <tab name=\"Viewgemdata\" caption=\"View Gem\">
4
- <table>
5
- <row> <p align=\"right\">Gem Name:</p> <text name=\"a_viewgemdata\"/> </row>
6
- </table>
7
- <horizontal>
8
- <button caption=\"Open\" action=\"viewgemdata\"/>
9
- <button caption=\"Cancel\" action=\"main\"/>
10
- </horizontal>
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"Viewgemdata\" caption=#{Message[:viewgem]}>
4
+ <table>
5
+ <row> <p align=\"right\">#{Message[:gem_name]}</p> <text name=\"a_viewgemdata\"/> </row>
6
+ </table>
7
+ <horizontal>
8
+ <button caption=#{Message[:open]} action=\"viewgemdata\"/>
9
+ <button caption=#{Message[:cancel]} action=\"main\"/>
10
+ </horizontal>
11
11
  <p>%viewgemdatadisplay%</p>"
@@ -1,8 +1,7 @@
1
- $rwdguivar=
2
- "
3
- <horizontal>
4
- <button caption=\"ListFiles\" action=\"listgemrecordfiles\"/>
5
- <button caption=\"Cancel\" action=\"main\"/>
6
- </horizontal>
7
- <p>%%listgemrecordfilesresult%%</p>
1
+ $rwdguivar=
2
+ "
3
+ <horizontal>
4
+ <button caption=#{Message[:list_installed_gems]} action=\"listgemrecordfiles\"/>
5
+ </horizontal>
6
+ <p>%%listgemrecordfilesresult%%</p>
8
7
  </tab>"
@@ -1,12 +1,12 @@
1
- $rwdguivar=
2
- "
3
- <tab name=\"geminstall\" caption=\"Install Gem\">
4
- <table>
5
- <row> <p align=\"right\">Enter the Gem to install </row>
6
- <row> <p align=\"right\">Gem Name:</p> <text name=\"a_installgeminput\"/> </row>
7
- </table>
8
- <horizontal>
9
- <button caption=\"Install Gem\" action=\"installgemremote\"/>
10
- <button caption=\"Cancel\" action=\"main\"/>
11
- </horizontal>
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"geminstall\" caption=#{Message[:installgem]}>
4
+ <table>
5
+ <row> <p align=\"right\">Enter the Gem to install </row>
6
+ <row> <p align=\"right\">Gem Name:</p> <text name=\"a_installgeminput\"/> </row>
7
+ </table>
8
+ <horizontal>
9
+ <button caption=\"Install Gem\" action=\"installgemremote\"/>
10
+ <button caption=\"Cancel\" action=\"main\"/>
11
+ </horizontal>
12
12
  <p>%installgemresult%</p>"
@@ -1,11 +1,11 @@
1
- $rwdguivar=
2
- "
3
- <horizontal>
4
- <button caption=\"List Gems in the Remote Repository - will be slow\" action=\"listgemsremote\"/>
5
- <button caption=\"Cancel\" action=\"main\"/>
6
- </horizontal>
7
- <p>%gemsqueryresult%</p>
8
- <row> <p> </row>
9
- <row> <p align=\"left\">
10
- <a href=remotegemlist.txt>remotegemlist.txt</a></p></row>
1
+ $rwdguivar=
2
+ "
3
+ <horizontal>
4
+ <button caption=\"List Gems in the Remote Repository - will be slow\" action=\"listgemsremote\"/>
5
+ <button caption=\"Cancel\" action=\"main\"/>
6
+ </horizontal>
7
+ <p>%gemsqueryresult%</p>
8
+ <row> <p> </row>
9
+ <row> <p align=\"left\">
10
+ <a href=remotegemlist.txt>remotegemlist.txt</a></p></row>
11
11
  </tab>"
@@ -1,17 +1,17 @@
1
- $rwdguivar=
2
- "
3
- <tab name=\"gemcommands\" caption=\"Gem Commands\">
4
- <horizontal>
5
- <button caption=\"Show Environment\" action=\"showgemenvironment\"/>
6
- <button caption=\"Cancel\" action=\"main\"/>
7
- </horizontal>
8
- <p>%viewgemcommandresult%</p>
9
- <table>
10
- <row> <p align=\"right\">Gem Command:</p> <text name=\"a_gemcommandinput\"/> </row>
11
- </table>
12
- <horizontal>
13
- <button caption=\"Run Command\" action=\"rungemcommand\"/>
14
- <button caption=\"Cancel\" action=\"main\"/>
15
- </horizontal>
16
- <p>%gemcommandresult%</p>
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"gemcommands\" caption=#{Message[:gemcommands]}>
4
+ <horizontal>
5
+ <button caption=\"Show Environment\" action=\"showgemenvironment\"/>
6
+ <button caption=\"Cancel\" action=\"main\"/>
7
+ </horizontal>
8
+ <p>%viewgemcommandresult%</p>
9
+ <table>
10
+ <row> <p align=\"right\">Gem Command:</p> <text name=\"a_gemcommandinput\"/> </row>
11
+ </table>
12
+ <horizontal>
13
+ <button caption=\"Run Command\" action=\"rungemcommand\"/>
14
+ <button caption=\"Cancel\" action=\"main\"/>
15
+ </horizontal>
16
+ <p>%gemcommandresult%</p>
17
17
  </tab>"
@@ -1,17 +1,17 @@
1
- $rwdguivar=
2
- "
3
- <tab name=\"gemfilesinstalled\" caption=\"Gem Files\">
4
- <table>
5
- <row> <p align=\"right\">Application Name:</p> <text name=\"a_gemfiledirsinput\"/> </row>
6
- </table>
7
- <horizontal>
8
- <button caption=\"Show Application Files\" action=\"rungemfileslist\"/>
9
- <button caption=\"Cancel\" action=\"main\"/>
10
- </horizontal>
11
- <p>%gemfileslistresult%</p>
12
- <horizontal>
13
- <button caption=\"Show Gem Dirs\" action=\"showgemfiledirs\"/>
14
- <button caption=\"Cancel\" action=\"main\"/>
15
- </horizontal>
16
- <p>%%showgemfiledirsresult%%</p>
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"gemfilesinstalled\" caption=#{Message[:gemfiles]}>
4
+ <table>
5
+ <row> <p align=\"right\">Application Name:</p> <text name=\"a_gemfiledirsinput\"/> </row>
6
+ </table>
7
+ <horizontal>
8
+ <button caption=\"Show Application Files\" action=\"rungemfileslist\"/>
9
+ <button caption=\"Cancel\" action=\"main\"/>
10
+ </horizontal>
11
+ <p>%gemfileslistresult%</p>
12
+ <horizontal>
13
+ <button caption=\"Show Gem Dirs\" action=\"showgemfiledirs\"/>
14
+ <button caption=\"Cancel\" action=\"main\"/>
15
+ </horizontal>
16
+ <p>%%showgemfiledirsresult%%</p>
17
17
  </tab>"
@@ -1,15 +1,15 @@
1
- $rwdguivar=
2
- "
3
- <tab name=\"gemservescan\" caption=\"Gem Docs\">
4
- <horizontal>
5
- <button caption=\"Scan for Gem Doc Server\" action=\"gemservescan\"/>
6
- </horizontal>
7
- <p>%showgemservescanresult%</p>
8
- <table>
1
+ $rwdguivar=
2
+ "
3
+ <tab name=\"gemservescan\" caption=#{Message[:gemdocs]}>
4
+ <horizontal>
5
+ <button caption=\"Scan for Gem Doc Server\" action=\"gemservescan\"/>
6
+ </horizontal>
7
+ <p>%showgemservescanresult%</p>
8
+ <table>
9
9
  <row> <p align=\"right\">If the gem doc server is not running, you can start it with the command gem_server at a command prompt </row>
10
- </table>
11
- <horizontal>
12
- <row> <p align=\"right\">If the gem doc server is running you can click below</row>
13
- <a href=GemDocuments.html>View Doc files for installed Gems</a></p></row>
14
- </horizontal>
15
- </tab>"
10
+ </table>
11
+ <horizontal>
12
+ <row> <p align=\"right\">If the gem doc server is running you can click below</row>
13
+ <a href=GemDocuments.html>View Doc files for installed Gems</a></p></row>
14
+ </horizontal>
15
+ </tab>"
@@ -1,6 +1,6 @@
1
1
  $rwdguivar=
2
2
  "
3
- <tab name=\"selectiontab\" caption=\"Selection Panel\">
3
+ <tab name=\"selectiontab\" caption=#{Message[:selection_panel]}>
4
4
 
5
5
  <table>
6
6
  <row> <p align=\"right\">Open a new window with callable applets you have loaded</row>
@@ -8,7 +8,7 @@ $rwdguivar=
8
8
  </table>
9
9
  <horizontal>
10
10
 
11
- <button caption=\"RwdTinker Help Window\" action=\"runrwdtinkerhelpwindow\"/>
11
+ <button caption=#{Message[:rwdtinker_help_window]} action=\"runrwdtinkerhelpwindow\"/>
12
12
 
13
13
 
14
14
  </horizontal>"
@@ -4,7 +4,7 @@ $rwdguivar=
4
4
 
5
5
  <horizontal>
6
6
 
7
- <button caption=\"RwdTinker Back Window\" action=\"runrwdtinkerbackwindow\"/>
7
+ <button caption=#{Message[:rwdtinker_back_window]} action=\"runrwdtinkerbackwindow\"/>
8
8
 
9
9
 
10
10
  </horizontal>"
@@ -1,6 +1,6 @@
1
1
  $rwdguivar=
2
2
  "
3
- <tab name=\"one\" caption=\"Documents\">
3
+ <tab name=\"one\" caption=#{Message[:documents]}>
4
4
  <horizontal>
5
5
  <table>"
6
6
 
@@ -1,4 +1,4 @@
1
- $rwdguivar=
2
- "
3
- <row> <p align=\"left\">
1
+ $rwdguivar=
2
+ "
3
+ <row> <p align=\"left\">
4
4
  <a href=HowTo_RubySlippers.txt>Howto_RubySlippers.txt</a></p></row>"
@@ -1,4 +1,4 @@
1
- $rwdguivar=
2
- "
3
- <row> <p align=\"left\">
1
+ $rwdguivar=
2
+ "
3
+ <row> <p align=\"left\">
4
4
  <a href=GemDocuments.html>Gem Rdocs on Localhost:8808</a></p></row>"
@@ -1,16 +1,16 @@
1
- $guivargui=
1
+ $rwdguivar=
2
2
  "
3
- <window name = \"rwdtinkerhelpwindow\" title=\"RwdTinker Help\">
3
+ <window name = \"rwdtinkerhelpwindow\" title=#{Message[:rwdtinker_help]}>
4
4
  <tabs>
5
- <tab name=\"main\" caption=\"Help\">
5
+ <tab name=\"main\" caption=#{Message[:help]}>
6
6
  <row> <p></row>
7
7
  <row> <p>RwdTinker</row>
8
8
  <cancel/>
9
9
  </tab>
10
10
 
11
- <tab name=\"nexttab\" caption=\"Next\">
11
+ <tab name=\"nexttab\" caption=#{Message[:next]}>
12
12
  <row> <p></row>
13
- <row> <p>RwdTinker Help</row>
13
+ <row> <p>#{Message[:rwdtinker_help]}</row>
14
14
  <cancel/>
15
15
  </tab>
16
16
 
@@ -1,7 +1,7 @@
1
1
  $rwdguivar=
2
2
  "
3
3
  <horizontal>
4
- <button caption=\"Click for Version\" action=\"runrwdtinkerversion\"/>
4
+ <button caption=#{Message[:clickfor_version]} action=\"runrwdtinkerversion\"/>
5
5
  </horizontal>
6
6
  </panel>"
7
7
 
@@ -1,5 +1,5 @@
1
- $rwdguivar=
2
- "
3
- <panel>
1
+ $rwdguivar=
2
+ "
3
+ <panel>
4
4
  <row> <p align=\"center\">RubySlippers</p></row>
5
5
  <row> <p align=\"center\">A RubyGems Front end</p></row>"
@@ -1,3 +1,3 @@
1
- $rwdguivar=
2
- "
3
- <row> <p align=\"center\">copyright s. gibson 2004</p></row>"
1
+ $rwdguivar=
2
+ "
3
+ <row> <p align=\"center\">copyright s. gibson 2004</p></row>"
@@ -1,9 +1,9 @@
1
- $rwdguivar=
2
- "
3
- <horizontal>
4
- <button caption=\"Click for Version\" action=\"runrubyslippersversion\"/>
5
- </horizontal>
6
-
7
- </panel>"
8
-
9
-
1
+ $rwdguivar=
2
+ "
3
+ <horizontal>
4
+ <button caption=#{Message[:clickfor_version]} action=\"runrubyslippersversion\"/>
5
+ </horizontal>
6
+
7
+ </panel>"
8
+
9
+
@@ -1,9 +1,9 @@
1
- # rubyslippers - applet front end for RubyGems - separate panel version
2
- code/ii6rubyslippers
3
- configuration/ii3rubyslippers.cnf
4
- gui/ui3rubyslippers
5
- gui/ii6rubyslippers
6
- gui/yi2rubyslippers
7
- rwd_files/HowTo_RubySlippers.txt
8
- rwd_files/remotegemlist.txt
9
- rwd_files/GemDocuments.html
1
+ # rubyslippers - applet front end for RubyGems - separate panel version
2
+ code/ii6rubyslippers
3
+ configuration/ii3rubyslippers.cnf
4
+ gui/ui3rubyslippers
5
+ gui/ii6rubyslippers
6
+ gui/yi2rubyslippers
7
+ rwd_files/HowTo_RubySlippers.txt
8
+ rwd_files/remotegemlist.txt
9
+ rwd_files/GemDocuments.html
@@ -0,0 +1,11 @@
1
+ # English Language files for Rubyslippers
2
+
3
+ :viewgem => '"View Gem"',
4
+ :installgem => '"Install Gem"',
5
+ :gemcommands => '"Gem Commands"',
6
+ :gemfiles => '"Gem Files"',
7
+ :gemdocs => '"Gem Docs"',
8
+ :gem_name => "Gem Name",
9
+ :cancel => '"Cancel"',
10
+ :open => '"Open"',
11
+ :list_installed_gems => '"List Installed Gems"',
@@ -0,0 +1,6 @@
1
+ # Lang file for rwdclandar - nl
2
+
3
+ :year => "Year:",
4
+ :month => "Month:",
5
+
6
+
@@ -1,7 +1,16 @@
1
1
  # English Language files for RwdTinker core
2
2
 
3
- :module_unknown => "Module unknown",
3
+
4
4
  :applet_installed => "applet installed!.",
5
5
  :clickfor_version => '"click for version"',
6
+ :documents => '"Documents"',
7
+ :help => '"Help"',
8
+ :module_unknown => "Module unknown",
9
+ :next => '"Next"',
6
10
  :rwdtinker_window_2 => "RwdTinker Window 2",
7
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
+ :selection_panel => '"Selection Panel"',
@@ -0,0 +1,12 @@
1
+ # English Language files for Rubyslippers
2
+
3
+ :viewgem => '"Ver Gem"',
4
+ :clickfor_version => '"Pulse para versi�n"',
5
+ :installgem => '" instale Gem"',
6
+ :gemcommands => '"Comando de Gem"',
7
+ :gemfiles => '"Gem Archivos"',
8
+ :gemdocs => '"Gem Documentos"',
9
+ :gem_name => "Gem Nombre",
10
+ :cancel => '"Cancelaci�n"',
11
+ :open => '"Abierto"',
12
+ :list_installed_gems => '"Lista de Instalado Gems"',
@@ -0,0 +1,6 @@
1
+ # Lang file for rwdclandar - nl
2
+
3
+ :year => "Ano:",
4
+ :month => "Mes:",
5
+
6
+
@@ -0,0 +1,14 @@
1
+ :applet_installed => "applet instalado! ",
2
+ :clickfor_version => '"Pulse para versi�n"',
3
+ :documents => '"Documentos"',
4
+ :help => '"Ayuda"',
5
+ :module_unknown => "Module desconocido.",
6
+ :next => '"Siguiente"',
7
+ :rwdtinker => "RwdTinker",
8
+ :rwdtinker_help_window => '"RwdTinker Ventana Ayuda"',
9
+ :rwdtinker_help => '"RwdTinker Ayuda"',
10
+ :rwdtinker_window_2 => "RwdTinker Ventana 2",
11
+ :rwdtinker_back_window => '"RwdTinker Ventana Trasera"',
12
+ :tinker_logo => "Insignia de Tinker",
13
+ :selection_panel => '"Selecci�n Panel"',
14
+
@@ -0,0 +1,13 @@
1
+ # Japanese Language files for Rubyslippers
2
+
3
+ :viewgem => "&#12369;&#12435;&#12363;&#12356",
4
+ :edit => "&#12375;&#12421;&#12358;&#12429;&#12367",
5
+ :installgem => "&#12452;&#12531;&#12473;&#12488;&#12540;&#12523",
6
+ :gemcommands => "&#12467;&#12510;&#12531;&#12489",
7
+ :gemfiles => "&#12501;&#12449;&#12452;&#12523",
8
+ :gemdocs => "&#12375;&#12423;&#12427;&#12356" ,
9
+ :selectionpanel => "&#12379;&#12435;&#12383;&#12367",
10
+ :gem_name => "&#12371;&#12358;&#12418;&#12367;&#12417;&#12356",
11
+ :cancel => '"&#12392;&#12426;&#12369;&#12375"',
12
+ :open => '"&#12354;&#12369;&#12427"',
13
+ :list_installed_gems => '"&#12363;&#12365;&#12388;&#12425;&#12397;&#12427"',
@@ -0,0 +1,9 @@
1
+ # Japanese Language files for RwdTinker core
2
+
3
+ :module_unknown => "Module unknown",
4
+ :applet_installed => "applet installed!.",
5
+ :clickfor_version => '"click for version"',
6
+ :rwdtinker_window_2 => "RwdTinker Window 2",
7
+ :rwdtinker => "RwdTinker",
8
+ :selection_panel => "&#12379;&#12435;&#12383;&#12367",
9
+ :documents => "&#12458;&#12531;&#12521;&#12452;&#12531;&#12510;&#12491;&#12517;&#12450;&#12523",
@@ -0,0 +1,13 @@
1
+ # Japanese Language files for Rubyslippers
2
+
3
+ :viewgem => '"Gem Weergave"',
4
+ :edit => "Bewerken",
5
+ :installgem => '"Gem Installeren"',
6
+ :gemcommands => '"Gem Opdracht "',
7
+ :gemfiles => '"Gem Bestand"',
8
+ :gemdocs => '"Gem Documenteren"' ,
9
+ :selectionpanel => '"Selectie Paneel"',
10
+ :gem_name => "Gem Naam",
11
+ :cancel => '"Annuleren"',
12
+ :open => '"Openen"',
13
+ :list_installed_gems => '" Lijst Gems Installeerd"',
@@ -0,0 +1,6 @@
1
+ # Lang file for rwdclandar - nl
2
+
3
+ :year => "Jaar:",
4
+ :month => "Maand:" ,
5
+
6
+
@@ -1,4 +1,16 @@
1
- :module_unknown => "Module unknown",
2
- :applet_installed => "applet installed!"
3
-
1
+ # English Language files for RwdTinker core
4
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
+ :selection_panel => '"Selection Panel"',
data/lang/templangfile.rb CHANGED
@@ -1,7 +1,32 @@
1
- # English Language files for RwdTinker core
1
+ # English Language files for Rubyslippers
2
2
 
3
- :module_unknown => "Module unknown",
3
+ :viewgem => '"View Gem"',
4
+ :installgem => '"Install Gem"',
5
+ :gemcommands => '"Gem Commands"',
6
+ :gemfiles => '"Gem Files"',
7
+ :gemdocs => '"Gem Docs"',
8
+ :gem_name => "Gem Name",
9
+ :cancel => '"Cancel"',
10
+ :open => '"Open"',
11
+ :list_installed_gems => '"List Installed Gems"',# Lang file for rwdclandar - nl
12
+
13
+ :year => "Year:",
14
+ :month => "Month:",
15
+
16
+
17
+ # English Language files for RwdTinker core
18
+
19
+
4
20
  :applet_installed => "applet installed!.",
5
21
  :clickfor_version => '"click for version"',
22
+ :documents => '"Documents"',
23
+ :help => '"Help"',
24
+ :module_unknown => "Module unknown",
25
+ :next => '"Next"',
6
26
  :rwdtinker_window_2 => "RwdTinker Window 2",
7
27
  :rwdtinker => "RwdTinker",
28
+ :rwdtinker_help_window => '"RwdTinker Help Window"',
29
+ :rwdtinker_back_window => '"RwdTinker Back Window"',
30
+ :rwdtinker_help => '"RwdTinker Help"',
31
+ :tinker_logo => "Tinker Logo",
32
+ :selection_panel => '"Selection Panel"',
@@ -1,7 +1,31 @@
1
- # English Language files for RwdTinker core
1
+ # English Language files for Rubyslippers
2
2
 
3
- :module_unknown => "Module unknown",
4
- :applet_installed => "applet installed!.",
5
- :clickfor_version => '"click for version"',
6
- :rwdtinker_window_2 => "RwdTinker Window 2",
3
+ :viewgem => '"Ver Gem"',
4
+ :clickfor_version => '"Pulse para versi�n"',
5
+ :installgem => '" instale Gem"',
6
+ :gemcommands => '"Comando de Gem"',
7
+ :gemfiles => '"Gem Archivos"',
8
+ :gemdocs => '"Gem Documentos"',
9
+ :gem_name => "Gem Nombre",
10
+ :cancel => '"Cancelaci�n"',
11
+ :open => '"Abierto"',
12
+ :list_installed_gems => '"Lista de Instalado Gems"',# Lang file for rwdclandar - nl
13
+
14
+ :year => "Ano:",
15
+ :month => "Mes:",
16
+
17
+
18
+ :applet_installed => "applet instalado! ",
19
+ :clickfor_version => '"Pulse para versi�n"',
20
+ :documents => '"Documentos"',
21
+ :help => '"Ayuda"',
22
+ :module_unknown => "Module desconocido.",
23
+ :next => '"Siguiente"',
7
24
  :rwdtinker => "RwdTinker",
25
+ :rwdtinker_help_window => '"RwdTinker Ventana Ayuda"',
26
+ :rwdtinker_help => '"RwdTinker Ayuda"',
27
+ :rwdtinker_window_2 => "RwdTinker Ventana 2",
28
+ :rwdtinker_back_window => '"RwdTinker Ventana Trasera"',
29
+ :tinker_logo => "Insignia de Tinker",
30
+ :selection_panel => '"Selecci�n Panel"',
31
+
@@ -1,8 +1,5 @@
1
1
  = RubySlippers Frontend for RubyGems
2
2
 
3
-
4
-
5
-
6
3
  How To use RubySlippers - a frontend for RubyGems
7
4
 
8
5
 
@@ -11,8 +8,6 @@ configuration/ii3rubyslippers.cnf
11
8
 
12
9
  There you can change the location of your gemspec files.
13
10
 
14
-
15
-
16
11
  = View Gem
17
12
 
18
13
 
@@ -45,8 +40,6 @@ Using the "Install Gem" tab
45
40
  You can check in the first tab if it is installed.
46
41
 
47
42
 
48
-
49
-
50
43
  = Gem Commands:
51
44
 
52
45
 
@@ -65,8 +58,6 @@ Go to "Gem Commands" tab
65
58
  It displays the result of the command on the screen.
66
59
 
67
60
 
68
-
69
-
70
61
  = Gem Files:
71
62
 
72
63
 
@@ -123,6 +114,12 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
123
114
  Thanks, Steven Gibson
124
115
 
125
116
  =Changelog
117
+ Version 0.94
118
+ Updated to version 1.4 of rwdtinker
119
+ added more i18n fixes
120
+ updated l10n files es, jp, nl
121
+
122
+
126
123
  Version 0.93
127
124
  Updated to version 1.3 of rwdtinker
128
125
 
@@ -5,10 +5,10 @@ Updating Gem source index for: http://gems.rubyforge.org
5
5
  actionmailer (0.5.0, 0.4.0, 0.3.0)
6
6
  Service layer for easy email delivery and testing.
7
7
 
8
- actionpack (1.1.0, 1.0.1, 1.0.0, 0.9.5, 0.9.0, 0.8.5, 0.8.0, 0.7.9, 0.7.8, 0.7.7, 0.7.6, 0.7.5)
8
+ actionpack (1.2.0, 1.1.0, 1.0.1, 1.0.0, 0.9.5, 0.9.0, 0.8.5, 0.8.0, 0.7.9, 0.7.8, 0.7.7, 0.7.6, 0.7.5)
9
9
  Web-flow and rendering framework putting the VC in MVC.
10
10
 
11
- activerecord (1.3.0, 1.2.0, 1.1.0, 1.0.0, 0.9.5, 0.9.4, 0.9.3, 0.9.2, 0.9.1, 0.9.0, 0.8.4, 0.8.3, 0.8.2, 0.8.1, 0.8.0, 0.7.6, 0.7.5)
11
+ activerecord (1.4.0, 1.3.0, 1.2.0, 1.1.0, 1.0.0, 0.9.5, 0.9.4, 0.9.3, 0.9.2, 0.9.1, 0.9.0, 0.8.4, 0.8.3, 0.8.2, 0.8.1, 0.8.0, 0.7.6, 0.7.5)
12
12
  Implements the ActiveRecord pattern for ORM.
13
13
 
14
14
  algorithm-diff (0.1)
@@ -39,7 +39,7 @@ BlueCloth (1.0.0, 0.0.4, 0.0.3, 0.0.2)
39
39
  an easy-to-read, easy-to-write plain text format, then convert it to
40
40
  structurally valid XHTML (or HTML).
41
41
 
42
- builder (1.2.2, 1.2.1, 1.2.0, 1.1.0, 1.0.0, 0.1.1, 0.1.0)
42
+ builder (1.2.3, 1.2.2, 1.2.1, 1.2.0, 1.1.0, 1.0.0, 0.1.1, 0.1.0)
43
43
  Builders for MarkUp.
44
44
 
45
45
  captcha (0.1.2)
@@ -184,11 +184,14 @@ ikko (0.1)
184
184
  Imlib2-Ruby (0.4.3)
185
185
  Imlib2 bindings for Ruby.
186
186
 
187
- IO-Reactor (0.0.6)
187
+ instiki (0.9.2)
188
+ Easy to install WikiClone running on WEBrick and Madeleine
189
+
190
+ io-reactor (0.05)
188
191
  An implementation of the Reactor design pattern for multiplexed
189
192
  asynchronous single-thread IO.
190
193
 
191
- io-reactor (0.05)
194
+ IO-Reactor (0.0.6)
192
195
  An implementation of the Reactor design pattern for multiplexed
193
196
  asynchronous single-thread IO.
194
197
 
@@ -218,7 +221,7 @@ kreed (0.0.2, 0.0.1)
218
221
  ladspar (0.1)
219
222
  Interface to LADSPA plugins
220
223
 
221
- lafcadio (0.5.2, 0.5.1, 0.5.0, 0.4.3, 0.4.2, 0.4.1, 0.4.0, 0.3.6, 0.3.5, 0.3.4)
224
+ lafcadio (0.6.0, 0.5.2, 0.5.1, 0.5.0, 0.4.3, 0.4.2, 0.4.1, 0.4.0, 0.3.6, 0.3.5, 0.3.4)
222
225
  Lafcadio is an object-relational mapping layer
223
226
 
224
227
  latex (0.1.3, 0.1.2, 0.1.1)
@@ -249,7 +252,7 @@ lockfile (1.1.0)
249
252
  log4r (1.0.5)
250
253
  Log4r is a comprehensive and flexible logging library for Ruby.
251
254
 
252
- madeleine (0.6.1, 0.6)
255
+ madeleine (0.7.1, 0.6.1, 0.6)
253
256
  Madeleine is a Ruby implementation of Object Prevalence
254
257
 
255
258
  MB-Ruby (0.1.0)
@@ -306,6 +309,10 @@ net-sftp (0.5.0)
306
309
  net-ssh (0.6.0, 0.5.0, 0.1.0, 0.0.5, 0.0.4, 0.0.3, 0.0.2, 0.0.1)
307
310
  Net::SSH is a pure-Ruby implementation of the SSH2 client protocol.
308
311
 
312
+ net-tftp (0.1.0)
313
+ Net::TFTP is a pure Ruby implementation of the Trivial File Transfer
314
+ Protocol (RFC 1350)
315
+
309
316
  nitro (0.7.0, 0.6.0, 0.5.0, 0.4.1, 0.3.0, 0.2.0, 0.1.2)
310
317
  Web Engine
311
318
 
@@ -324,7 +331,7 @@ Ook (1.0.2)
324
331
  packrat (0.1.0)
325
332
  A package documentation extractor/generator for Copland.
326
333
 
327
- ParseTree (1.3.0, 1.2.0, 1.1.1, 1.1.0)
334
+ ParseTree (1.3.2, 1.3.0, 1.2.0, 1.1.1, 1.1.0)
328
335
  Extract and enumerate ruby parse trees.
329
336
 
330
337
  permutation (0.1.2, 0.1.1)
@@ -344,7 +351,7 @@ posixlock (0.0.1)
344
351
  postgres (0.7.1)
345
352
  The extension library to access a PostgreSQL database from Ruby.
346
353
 
347
- postgres-pr (0.3.1, 0.3.0, 0.2.2, 0.2.1, 0.2.0, 0.1.1, 0.1.0, 0.0.1)
354
+ postgres-pr (0.3.3, 0.3.2, 0.3.1, 0.3.0, 0.2.2, 0.2.1, 0.2.0, 0.1.1, 0.1.0, 0.0.1)
348
355
  A pure Ruby interface to the PostgreSQL database
349
356
 
350
357
  pqa (0.7, 0.6, 0.5)
@@ -362,11 +369,11 @@ progressbar (0.0.3)
362
369
  purplepkg (0.0.5, 0.0.4, 0.0.3)
363
370
  A simple pre-packing tool with meta-package plugin support.
364
371
 
365
- rails (0.9.2, 0.9.1, 0.9.0, 0.8.5, 0.8.0, 0.7.0, 0.6.5, 0.6.0)
372
+ rails (0.9.3, 0.9.2, 0.9.1, 0.9.0, 0.8.5, 0.8.0, 0.7.0, 0.6.5, 0.6.0)
366
373
  Web-application framework with template engine, control-flow layer,
367
374
  and ORM.
368
375
 
369
- rake (0.4.14, 0.4.13, 0.4.12, 0.4.11, 0.4.10, 0.4.9, 0.4.8, 0.4.7, 0.4.6, 0.4.4, 0.4.3, 0.4.2, 0.4.0, 0.3.2)
376
+ rake (0.4.15, 0.4.14, 0.4.13, 0.4.12, 0.4.11, 0.4.10, 0.4.9, 0.4.8, 0.4.7, 0.4.6, 0.4.4, 0.4.3, 0.4.2, 0.4.0, 0.3.2)
370
377
  Ruby based make-like utility.
371
378
 
372
379
  rdf (0.3)
@@ -449,7 +456,7 @@ RubyJDWP (0.0.1)
449
456
  rubypants (0.2.0)
450
457
  RubyPants is a Ruby port of the smart-quotes library SmartyPants.
451
458
 
452
- rubyslippers (0.92)
459
+ rubyslippers (0.93, 0.92)
453
460
  RubySlippers is a GUI wrapper for RubyGems using RubyWebDialogs.
454
461
 
455
462
  rubyzip (0.5.5)
@@ -467,22 +474,25 @@ ruwiki (0.9.3, 0.9.2, 0.9.1, 0.9.0)
467
474
  rvsh (0.4.5)
468
475
  VIM clone
469
476
 
470
- rwdaddresses (0.9, 0.8)
477
+ rwdaddresses (0.91, 0.9, 0.8)
471
478
  rwdaddresses is contact book application using rwdtinker and
472
479
  RubyWebDialogs.
473
480
 
474
- rwddemo (0.6)
481
+ rwddemo (0.7, 0.6)
475
482
  rwddemo application shows rwdtinker and RubyWebDialogs features.
476
483
 
477
- rwdschedule (0.5)
484
+ rwdmovies (0.6)
485
+ rwdmovies application is a movie database using RubyWebDialogs.
486
+
487
+ rwdschedule (0.6, 0.5)
478
488
  rwdschedule is an calendar application using rwdtinker and
479
489
  RubyWebDialogs.
480
490
 
481
- rwdshell (0.9)
491
+ rwdshell (0.92, 0.9)
482
492
  rwdshell is a GUI front end for operating system commands with
483
493
  rwdtinker and RubyWebDialogs features.
484
494
 
485
- rwdtinker (1.24, 1.23, 1.3, 1.2)
495
+ rwdtinker (1.24, 1.23, 1.4, 1.3, 1.2)
486
496
  rwdtinker application is a framework to program for RubyWebDialogs.
487
497
 
488
498
  sds (0.3, 0.2)
@@ -508,9 +518,9 @@ sqlite-ruby (2.2.2, 2.2.1, 2.2.0, 2.1.0, 2.0.3, 2.0.2)
508
518
  SQLite/Ruby is a module to allow Ruby scripts to interface with a
509
519
  SQLite database.
510
520
 
511
- sqlite3-ruby (0.6.0, 0.5.0)
521
+ sqlite3-ruby (0.9.0, 0.6.0, 0.5.0)
512
522
  SQLite3/Ruby is a module to allow Ruby scripts to interface with a
513
- SQLite3 database.
523
+ SQLite database.
514
524
 
515
525
  sstruct (1.0.1)
516
526
  SuperStruct class: Best of Struct, OpenStruct, Array, Hash, etc.
Binary file
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.3
3
3
  specification_version: 1
4
4
  name: rubyslippers
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.93"
7
- date: 2004-01-01
6
+ version: "0.94"
7
+ date: 2004-01-08
8
8
  summary: RubySlippers is a GUI wrapper for RubyGems using RubyWebDialogs.
9
9
  require_paths:
10
10
  - "."
@@ -29,7 +29,6 @@ files:
29
29
  - lib/temp.rb
30
30
  - code/ag1core/aa0begin.rb
31
31
  - code/ag1core/rwdtinkerversion.rb
32
- - code/zz0applicationend/zz0end.rb
33
32
  - code/ii6rubyslippers/gemserve.rb
34
33
  - code/ii6rubyslippers/ii3viewgemdata.rb
35
34
  - code/ii6rubyslippers/ii4listgemrecord.rb
@@ -44,39 +43,57 @@ files:
44
43
  - code/ii6rubyslippers/runrubyslipperswindow.rb
45
44
  - code/xa5rwdtinkercallable/callable.rb
46
45
  - code/xb1rwdtinkerbackwindow/05listinstalledfiles.rb
46
+ - code/xb1rwdtinkerbackwindow/diagnostictab.rb
47
47
  - code/xb1rwdtinkerbackwindow/ll1openname.rb
48
- - code/xb1rwdtinkerbackwindow/mm1removeapplet.rb
49
48
  - code/xb1rwdtinkerbackwindow/ll5listzips.rb
50
49
  - code/xb1rwdtinkerbackwindow/lm1installapplet.rb
51
- - code/xb1rwdtinkerbackwindow/diagnostictab.rb
50
+ - code/xb1rwdtinkerbackwindow/mm1removeapplet.rb
52
51
  - code/xb1rwdtinkerbackwindow/rwdtinkerwin2version.rb
52
+ - code/zz0applicationend/zz0end.rb
53
53
  - configuration/aa0rwdframework.cnf
54
54
  - configuration/ab1tinkerwin2.cnf
55
55
  - configuration/ii3rubyslippers.cnf
56
- - ev/sgml.rb
57
- - ev/xml.rb
58
- - ev/net.rb
59
- - ev/ruby.rb
60
- - ev/tree.rb
61
56
  - ev/browser.rb
62
57
  - ev/ftools.rb
58
+ - ev/net.rb
59
+ - ev/ruby.rb
63
60
  - ev/rwd.rb
61
+ - ev/sgml.rb
64
62
  - ev/thread.rb
63
+ - ev/tree.rb
64
+ - ev/xml.rb
65
65
  - lang/alanguagehashbegin.rb
66
66
  - lang/languagehash.rb
67
67
  - lang/templangfile.rb
68
68
  - lang/vlanguagehashend.rb
69
- - lang/zlocallangend.rb
70
- - lang/xlocallangfile.rb
71
69
  - lang/wlocallangstart.rb
72
- - lang/es/rwdcore/languagefile.rb
70
+ - lang/xlocallangfile.rb
71
+ - lang/zlocallangend.rb
72
+ - lang/en/rubyslippers/languagefile.rb
73
+ - lang/en/rwdcalendar/calendar-en.rb
73
74
  - lang/en/rwdcore/languagefile.rb
75
+ - lang/es/rwdcalendar/calendar-es.rb
76
+ - lang/es/rwdcore/languagefile-es.rb
77
+ - lang/es/rubyslippers/languagefile.rb
78
+ - lang/jp/rubyslippers/languagefile.rb
79
+ - lang/jp/rwdcore/languagefile.rb
80
+ - lang/nl/rwdcalendar/calendar-nl.rb
74
81
  - lang/nl/rwdcore/languagefile.rb
82
+ - lang/nl/rubyslippers/languagefile.rb
75
83
  - gui/aa2core/aa0rwdtop.rwd
84
+ - gui/ii6rubyslippers/ii3viewgemdata.rwd
85
+ - gui/ii6rubyslippers/ii4listgemrecordfiles.rwd
86
+ - gui/ii6rubyslippers/ii6installgem.rwd
87
+ - gui/ii6rubyslippers/ii7listgemsremote.rwd
88
+ - gui/ii6rubyslippers/ii9gemcommands.rwd
89
+ - gui/ii6rubyslippers/ij1gemfilesinstalled.rwd
90
+ - gui/ii6rubyslippers/ij4gemserverscan.rwd
76
91
  - gui/ll1selectiontabbegin/selectiontabbegin.rwd
77
92
  - gui/ll5rwdtinkerwin2selectiontab/rwdwin2selectiontab.rwd
78
93
  - gui/lz1selectiontabend/endselectiontab.rwd
79
94
  - gui/tt0documentsbegin/tt0documentbegin.rwd
95
+ - gui/ui3rubyslippers/ui3rubyslippers.rwd
96
+ - gui/ui3rubyslippers/ui4rubyslippers.rwd
80
97
  - gui/uu5rwddocuments/uu5documents.rwd
81
98
  - gui/uu6rwdtinkerwin2documents/uu5documents.rwd
82
99
  - gui/ww0documentsend/ww0documentend.rwd
@@ -86,10 +103,10 @@ files:
86
103
  - gui/xa5rwdtinkercallablewindow/9end.rwd
87
104
  - gui/xb1rwdtinkerbackwindow/1appname.rwd
88
105
  - gui/xb1rwdtinkerbackwindow/2tab1.rwd
89
- - gui/xb1rwdtinkerbackwindow/9backend.rwd
90
- - gui/xb1rwdtinkerbackwindow/4arwdlistapplets.rwd
91
106
  - gui/xb1rwdtinkerbackwindow/3arwddiagnostics.rwd
107
+ - gui/xb1rwdtinkerbackwindow/4arwdlistapplets.rwd
92
108
  - gui/xb1rwdtinkerbackwindow/4arwdlistzips.rwd
109
+ - gui/xb1rwdtinkerbackwindow/9backend.rwd
93
110
  - gui/ya1helpaboutbegin/ya0helpscreenstart.rwd
94
111
  - gui/yg5rwdhelpabout/1appname.rwd
95
112
  - gui/yg5rwdhelpabout/3copyright.rwd
@@ -97,40 +114,29 @@ files:
97
114
  - gui/yg6rwdwin2helpabout/1appname.rwd
98
115
  - gui/yg6rwdwin2helpabout/3copyright.rwd
99
116
  - gui/yg6rwdwin2helpabout/5version.rwd
100
- - gui/yy5helpaboutend/helpscreenend.rwd
101
- - gui/za1applicationend/yy9rwdend.rwd
102
- - gui/ln6rubyslippersselectiontab/rubywindowsselectiontab.rwd
103
- - gui/ui3rubyslippers/ui3rubyslippers.rwd
104
- - gui/ui3rubyslippers/ui4rubyslippers.rwd
105
- - gui/ii6rubyslippers/ii3viewgemdata.rwd
106
- - gui/ii6rubyslippers/ii4listgemrecordfiles.rwd
107
- - gui/ii6rubyslippers/ii6installgem.rwd
108
- - gui/ii6rubyslippers/ii7listgemsremote.rwd
109
- - gui/ii6rubyslippers/ii9gemcommands.rwd
110
- - gui/ii6rubyslippers/ij1gemfilesinstalled.rwd
111
- - gui/ii6rubyslippers/ij4gemserverscan.rwd
117
+ - gui/yi2rubyslippers/1rubyslippers.rwd
112
118
  - gui/yi2rubyslippers/2rubyslippers.rwd
113
119
  - gui/yi2rubyslippers/5version.rwd
114
- - gui/yi2rubyslippers/1rubyslippers.rwd
115
- - installed/rwdtinkerwin2-0.5.inf
120
+ - gui/yy5helpaboutend/helpscreenend.rwd
121
+ - gui/za1applicationend/yy9rwdend.rwd
116
122
  - installed/rubyslippers-0.93.inf
117
- - rwd_files/Readme.txt
118
- - rwd_files/rwdapplications.html
119
- - rwd_files/rwdindex.html
123
+ - installed/rwdtinkerwin2-0.5.inf
120
124
  - rwd_files/favicon.ico
121
- - rwd_files/HowTo_Tinker.txt
122
- - rwd_files/rdoc-style.css
123
- - rwd_files/HowTo_TinkerWin2.txt
124
- - rwd_files/HowTo_Shell.txt
125
125
  - rwd_files/GemDocuments.html
126
126
  - rwd_files/HowTo_RubySlippers.txt
127
+ - rwd_files/HowTo_Tinker.txt
128
+ - rwd_files/HowTo_TinkerWin2.txt
129
+ - rwd_files/rdoc-style.css
130
+ - rwd_files/Readme.txt
127
131
  - rwd_files/remotegemlist.txt
132
+ - rwd_files/rwdapplications.html
133
+ - rwd_files/rwdindex.html
134
+ - zips/rwdacalendar-0.5.zip
128
135
  - zips/rwdhelloworld-0.3.zip
129
136
  - zips/rwdwshell-0.91.zip
130
- - zips/wrubyslippers-0.93.zip
131
137
  - tests/totranslate.lang
132
- - Readme.txt
133
138
  - init.rb
139
+ - Readme.txt
134
140
  test_files: []
135
141
  rdoc_options:
136
142
  - "--main"
@@ -1,11 +0,0 @@
1
- $rwdguivar=
2
- "
3
- <row> <p></row>
4
-
5
- <horizontal>
6
-
7
- <button caption=\"RubySlippers Window\" action=\"runrubyslipperswindow\"/>
8
-
9
- </horizontal>"
10
-
11
-
@@ -1,3 +0,0 @@
1
- :module_unknown => "Module desconocido.",
2
- :applet_installed => "applet instalado! ",
3
- :rwdtinker_window_2 => "RwdTinker Ventana 2"
@@ -1,97 +0,0 @@
1
- = RwdShell Program
2
-
3
- How to Use the Shell Program (rwdshell)
4
-
5
- == What is is
6
-
7
- rwdshell is a web brower interface to operating system shell commands
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 shell commands
25
-
26
-
27
-
28
- Enter the shell command you want to run for in the browser form and press execute.
29
- After a second the browser should fill with the results of the command.
30
- try ls, df, cat "filename", and other shell commands
31
- You should be able to run one command after another
32
-
33
-
34
-
35
- == Requirements:
36
- RubyWebDialogs - I am using 0.0.11 2004-3-9<br>
37
- This package you downloaded rwddemo should have a runtime version of
38
- the needed rubywebdialog files<br>
39
-
40
- Ruby I am using version 1.8.2
41
-
42
- I have tested this under Linux-Debian kernel 2.6.9
43
-
44
- == Operation:
45
- The code files reside in the code directory and are combined before
46
- the main Class is loaded
47
-
48
- The rwd files in gui are combined before the gui is activated
49
-
50
- == Installing:
51
-
52
- unzip the file
53
- then cd to the directory
54
- unzip rwdashell-x.y.zip
55
-
56
-
57
- == Trouble shooting:
58
-
59
- If the program is not working, try looking at the ev subdirectory. That is where
60
- the runtime of rubywebdialogs are.
61
-
62
- for long term installation, I would suggest putting most files in a lib directory
63
- like /usr/lib/rwdshell
64
- then make a writable directory the local directory for command files to be written
65
- like ~/rwdshell
66
-
67
-
68
- 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.
69
-
70
- Don't use the back-button of the browser! Strange and unpredictable things may and will happen!
71
-
72
- 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/
73
-
74
-
75
- For more information see:
76
- http://rwdapplications.rubyforge.org/wiki/wiki.pl
77
-
78
- For more information about RubyWebDialogs see:<br>
79
- http://www.erikveen.dds.nl/rubywebdialogs/index.html
80
-
81
- Thanks, Steven Gibson
82
-
83
- == Changelog
84
- version 0.91
85
- updated for rwdtinker version 1.3
86
-
87
- Version 0.9
88
- updated for rwdtinker version 1.23
89
-
90
- Version 0.7
91
- includes script playing and Ruby eval window.
92
-
93
- Version 0.6
94
- added script runner
95
- list scripts
96
- create scripts
97
- Replaced Readme.txt with HowTo.html
Binary file