Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rwdtorrent

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rwdtorrent

  • 0.08
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= RwdTinker framework for RubyWebDialogs

RwdTinker is a web brower interface to and system for developing programs

== Usage

How to Use the Tinker framework Program (rwdtinker)

  1. stand alone application
  2. framework for building applications
  3. Open brower windows with html documents

The GUI interface used is RubyWebDialogs

Start the program by typing ruby init.rb

Then point your web browser to: http://localhost:7705/

== Viewing installed Applets:

Go to "List Scripts" tab

 You can get a list of all installed applets by clicking the listfiles button
 
  To see the text of a install file
   Type in the name of the file you want.
  
   type it without the inf ending
   rwdapplet-0.1
   
   Then click the "View Installed File" button
   
   If it finds the file it will open it. It displays the text the search box.

  You can uninstall applets on this screen
  

== Installing Applets

click on the "Selection Panel" click on Rwdtinker Back Window

  You can download an applet created by someone else
  put the file in the zips directory
  
  click on the "list zips" tab
  click on "list applets available for installing"
  
  chose the applet you want
  click on "install applet"
  If all goes well the applet should be installed.
  You will need to restart rwdtinker to see the new screens
  
  

== Changing configuration file

click on "Edit Configuration" You can view the configuration file

You can edit the configuration

Remember to reload the configuration variables if you want your changes used.

== Manually installing applets

  • unzip an applet

    unzip the applet into the program directoy
    unzip randomapplet.zip
    
    This should place the needed files in the correct directories
    

== Creating Applets

To add code, commands and gui tabs

Move program files into a directory under the code directory. Move gui files into a directory under the gui directory. The gui directory name you create is important, because the gui rwd file is built in alpha order by directory name

There are two ways to add applets to the directories.

Creating code

  • Manually write code and gui files

    The files go into your code directory
    the filenames for code do not matter
    
    The gui files go into your gui directory
    The gui files need to be in order by name and end with .rwd
      
    
    
    If you need a config file that goes in the configuration directory
    

internationalization and localization are helped by replacing the gui files in the subdirectories under gui

== Documents

when you click on a document name, the document should pop up in a browser window, or in another browser tab.

To exit, press the x inside the browser window.

== To add context sensitive help

You need to add a hash file that just needs to contain Helptext.update( :myapplet_generalhelp => " This is the general help You can add help text hear")

  And you need to add a help run script that will call runhelpwindow
  This should have a method that includes:
   setting $help_topic, and adds to $helptopicsarray, saves the calling window and calls runhelpwindow which will render the help message.

if @rwd_tab == "gemservescan" $help_topic = "gemdocs_help" end $helptopicsarray = $helptopicsarray | ["rubyslippers_generalhelp", "Install_Gem","GemCommands_help", "gemfilesinstalled","gemdocs_help"] if @rwd_window != "rwdtinkerhelpwindow" $previouswindow = @rwd_window $previoustab = @rwd_tab end runhelpwindow end

== Languages

You can add tranlations in the lang subdirectory You change the $lang constant in Tinker config file in the configuration directory You can see one translation on the install applet tab, after you have installed and applet

== Using over a Network

To serve the application over your local LAN,change the last line in the init.rb file to something like: RwdTinker.file(RWDFile).serve(8080, "-r" ? ".rwduids" : nil) Then you should be able to login at: http://yourhostname:8080

You have to authorize yourself. The .rwuids example is a string with the name of the authorization file, relative to the home directory of the user that started the service. This file has to be in the form of:

user1 = password user2 = pass phrase

Thus the file .rwduids might contain:

erik = secret

== Requirements: RubyWebDialogs - I am using 0.1.2 This package you downloaded should have a runtime version of the needed rubywebdialog files

Ruby I am using version 1.8.2

I have tested this under Linux-Debian kernel 2.6.9

= Operation: The code files reside in the code directory and are combined before the main Class is loaded

The rwd files in gui are combined before the gui is activated

Translated text reside in the lang directory

== Installing:

untar the file tar zxvf rwdtinker-x.y.tar.gz then cd to the directory cd rwdshell-x.y then start the init.rb program file ruby init.rb Then point your browser at http://localhost:7705 or where it tells you. Trouble shooting:

If the program is not working, try looking at the ev subdirectory. That is where the runtime of rubywebdialogs are.

for long term installation, I would suggest putting most files in a lib directory like /usr/lib/rwdshell then make a writable directory the local directory for command files to be written like ~/rwdshell

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.

Don't use the back-button of the browser! Strange and unpredictable things may and will happen!

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/

== Credits

Thanks go to:

  • Matz, for creating Ruby in the first place.
  • Erik, for creating RubyWebDialogs.
  • Charlotte, my wife for coming up for the name Tinker.

== License

rwdtinker is copyright (c) 2004 Steven Gibson. It is free software, and may be redistributed under the terms of the GPL licence:

== Contact For more information see: http://rwdapplications.rubyforge.org/wiki/wiki.pl

For more information about RubyWebDialogs see: http://www.erikveen.dds.nl/rubywebdialogs/index.html

Thanks, Steven Gibson

== Changelog Version 1.77 Fixed zips location to be relative or absolute Made themes loadable

Version 1.76 Move rwd code files into lib directory - bug - 21886 change tab name list applets - bug - 21864 change extra folder to be lib folder - bug 21887 remove duplicate intall applet code - bug 21885 On Menu tab/Selection Tab - add help button - bug 21884 clean up directory structure in gui directory - bug 21882

Version 1.75 change rwd.rb to use UTF-8 for web pages add language load for applets

Version 1.74 remove remote control from help more dependable gui loading for applets

Version 1.73 more debug info in initiateapplet remove gutenberg lang translations correct gui building error recovery

Version 1.72 additional cleanup for live applet add and removal after applet removal focus returns to proper tab error messages are reduced unless $DEBUG=true

Version 1.70 major update to applet loading routines a properly prepared applet should be loadable and unloadable live with not restarting localization is not yet updated in live applet loading remove network line debugging output

Version 1.69 More work on translations - Spanish almost done removed remote control

Version 1.68 updated to newest Ruby webdialogs

Version 1.67 Add html for help

Version 1.66 Fixed directory layout increased size of config edit screen

Version 1.65 Changed documents listing screen - now using hash Changed helpabout screen - now using hash added more lines for config edit added help about to back window

Version 1.64 fixed jump with no location

Version 1.63 changed handling of application name returned added jump seletion options added some unit tests

version 1.62 improve distro release script code cleanup removed redundent network code change handling of window and tab jumps

version 1.61 add in test harness rwdtinkerwin2 help about removed load main config file in init.rb

version 1.60 add rwdapplication info to diagnostic turn rescue on in diagnostic upload

version 1.59 removed rwdtinkerwin2 inf file refactored diagnotic page - one button to see all information added bug report upload to diagnostic page

version 1.58 check for zlib check for files to delete

version 1.57 added rconftool use to update configuration files changed applets remove to not used external rm

version 1.56 refactored gui files to load without intermediate files refactored code files to load without intermediate files

version 1.55 refactored language files to load without intermediate files refactored language files to load without intermediate files

version 1.54 refactored rwdtinker applet installation tab - remote gem and local installs share menu buttons corrected some program logic errors in remote control code including close socket

version 1.53 added search of Gems repository for rwdtinker gems download and install of Gems

version 1.52 added function to install applets from gem directory

version 1.51 changed return to main changed configuration of remote ports updated context sensitive help

version 1.50 changed unzip applet to be internal code - no exec to unzip program changed order of tabs on back window - list applets now first added rwdwcalc applet in to zips directory changed width of text fields with help from RubyWebDialogs author changed listing of help options, vertical instead of horizontal

version 1.49 added demon function for remote queries startup application on first available port

version 1.48 fix in context sensitive help so that applets can use it better

version 1.47 change to context sensitive help

version 1.46 more work on context help window calls point to tab as well as windows help added help buttons on Document, Selection, View Applet, tabs

version 1.45 first steps toward context sensitive help added help button on main window/tab

version 1.44 updated directory structure - refactored gui files Changed gui directory names - more like Java package titles

version 1.43 changed setup variables file for live changes added editing and reloading of config file added unzip filename to config file

version 1.42 update for live update system update applets for live update code file name cleanup

version 1.41 l10n work es,nl, jp separated out languge.cnf added zip applets refreshacpi, rwdcalc

version 1.40 removed extra lines from init.rb fixed help second window added some tranlations for Spanish More work on l10n

version 1.3 refactored gui files to do easier i10n removed lang directories under gui added lang files under lang dir removed redundant code files left from moving applet handling to back window removed zipped applets not yet refactored

version 1.24 added internet usage instructions to HowTo_Tinker.txt removed HowTo_Tinker.html added panels for Helpabout changed photo logo tab to only have embedded picture, no button

version 1.23 moving diagnostic tab and applet handling tabs to second window added selection panel tab to choose secondary windows.

version 1.21 changing version on help screen to be button added version window added diagnostic tab

version 1.2 added gemspec for creating a rwdtinker.gem added rdoc comments changed order on remove applets tab

version 1.1 changed order of elements on install applet tab Add more i81n ablility - added lang directorys for language hash files added in test file using WATIR stands for "Web Application Testing In Ruby,

version 1.0 Improved name selection in zips and applet screens added rubyslippers applet and rwdrefreshacpi applets as zips

version 0.9 Fixed bug introduced in 0.8 - code files not sorted correctly - class end was not in correct location updated RubyWebDialogs for people who do not have it installed added rwdschedule applet as zip file

version 0.8 changed location of code files only directory of code files needs to be added to inf file changed location of gui files only directory of gui files needs to be added to inf file Added constants in conf file for code location and gui location removed all zips not yt updated to new directory layout change loading of conf files to not need intermediate file and favicon.ico

version 0.7 moved changelog to HowTo_Tinker.html copied english gui text to the dirs I think we should translate to update backup zip files to newest versions upgraded the ev directory - for those who don't have RubyWebDialogs

version 0.6 updated version number changed merge name to rwdtinker.rb

version 0.4 added zip listing and installing - Linux only

Version 0,3 changed name to Tinker

Version 0.2 added some i18n directories for the gui files

Version 0.1 first public version released includes document screen Open Photo screen included configuration directory zips directories installed directory installed applet lister

FAQs

Package last updated on 25 Jul 2009

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc