XDCC-Fetch 1.386
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/COPYING +23 -0
- data/XDCC-Fetch.rbw +54 -0
- data/doc/ark.png +0 -0
- data/doc/connect_established.png +0 -0
- data/doc/index.html +300 -0
- data/doc/mega_ark.png +0 -0
- data/doc/package.png +0 -0
- data/doc/package_unknown.png +0 -0
- data/doc/shot1.png +0 -0
- data/doc/shot1_mini.png +0 -0
- data/doc/shot2.png +0 -0
- data/doc/shot2_mini.png +0 -0
- data/doc/xdccfetch.css +155 -0
- data/icons/ark.png +0 -0
- data/icons/ark_big.png +0 -0
- data/icons/camera_test.png +0 -0
- data/icons/cancel.png +0 -0
- data/icons/connect_creating.png +0 -0
- data/icons/connect_established.png +0 -0
- data/icons/connect_failed.png +0 -0
- data/icons/connect_no.png +0 -0
- data/icons/edit_add.png +0 -0
- data/icons/edit_remove.png +0 -0
- data/icons/exit.png +0 -0
- data/icons/fileclose.png +0 -0
- data/icons/folder_inbox.png +0 -0
- data/icons/idea.png +0 -0
- data/icons/mega_ark.png +0 -0
- data/icons/messagebox_critical.png +0 -0
- data/icons/messagebox_info.png +0 -0
- data/icons/messagebox_warning.png +0 -0
- data/icons/messagebox_warning_small.png +0 -0
- data/icons/package.png +0 -0
- data/icons/package_favourite.png +0 -0
- data/icons/package_unknown.png +0 -0
- data/src/Console/Console_Parser.rb +71 -0
- data/src/Console/XDCC_Pack_Match_Template.rb +29 -0
- data/src/Console/xdcc-fetch.rb +123 -0
- data/src/GUI/About_Dialog.rb +50 -0
- data/src/GUI/Application_Builder.rb +280 -0
- data/src/GUI/Context_Menu.rb +81 -0
- data/src/GUI/Custom_Tabs.rb +60 -0
- data/src/GUI/Dialog_Box.rb +116 -0
- data/src/GUI/Download_Finished_Box.rb +41 -0
- data/src/GUI/Empty_Text_Field_Handler.rb +86 -0
- data/src/GUI/Gui_Logic.rb +629 -0
- data/src/GUI/Icon_Loader.rb +58 -0
- data/src/GUI/Main_Window.rb +227 -0
- data/src/GUI/Packet_Item.rb +171 -0
- data/src/GUI/Packet_List.rb +145 -0
- data/src/GUI/Speed_Widget.rb +101 -0
- data/src/GUI/Talk_Back.rb +118 -0
- data/src/GUI/Toggle_Button.rb +56 -0
- data/src/Network/CTCP_Handler.rb +61 -0
- data/src/Network/DCC_File.rb +323 -0
- data/src/Network/DCC_Parser.rb +71 -0
- data/src/Network/IPAddr_Ext.rb +76 -0
- data/src/Network/IRC_Message.rb +161 -0
- data/src/Network/IRC_Server.rb +273 -0
- data/src/Network/IRC_Server_Respond_Map.rb +223 -0
- data/src/Network/IRC_User.rb +58 -0
- data/src/Network/TCP_Connection.rb +168 -0
- data/src/Network/XDCC_Announcement.rb +120 -0
- data/src/Network/XDCC_Announcement_Storage.rb +167 -0
- data/src/Network/XDCC_Download_Handler.rb +412 -0
- data/src/Network/XDCC_Pack.rb +58 -0
- data/src/Network/XDCC_Parser.rb +253 -0
- data/src/Translations/README +61 -0
- data/src/Translations/check_translations +83 -0
- data/src/Translations/de.rb +140 -0
- data/src/Translations/en.rb +145 -0
- data/src/Utilities/Configuration.rb +91 -0
- data/src/Utilities/Events.rb +87 -0
- data/src/Utilities/Globals.rb +138 -0
- data/src/Utilities/PrettyException.rb +1091 -0
- data/src/Utilities/Recursive_Open_Struct.rb +159 -0
- data/src/Utilities/Timer.rb +71 -0
- metadata +135 -0
data/COPYING
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
Copyright (c) 2004-2005, Christoph Heindl and Martin Ankerl
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without modification,
|
5
|
+
are permitted provided that the following conditions are met:
|
6
|
+
|
7
|
+
* Redistributions of source code must retain the above copyright notice, this list
|
8
|
+
of conditions and the following disclaimer.
|
9
|
+
* Redistributions in binary form must reproduce the above copyright notice, this list
|
10
|
+
of conditions and the following disclaimer in the documentation and/or other materials
|
11
|
+
provided with the distribution.
|
12
|
+
* Neither the name of Christoph Heindl and Martin Ankerl nor the names of its contributors
|
13
|
+
may be used to endorse or promote products derived from this software without specific
|
14
|
+
prior written permission.
|
15
|
+
|
16
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
|
17
|
+
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
18
|
+
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
19
|
+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
20
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
21
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
22
|
+
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
23
|
+
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/XDCC-Fetch.rbw
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# Copyright (c) 2004-2005 Christoph Heindl and Martin Ankerl
|
4
|
+
# All rights reserved.
|
5
|
+
#
|
6
|
+
# Redistribution and use in source and binary forms, with or without modification,
|
7
|
+
# are permitted provided that the following conditions are met:
|
8
|
+
#
|
9
|
+
# * Redistributions of source code must retain the above copyright notice, this list
|
10
|
+
# of conditions and the following disclaimer.
|
11
|
+
# * Redistributions in binary form must reproduce the above copyright notice, this list
|
12
|
+
# of conditions and the following disclaimer in the documentation and/or other materials
|
13
|
+
# provided with the distribution.
|
14
|
+
# * Neither the name of Christoph Heindl and Martin Ankerl nor the names of its contributors
|
15
|
+
# may be used to endorse or promote products derived from this software without specific
|
16
|
+
# prior written permission.
|
17
|
+
#
|
18
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
|
19
|
+
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
20
|
+
# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
21
|
+
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
22
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
+
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
24
|
+
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
25
|
+
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
26
|
+
|
27
|
+
begin
|
28
|
+
Dir.chdir(File.dirname(File.expand_path(__FILE__)))
|
29
|
+
require 'src/GUI/Main_Window'
|
30
|
+
rescue Exception => err
|
31
|
+
outPath = ENV['HOME'] || ENV['USERPROFILE'] || ENV['HOMEPATH']
|
32
|
+
logfile = nil
|
33
|
+
begin
|
34
|
+
logfile = File.new(outPath + "/.xdcc-fetch.log", "a")
|
35
|
+
rescue
|
36
|
+
logfile = STDERR
|
37
|
+
end
|
38
|
+
logfile.puts("---------------------BEGIN-------------------------")
|
39
|
+
logfile.puts("Encountered fatal error on #{Time.now}")
|
40
|
+
logfile.puts(err.message)
|
41
|
+
logfile.puts(err.backtrace)
|
42
|
+
logfile.puts("----------------------END--------------------------")
|
43
|
+
logfile.close
|
44
|
+
|
45
|
+
# use prettyexception. For internal use, or whoever wants to hack the source.
|
46
|
+
require 'src/Utilities/PrettyException'
|
47
|
+
pe = PrettyException.new(err)
|
48
|
+
File.open(outPath + "/.xdcc-fetch-prettylog.html", "w") do |f|
|
49
|
+
f.puts pe.print
|
50
|
+
end
|
51
|
+
|
52
|
+
#require 'src/GUI/Talk_Back'
|
53
|
+
#Talk_Back.run(err)
|
54
|
+
end
|
data/doc/ark.png
ADDED
Binary file
|
Binary file
|
data/doc/index.html
ADDED
@@ -0,0 +1,300 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<title>XDCC-Fetch</title>
|
6
|
+
<link rel="stylesheet" type="text/css" href="xdccfetch.css" />
|
7
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
8
|
+
</head>
|
9
|
+
|
10
|
+
<body>
|
11
|
+
<div id="left">
|
12
|
+
<div id="masthead">
|
13
|
+
<center>
|
14
|
+
<a href="http://xdccfetch.sourceforge.net">
|
15
|
+
<img border="0" src="mega_ark.png" alt="XDCC-Fetch" title="XDCC-Fetch Homepage" width="117" height="125">
|
16
|
+
</a>
|
17
|
+
</center>
|
18
|
+
</div>
|
19
|
+
|
20
|
+
<div id="menu">
|
21
|
+
<ul>
|
22
|
+
<li><a href="#about">XDCC-Fetch</a></li>
|
23
|
+
<li><a href="#features">Features</a></li>
|
24
|
+
<li><a href="#download">Download</a></li>
|
25
|
+
<li><a href="#install">Installation</a></li>
|
26
|
+
<li><a href="#faq">FAQ</a></li>
|
27
|
+
<li><a href="http://www.phpbbserver.com/phpbb/index.php?mforum=xdccfetch" target="_blank">Forum</a></li>
|
28
|
+
<li><a href="#bsdlicense">License</a></li>
|
29
|
+
</ul>
|
30
|
+
</div>
|
31
|
+
|
32
|
+
<div id="news">
|
33
|
+
<h1>2005-01-22</h1>
|
34
|
+
<p>XDCC-Fetch 1.338 New features, several bugfixes</p>
|
35
|
+
|
36
|
+
<h1>2005-01-19</h1>
|
37
|
+
<p>XDCC-Fetch 1.307 (STONEAGE) released.</p>
|
38
|
+
|
39
|
+
<h1>2005-01-18</h1>
|
40
|
+
<p>Homepage layout updated.</p>
|
41
|
+
|
42
|
+
<h1>2005-01-17</h1>
|
43
|
+
<p>We got a <a href="http://www.phpbbserver.com/phpbb/index.php?mforum=xdccfetch" target="_blank">
|
44
|
+
forum</a>! Ask everything you want to know about XDCC-Fetch there.</p>
|
45
|
+
|
46
|
+
<h1>2005-01-16</h1>
|
47
|
+
<p>We now have <a href="#download">nightlies</a> available, and a
|
48
|
+
<a href="changelog.html">changelog</a>.</p>
|
49
|
+
|
50
|
+
<h1>2005-01-10</h1>
|
51
|
+
<p><a href="#download">First major release available!</a></p>
|
52
|
+
|
53
|
+
<h1>2004-12-26</h1>
|
54
|
+
<p>First version of the homepage created.</p>
|
55
|
+
</div>
|
56
|
+
|
57
|
+
|
58
|
+
<div id="logos">
|
59
|
+
<a href="http://sourceforge.net">
|
60
|
+
<img src="http://sourceforge.net/sflogo.php?group_id=127145&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo" />
|
61
|
+
</a>
|
62
|
+
|
63
|
+
<a href="http://www.spreadfirefox.com/?q=affiliates&id=0&t=68"><img border="0" alt="Get Firefox!" title="Get Firefox!" src="http://sfx-images.mozilla.org/affiliates/Buttons/88x31/take.gif"/></a>
|
64
|
+
</div>
|
65
|
+
</div>
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="right">
|
70
|
+
<div id="sshots">
|
71
|
+
<h1>Screenshots</h1>
|
72
|
+
|
73
|
+
<center>
|
74
|
+
<a href="shot1.png" target="_blank">
|
75
|
+
<img src="shot1_mini.png" width="100" height="93" />
|
76
|
+
</a>
|
77
|
+
</center>
|
78
|
+
|
79
|
+
<p>
|
80
|
+
Linux, XDCC-Fetch 1.239
|
81
|
+
</p>
|
82
|
+
|
83
|
+
<center>
|
84
|
+
<a href="shot2.png" target="_blank">
|
85
|
+
<img src="shot2_mini.png" width="100" height="70" />
|
86
|
+
</a>
|
87
|
+
</center>
|
88
|
+
<p>Windows XP, XDCC-Fetch 1.239
|
89
|
+
</p>
|
90
|
+
|
91
|
+
|
92
|
+
</div>
|
93
|
+
</div>
|
94
|
+
|
95
|
+
<div id="middle">
|
96
|
+
<div id="mainText">
|
97
|
+
|
98
|
+
<a name="about"></a><h1>XDCC-Fetch</h1>
|
99
|
+
<p>XDCC-Fetch, written entirely in <a href="http://www.ruby-lang.org/" title="http://www.ruby-lang.org/">Ruby</a>, is an
|
100
|
+
intuitive, no-nonsense tool for searching, collecting and downloading
|
101
|
+
<span title="eXtended Direct Client-to-Client protocol" class="title">XDCC</span>
|
102
|
+
announcements within <span title="Internet Relay Chat" class="title">IRC</span>
|
103
|
+
channels. XDCC-Fetch is released under the <a href="#license">BSD license</a>
|
104
|
+
and available for free.</p>
|
105
|
+
|
106
|
+
|
107
|
+
<a name="features"></a><h1>Features</h1>
|
108
|
+
|
109
|
+
<table>
|
110
|
+
<tr>
|
111
|
+
<td valign="top">
|
112
|
+
<ul>
|
113
|
+
<li>Simple, no-nonsense user interface</li>
|
114
|
+
<li>Search-on-typing</li>
|
115
|
+
<li>Pack filter</li>
|
116
|
+
<li>Multiple IRC servers</li>
|
117
|
+
</ul>
|
118
|
+
</td>
|
119
|
+
<td valign="top">
|
120
|
+
<ul>
|
121
|
+
<li>Resumable downloads</li>
|
122
|
+
<li>Download queues</li>
|
123
|
+
<li>Parallel downloads</li>
|
124
|
+
<li>Checksum comparison</li>
|
125
|
+
</ul>
|
126
|
+
</td>
|
127
|
+
<td valign="top">
|
128
|
+
<ul>
|
129
|
+
<li>Server + channel status stored, reconnect on startup</li>
|
130
|
+
<li>Download-finished popup</li>
|
131
|
+
<li>It is free!</li>
|
132
|
+
<li>Tell us what you want
|
133
|
+
<a href="http://www.phpbbserver.com/phpbb/index.php?mforum=xdccfetch" target="_blank">here</a>.</li>
|
134
|
+
</ul>
|
135
|
+
</td>
|
136
|
+
</tr>
|
137
|
+
</table>
|
138
|
+
|
139
|
+
<a name="download"></a><h1>Download</h1>
|
140
|
+
<dl>
|
141
|
+
<dt>
|
142
|
+
<a href="http://sourceforge.net/project/showfiles.php?group_id=127145">XDCC-Fetch Release</a>
|
143
|
+
</dt>
|
144
|
+
<dd>Get the latest stable release here.</dd>
|
145
|
+
|
146
|
+
<dt>
|
147
|
+
<a href="XDCC-FetchGUI-nightly.tar.gz">XDCC-FetchGUI-nightly.tar.gz</a> or
|
148
|
+
<a href="XDCC-FetchGUI-nightly.zip">XDCC-FetchGUI-nightly.zip</a>
|
149
|
+
</dt>
|
150
|
+
|
151
|
+
<dd>You might want to try the nightly for the latest features, bugfixes, and new bugs.
|
152
|
+
As the name says,the nightly is updated (almost) each night. Have a look at the
|
153
|
+
<a href="changelog.html">changelog</a> to find out if your favourite bug has been fixed.</dd>
|
154
|
+
</dl>
|
155
|
+
|
156
|
+
<a name="install"></a><h1>Installation</h1>
|
157
|
+
<p>
|
158
|
+
If you use Windows, just downloading and installing the latest release of
|
159
|
+
the <a href="http://rubyinstaller.rubyforge.org/wiki/wiki.pl">Ruby Windows Installer</a>.
|
160
|
+
After this you can use XDCC-Fetch by doubleclicking <tt>XDCC-Fetch.rbw</tt>.</p>
|
161
|
+
|
162
|
+
<p>If you have any other OS, ensure that <a href="http://www.ruby-lang.org/en/">Ruby</a>
|
163
|
+
and <a href="http://www.fxruby.org/">FXRuby</a> are installed. You need at least Ruby 1.8,
|
164
|
+
and either FXRuby 1.0 and FXRuby 1.2 should work (although 1.2 is recommended).</p>
|
165
|
+
|
166
|
+
<a name="faq"></a><h1>FAQ</h1>
|
167
|
+
<dl>
|
168
|
+
<dt>How do I use it?</dt>
|
169
|
+
<dd>
|
170
|
+
Usage is quite simple, if you have a bit of background knowledge about IRC and
|
171
|
+
XDCC. Just follow the following description to get started.
|
172
|
+
<ol>
|
173
|
+
<li>Start XDCC-Fetch by double-clicking on <tt>XDCC-Fetch.rbw</tt>.</li>
|
174
|
+
|
175
|
+
<li>Add an IRC Server with <tt>File</tt> > <tt>Add Server</tt>. If you do not know
|
176
|
+
any IRC Server that hosts channels that contain XDCC bots, just use your favourite
|
177
|
+
search engine. You at least need to specify the server address, a user name, and the
|
178
|
+
port (which usually is 6667).</li>
|
179
|
+
|
180
|
+
<li>After the connection has been successfully established, you should see the icon
|
181
|
+
<img src="connect_established.png" width="16" height="16" alt="Connection Established" />.
|
182
|
+
Now you can use this server to join channels. Right click on the server, choose
|
183
|
+
<tt>Add Channel</tt> and enter a channel that contains XDCC bots.</li>
|
184
|
+
|
185
|
+
<li>Once a channel has been joined, XDCC-Fetch waits for the bots to announce their
|
186
|
+
packs. All packs are shown in the main window, each in one line.</li>
|
187
|
+
|
188
|
+
<li>To download a pack, doubleclick on it and choose a target directory. The pack should appear
|
189
|
+
in the download window (lower left). If a download completes, it is moved to the completed window.
|
190
|
+
If the download fails, the pack is moved to the error window.</li>
|
191
|
+
</ol>
|
192
|
+
That's it. Happy downloading!
|
193
|
+
</dd>
|
194
|
+
|
195
|
+
<dt>What do the icons <img src="ark.png" width="16" height="16" />,
|
196
|
+
<img src="package_unknown.png" width="16" height="16" /> and
|
197
|
+
<img src="package.png" width="16" height="16" /> mean?</dt>
|
198
|
+
<dd>
|
199
|
+
When a bot announces its packs, it usually also announces if the bot has free slots, or not. If it has
|
200
|
+
free slots, the icon <img src="ark.png" width="16" height="16" /> is shown. If not, you see the icon
|
201
|
+
<img src="package.png" width="16" height="16" />. In some cases the information about free
|
202
|
+
slots is not announced by the bot, then the slot status is unknown and you see the icon
|
203
|
+
<img src="package_unknown.png" width="16" height="16" />.
|
204
|
+
</dd>
|
205
|
+
|
206
|
+
<dt>I have found a bug! What should I do now?</dt>
|
207
|
+
<dd>
|
208
|
+
Stay calm, no need to panic. If XDCC-Fetch went up in smoke and dust, your downloads are not
|
209
|
+
lost because XDCC-Fetch is able resume files. That beeing said, please use the
|
210
|
+
<a href="http://www.phpbbserver.com/phpbb/index.php?mforum=xdccfetch" target="_blank">forum</a>
|
211
|
+
to report your bug and describe as detailed as possible what you have done to produce this undesired
|
212
|
+
behaviour. If we can reproduce your problem, it is very likely that a bugfix release will be available shortly.
|
213
|
+
</dd>
|
214
|
+
|
215
|
+
<dt>Where can I downloaded the latest movies, ...?</dt>
|
216
|
+
<dd>
|
217
|
+
We, the XDCC-Fetch team, are strictly distancing ourself from any potentially illegal material.
|
218
|
+
This also includes any kind of links refering to downloadable copyrighted material via IRC.
|
219
|
+
XDCC-Fetch per se is not illegal and that way it will remain. This is certainly the wrong place
|
220
|
+
to ask any of these questions.
|
221
|
+
</dd>
|
222
|
+
|
223
|
+
<dt>Where can I find a complete documentation?</dt>
|
224
|
+
<dd>
|
225
|
+
XDCC-Fetch is brand new, and we did not yet have the time to assemble a complete
|
226
|
+
documentation. For now we hope that our users are experimenting with XDCC-Fetch and discover
|
227
|
+
its features without documentation.
|
228
|
+
</dd>
|
229
|
+
|
230
|
+
<dt>I have a question not covered by the FAQ?</dt>
|
231
|
+
<dd>
|
232
|
+
Post your question in the community
|
233
|
+
<a href="http://www.phpbbserver.com/phpbb/index.php?mforum=xdccfetch" target="_blank">forum</a>
|
234
|
+
or send us a mail to <a href="mailto:xdccfetch@gmail.com">xdccfetch@gmail.com</a>.
|
235
|
+
</dd>
|
236
|
+
</dl>
|
237
|
+
|
238
|
+
<a name="bsdlicense"></a><h1>License</h1>
|
239
|
+
<p>
|
240
|
+
XDCC-Fetch is distributed under the BSD license, which means you can use it
|
241
|
+
for free. For more details, read the license:
|
242
|
+
</p>
|
243
|
+
<div id="license">
|
244
|
+
<p>Copyright (c) 2004, 2005 Christoph Heindl and Martin Ankerl</p>
|
245
|
+
<p>All rights reserved.</p>
|
246
|
+
|
247
|
+
<p>Redistribution and use in source and binary forms, with or without modification,
|
248
|
+
are permitted provided that the following conditions are met:</p>
|
249
|
+
|
250
|
+
<ul>
|
251
|
+
<li>Redistributions of source code must retain the above copyright notice, this list
|
252
|
+
of conditions and the following disclaimer.</li>
|
253
|
+
<li>Redistributions in binary form must reproduce the above copyright notice, this list
|
254
|
+
of conditions and the following disclaimer in the documentation and/or other materials
|
255
|
+
provided with the distribution.</li>
|
256
|
+
<li>Neither the name of Christoph Heindl and Martin Ankerl nor the names of its contributors
|
257
|
+
may be used to endorse or promote products derived from this software without specific
|
258
|
+
prior written permission.</li>
|
259
|
+
</ul>
|
260
|
+
<p>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
261
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
262
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
263
|
+
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
264
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
265
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
266
|
+
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
267
|
+
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
|
268
|
+
WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
269
|
+
</p>
|
270
|
+
</div>
|
271
|
+
</div>
|
272
|
+
</div>
|
273
|
+
|
274
|
+
<div id="foot">
|
275
|
+
Copyright © 2004, 2005 Martin Ankerl, Christoph Heindl
|
276
|
+
<center>
|
277
|
+
<a href="http://t.extreme-dm.com/?login=xdccfetc"
|
278
|
+
target="_top"><img src="http://t1.extreme-dm.com/i.gif"
|
279
|
+
name="EXim" border="0" height="38" width="41"
|
280
|
+
alt="eXTReMe Tracker"></img></a>
|
281
|
+
<script type="text/javascript" language="javascript1.2"><!--
|
282
|
+
EXs=screen;EXw=EXs.width;navigator.appName!="Netscape"?
|
283
|
+
EXb=EXs.colorDepth:EXb=EXs.pixelDepth;//-->
|
284
|
+
</script><script type="text/javascript"><!--
|
285
|
+
var EXlogin='xdccfetc' // Login
|
286
|
+
var EXvsrv='s9' // VServer
|
287
|
+
navigator.javaEnabled()==1?EXjv="y":EXjv="n";
|
288
|
+
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
|
289
|
+
EXd.write("<img src=\"http://e0.extreme-dm.com",
|
290
|
+
"/"+EXvsrv+".g?login="+EXlogin+"&",
|
291
|
+
"jv="+EXjv+"&j=y&srw="+EXw+"&srb="+EXb+"&",
|
292
|
+
"l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->
|
293
|
+
</script><noscript><img height="1" width="1" alt=""
|
294
|
+
src="http://e0.extreme-dm.com/s9.g?login=xdccfetc&j=n&jv=n"/>
|
295
|
+
</noscript>
|
296
|
+
</center>
|
297
|
+
|
298
|
+
</div>
|
299
|
+
</body>
|
300
|
+
</html>
|
data/doc/mega_ark.png
ADDED
Binary file
|
data/doc/package.png
ADDED
Binary file
|
Binary file
|
data/doc/shot1.png
ADDED
Binary file
|
data/doc/shot1_mini.png
ADDED
Binary file
|
data/doc/shot2.png
ADDED
Binary file
|
data/doc/shot2_mini.png
ADDED
Binary file
|
data/doc/xdccfetch.css
ADDED
@@ -0,0 +1,155 @@
|
|
1
|
+
body {
|
2
|
+
color:#000000;
|
3
|
+
background-color:#ffffff;
|
4
|
+
font-family:verdana, bitstream vera sans, arial, helvetica, sans-serif;
|
5
|
+
font-size:11px;
|
6
|
+
}
|
7
|
+
h1 {
|
8
|
+
font-size:14px;
|
9
|
+
border-bottom:1px solid black;
|
10
|
+
}
|
11
|
+
td {
|
12
|
+
font-size:11px;
|
13
|
+
}
|
14
|
+
table,tr {
|
15
|
+
margin: 0px;
|
16
|
+
padding:0px;
|
17
|
+
}
|
18
|
+
img {
|
19
|
+
border:none;
|
20
|
+
}
|
21
|
+
tt {
|
22
|
+
background-color: #d0d0d0;
|
23
|
+
}
|
24
|
+
ol, ul {
|
25
|
+
margin-top:0px;
|
26
|
+
margin-bottom:0px;
|
27
|
+
}
|
28
|
+
li {
|
29
|
+
margin-top:5px;
|
30
|
+
margin-bottom:5px;
|
31
|
+
}
|
32
|
+
|
33
|
+
dt {
|
34
|
+
margin-top:20px;
|
35
|
+
margin-bottom:5px;
|
36
|
+
font-weight:bold;
|
37
|
+
}
|
38
|
+
dd {
|
39
|
+
margin-left:20px;
|
40
|
+
}
|
41
|
+
|
42
|
+
#news h1 {
|
43
|
+
font-size:11px;
|
44
|
+
border:none;
|
45
|
+
margin:8px 0px 4px 0px;
|
46
|
+
padding:0px;
|
47
|
+
}
|
48
|
+
|
49
|
+
#sshots h1 {
|
50
|
+
font-size:11px;
|
51
|
+
border:none;
|
52
|
+
margin:8px 0px 4px 0px;
|
53
|
+
padding:0px;
|
54
|
+
}
|
55
|
+
|
56
|
+
*.title {
|
57
|
+
border-bottom: 1px dashed black;
|
58
|
+
}
|
59
|
+
|
60
|
+
#news h2 {
|
61
|
+
font-size:10px;
|
62
|
+
font-weight:normal;
|
63
|
+
font-style: italic;
|
64
|
+
}
|
65
|
+
#sshots h2 {
|
66
|
+
font-size:10px;
|
67
|
+
font-weight:normal;
|
68
|
+
font-style: italic;
|
69
|
+
}
|
70
|
+
|
71
|
+
#news p {
|
72
|
+
font-size:11px;
|
73
|
+
padding:0px;
|
74
|
+
margin:0px 0px 20px 4px;
|
75
|
+
}
|
76
|
+
#sshots p {
|
77
|
+
font-size:11px;
|
78
|
+
padding:0px;
|
79
|
+
margin:0px 0px 20px 4px;
|
80
|
+
}
|
81
|
+
|
82
|
+
#left {
|
83
|
+
float:left;
|
84
|
+
width:130px;
|
85
|
+
margin:0px;
|
86
|
+
border-right:1px solid black;
|
87
|
+
}
|
88
|
+
|
89
|
+
#right {
|
90
|
+
float:right;
|
91
|
+
width:130px;
|
92
|
+
height:auto;
|
93
|
+
margin:10px 0px 0px 0px;
|
94
|
+
border-left:1px solid black;
|
95
|
+
}
|
96
|
+
|
97
|
+
#menu, #news {
|
98
|
+
border-top: 1px solid black;
|
99
|
+
padding:0px;
|
100
|
+
margin:10px;
|
101
|
+
}
|
102
|
+
|
103
|
+
#sshots {
|
104
|
+
padding:0px;
|
105
|
+
margin:10px;
|
106
|
+
}
|
107
|
+
|
108
|
+
#menu li, #menu ul {
|
109
|
+
padding-left:5px;
|
110
|
+
margin:5px 5px 0px 0px;
|
111
|
+
list-style-type:none;
|
112
|
+
}
|
113
|
+
|
114
|
+
#logos {
|
115
|
+
text-align:center;
|
116
|
+
border-top: 1px solid black;
|
117
|
+
margin:10px;
|
118
|
+
padding-top:20px;;
|
119
|
+
}
|
120
|
+
|
121
|
+
#mainText {
|
122
|
+
margin-left:10px;
|
123
|
+
margin-right:10px;
|
124
|
+
}
|
125
|
+
|
126
|
+
#middle {
|
127
|
+
margin-left:130px;
|
128
|
+
margin-right:130px;
|
129
|
+
}
|
130
|
+
|
131
|
+
#mainText p, dl {
|
132
|
+
margin-left:10px;
|
133
|
+
}
|
134
|
+
#license {
|
135
|
+
margin:20px;
|
136
|
+
padding:5px;
|
137
|
+
font-variant:small-caps;
|
138
|
+
text-align:justify;
|
139
|
+
border:1px dotted black;
|
140
|
+
}
|
141
|
+
#license p {
|
142
|
+
margin:5px;
|
143
|
+
}
|
144
|
+
|
145
|
+
#foot {
|
146
|
+
margin-top:40px;
|
147
|
+
margin-left:10px;
|
148
|
+
margin-right:10px;
|
149
|
+
border-top: 1px solid black;
|
150
|
+
text-align:center;
|
151
|
+
font-size:x-small;
|
152
|
+
}
|
153
|
+
#foot a {
|
154
|
+
color: #A0A0A4;
|
155
|
+
}
|