CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 11:38:38 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100529003933
location: https://web.archive.org/web/20100529003933/https://github.com/danlucraft/jruby-swt-cookbook
server-timing: captures_list;dur=0.945162, exclusion.robots;dur=0.029678, exclusion.robots.policy;dur=0.013905, esindex;dur=0.014963, cdx.remote;dur=179.361945, LoadShardBlock;dur=238.560861, PetaboxLoader3.datanode;dur=55.452539, PetaboxLoader3.resolve;dur=55.647630
x-app-server: wwwb-app223
x-ts: 302
x-tr: 461
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app223; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 08 Aug 2025 11:38:38 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sat, 29 May 2010 00:39:33 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "6da26732208d50b83a3737671c4aefd8"
x-archive-orig-x-runtime: 231ms
x-archive-orig-content-length: 20981
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sat, 29 May 2010 00:39:33 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 29 May 2010 00:39:33 GMT", ; rel="memento"; datetime="Sat, 29 May 2010 00:39:33 GMT", ; rel="next memento"; datetime="Wed, 22 Sep 2010 13:25:36 GMT", ; rel="last memento"; datetime="Sun, 17 Dec 2023 15:55:48 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_16_20100528224727_crawl100-c/52_16_20100529003824_crawl101.arc.gz
server-timing: captures_list;dur=0.743061, exclusion.robots;dur=0.026485, exclusion.robots.policy;dur=0.012407, esindex;dur=0.018911, cdx.remote;dur=105.766064, LoadShardBlock;dur=150.878349, PetaboxLoader3.datanode;dur=99.354226, PetaboxLoader3.resolve;dur=221.663952, load_resource;dur=232.291296
x-app-server: wwwb-app223
x-ts: 200
x-tr: 561
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
danlucraft's jruby-swt-cookbook at master - GitHub
danlucraft / jruby-swt-cookbook
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Fri Jan 22 14:40:23 -0800 2010 | Updated the README and added comments to the fi... [danlucraft] |
![]() |
README | Fri Jan 22 14:47:01 -0800 2010 | Wax README [danlucraft] |
![]() |
apidocs.tar.gz | Fri Jan 22 14:29:22 -0800 2010 | Added swt apidocs [danlucraft] |
![]() |
ex1_button/ | Fri Jan 22 14:50:08 -0800 2010 | Wax button example [danlucraft] |
![]() |
swt/ | Fri Jan 22 14:15:37 -0800 2010 | Added Swt jars and wrapper and first simple exa... [danlucraft] |
README
JRuby SWT Cookbook ================== JRuby and SWT is a great platform for writing cross-platform desktop applications. This repo contains examples of how to get started. Why JRuby/SWT? -------------- * Fast, compatible Ruby implementation. * JRuby and SWT are flawlessly cross-platform. * SWT has native widgets (for the most part). * SWT powers Eclipse, so there's nothing you need that it doesn't do. * You don't need to touch Java! Write everything in Ruby. Installation ------------ You will need to run these examples with JRuby. Get it from jruby.org. *API Docs* The apidocs.tar.gz file contains SWT API reference docs. Untar the file and open apidocs/index.html in your browser. The comments in all the examples refers to files in these docs. They are the Java api, however JRuby does a great job of interfacing with Java, so you can usually just call into them as if they were Ruby classes and methods. Running Examples ---------------- On Windows and Linux: $ jruby ex1_button/ex1_button.rb On OSX: $ jruby -J-XstartOnFirstThread ex1_button/ex1_button.rb