fxruby 1.6.13 → 1.6.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/doc/apes02.html +2 -2
- data/doc/apes03.html +1 -1
- data/doc/book.html +1 -1
- data/doc/build.html +16 -17
- data/doc/changes.html +40 -28
- data/doc/differences.html +9 -9
- data/doc/gems.html +6 -6
- data/doc/implementation.html +1 -1
- data/doc/infosources.html +3 -3
- data/doc/library.html +5 -5
- data/doc/opengl.html +5 -5
- data/doc/pt02.html +1 -1
- data/doc/scintilla.html +4 -4
- data/doc/subversion.html +1 -1
- data/examples/babelfish.rb +1 -1
- data/examples/custom_table_item.rb +170 -0
- data/examples/dilbert.rb +6 -7
- data/ext/fox16/FXRbApp.cpp +5 -1
- data/ext/fox16/FXRbDataTarget.cpp +2 -2
- data/ext/fox16/FXRuby.cpp +36 -14
- data/ext/fox16/core_wrap.cpp +13 -13
- data/ext/fox16/dc_wrap.cpp +7 -7
- data/ext/fox16/dialogs_wrap.cpp +16 -16
- data/ext/fox16/extconf.rb +31 -0
- data/ext/fox16/frames_wrap.cpp +59 -59
- data/ext/fox16/fx3d_wrap.cpp +1 -1
- data/ext/fox16/iconlist_wrap.cpp +10 -10
- data/ext/fox16/icons_wrap.cpp +25 -25
- data/ext/fox16/image_wrap.cpp +26 -26
- data/ext/fox16/include/FXRbApp.h +5 -3
- data/ext/fox16/include/FXRbDC.h +1 -1
- data/ext/fox16/label_wrap.cpp +6 -6
- data/ext/fox16/layout_wrap.cpp +1 -1
- data/ext/fox16/list_wrap.cpp +7 -7
- data/ext/fox16/mdi_wrap.cpp +5 -5
- data/ext/fox16/menu_wrap.cpp +6 -6
- data/ext/fox16/scintilla_wrap.cpp +3 -3
- data/ext/fox16/table_wrap.cpp +3 -3
- data/ext/fox16/text_wrap.cpp +8 -8
- data/ext/fox16/treelist_wrap.cpp +10 -9
- data/ext/fox16/ui_wrap.cpp +22 -22
- data/lib/fox16/kwargs.rb +11 -0
- data/lib/fox16/version.rb +1 -1
- data/rdoc-sources/FXImage.rb +12 -6
- data/rdoc-sources/FXToggleButton.rb +1 -0
- data/tests/output.ps +166 -0
- data/tests/stress1.rb +3 -5
- data/web/community.html +94 -0
- data/web/documentation.html +100 -0
- data/web/downloads.html +114 -93
- data/web/index.html +96 -0
- metadata +47 -52
- data/index.html +0 -14
- data/web/art/fxrubylogo.png +0 -0
- data/web/art/fxrubylogo_small.png +0 -0
- data/web/art/line.gif +0 -0
- data/web/art/oul_grey.gif +0 -0
- data/web/art/our.gif +0 -0
- data/web/home.html +0 -113
- data/web/menu.html +0 -50
- data/web/styles.css +0 -167
- data/web/top.html +0 -15
data/web/index.html
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
6
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
7
|
+
<link rel="meta" title="DOAP" type="application/rdf+xml" href="http://www.fxruby.org/doap.rdf" />
|
8
|
+
<title>FXRuby</title>
|
9
|
+
</head>
|
10
|
+
|
11
|
+
<body>
|
12
|
+
<!-- wrap starts here -->
|
13
|
+
<div id="wrap">
|
14
|
+
|
15
|
+
<!--header -->
|
16
|
+
<div id="header">
|
17
|
+
|
18
|
+
<h1 id="logo-text"><a href="index.html">FXRuby</a></h1>
|
19
|
+
<p id="slogan">Graphical User Interface Development for Ruby</p>
|
20
|
+
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<!-- menu -->
|
24
|
+
<div id="menu">
|
25
|
+
<ul>
|
26
|
+
<li id='current' ><a href=# >Home</a></li>
|
27
|
+
<li ><a href=/community.html >Community</a></li>
|
28
|
+
<li ><a href=/downloads.html >Downloads</a></li>
|
29
|
+
<li ><a href=/documentation.html >Documentation</a></li>
|
30
|
+
</ul>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<!-- content-wrap starts here -->
|
34
|
+
<div id="content-wrap">
|
35
|
+
|
36
|
+
<div id="sidebar">
|
37
|
+
|
38
|
+
<h3>Get the Book!</h3>
|
39
|
+
<a href="http://www.pragprog.com/titles/fxruby"><img src="images/fxruby-book.jpg" alt="FXRuby: Create Lean and Mean GUIs with Ruby" width="175" height="210" /></a>
|
40
|
+
|
41
|
+
<h3>Links</h3>
|
42
|
+
<ul class="sidemenu">
|
43
|
+
<li><a href="http://rubyforge.org/news/?group_id=300">News</a></li>
|
44
|
+
<li><a href="http://www.fxruby.org/doc/book.html">User's Guide</a></li>
|
45
|
+
<li><a href="http://www.fxruby.org/doc/api">API Docs</a></li>
|
46
|
+
<li><a href="http://www.fxruby.org/doc/examples.html">Screenshots</a></li>
|
47
|
+
<li><a href="http://rubyforge.org/tracker/?atid=1223&group_id=300&func=browse">Report Bugs</a></li>
|
48
|
+
<li><a href="http://www.gnu.org/copyleft/lesser.html">License</a></li>
|
49
|
+
</ul>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div id="main">
|
54
|
+
|
55
|
+
<p>FXRuby is a library for developing powerful and sophisticated cross-platform graphical user interfaces (GUIs) for your Ruby
|
56
|
+
applications. It’s based on the <a href="http://www.fox-toolkit.org/" title="FOX Home Page">FOX Toolkit</a>, a popular open source
|
57
|
+
C++ library developed by Jeroen van der Zijp. What that means for you as an application developer is that you’re able to
|
58
|
+
write code in the <a href="http://www.ruby-lang.org/" title="Ruby Home Page">Ruby</a> programming language that you already know and love,
|
59
|
+
while at the same time taking advantage of the performance and functionality of a featureful, highly optimized C++ toolkit.</p>
|
60
|
+
|
61
|
+
|
62
|
+
<h1>Projects Using FXRuby</h1>
|
63
|
+
|
64
|
+
|
65
|
+
<p>Projects using FXRuby include:</p>
|
66
|
+
|
67
|
+
|
68
|
+
<ul>
|
69
|
+
<li><a href="http://www.insula.cz/dbtalk">DbTalk</a> is an interactive GUI-based tool for database querying, programming, administration, etc. It is developed by Dalibor Sramek.</li>
|
70
|
+
<li><a href="http://freeride.rubyforge.org/wiki/wiki.pl">FreeRIDE</a> is an IDE for the Ruby programming language.</li>
|
71
|
+
<li><a href="http://www.fisica.uniud.it/~glast/FRED">FRED</a> is a high energy physics event display built out of Ruby and FOX by Riccardo Giannitrapani and Marco Frailis.</li>
|
72
|
+
<li><a href="http://www.mondrian-ide.com/">Mondrian</a> is a cross-platform project-manager and editor for the Ruby language. Written in 100% native Ruby using the FOX GUI toolkit, Mondrian has the familiar look and feel of a modern IDE while remaining dedicated to the uniqueness of the Ruby language and its community.</li>
|
73
|
+
<li><a href="http://fox-tool.rubyforge.org/">foxGUIb</a> is an interactive gui builder and codegenerator for FXRuby. This tool makes it easy to quickly build complex and good looking graphical user interfaces for Ruby.
|
74
|
+
If your project uses FXRuby for its user interface, and you’d like to see it listed here, please send me an e-mail with the information.</li>
|
75
|
+
</ul>
|
76
|
+
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<!-- content-wrap ends here -->
|
80
|
+
</div>
|
81
|
+
|
82
|
+
<!--footer starts here-->
|
83
|
+
<div id="footer">
|
84
|
+
|
85
|
+
<p>
|
86
|
+
© 2008 Lyle Johnson<br />
|
87
|
+
Web Site Generated Using <a href="http://webby.rubyforge.org/" title="Webby">Webby</a>
|
88
|
+
</p>
|
89
|
+
|
90
|
+
</div>
|
91
|
+
|
92
|
+
<!-- wrap ends here -->
|
93
|
+
</div>
|
94
|
+
|
95
|
+
</body>
|
96
|
+
</html>
|
metadata
CHANGED
@@ -1,45 +1,30 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.9.4.5
|
3
|
-
specification_version: 2
|
4
2
|
name: fxruby
|
5
3
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.6.
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
- ext/fox16
|
11
|
-
- lib
|
12
|
-
email: lyle.johnson@gmail.com
|
13
|
-
homepage: http://www.fxruby.org
|
14
|
-
rubyforge_project:
|
15
|
-
description: FXRuby is the Ruby binding to the FOX GUI toolkit.
|
4
|
+
version: 1.6.14
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Lyle Johnson
|
16
8
|
autorequire:
|
17
|
-
default_executable:
|
18
9
|
bindir: bin
|
19
|
-
has_rdoc: true
|
20
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
21
|
-
requirements:
|
22
|
-
- - ">="
|
23
|
-
- !ruby/object:Gem::Version
|
24
|
-
version: "0"
|
25
|
-
version:
|
26
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
27
|
-
requirements:
|
28
|
-
- - ">="
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: "0"
|
31
|
-
version:
|
32
|
-
platform: ruby
|
33
|
-
signing_key:
|
34
10
|
cert_chain: []
|
35
11
|
|
36
|
-
|
37
|
-
|
38
|
-
|
12
|
+
date: 2008-03-28 00:00:00 -05:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: FXRuby is the Ruby binding to the FOX GUI toolkit.
|
17
|
+
email: lyle.johnson@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions:
|
21
|
+
- ext/fox16/extconf.rb
|
22
|
+
extra_rdoc_files:
|
23
|
+
- rdoc-sources
|
24
|
+
- rdoc-sources/README.rdoc
|
39
25
|
files:
|
40
26
|
- LICENSE
|
41
27
|
- README
|
42
|
-
- index.html
|
43
28
|
- doc/style.css
|
44
29
|
- doc/apes02.html
|
45
30
|
- doc/apes03.html
|
@@ -113,6 +98,7 @@ files:
|
|
113
98
|
- examples/bounce.rb
|
114
99
|
- examples/browser.rb
|
115
100
|
- examples/button.rb
|
101
|
+
- examples/custom_table_item.rb
|
116
102
|
- examples/datatarget.rb
|
117
103
|
- examples/dctest.rb
|
118
104
|
- examples/dialog.rb
|
@@ -324,16 +310,11 @@ files:
|
|
324
310
|
- tests/TS_All.rb
|
325
311
|
- tests/blankpage.ps
|
326
312
|
- tests/howdypage.ps
|
313
|
+
- tests/output.ps
|
314
|
+
- web/community.html
|
315
|
+
- web/documentation.html
|
327
316
|
- web/downloads.html
|
328
|
-
- web/
|
329
|
-
- web/menu.html
|
330
|
-
- web/top.html
|
331
|
-
- web/styles.css
|
332
|
-
- web/art/fxrubylogo.png
|
333
|
-
- web/art/fxrubylogo_small.png
|
334
|
-
- web/art/line.gif
|
335
|
-
- web/art/oul_grey.gif
|
336
|
-
- web/art/our.gif
|
317
|
+
- web/index.html
|
337
318
|
- rdoc-sources/FX4Splitter.rb
|
338
319
|
- rdoc-sources/FX7Segment.rb
|
339
320
|
- rdoc-sources/FXAccelTable.rb
|
@@ -783,8 +764,9 @@ files:
|
|
783
764
|
- ext/fox16/include/FXRuby.h
|
784
765
|
- ext/fox16/include/impl.h
|
785
766
|
- ext/fox16/include/inlinestubs.h
|
786
|
-
|
787
|
-
|
767
|
+
has_rdoc: true
|
768
|
+
homepage: http://www.fxruby.org
|
769
|
+
post_install_message:
|
788
770
|
rdoc_options:
|
789
771
|
- --main
|
790
772
|
- rdoc-sources/README.rdoc
|
@@ -792,14 +774,27 @@ rdoc_options:
|
|
792
774
|
- ext/fox16
|
793
775
|
- --exclude
|
794
776
|
- !ruby/regexp /acceltable|aliases|bitmapview|canvas|html|kwargs|missingdep|responder|tkcompat/
|
795
|
-
|
796
|
-
-
|
797
|
-
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
-
|
777
|
+
require_paths:
|
778
|
+
- ext/fox16
|
779
|
+
- lib
|
780
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
781
|
+
requirements:
|
782
|
+
- - ">="
|
783
|
+
- !ruby/object:Gem::Version
|
784
|
+
version: "0"
|
785
|
+
version:
|
786
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
787
|
+
requirements:
|
788
|
+
- - ">="
|
789
|
+
- !ruby/object:Gem::Version
|
790
|
+
version: "0"
|
791
|
+
version:
|
802
792
|
requirements:
|
803
793
|
- FOX library version 1.6.0 or higher
|
804
|
-
|
805
|
-
|
794
|
+
rubyforge_project:
|
795
|
+
rubygems_version: 1.0.1
|
796
|
+
signing_key:
|
797
|
+
specification_version: 2
|
798
|
+
summary: FXRuby is the Ruby binding to the FOX GUI toolkit.
|
799
|
+
test_files:
|
800
|
+
- tests/TS_All.rb
|
data/index.html
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
2
|
-
<HTML>
|
3
|
-
<HEAD>
|
4
|
-
<title>FXRuby - Home Page</title>
|
5
|
-
<link rel="meta" title="DOAP" type="application/rdf+xml" href="http://www.fxruby.org/doap.rdf"/>
|
6
|
-
</HEAD>
|
7
|
-
<FRAMESET rows='55,*' border=0 frameborder=0 frameborder=no framespacing=0 >
|
8
|
-
<FRAME src='web/top.html' scrolling=no frameborder=0 frameborder=no marginwidth=0 marginheight=0>
|
9
|
-
<FRAMESET cols='170,*' border=0 frameborder=0 frameborder=no framespacing=0 >
|
10
|
-
<FRAME src='web/menu.html' frameborder=0 frameborder=no marginwidth=0 marginheight=0>
|
11
|
-
<FRAME src='web/home.html' frameborder=0 frameborder=no marginwidth=2 marginheight=1 name=page>
|
12
|
-
</FRAMESET>
|
13
|
-
</FRAMESET>
|
14
|
-
</HTML>
|
data/web/art/fxrubylogo.png
DELETED
Binary file
|
Binary file
|
data/web/art/line.gif
DELETED
Binary file
|
data/web/art/oul_grey.gif
DELETED
Binary file
|
data/web/art/our.gif
DELETED
Binary file
|
data/web/home.html
DELETED
@@ -1,113 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<link rel="stylesheet" href="page.css" type="text/css">
|
4
|
-
<title>Home</title>
|
5
|
-
</head>
|
6
|
-
<body bgcolor=#ffffff link=#990033 vlink=#990033 alink=#990033 text=#000000>
|
7
|
-
|
8
|
-
|
9
|
-
<!---- TOPIC TITLE WITH LOGO--->
|
10
|
-
<table border=0 cellpadding= cellspacing=2 width=100% ><tr><td><a href='http://www.fxruby.org' target=_top><img src='art/fxrubylogo_small.png' border=0></a></td><td width=100% valign=bottom id="HEADLINE"><b>
|
11
|
-
Welcome to FXRuby
|
12
|
-
<br><img src='art/line.gif' width=100% height=1></b></td></tr></table>
|
13
|
-
</p>
|
14
|
-
<!--- TOPIC TITLE WITH LOGO --->
|
15
|
-
<blockquote>
|
16
|
-
FXRuby is a <a href="http://www.ruby-lang.org" target=_top>Ruby</a> extension
|
17
|
-
module that provides an interface to the <a href="http://www.fox-toolkit.com" target=_top>FOX</a>
|
18
|
-
GUI library. It is Copyright 2001-2004 by <a href="mailto:lyle@rubyforge.org">Lyle
|
19
|
-
Johnson</a> and released under the <a href="http://www.gnu.org/copyleft/lesser.html" target=_top>GNU
|
20
|
-
Lesser General Public License</a>
|
21
|
-
</blockquote>
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
<!--- TOPIC TITLE -->
|
26
|
-
<p>
|
27
|
-
<table width=100% cellpadding=0 cellspacing=2><tr><td width=100% valign=bottom id="HEADLINE"><b>
|
28
|
-
Versions
|
29
|
-
<br><img src='art/line.gif' width='100%' height=1></b></td></tr></table>
|
30
|
-
</p>
|
31
|
-
<!--- TOPIC TITLE -->
|
32
|
-
<blockquote>
|
33
|
-
As of the FOX 1.0 release, any FXRuby version 1.0.x release should be compatible with any FOX 1.0.x release.
|
34
|
-
Similarly, any FXRuby version 1.2.x release should be compatible with any FOX 1.2.x release,
|
35
|
-
and any FXRuby version 1.4.x release should be compatible with any FOX 1.4.x release.<p>
|
36
|
-
</blockquote>
|
37
|
-
|
38
|
-
|
39
|
-
<!--- TOPIC TITLE -->
|
40
|
-
<p>
|
41
|
-
<table width=100% cellpadding=0 cellspacing=2><tr><td width=100% valign=bottom id="HEADLINE"><b>
|
42
|
-
Mailing Lists
|
43
|
-
<br><img src='art/line.gif' width='100%' height=1></b></td></tr></table>
|
44
|
-
</p>
|
45
|
-
<!--- TOPIC TITLE -->
|
46
|
-
<ul>
|
47
|
-
<b>Announcements</b><p>
|
48
|
-
<ul>
|
49
|
-
The announcements list is a low-traffic list on which new releases of FXRuby, as well as software based on FXRuby, will
|
50
|
-
be announced. Discussions on various topics however should preferably take place in the users list, to prevent
|
51
|
-
swamping people's mailboxes.
|
52
|
-
To subscribe, fill out the web-based
|
53
|
-
<a href="http://rubyforge.org/mailman/listinfo/fxruby-announce" target=_top>subscription form</a>.
|
54
|
-
</ul><p>
|
55
|
-
<b>General Discussion</b><p>
|
56
|
-
<ul>
|
57
|
-
The users list is intended for discussion on various FOX and FXRuby topics between developers and/or users
|
58
|
-
of FXRuby and applications based on it. If you have questions, feel free to post your questions here, as many people
|
59
|
-
are only too happy to answer them.
|
60
|
-
To subscribe, fill out the web-based
|
61
|
-
<a href="http://rubyforge.org/mailman/listinfo/fxruby-users" target=_top>subscription form</a>.
|
62
|
-
</ul>
|
63
|
-
</ul>
|
64
|
-
|
65
|
-
<!--- TOPIC TITLE -->
|
66
|
-
<p>
|
67
|
-
<table width=100% cellpadding=0 cellspacing=2><tr><td width=100% valign=bottom id="HEADLINE"><b>
|
68
|
-
Screenshots
|
69
|
-
<br><img src='art/line.gif' width='100%' height=1></b></td></tr></table>
|
70
|
-
</p>
|
71
|
-
<!--- TOPIC TITLE -->
|
72
|
-
<blockquote>
|
73
|
-
If you need to whet your appetite with a few screenshots before committing
|
74
|
-
to an actual download, I understand completely. <a href="../doc/examples.html">This
|
75
|
-
page</a> from the <a href="../doc/book.html">FXRuby User's Guide</a> displays
|
76
|
-
screenshots from some representative FOX and FXRuby programs. The <a href="http://www.fox-toolkit.com" target=_top>FOX
|
77
|
-
home page</a> also devotes a section to FOX-based Projects and Screen Shots,
|
78
|
-
which you may also want to check out.
|
79
|
-
</blockquote>
|
80
|
-
|
81
|
-
|
82
|
-
<!--- TOPIC TITLE -->
|
83
|
-
<p>
|
84
|
-
<table width=100% cellpadding=0 cellspacing=2><tr><td width=100% valign=bottom id="HEADLINE"><b>
|
85
|
-
Projects Using FXRuby
|
86
|
-
<br><img src='art/line.gif' width='100%' height=1></b></td></tr></table>
|
87
|
-
</p>
|
88
|
-
<!--- TOPIC TITLE -->
|
89
|
-
<blockquote>
|
90
|
-
Projects using FXRuby include:
|
91
|
-
<ul>
|
92
|
-
<li><a href="http://www.insula.cz/dbtalk" target=_top>DbTalk</a> is an interactive GUI-based tool for database querying, programming, administration, etc. It is developed by Dalibor Sramek.</li>
|
93
|
-
<li><a href="http://freeride.rubyforge.org/wiki/wiki.pl" target=_top>FreeRIDE</a> is an IDE for the Ruby programming language.</li>
|
94
|
-
<li><a href="http://www.fisica.uniud.it/~glast/FRED" target=_top>FRED</a> is a high energy physics event display built out of Ruby and FOX by Riccardo Giannitrapani and Marco Frailis.</li>
|
95
|
-
<li><a href="http://www.mondrian-ide.com/" target=_top>Mondrian</a> is a cross-platform project-manager and editor for the Ruby language. Written in 100% native Ruby using the FOX GUI toolkit, Mondrian has the familiar look and feel of a modern IDE while remaining dedicated to the uniqueness of the Ruby language and its community.</li>
|
96
|
-
<li><a href="http://fox-tool.rubyforge.org/" target=_top>foxGUIb</a> is an interactive gui builder and codegenerator for FXRuby. This tool makes it easy to quickly build complex and good looking graphical user interfaces for Ruby.</li>
|
97
|
-
</ul>
|
98
|
-
If your project uses FXRuby for its user interface, and you'd like to see it listed
|
99
|
-
here, please send me an e-mail with the information.
|
100
|
-
</blockquote>
|
101
|
-
|
102
|
-
|
103
|
-
<!--- COPYRIGHT -->
|
104
|
-
<p>
|
105
|
-
<table width=100% cellpadding=0 cellspacing=0><tr><td width=100% valign=top id=HEADLINE align=right>
|
106
|
-
<img src='art/line.gif' width=100% height=1><font size=-1>
|
107
|
-
Copyright © 2001-2004 Lyle Johnson</font>
|
108
|
-
</td></tr></table>
|
109
|
-
</p>
|
110
|
-
<!--- COPYRIGHT -->
|
111
|
-
|
112
|
-
</body>
|
113
|
-
</html>
|
data/web/menu.html
DELETED
@@ -1,50 +0,0 @@
|
|
1
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>FXRuby - menu page</title>
|
5
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
6
|
-
<link rel="stylesheet" href="menu.css" type="text/css">
|
7
|
-
<base target=page>
|
8
|
-
</head>
|
9
|
-
<body bgcolor='#ffffff' leftmargin=0 topmargin=0 link='#404040' vlink='#404040' alink='#404040' marginwidth=0 marginheight=0>
|
10
|
-
|
11
|
-
<table border=0 cellpadding=0 cellspacing=0 align=center width=170 height='100%' hspace=0 vspace=0 frame=void>
|
12
|
-
<tr><td bgcolor='#efc3a5' height='100%' width=18> </td><td bgcolor='#efc3a5' width=152 valign=top>
|
13
|
-
<font face='verdana,sans-serif' size=2 >
|
14
|
-
|
15
|
-
<!---- START MENU ---->
|
16
|
-
<br>
|
17
|
-
<img src='art/line.gif' width='152' height=1><br>
|
18
|
-
<a href="home.html"><b>Home</b></a><br>
|
19
|
-
<a href="http://rubyforge.org/news/?group_id=300" target=_top><b>News</b></a><br>
|
20
|
-
<a href="downloads.html"><b>Downloads</b></a><br>
|
21
|
-
<a href="../doc/book.html"><b>User's Guide</b></a><br>
|
22
|
-
<a href="../doc/api"><b>API Reference Docs</b></a><br>
|
23
|
-
<a href="../doc/examples.html"><b>Screenshots</b></a><br>
|
24
|
-
<a href="http://rubyforge.org/tracker/?atid=1223&group_id=300&func=browse" target=_top><b>Bugs</b></a><br>
|
25
|
-
<a href="../doc/cvs.html"><b>CVS</b></a><br>
|
26
|
-
<a href="http://www.gnu.org/copyleft/lesser.html" target=_top><b>License</b></a><br>
|
27
|
-
<p>
|
28
|
-
|
29
|
-
<!---- Links ---->
|
30
|
-
<img src='art/line.gif' width='152' height=1><br>
|
31
|
-
<a href="http://www.fox-toolkit.com" target=_top><B>FOX</B></a><br>
|
32
|
-
<a href="http://www.fox-toolkit.net" target=_top><B>FOX Community</B></a><br>
|
33
|
-
<a href="http://www.ruby-lang.org" target=_top><B>Ruby</B></a><br>
|
34
|
-
<a href="http://www.swig.org" target=_top><B>SWIG</B></a><br>
|
35
|
-
<a href="http://rubyforge.org/projects/fxruby" target=_top><B>RubyForge</B></a><br>
|
36
|
-
</font>
|
37
|
-
<p>
|
38
|
-
|
39
|
-
<font face='verdana,sans-serif' size=1 color='#404040'>
|
40
|
-
<img src='art/line.gif' width='152' height=1><br>
|
41
|
-
<address>Copyright © 2001-2004<br><a href='mailto:lyle@rubyforge.org'><font face='verdana,sans-serif' size=1 >Lyle Johnson</font></a>.</address>
|
42
|
-
<address>FXRuby Logo images provided by Sander Jansen.</address>
|
43
|
-
</font >
|
44
|
-
|
45
|
-
<!---- END MENU ---->
|
46
|
-
</td></tr>
|
47
|
-
</TABLE>
|
48
|
-
</BODY>
|
49
|
-
</HTML>
|
50
|
-
|
data/web/styles.css
DELETED
@@ -1,167 +0,0 @@
|
|
1
|
-
|
2
|
-
BODY
|
3
|
-
{
|
4
|
-
|
5
|
-
|
6
|
-
}
|
7
|
-
|
8
|
-
|
9
|
-
.DECORTHING
|
10
|
-
{
|
11
|
-
color:silver;
|
12
|
-
background-color:gray;
|
13
|
-
width:20px;
|
14
|
-
height:100%
|
15
|
-
}
|
16
|
-
|
17
|
-
.SEPHOR
|
18
|
-
{
|
19
|
-
color:silver;
|
20
|
-
background-color:#000000;
|
21
|
-
height:1px;
|
22
|
-
|
23
|
-
width:100%;
|
24
|
-
}������� �������
|
25
|
-
|
26
|
-
.SEPVER
|
27
|
-
{
|
28
|
-
color:silver;
|
29
|
-
background-color:#000000;
|
30
|
-
width:1px;
|
31
|
-
height:100%
|
32
|
-
}������� �������
|
33
|
-
|
34
|
-
UL
|
35
|
-
{
|
36
|
-
list-style-type:square;
|
37
|
-
}
|
38
|
-
LI
|
39
|
-
{
|
40
|
-
white-space:pre;
|
41
|
-
}
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
#TOPTITLE
|
49
|
-
{
|
50
|
-
color: silver;
|
51
|
-
background-color:black;
|
52
|
-
font-family:verdana,sans-serif;
|
53
|
-
font-size:10pt;
|
54
|
-
font-variant:small-caps;
|
55
|
-
font-weight:bolder;
|
56
|
-
letter-spacing:4pt;
|
57
|
-
text-align:center;
|
58
|
-
}�������
|
59
|
-
|
60
|
-
#LOGO
|
61
|
-
{
|
62
|
-
color: silver;
|
63
|
-
background-color: silver;
|
64
|
-
font-family:verdana,sans-serif;
|
65
|
-
font-size:10pt;
|
66
|
-
font-variant:small-caps;
|
67
|
-
font-weight:bolder;
|
68
|
-
letter-spacing:4pt;
|
69
|
-
text-align:right;
|
70
|
-
}
|
71
|
-
|
72
|
-
#MENU
|
73
|
-
{
|
74
|
-
color:black;
|
75
|
-
background-color:#6495ED;
|
76
|
-
font-family:verdana,sans-serif;
|
77
|
-
font-size:10pt;
|
78
|
-
font-weight:bolder;
|
79
|
-
vertical-align:text-top;
|
80
|
-
padding-left:5px;
|
81
|
-
padding-top:20px;
|
82
|
-
margin-top:0px;
|
83
|
-
width:130px;
|
84
|
-
height:100%;
|
85
|
-
}
|
86
|
-
|
87
|
-
|
88
|
-
.MENULINK
|
89
|
-
{
|
90
|
-
color:black;
|
91
|
-
text-decoration:none;
|
92
|
-
background-color:#6495ED;
|
93
|
-
}
|
94
|
-
|
95
|
-
.MENULINK:hover
|
96
|
-
{
|
97
|
-
color:silver;
|
98
|
-
text-decoration:none;
|
99
|
-
background-color:#6495ED;
|
100
|
-
}
|
101
|
-
|
102
|
-
.PAGEMENULINK
|
103
|
-
{
|
104
|
-
color:#6495ED;
|
105
|
-
text-decoration:none;
|
106
|
-
background-color:white;
|
107
|
-
}
|
108
|
-
|
109
|
-
.PAGEMENULINK:hover
|
110
|
-
{
|
111
|
-
color:#6495ED;
|
112
|
-
text-decoration:underline;
|
113
|
-
background-color:white;
|
114
|
-
}
|
115
|
-
|
116
|
-
#submenuitem
|
117
|
-
{
|
118
|
-
color:black;
|
119
|
-
background-color:#B0C4DE;
|
120
|
-
font-family:verdana,sans-serif;
|
121
|
-
font-size:10pt;
|
122
|
-
font-weight:normal;
|
123
|
-
text-align:left;
|
124
|
-
vertical-align:top;
|
125
|
-
padding-left:2px;
|
126
|
-
padding-top:2px;
|
127
|
-
width:200px;
|
128
|
-
|
129
|
-
}������� �������
|
130
|
-
|
131
|
-
#PAGETITLE
|
132
|
-
{
|
133
|
-
color:black;
|
134
|
-
background-color:gray;
|
135
|
-
font-family:verdana,sans-serif;
|
136
|
-
font-size:10pt;
|
137
|
-
font-variant:small-caps;
|
138
|
-
font-weight:bolder;
|
139
|
-
letter-spacing:4pt;
|
140
|
-
text-align:left;
|
141
|
-
padding-left:3pt;
|
142
|
-
}
|
143
|
-
|
144
|
-
.PAGE
|
145
|
-
{
|
146
|
-
color:black;
|
147
|
-
background-color:white;
|
148
|
-
font-family:times,serif;
|
149
|
-
font-size:11pt;
|
150
|
-
font-weight:normal;
|
151
|
-
text-align:left;
|
152
|
-
vertical-align:top;
|
153
|
-
padding-left:10px;
|
154
|
-
padding-top:10px;
|
155
|
-
padding-right:10px;
|
156
|
-
|
157
|
-
}�������
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
.NEWSSECTION
|
162
|
-
{
|
163
|
-
padding-left:30px;
|
164
|
-
}
|
165
|
-
|
166
|
-
DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px }
|
167
|
-
�����
|