icalendar 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +26 -3
- data/docs/api/classes/Array.html +155 -0
- data/docs/api/classes/Bignum.html +148 -0
- data/docs/api/classes/Date.html +172 -0
- data/docs/api/classes/DateTime.html +200 -0
- data/docs/api/classes/Fixnum.html +148 -0
- data/docs/api/classes/Float.html +148 -0
- data/docs/api/classes/HashAttrs.html +212 -0
- data/docs/api/classes/Icalendar/Alarm.html +228 -0
- data/docs/api/classes/Icalendar/Base.html +179 -0
- data/docs/api/classes/Icalendar/Calendar.html +504 -0
- data/docs/api/classes/Icalendar/Component.html +853 -0
- data/docs/api/classes/Icalendar/DateProp.html +187 -0
- data/docs/api/classes/Icalendar/DateProp/ClassMethods.html +195 -0
- data/docs/api/classes/Icalendar/Daylight.html +156 -0
- data/docs/api/classes/Icalendar/Event.html +671 -0
- data/docs/api/classes/Icalendar/Freebusy.html +266 -0
- data/docs/api/classes/Icalendar/Geo.html +211 -0
- data/docs/api/classes/Icalendar/InvalidPropertyValue.html +117 -0
- data/docs/api/classes/Icalendar/Journal.html +443 -0
- data/docs/api/classes/Icalendar/Parameter.html +166 -0
- data/docs/api/classes/Icalendar/Parser.html +352 -0
- data/docs/api/classes/Icalendar/RRule.html +428 -0
- data/docs/api/classes/Icalendar/RRule/Weekday.html +199 -0
- data/docs/api/classes/Icalendar/Standard.html +156 -0
- data/docs/api/classes/Icalendar/Timezone.html +450 -0
- data/docs/api/classes/Icalendar/Todo.html +480 -0
- data/docs/api/classes/Icalendar/TzidSupport.html +118 -0
- data/docs/api/classes/Icalendar/UnknownComponentClass.html +117 -0
- data/docs/api/classes/Icalendar/UnknownPropertyMethod.html +117 -0
- data/docs/api/classes/Object.html +272 -0
- data/docs/api/classes/String.html +148 -0
- data/docs/api/classes/TZInfo.html +119 -0
- data/docs/api/classes/TZInfo/Timezone.html +153 -0
- data/docs/api/classes/TZInfo/TimezonePeriod.html +200 -0
- data/docs/api/classes/TZInfo/TimezoneTransitionInfo.html +229 -0
- data/docs/api/classes/Time.html +180 -0
- data/docs/api/classes/URI.html +111 -0
- data/docs/api/classes/URI/Generic.html +148 -0
- data/docs/api/created.rid +1 -0
- data/docs/api/files/COPYING.html +163 -0
- data/docs/api/files/GPL.html +531 -0
- data/docs/api/files/README.html +401 -0
- data/docs/api/files/lib/hash_attrs_rb.html +107 -0
- data/docs/api/files/lib/icalendar/base_rb.html +108 -0
- data/docs/api/files/lib/icalendar/calendar_rb.html +101 -0
- data/docs/api/files/lib/icalendar/component/alarm_rb.html +101 -0
- data/docs/api/files/lib/icalendar/component/event_rb.html +101 -0
- data/docs/api/files/lib/icalendar/component/freebusy_rb.html +101 -0
- data/docs/api/files/lib/icalendar/component/journal_rb.html +101 -0
- data/docs/api/files/lib/icalendar/component/timezone_rb.html +101 -0
- data/docs/api/files/lib/icalendar/component/todo_rb.html +101 -0
- data/docs/api/files/lib/icalendar/component_rb.html +108 -0
- data/docs/api/files/lib/icalendar/conversions_rb.html +109 -0
- data/docs/api/files/lib/icalendar/helpers_rb.html +101 -0
- data/docs/api/files/lib/icalendar/parameter_rb.html +101 -0
- data/docs/api/files/lib/icalendar/parser_rb.html +110 -0
- data/docs/api/files/lib/icalendar/rrule_rb.html +110 -0
- data/docs/api/files/lib/icalendar/tzinfo_rb.html +101 -0
- data/docs/api/files/lib/icalendar_rb.html +121 -0
- data/docs/api/files/lib/meta_rb.html +107 -0
- data/docs/api/fr_class_index.html +64 -0
- data/docs/api/fr_file_index.html +47 -0
- data/docs/api/fr_method_index.html +123 -0
- data/docs/api/index.html +24 -0
- data/docs/api/rdoc-style.css +208 -0
- data/lib/icalendar.rb +1 -0
- data/lib/icalendar/component.rb +3 -3
- data/lib/icalendar/component/event.rb +1 -1
- data/lib/icalendar/component/freebusy.rb +1 -0
- data/lib/icalendar/conversions.rb +6 -0
- data/lib/icalendar/conversions.rb.orig +144 -0
- data/lib/icalendar/parser.rb +0 -94
- data/lib/icalendar/rrule.rb +133 -0
- data/test/component/timezone_test.rb +1 -1
- data/test/component_test.rb +10 -0
- data/test/conversions_test.rb +4 -4
- data/test/coverage/index.html +272 -0
- data/test/coverage/lib-hash_attrs_rb.html +235 -0
- data/test/coverage/lib-icalendar-base_rb.html +249 -0
- data/test/coverage/lib-icalendar-calendar_rb.html +324 -0
- data/test/coverage/lib-icalendar-component-alarm_rb.html +250 -0
- data/test/coverage/lib-icalendar-component-event_rb.html +353 -0
- data/test/coverage/lib-icalendar-component-freebusy_rb.html +245 -0
- data/test/coverage/lib-icalendar-component-journal_rb.html +278 -0
- data/test/coverage/lib-icalendar-component-timezone_rb.html +326 -0
- data/test/coverage/lib-icalendar-component-todo_rb.html +277 -0
- data/test/coverage/lib-icalendar-component_rb.html +733 -0
- data/test/coverage/lib-icalendar-conversions_rb.html +358 -0
- data/test/coverage/lib-icalendar-parser_rb.html +671 -0
- data/test/coverage/lib-icalendar-rrule_rb.html +357 -0
- data/test/coverage/lib-icalendar_rb.html +243 -0
- data/test/coverage/lib-meta_rb.html +234 -0
- data/test/fixtures/folding.ics +2 -2
- metadata +113 -36
- data/docs/api/STUB +0 -0
@@ -0,0 +1,148 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>Class: URI::Generic</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="classHeader">
|
50
|
+
<table class="header-table">
|
51
|
+
<tr class="top-aligned-row">
|
52
|
+
<td><strong>Class</strong></td>
|
53
|
+
<td class="class-name-in-header">URI::Generic</td>
|
54
|
+
</tr>
|
55
|
+
<tr class="top-aligned-row">
|
56
|
+
<td><strong>In:</strong></td>
|
57
|
+
<td>
|
58
|
+
<a href="../../files/lib/icalendar/conversions_rb.html">
|
59
|
+
lib/icalendar/conversions.rb
|
60
|
+
</a>
|
61
|
+
<br />
|
62
|
+
</td>
|
63
|
+
</tr>
|
64
|
+
|
65
|
+
<tr class="top-aligned-row">
|
66
|
+
<td><strong>Parent:</strong></td>
|
67
|
+
<td>
|
68
|
+
<a href="../Object.html">
|
69
|
+
Object
|
70
|
+
</a>
|
71
|
+
</td>
|
72
|
+
</tr>
|
73
|
+
</table>
|
74
|
+
</div>
|
75
|
+
<!-- banner header -->
|
76
|
+
|
77
|
+
<div id="bodyContent">
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
<div id="contextContent">
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
</div>
|
86
|
+
|
87
|
+
<div id="method-list">
|
88
|
+
<h3 class="section-bar">Methods</h3>
|
89
|
+
|
90
|
+
<div class="name-list">
|
91
|
+
<a href="#M000021">to_ical</a>
|
92
|
+
</div>
|
93
|
+
</div>
|
94
|
+
|
95
|
+
</div>
|
96
|
+
|
97
|
+
|
98
|
+
<!-- if includes -->
|
99
|
+
|
100
|
+
<div id="section">
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
<!-- if method_list -->
|
110
|
+
<div id="methods">
|
111
|
+
<h3 class="section-bar">Public Instance methods</h3>
|
112
|
+
|
113
|
+
<div id="method-M000021" class="method-detail">
|
114
|
+
<a name="M000021"></a>
|
115
|
+
|
116
|
+
<div class="method-heading">
|
117
|
+
<a href="#M000021" class="method-signature">
|
118
|
+
<span class="method-name">to_ical</span><span class="method-args">()</span>
|
119
|
+
</a>
|
120
|
+
</div>
|
121
|
+
|
122
|
+
<div class="method-description">
|
123
|
+
<p><a class="source-toggle" href="#"
|
124
|
+
onclick="toggleCode('M000021-source');return false;">[Source]</a></p>
|
125
|
+
<div class="method-source-code" id="M000021-source">
|
126
|
+
<pre>
|
127
|
+
<span class="ruby-comment cmt"># File lib/icalendar/conversions.rb, line 61</span>
|
128
|
+
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_ical</span>
|
129
|
+
<span class="ruby-node">"#{self}"</span>
|
130
|
+
<span class="ruby-keyword kw">end</span>
|
131
|
+
</pre>
|
132
|
+
</div>
|
133
|
+
</div>
|
134
|
+
</div>
|
135
|
+
|
136
|
+
|
137
|
+
</div>
|
138
|
+
|
139
|
+
|
140
|
+
</div>
|
141
|
+
|
142
|
+
|
143
|
+
<div id="validator-badges">
|
144
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
145
|
+
</div>
|
146
|
+
|
147
|
+
</body>
|
148
|
+
</html>
|
@@ -0,0 +1 @@
|
|
1
|
+
Mon, 08 Feb 2010 22:51:35 -0500
|
@@ -0,0 +1,163 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>File: COPYING</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="fileHeader">
|
50
|
+
<h1>COPYING</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>COPYING
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Sat Dec 27 17:44:32 -0500 2008</td>
|
60
|
+
</tr>
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
<div id="description">
|
72
|
+
<p>
|
73
|
+
Ruby is copyrighted free software by Yukihiro Matsumoto
|
74
|
+
<matz@netlab.jp>. You can redistribute it and/or modify it under
|
75
|
+
either the terms of the GPL (see the file GPL), or the conditions below:
|
76
|
+
</p>
|
77
|
+
<pre>
|
78
|
+
1. You may make and give away verbatim copies of the source form of the
|
79
|
+
software without restriction, provided that you duplicate all of the
|
80
|
+
original copyright notices and associated disclaimers.
|
81
|
+
|
82
|
+
2. You may modify your copy of the software in any way, provided that
|
83
|
+
you do at least ONE of the following:
|
84
|
+
|
85
|
+
a) place your modifications in the Public Domain or otherwise
|
86
|
+
make them Freely Available, such as by posting said
|
87
|
+
modifications to Usenet or an equivalent medium, or by allowing
|
88
|
+
the author to include your modifications in the software.
|
89
|
+
|
90
|
+
b) use the modified software only within your corporation or
|
91
|
+
organization.
|
92
|
+
|
93
|
+
c) give non-standard binaries non-standard names, with
|
94
|
+
instructions on where to get the original software distribution.
|
95
|
+
|
96
|
+
d) make other distribution arrangements with the author.
|
97
|
+
|
98
|
+
3. You may distribute the software in object code or binary form,
|
99
|
+
provided that you do at least ONE of the following:
|
100
|
+
|
101
|
+
a) distribute the binaries and library files of the software,
|
102
|
+
together with instructions (in the manual page or equivalent)
|
103
|
+
on where to get the original distribution.
|
104
|
+
|
105
|
+
b) accompany the distribution with the machine-readable source of
|
106
|
+
the software.
|
107
|
+
|
108
|
+
c) give non-standard binaries non-standard names, with
|
109
|
+
instructions on where to get the original software distribution.
|
110
|
+
|
111
|
+
d) make other distribution arrangements with the author.
|
112
|
+
|
113
|
+
4. You may modify and include the part of the software into any other
|
114
|
+
software (possibly commercial). But some files in the distribution
|
115
|
+
are not written by the author, so that they are not under these terms.
|
116
|
+
|
117
|
+
For the list of those files and their copying conditions, see the
|
118
|
+
file LEGAL.
|
119
|
+
|
120
|
+
5. The scripts and library files supplied as input to or produced as
|
121
|
+
output from the software do not automatically fall under the
|
122
|
+
copyright of the software, but belong to whomever generated them,
|
123
|
+
and may be sold commercially, and may be aggregated with this
|
124
|
+
software.
|
125
|
+
|
126
|
+
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
127
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
128
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
129
|
+
PURPOSE.
|
130
|
+
</pre>
|
131
|
+
|
132
|
+
</div>
|
133
|
+
|
134
|
+
|
135
|
+
</div>
|
136
|
+
|
137
|
+
|
138
|
+
</div>
|
139
|
+
|
140
|
+
|
141
|
+
<!-- if includes -->
|
142
|
+
|
143
|
+
<div id="section">
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
<!-- if method_list -->
|
153
|
+
|
154
|
+
|
155
|
+
</div>
|
156
|
+
|
157
|
+
|
158
|
+
<div id="validator-badges">
|
159
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
160
|
+
</div>
|
161
|
+
|
162
|
+
</body>
|
163
|
+
</html>
|
@@ -0,0 +1,531 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>File: GPL</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="fileHeader">
|
50
|
+
<h1>GPL</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>GPL
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Mon Aug 23 10:35:46 -0400 2004</td>
|
60
|
+
</tr>
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
<div id="description">
|
72
|
+
<pre>
|
73
|
+
GNU GENERAL PUBLIC LICENSE
|
74
|
+
Version 2, June 1991
|
75
|
+
|
76
|
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
77
|
+
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
78
|
+
Everyone is permitted to copy and distribute verbatim copies
|
79
|
+
of this license document, but changing it is not allowed.
|
80
|
+
|
81
|
+
Preamble
|
82
|
+
|
83
|
+
The licenses for most software are designed to take away your
|
84
|
+
</pre>
|
85
|
+
<p>
|
86
|
+
freedom to share and change it. By contrast, the GNU General Public License
|
87
|
+
is intended to guarantee your freedom to share and change free
|
88
|
+
software—to make sure the software is free for all its users. This
|
89
|
+
General Public License applies to most of the Free Software
|
90
|
+
Foundation‘s software and to any other program whose authors commit
|
91
|
+
to using it. (Some other Free Software Foundation software is covered by
|
92
|
+
the GNU Library General Public License instead.) You can apply it to your
|
93
|
+
programs, too.
|
94
|
+
</p>
|
95
|
+
<pre>
|
96
|
+
When we speak of free software, we are referring to freedom, not
|
97
|
+
</pre>
|
98
|
+
<p>
|
99
|
+
price. Our General Public Licenses are designed to make sure that you have
|
100
|
+
the freedom to distribute copies of free software (and charge for this
|
101
|
+
service if you wish), that you receive source code or can get it if you
|
102
|
+
want it, that you can change the software or use pieces of it in new free
|
103
|
+
programs; and that you know you can do these things.
|
104
|
+
</p>
|
105
|
+
<pre>
|
106
|
+
To protect your rights, we need to make restrictions that forbid
|
107
|
+
</pre>
|
108
|
+
<p>
|
109
|
+
anyone to deny you these rights or to ask you to surrender the rights.
|
110
|
+
These restrictions translate to certain responsibilities for you if you
|
111
|
+
distribute copies of the software, or if you modify it.
|
112
|
+
</p>
|
113
|
+
<pre>
|
114
|
+
For example, if you distribute copies of such a program, whether
|
115
|
+
</pre>
|
116
|
+
<p>
|
117
|
+
gratis or for a fee, you must give the recipients all the rights that you
|
118
|
+
have. You must make sure that they, too, receive or can get the source
|
119
|
+
code. And you must show them these terms so they know their rights.
|
120
|
+
</p>
|
121
|
+
<pre>
|
122
|
+
We protect your rights with two steps: (1) copyright the software, and
|
123
|
+
</pre>
|
124
|
+
<p>
|
125
|
+
(2) offer you this license which gives you legal permission to copy,
|
126
|
+
distribute and/or modify the software.
|
127
|
+
</p>
|
128
|
+
<pre>
|
129
|
+
Also, for each author's protection and ours, we want to make certain
|
130
|
+
</pre>
|
131
|
+
<p>
|
132
|
+
that everyone understands that there is no warranty for this free software.
|
133
|
+
If the software is modified by someone else and passed on, we want its
|
134
|
+
recipients to know that what they have is not the original, so that any
|
135
|
+
problems introduced by others will not reflect on the original
|
136
|
+
authors’ reputations.
|
137
|
+
</p>
|
138
|
+
<pre>
|
139
|
+
Finally, any free program is threatened constantly by software
|
140
|
+
</pre>
|
141
|
+
<p>
|
142
|
+
patents. We wish to avoid the danger that redistributors of a free program
|
143
|
+
will individually obtain patent licenses, in effect making the program
|
144
|
+
proprietary. To prevent this, we have made it clear that any patent must be
|
145
|
+
licensed for everyone‘s free use or not licensed at all.
|
146
|
+
</p>
|
147
|
+
<pre>
|
148
|
+
The precise terms and conditions for copying, distribution and
|
149
|
+
</pre>
|
150
|
+
<p>
|
151
|
+
modification follow.
|
152
|
+
</p>
|
153
|
+
<pre>
|
154
|
+
GNU GENERAL PUBLIC LICENSE
|
155
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
156
|
+
|
157
|
+
0. This License applies to any program or other work which contains
|
158
|
+
</pre>
|
159
|
+
<p>
|
160
|
+
a notice placed by the copyright holder saying it may be distributed under
|
161
|
+
the terms of this General Public License. The "Program", below,
|
162
|
+
refers to any such program or work, and a "work based on the
|
163
|
+
Program" means either the Program or any derivative work under
|
164
|
+
copyright law: that is to say, a work containing the Program or a portion
|
165
|
+
of it, either verbatim or with modifications and/or translated into another
|
166
|
+
language. (Hereinafter, translation is included without limitation in the
|
167
|
+
term "modification".) Each licensee is addressed as
|
168
|
+
"you".
|
169
|
+
</p>
|
170
|
+
<p>
|
171
|
+
Activities other than copying, distribution and modification are not
|
172
|
+
covered by this License; they are outside its scope. The act of running the
|
173
|
+
Program is not restricted, and the output from the Program is covered only
|
174
|
+
if its contents constitute a work based on the Program (independent of
|
175
|
+
having been made by running the Program). Whether that is true depends on
|
176
|
+
what the Program does.
|
177
|
+
</p>
|
178
|
+
<pre>
|
179
|
+
1. You may copy and distribute verbatim copies of the Program's
|
180
|
+
</pre>
|
181
|
+
<p>
|
182
|
+
source code as you receive it, in any medium, provided that you
|
183
|
+
conspicuously and appropriately publish on each copy an appropriate
|
184
|
+
copyright notice and disclaimer of warranty; keep intact all the notices
|
185
|
+
that refer to this License and to the absence of any warranty; and give any
|
186
|
+
other recipients of the Program a copy of this License along with the
|
187
|
+
Program.
|
188
|
+
</p>
|
189
|
+
<p>
|
190
|
+
You may charge a fee for the physical act of transferring a copy, and you
|
191
|
+
may at your option offer warranty protection in exchange for a fee.
|
192
|
+
</p>
|
193
|
+
<pre>
|
194
|
+
2. You may modify your copy or copies of the Program or any portion
|
195
|
+
</pre>
|
196
|
+
<p>
|
197
|
+
of it, thus forming a work based on the Program, and copy and distribute
|
198
|
+
such modifications or work under the terms of Section 1 above, provided
|
199
|
+
that you also meet all of these conditions:
|
200
|
+
</p>
|
201
|
+
<pre>
|
202
|
+
a) You must cause the modified files to carry prominent notices
|
203
|
+
stating that you changed the files and the date of any change.
|
204
|
+
|
205
|
+
b) You must cause any work that you distribute or publish, that in
|
206
|
+
whole or in part contains or is derived from the Program or any
|
207
|
+
part thereof, to be licensed as a whole at no charge to all third
|
208
|
+
parties under the terms of this License.
|
209
|
+
|
210
|
+
c) If the modified program normally reads commands interactively
|
211
|
+
when run, you must cause it, when started running for such
|
212
|
+
interactive use in the most ordinary way, to print or display an
|
213
|
+
announcement including an appropriate copyright notice and a
|
214
|
+
notice that there is no warranty (or else, saying that you provide
|
215
|
+
a warranty) and that users may redistribute the program under
|
216
|
+
these conditions, and telling the user how to view a copy of this
|
217
|
+
License. (Exception: if the Program itself is interactive but
|
218
|
+
does not normally print such an announcement, your work based on
|
219
|
+
the Program is not required to print an announcement.)
|
220
|
+
</pre>
|
221
|
+
<p>
|
222
|
+
These requirements apply to the modified work as a whole. If identifiable
|
223
|
+
sections of that work are not derived from the Program, and can be
|
224
|
+
reasonably considered independent and separate works in themselves, then
|
225
|
+
this License, and its terms, do not apply to those sections when you
|
226
|
+
distribute them as separate works. But when you distribute the same
|
227
|
+
sections as part of a whole which is a work based on the Program, the
|
228
|
+
distribution of the whole must be on the terms of this License, whose
|
229
|
+
permissions for other licensees extend to the entire whole, and thus to
|
230
|
+
each and every part regardless of who wrote it.
|
231
|
+
</p>
|
232
|
+
<p>
|
233
|
+
Thus, it is not the intent of this section to claim rights or contest your
|
234
|
+
rights to work written entirely by you; rather, the intent is to exercise
|
235
|
+
the right to control the distribution of derivative or collective works
|
236
|
+
based on the Program.
|
237
|
+
</p>
|
238
|
+
<p>
|
239
|
+
In addition, mere aggregation of another work not based on the Program with
|
240
|
+
the Program (or with a work based on the Program) on a volume of a storage
|
241
|
+
or distribution medium does not bring the other work under the scope of
|
242
|
+
this License.
|
243
|
+
</p>
|
244
|
+
<pre>
|
245
|
+
3. You may copy and distribute the Program (or a work based on it,
|
246
|
+
</pre>
|
247
|
+
<p>
|
248
|
+
under Section 2) in object code or executable form under the terms of
|
249
|
+
Sections 1 and 2 above provided that you also do one of the following:
|
250
|
+
</p>
|
251
|
+
<pre>
|
252
|
+
a) Accompany it with the complete corresponding machine-readable
|
253
|
+
source code, which must be distributed under the terms of Sections
|
254
|
+
1 and 2 above on a medium customarily used for software interchange; or,
|
255
|
+
|
256
|
+
b) Accompany it with a written offer, valid for at least three
|
257
|
+
years, to give any third party, for a charge no more than your
|
258
|
+
cost of physically performing source distribution, a complete
|
259
|
+
machine-readable copy of the corresponding source code, to be
|
260
|
+
distributed under the terms of Sections 1 and 2 above on a medium
|
261
|
+
customarily used for software interchange; or,
|
262
|
+
|
263
|
+
c) Accompany it with the information you received as to the offer
|
264
|
+
to distribute corresponding source code. (This alternative is
|
265
|
+
allowed only for noncommercial distribution and only if you
|
266
|
+
received the program in object code or executable form with such
|
267
|
+
an offer, in accord with Subsection b above.)
|
268
|
+
</pre>
|
269
|
+
<p>
|
270
|
+
The source code for a work means the preferred form of the work for making
|
271
|
+
modifications to it. For an executable work, complete source code means all
|
272
|
+
the source code for all modules it contains, plus any associated interface
|
273
|
+
definition files, plus the scripts used to control compilation and
|
274
|
+
installation of the executable. However, as a special exception, the source
|
275
|
+
code distributed need not include anything that is normally distributed (in
|
276
|
+
either source or binary form) with the major components (compiler, kernel,
|
277
|
+
and so on) of the operating system on which the executable runs, unless
|
278
|
+
that component itself accompanies the executable.
|
279
|
+
</p>
|
280
|
+
<p>
|
281
|
+
If distribution of executable or object code is made by offering access to
|
282
|
+
copy from a designated place, then offering equivalent access to copy the
|
283
|
+
source code from the same place counts as distribution of the source code,
|
284
|
+
even though third parties are not compelled to copy the source along with
|
285
|
+
the object code.
|
286
|
+
</p>
|
287
|
+
<pre>
|
288
|
+
4. You may not copy, modify, sublicense, or distribute the Program
|
289
|
+
</pre>
|
290
|
+
<p>
|
291
|
+
except as expressly provided under this License. Any attempt otherwise to
|
292
|
+
copy, modify, sublicense or distribute the Program is void, and will
|
293
|
+
automatically terminate your rights under this License. However, parties
|
294
|
+
who have received copies, or rights, from you under this License will not
|
295
|
+
have their licenses terminated so long as such parties remain in full
|
296
|
+
compliance.
|
297
|
+
</p>
|
298
|
+
<pre>
|
299
|
+
5. You are not required to accept this License, since you have not
|
300
|
+
</pre>
|
301
|
+
<p>
|
302
|
+
signed it. However, nothing else grants you permission to modify or
|
303
|
+
distribute the Program or its derivative works. These actions are
|
304
|
+
prohibited by law if you do not accept this License. Therefore, by
|
305
|
+
modifying or distributing the Program (or any work based on the Program),
|
306
|
+
you indicate your acceptance of this License to do so, and all its terms
|
307
|
+
and conditions for copying, distributing or modifying the Program or works
|
308
|
+
based on it.
|
309
|
+
</p>
|
310
|
+
<pre>
|
311
|
+
6. Each time you redistribute the Program (or any work based on the
|
312
|
+
</pre>
|
313
|
+
<p>
|
314
|
+
Program), the recipient automatically receives a license from the original
|
315
|
+
licensor to copy, distribute or modify the Program subject to these terms
|
316
|
+
and conditions. You may not impose any further restrictions on the
|
317
|
+
recipients’ exercise of the rights granted herein. You are not
|
318
|
+
responsible for enforcing compliance by third parties to this License.
|
319
|
+
</p>
|
320
|
+
<pre>
|
321
|
+
7. If, as a consequence of a court judgment or allegation of patent
|
322
|
+
</pre>
|
323
|
+
<p>
|
324
|
+
infringement or for any other reason (not limited to patent issues),
|
325
|
+
conditions are imposed on you (whether by court order, agreement or
|
326
|
+
otherwise) that contradict the conditions of this License, they do not
|
327
|
+
excuse you from the conditions of this License. If you cannot distribute so
|
328
|
+
as to satisfy simultaneously your obligations under this License and any
|
329
|
+
other pertinent obligations, then as a consequence you may not distribute
|
330
|
+
the Program at all. For example, if a patent license would not permit
|
331
|
+
royalty-free redistribution of the Program by all those who receive copies
|
332
|
+
directly or indirectly through you, then the only way you could satisfy
|
333
|
+
both it and this License would be to refrain entirely from distribution of
|
334
|
+
the Program.
|
335
|
+
</p>
|
336
|
+
<p>
|
337
|
+
If any portion of this section is held invalid or unenforceable under any
|
338
|
+
particular circumstance, the balance of the section is intended to apply
|
339
|
+
and the section as a whole is intended to apply in other circumstances.
|
340
|
+
</p>
|
341
|
+
<p>
|
342
|
+
It is not the purpose of this section to induce you to infringe any patents
|
343
|
+
or other property right claims or to contest validity of any such claims;
|
344
|
+
this section has the sole purpose of protecting the integrity of the free
|
345
|
+
software distribution system, which is implemented by public license
|
346
|
+
practices. Many people have made generous contributions to the wide range
|
347
|
+
of software distributed through that system in reliance on consistent
|
348
|
+
application of that system; it is up to the author/donor to decide if he or
|
349
|
+
she is willing to distribute software through any other system and a
|
350
|
+
licensee cannot impose that choice.
|
351
|
+
</p>
|
352
|
+
<p>
|
353
|
+
This section is intended to make thoroughly clear what is believed to be a
|
354
|
+
consequence of the rest of this License.
|
355
|
+
</p>
|
356
|
+
<pre>
|
357
|
+
8. If the distribution and/or use of the Program is restricted in
|
358
|
+
</pre>
|
359
|
+
<p>
|
360
|
+
certain countries either by patents or by copyrighted interfaces, the
|
361
|
+
original copyright holder who places the Program under this License may add
|
362
|
+
an explicit geographical distribution limitation excluding those countries,
|
363
|
+
so that distribution is permitted only in or among countries not thus
|
364
|
+
excluded. In such case, this License incorporates the limitation as if
|
365
|
+
written in the body of this License.
|
366
|
+
</p>
|
367
|
+
<pre>
|
368
|
+
9. The Free Software Foundation may publish revised and/or new versions
|
369
|
+
</pre>
|
370
|
+
<p>
|
371
|
+
of the General Public License from time to time. Such new versions will be
|
372
|
+
similar in spirit to the present version, but may differ in detail to
|
373
|
+
address new problems or concerns.
|
374
|
+
</p>
|
375
|
+
<p>
|
376
|
+
Each version is given a distinguishing version number. If the Program
|
377
|
+
specifies a version number of this License which applies to it and
|
378
|
+
"any later version", you have the option of following the terms
|
379
|
+
and conditions either of that version or of any later version published by
|
380
|
+
the Free Software Foundation. If the Program does not specify a version
|
381
|
+
number of this License, you may choose any version ever published by the
|
382
|
+
Free Software Foundation.
|
383
|
+
</p>
|
384
|
+
<pre>
|
385
|
+
10. If you wish to incorporate parts of the Program into other free
|
386
|
+
</pre>
|
387
|
+
<p>
|
388
|
+
programs whose distribution conditions are different, write to the author
|
389
|
+
to ask for permission. For software which is copyrighted by the Free
|
390
|
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
391
|
+
make exceptions for this. Our decision will be guided by the two goals of
|
392
|
+
preserving the free status of all derivatives of our free software and of
|
393
|
+
promoting the sharing and reuse of software generally.
|
394
|
+
</p>
|
395
|
+
<pre>
|
396
|
+
NO WARRANTY
|
397
|
+
|
398
|
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
399
|
+
</pre>
|
400
|
+
<p>
|
401
|
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
402
|
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
403
|
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
|
404
|
+
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
405
|
+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
406
|
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
407
|
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
408
|
+
REPAIR OR CORRECTION.
|
409
|
+
</p>
|
410
|
+
<pre>
|
411
|
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
412
|
+
</pre>
|
413
|
+
<p>
|
414
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
415
|
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
416
|
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
417
|
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
418
|
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
419
|
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
420
|
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
421
|
+
POSSIBILITY OF SUCH DAMAGES.
|
422
|
+
</p>
|
423
|
+
<pre>
|
424
|
+
END OF TERMS AND CONDITIONS
|
425
|
+
|
426
|
+
How to Apply These Terms to Your New Programs
|
427
|
+
|
428
|
+
If you develop a new program, and you want it to be of the greatest
|
429
|
+
</pre>
|
430
|
+
<p>
|
431
|
+
possible use to the public, the best way to achieve this is to make it free
|
432
|
+
software which everyone can redistribute and change under these terms.
|
433
|
+
</p>
|
434
|
+
<pre>
|
435
|
+
To do so, attach the following notices to the program. It is safest
|
436
|
+
</pre>
|
437
|
+
<p>
|
438
|
+
to attach them to the start of each source file to most effectively convey
|
439
|
+
the exclusion of warranty; and each file should have at least the
|
440
|
+
"copyright" line and a pointer to where the full notice is found.
|
441
|
+
</p>
|
442
|
+
<pre>
|
443
|
+
<one line to give the program's name and a brief idea of what it does.>
|
444
|
+
Copyright (C) <year> <name of author>
|
445
|
+
|
446
|
+
This program is free software; you can redistribute it and/or modify
|
447
|
+
it under the terms of the GNU General Public License as published by
|
448
|
+
the Free Software Foundation; either version 2 of the License, or
|
449
|
+
(at your option) any later version.
|
450
|
+
|
451
|
+
This program is distributed in the hope that it will be useful,
|
452
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
453
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
454
|
+
GNU General Public License for more details.
|
455
|
+
|
456
|
+
You should have received a copy of the GNU General Public License
|
457
|
+
along with this program; if not, write to the Free Software
|
458
|
+
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
459
|
+
</pre>
|
460
|
+
<p>
|
461
|
+
Also add information on how to contact you by electronic and paper mail.
|
462
|
+
</p>
|
463
|
+
<p>
|
464
|
+
If the program is interactive, make it output a short notice like this when
|
465
|
+
it starts in an interactive mode:
|
466
|
+
</p>
|
467
|
+
<pre>
|
468
|
+
Gnomovision version 69, Copyright (C) year name of author
|
469
|
+
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
470
|
+
This is free software, and you are welcome to redistribute it
|
471
|
+
under certain conditions; type `show c' for details.
|
472
|
+
</pre>
|
473
|
+
<p>
|
474
|
+
The hypothetical commands `show w’ and `show c’ should show the
|
475
|
+
appropriate parts of the General Public License. Of course, the commands
|
476
|
+
you use may be called something other than `show w’ and `show
|
477
|
+
c’; they could even be mouse-clicks or menu items—whatever
|
478
|
+
suits your program.
|
479
|
+
</p>
|
480
|
+
<p>
|
481
|
+
You should also get your employer (if you work as a programmer) or your
|
482
|
+
school, if any, to sign a "copyright disclaimer" for the program,
|
483
|
+
if necessary. Here is a sample; alter the names:
|
484
|
+
</p>
|
485
|
+
<pre>
|
486
|
+
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
487
|
+
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
488
|
+
|
489
|
+
<signature of Ty Coon>, 1 April 1989
|
490
|
+
Ty Coon, President of Vice
|
491
|
+
</pre>
|
492
|
+
<p>
|
493
|
+
This General Public License does not permit incorporating your program into
|
494
|
+
proprietary programs. If your program is a subroutine library, you may
|
495
|
+
consider it more useful to permit linking proprietary applications with the
|
496
|
+
library. If this is what you want to do, use the GNU Library General Public
|
497
|
+
License instead of this License.
|
498
|
+
</p>
|
499
|
+
|
500
|
+
</div>
|
501
|
+
|
502
|
+
|
503
|
+
</div>
|
504
|
+
|
505
|
+
|
506
|
+
</div>
|
507
|
+
|
508
|
+
|
509
|
+
<!-- if includes -->
|
510
|
+
|
511
|
+
<div id="section">
|
512
|
+
|
513
|
+
|
514
|
+
|
515
|
+
|
516
|
+
|
517
|
+
|
518
|
+
|
519
|
+
|
520
|
+
<!-- if method_list -->
|
521
|
+
|
522
|
+
|
523
|
+
</div>
|
524
|
+
|
525
|
+
|
526
|
+
<div id="validator-badges">
|
527
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
528
|
+
</div>
|
529
|
+
|
530
|
+
</body>
|
531
|
+
</html>
|