Merge lp:~gesha/linaro-license-protection/add-templates-to-multiple-sites-support into lp:~linaro-automation/linaro-license-protection/trunk

Proposed by Georgy Redkozubov
Status: Merged
Approved by: James Tunnicliffe
Approved revision: 95
Merged at revision: 97
Proposed branch: lp:~gesha/linaro-license-protection/add-templates-to-multiple-sites-support
Merge into: lp:~linaro-automation/linaro-license-protection/trunk
Diff against target: 2134 lines (+2006/-0)
22 files modified
templates_releases/404.html (+5/-0)
templates_releases/dir_template.html (+42/-0)
templates_releases/header.html (+19/-0)
templates_releases/license.html (+17/-0)
templates_releases/licenses/linaro.html (+112/-0)
templates_releases/licenses/linaro.txt (+1/-0)
templates_releases/licenses/nolicense.html (+9/-0)
templates_releases/licenses/samsung.html (+112/-0)
templates_releases/licenses/samsung.txt (+268/-0)
templates_releases/licenses/ste.html (+119/-0)
templates_releases/licenses/ste.txt (+299/-0)
templates_snapshots/404.html (+5/-0)
templates_snapshots/dir_template.html (+42/-0)
templates_snapshots/header.html (+19/-0)
templates_snapshots/license.html (+17/-0)
templates_snapshots/licenses/linaro.html (+112/-0)
templates_snapshots/licenses/linaro.txt (+1/-0)
templates_snapshots/licenses/nolicense.html (+9/-0)
templates_snapshots/licenses/samsung.html (+112/-0)
templates_snapshots/licenses/samsung.txt (+268/-0)
templates_snapshots/licenses/ste.html (+119/-0)
templates_snapshots/licenses/ste.txt (+299/-0)
To merge this branch: bzr merge lp:~gesha/linaro-license-protection/add-templates-to-multiple-sites-support
Reviewer Review Type Date Requested Status
James Tunnicliffe (community) Approve
Review via email: mp+117870@code.launchpad.net

Description of the change

This branch adds per-site templates for multi-sites support.

To post a comment you must log in.
Revision history for this message
James Tunnicliffe (dooferlad) wrote :

Looks fine

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added directory 'releases'
=== added directory 'snapshots'
=== added directory 'templates_releases'
=== added file 'templates_releases/404.html'
--- templates_releases/404.html 1970-01-01 00:00:00 +0000
+++ templates_releases/404.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,5 @@
1{% extends "header.html" %}
2
3{% block content %}
4Page not found.
5{% endblock %}
06
=== added file 'templates_releases/dir_template.html'
--- templates_releases/dir_template.html 1970-01-01 00:00:00 +0000
+++ templates_releases/dir_template.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,42 @@
1{% extends "header.html" %}
2
3{% block content %}
4{{ header_content|safe }}
5<table>
6 <tr>
7 <th></th><th>Name</th><th>License</th><th>Last modified</th><th>Size</th>
8 <tr><th colspan="5"><hr></th>
9 </tr>
10 {% if up_dir != None %}
11 <tr>
12 <td>
13 <img src="{{ STATIC_URL }}/static/go-up.png" alt="Parent Directory"/>
14 </td>
15 <td><a href="{{ up_dir }}">Parent Directory</a></td>
16 <td></td>
17 <td></td>
18 <td></td>
19 </tr>
20 {% endif %}
21
22{% for value in dirlist %}
23 <tr>
24 <td>
25 <img src="{{ STATIC_URL }}/static/{{ value.type }}.png" alt="{{ value.type }}"/>
26 </td>
27 <td><a href="{{ value.url }}">{{ value.name }}</a></td>
28 <td>
29 {% if value.license_digest_list == "OPEN" %}
30 <i>open</i>
31 {% else %}
32 {% for license in value.license_list %}
33 {{ license.theme }}
34 {% endfor %}
35 {% endif %}
36 </td>
37 <td>{{ value.mtime }}</td>
38 <td>{% if value.type != 'folder' %}{{ value.size }}{% endif %}</td>
39 </tr>
40{% endfor %}
41</table>
42{% endblock %}
043
=== added file 'templates_releases/folder.gif'
1Binary files templates_releases/folder.gif 1970-01-01 00:00:00 +0000 and templates_releases/folder.gif 2012-08-02 11:02:22 +0000 differ44Binary files templates_releases/folder.gif 1970-01-01 00:00:00 +0000 and templates_releases/folder.gif 2012-08-02 11:02:22 +0000 differ
=== added file 'templates_releases/header.html'
--- templates_releases/header.html 1970-01-01 00:00:00 +0000
+++ templates_releases/header.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,19 @@
1<head>
2 {% if dl != None %}
3 <meta http-equiv="REFRESH" content="0;url={{ dl }}">
4 {% endif %}
5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <title>Linaro Releases</title>
7 <link rel="stylesheet" type="text/css" href="resources/css/ext-all.css" />
8 <link href="http://www.linaro.org/remote/css/init.css" rel="stylesheet" type="text/css" >
9 <link href="http://www.linaro.org/remote/css/remote.css" rel="stylesheet" type="text/css" >
10 <script language="javascript" type="text/javascript" src="http://www.linaro.org/remote/js/linarofamily.js"></script>
11</head>
12<body>
13<div id="head">
14 <h1>Linaro Releases</h1>
15</div>
16<div id="content">
17 {% block content %}{% endblock %}
18</body>
19
020
=== added file 'templates_releases/license.html'
--- templates_releases/license.html 1970-01-01 00:00:00 +0000
+++ templates_releases/license.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,17 @@
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3<html>
4<head>
5 {% block header %}{% endblock %}
6</head>
7<body>
8 {% block content-header %}{% endblock %}
9 {{ license.text|safe }}
10 {% block content-footer-top %}{% endblock %}
11 <form action="/accept-license?lic={{ license.digest }}&url={{ url }}" method="post">
12 {% csrf_token %}
13 <input class="button button-accept" type="submit" value="Accept" name="accept" /> <input class="button button-decline" type="submit" value="Reject" name="reject"/>
14 </form>
15 {% block content-footer-bottom %}{% endblock %}
16</body>
17</html>
018
=== added directory 'templates_releases/licenses'
=== added file 'templates_releases/licenses/linaro.html'
--- templates_releases/licenses/linaro.html 1970-01-01 00:00:00 +0000
+++ templates_releases/licenses/linaro.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,112 @@
1{% extends "license.html" %}
2
3{% block header %}
4<title>License Agreement</title>
5<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6<style language="text/css">
7 html, body {
8// background: #aaa;
9 color: black;
10 margin: 0;
11 padding: 0;
12 font-size: 11pt;
13 font-family: Sans;
14 }
15
16 div#head {
17 height: 110px;
18 background: white;
19 padding: 2em;
20 }
21
22 h1 {
23 padding-left: 200px;
24 margin: 0;
25 color: #444;
26 font-size: 140%;
27 font-weight: bold;
28 text-align: center;
29 background-image: url(/static/linaro.png);
30 background-repeat: no-repeat;
31 height: 110px;
32 }
33
34 #content {
35 margin: 0 auto;
36 min-width: 600px;
37 max-width: 920px;
38 }
39
40 h2 {
41 font-size: 120%;
42 }
43
44 #license-text {
45 background: white;
46 color: black;
47 margin: 2em;
48 padding: 2em;
49 text-align: left;
50 -moz-border-radius: 10px;
51 -webkit-border-radius: 10px;
52 border-radius: 10px;
53 }
54
55 #actions {
56 padding: 2em;
57 font-size: 80%;
58 margin-bottom: 4em;
59 }
60
61 #actions .button {
62 background: #e80;
63 color: white;
64 text-decoration: none;
65 font-weight: bold;
66 padding: 10px;
67 margin-left: 10px;
68 float: right;
69 font-size: 110%;
70 -moz-border-radius: 4px;
71 -webkit-border-radius: 4px;
72 border-radius: 4px;
73 }
74
75 #actions .button-decline:hover {
76 background: #f90;
77 }
78
79 #actions .button-accept {
80 background: #8b4;
81 }
82
83 #actions .button-accept:hover {
84 background: #9c5;
85 }
86</style>
87{% endblock %}
88
89{% block content-header %}
90<div id="head">
91<h1>
92</h1>
93</div>
94
95<div id="content">
96
97<div id="license-text">
98{% endblock %}
99{% block content-footer-top %}
100 </div><!-- license-text -->
101
102 <div id="actions">
103
104 <div style="float: left;">If accepting the license doesn't work, enable
105 cookies in your browser.</div><br />
106{% endblock %}
107{% block content-footer-bottom %}
108 </div>
109
110 </div><!-- content -->
111{% endblock %}
112
0113
=== added file 'templates_releases/licenses/linaro.txt'
--- templates_releases/licenses/linaro.txt 1970-01-01 00:00:00 +0000
+++ templates_releases/licenses/linaro.txt 2012-08-02 11:02:22 +0000
@@ -0,0 +1,1 @@
1Linaro license
02
=== added file 'templates_releases/licenses/nolicense.html'
--- templates_releases/licenses/nolicense.html 1970-01-01 00:00:00 +0000
+++ templates_releases/licenses/nolicense.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,9 @@
1<html>
2<head>
3 <title>License has not been accepted</title>
4</head>
5<body>
6 <h1>License has not been accepted</h1>
7 <p>Without accepting the license, you can not download the requested files.</p>
8</body>
9</html>
010
=== added file 'templates_releases/licenses/samsung.html'
--- templates_releases/licenses/samsung.html 1970-01-01 00:00:00 +0000
+++ templates_releases/licenses/samsung.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,112 @@
1{% extends "license.html" %}
2
3{% block header %}
4<title>License Agreement</title>
5<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6<style language="text/css">
7 html, body {
8 background: #aaa;
9 color: black;
10 margin: 0;
11 padding: 0;
12 font-size: 11pt;
13 font-family: Sans;
14 }
15
16 div#head {
17 height: 120px;
18 background: #e80;
19 padding: 2em;
20 }
21
22 h1 {
23 padding-left: 200px;
24 margin: 0;
25 color: white;
26 font-size: 140%;
27 font-weight: bold;
28 text-align: center;
29 background-image: url(/static/exynos.png);
30 background-repeat: no-repeat;
31 height: 109px;
32 }
33
34 #content {
35 margin: 0 auto;
36 min-width: 600px;
37 max-width: 920px;
38 }
39
40 h2 {
41 font-size: 120%;
42 }
43
44 #license-text {
45 background: white;
46 color: black;
47 margin: 2em;
48 padding: 2em;
49 overflow: scroll;
50 text-align: left;
51 -moz-border-radius: 10px;
52 -webkit-border-radius: 10px;
53 border-radius: 10px;
54 }
55
56 #actions {
57 padding: 2em;
58 font-size: 80%;
59 margin-bottom: 4em;
60 }
61
62 #actions .button {
63 background: #e80;
64 color: white;
65 text-decoration: none;
66 font-weight: bold;
67 padding: 10px;
68 margin-left: 10px;
69 float: right;
70 font-size: 110%;
71 -moz-border-radius: 4px;
72 -webkit-border-radius: 4px;
73 border-radius: 4px;
74 }
75
76 #actions .button-decline:hover {
77 background: #f90;
78 }
79
80 #actions .button-accept {
81 background: #8b4;
82 }
83
84 #actions .button-accept:hover {
85 background: #9c5;
86 }
87</style>
88{% endblock %}
89
90{% block content-header %}
91<div id="head">
92<h1>
93</h1>
94</div>
95
96<div id="content">
97
98<div id="license-text">
99{% endblock %}
100{% block content-footer-top %}
101</div><!-- license-text -->
102
103<div id="actions">
104
105<div style="float: left;">If accepting the license doesn't work, enable
106cookies in your browser.</div><br />
107{% endblock %}
108{% block content-footer-bottom %}
109</div>
110
111</div><!-- content -->
112{% endblock %}
0113
=== added file 'templates_releases/licenses/samsung.txt'
--- templates_releases/licenses/samsung.txt 1970-01-01 00:00:00 +0000
+++ templates_releases/licenses/samsung.txt 2012-08-02 11:02:22 +0000
@@ -0,0 +1,268 @@
1SAMSUNG DEVELOPMENT TOOL KIT END-USER LICENSE AGREEMENT FOR LINARO
2DEVELOPERS (“Agreement”)
3
4<p>IMPORTANT — PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.</p>
5
6<p>
7 THIS IS A LEGALLY BINDING AGREEMENT BETWEEN YOU, an individual or a
8 legal entity, (“LICENSEE”) AND SAMSUNG ELECTRONICS CO.,
9 LTD. (“SAMSUNG”). BY CLICKING THE "ACCEPT" BUTTON, OR BY DOWNLOADING OR
10 INSTALLING OR OTHERWISE USING THE SOFTWARE, YOU AGREE TO BE BOUND BY THE
11 TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS
12 AGREEMENT OR ARE NOT AUTHORISED TO ACCEPT AND AGREE TO THE TERMS OF THE
13 AGREEMENT ON BEHALF OF YOUR LEGAL ENTITY, DO NOT DOWNLOAD, INSTALL OR
14 OTHERWISE USE THE SOFTWARE.
15</p>
16
17
18<h2>1. DEFINITIONS.</h2>
19<p>
20 <strong>1.1 <em>"Samsung Product"</em></strong> means any of integrated
21 circuit product(s), including but not limited to system on chip products,
22 made by or for Samsung with which the Software was designed to be used.
23</p>
24
25<p>
26 <strong>1.2 <em>"Software"</em></strong> shall mean the software in binary form
27 and all other machine readable materials that are included with such
28 software or intended for use with it, including (a) any updates or error
29 corrections and (b) any documentation including user manuals that you
30 obtain from Samsung via on-line transmission through Linaro’s official websites.
31</p>
32
33<p>
34 <strong>1.3 <em>“Use”</em></strong> means in respect of the Software,
35 the use of (including copying the Software to the extent that such
36 copying is incidental to such use, including installation, backup and
37 execution) the Software, or any part thereof. Use shall specifically
38 exclude: (i) the translation, adaptation, arrangement or other
39 alteration of the Software except as allowed by local legislation
40 implementing Article 6 of the EC Directive on the legal protection of
41 computer programs (91/250/EEC) and then only to the extent necessary to
42 achieve interoperability of an independently created program with other
43 programs; and (ii) the adapting or reverse compiling of the Software for
44 the purpose of error correction.
45</p>
46
47
48<h2>2. LICENSE GRANT; OWNERSHIP</h2>
49
50<p>
51 <strong>2.1 License Grants.</strong> Subject to the terms and conditions
52 of this Agreement, Samsung hereby grants to Licensee, a non-exclusive,
53 non-transferable, limited license, to Use, without right to sublicense
54 or distribute, the Software, solely to the extent required in order to
55 develop and/or test Licensee software applications for use solely with
56 Samsung Product, and only if in compliance with all the provisions
57 herein.
58</p>
59
60<p>
61 <strong>2.2 Restriction on Modification.</strong> Licensee shall not
62 modify, alter, adapt, reverse engineer, decompile, disassemble the
63 Software or make any attempts to create non-licensed derivative works from
64 the Software and otherwise use the Software in any manner not specifically
65 authorized by this Agreement.
66</p>
67
68<p>
69 Licensee acknowledges that the Software may contain open source
70 software, subject to applicable open source licenses, provided by
71 Samsung for Licensee’s convenience. It is Licensee’s responsibility to
72 comply with the terms and conditions, including but not limited to any
73 modification rights, of those licenses. Source codes for these portions
74 of the Software may be obtained separately through applicable sources.
75</p>
76
77<p>
78 Except for those portions of the Software clearly specified as open
79 source, Licensee represents and warrants that it will not take any
80 action that would create obligations that would conflict with Licensee's
81 obligations hereunder, including without limitation, using the Software
82 to merge with, link to, make function calls to, or share data structures
83 with software available under an Open Source License Licensee shall
84 defend and indemnify Samsung against all liabilities, losses, damages,
85 costs and expenses relating to or arising out of a breach by Licensee of
86 the foregoing representation and warranty. Open Source Licenses
87 includes, without limitation, a software license that requires as a
88 condition of use, modification, and/or distribution of such software
89 that such software or other software incorporated into, derived from or
90 distributed with such software be (a) disclosed or distributed in source
91 code form; (b) be licensed for the purpose of making derivative works;
92 or (c) be redistributable at no charge.
93</p>
94
95<p>
96 <strong>2.3 Restriction on Distribution.</strong> Licensee shall not
97 distribute, rent, lease, and/or lend the Software and any copies thereof
98 to any third parties (individuals or legal entities).
99</p>
100
101<p>
102 <strong>2.4 Proprietary Notices.</strong>
103 Licensee shall not remove, efface or obscure any copyright or trademark
104 notices from the Software. Licensee shall include reproductions of the
105 Samsung copyright notice with each copy, if any, of the
106 Software. Licensee acknowledges that any symbols, trademarks, trade
107 names, and service marks adopted by Samsung to identify the Software
108 belong to Samsung and that Licensee shall have no rights therein.
109</p>
110
111<p>
112 <strong>2.5 Ownership.</strong>
113 Samsung and its licensors shall retain all right, title and interest,
114 including all intellectual property rights, in and to the
115 Software. Licensee hereby covenants that it will not assert any claim
116 that the Software infringes any intellectual property right owned or
117 controlled by Licensee.
118</p>
119
120<p>
121 <strong>2.6 No Other Rights Granted.</strong>
122 Apart from the license rights expressly set forth in this Agreement,
123 Samsung does not grant and Licensee does not receive any ownership
124 right, title or interest nor any security interest or other interest in
125 any intellectual property rights relating to the Software, nor in any
126 copy of any part of the foregoing.
127</p>
128
129
130<h2>3. NO WARRANTY OR SUPPORT</h2>
131
132<p>
133 <strong>3.1 No Warranty.</strong>
134 THE SOFTWARE IS OFFERED "AS IS." SAMSUNG AND ITS LICENSORS GRANT AND
135 LICENSEE RECEIVES NO WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, BY
136 STATUTE, COMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE. SAMSUNG
137 SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY,
138 FITNESS FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THE
139 SOFTWARE. WITHOUT LIMITATION OF THE ABOVE, SAMSUNG DISCLAIMS ANY
140 WARRANTY THAT THE SOFTWARE IS BUG OR ERROR-FREE OR WILL OPERATE WITHOUT
141 INTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS
142 THEREFROM INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY OR
143 RELIABILITY.
144</p>
145
146<p>
147 <strong>3.2 No Support.</strong>
148 Nothing in this Agreement shall obligate Samsung to provide any support
149 for the Software. Samsung may, but shall be under no obligation to,
150 correct any defects in the Software and/or provide updates via Linaro’s
151 website. Licensee shall make reasonable efforts to promptly report to
152 Samsung any defects it finds in the Software, as an aid to creating
153 improved revisions of the Software.
154</p>
155
156<p>
157 <strong>3.3 Dangerous Applications.</strong>
158 The Software is not designed, intended, or certified for use in
159 components of systems intended for the operation of weapons, weapons
160 systems, nuclear installations, means of mass transportation, aviation,
161 life-support computers or equipment (including resuscitation equipment
162 and surgical implants), pollution control, hazardous substances
163 management, or for any other dangerous application in which the failure
164 of the Software could create a situation where personal injury or death
165 may occur. Licensee understands that use of the Software in such
166 applications is fully at the risk of Licensee.
167</p>
168
169
170<h2>4. TERM AND TERMINATION</h2>
171
172<p>
173 <strong>4.1 Term and Termination.</strong>
174 This Agreement is effective until terminated. Samsung may immediately
175 terminate and cancel this Agreement and the licenses granted hereunder
176 upon written notice to Licensee at any time with or without
177 cause. Licensee may terminate this Agreement at any time by (i)
178 completely removing the Software and any copies thereof from its system
179 and (ii) notifying in writing Samsung of Licensee’s intent to terminate
180 this Agreement.
181</p>
182
183<p>
184 <strong>4.2 Effect of Termination.</strong> Upon any termination of this
185 Agreement, the rights and licenses granted to Licensee under this
186 Agreement shall immediately terminate. Upon termination, Licensee shall
187 destroy all copies of the Software in its possession or control and
188 cease all use.
189</p>
190
191<p>
192 <strong>4.3 Survival.</strong> The provisions of Sections 1, 2.2, 2.3,
193 2.4, 2.5, 2.6, 3, 4, 5, and 6 shall survive the termination of this
194 Agreement.
195</p>
196
197<h2>5. LIMITATION OF LIABILITY</h2>
198
199<p>
200 TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL SAMSUNG OR ANY OF
201 SAMSUNG'S LICENSORS BE LIABLE FOR ANY LOSS, DAMAGE OR INJURY, DIRECT AND
202 INDIRECT, INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED
203 AND ON ANY THEORY OF LIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT
204 (INCLUDING NEGLIGENCE) OR OTHERWISE, ARISING OUT OF THIS AGREEMENT,
205 INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS, EVEN IF ADVISED OF THE
206 POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY
207 NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED
208 REMEDY. IN ADDITION TO THE FOREGOINGS, SAMSUNG HAS NO LIABILITY TO THE
209 LICENSEEE IF THE SOFTWARE INFRINGES OR IS ALLGEDED TO INFRINGE THE RIGHT
210 OF ANY THIRD PARTY.
211</p>
212
213<h2>6. MISCELLANEOUS</h2>
214
215<p>
216 <strong>6.1 Assignment.</strong> Licensee may not assign this Agreement
217 or any rights or obligation hereunder, directly or indirectly, by
218 operation of law or otherwise, without the prior written consent of
219 Samsung, and any such attempted assignment shall be void.
220</p>
221
222<p>
223 <strong>6.2 Governing Law; Venue.</strong>
224 This Agreement shall be governed by and construed in accordance with the
225 laws of the Republic of Korea, excluding conflict of laws provisions
226 which may direct the application of another jurisdiction’s laws and the
227 United Nations Convention on Contracts for the International Sale of
228 Goods. All disputes, controversies or differences which may arise out of
229 or in relation to or in connection with this Agreement, shall be shall
230 be submit to the jurisdiction of the Suwon Civil Court, Korea.
231</p>
232
233<p>
234 <strong>6.3 Severability.</strong>
235 All terms and provisions of this Agreement shall, if possible, be
236 construed in a manner which makes them valid, but in the event any term
237 or provision of this Agreement is found by a court of competent
238 jurisdiction to be illegal or unenforceable, the validity or
239 enforceability of the remainder of this Agreement shall not be affected
240 if the illegal or unenforceable provision does not materially affect the
241 intent of this Agreement. If the illegal or unenforceable provision
242 materially affects the intent of the parties to this Agreement, this
243 Agreement shall become terminated.
244</p>
245
246<p>
247 <strong>6.4 Equitable Relief.</strong>
248 Licensee hereby acknowledges that its breach of this Agreement would
249 cause irreparable harm and significant injury to Samsung that may be
250 difficult to ascertain and that a remedy at law would be
251 inadequate. Accordingly, Licensee agrees that Samsung shall have the
252 right to seek and obtain immediate injunctive relief to enforce
253 obligations under the Agreement in addition to any other rights and
254 remedies it may have.
255</p>
256
257<p>
258 <strong>6.5 Export Regulations.</strong>
259 Licensee agrees and warrants that it shall comply, at its own expense,
260 with any applicable export and import laws, restrictions, national
261 security controls and regulations.
262</p>
263
264<p>
265 <strong>6.6 Entire Agreement.</strong>
266 This Agreement sets forth the entire Agreement between Samsung and
267 Licensee relating to this subject matter.
268</p>
0269
=== added file 'templates_releases/licenses/ste.html'
--- templates_releases/licenses/ste.html 1970-01-01 00:00:00 +0000
+++ templates_releases/licenses/ste.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,119 @@
1{% extends "license.html" %}
2
3{% block header %}
4<title>License Agreement</title>
5<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6<style language="text/css">
7 html, body {
8 background: white;
9 color: black;
10 margin: 0;
11 padding: 0;
12 font-size: 11pt;
13 font-family: Sans;
14 }
15
16 div#head {
17 height: 180px;
18 width: 100%;
19 background-image: url(/static/igloo-bg.png);
20 background-repeat: repeat-x;
21 }
22
23 h1 {
24 height: 180px;
25 padding: 2em;
26 padding-left: 180px;
27 margin: 0;
28 margin-right: 1em;
29 margin-left: 1em;
30 color:white;
31 font-size: 140%;
32 font-weight: bold;
33 text-align: left;
34 background-image: url(/static/igloo.png);
35 background-repeat: no-repeat;
36 }
37
38 #content {
39 margin: 0 auto;
40 min-width: 600px;
41 max-width: 920px;
42 }
43
44 h2 {
45 font-size: 120%;
46 }
47
48 #license-text {
49 background: white;
50 color: black;
51 margin: 2em;
52 padding: 2em;
53 height: 50%;
54 overflow: scroll;
55 text-align: left;
56 -moz-border-radius: 10px;
57 -webkit-border-radius: 10px;
58 border-radius: 10px;
59 }
60
61 #actions {
62 padding: 2em;
63 font-size: 80%;
64 margin-bottom: 2em;
65 }
66
67 #actions .button {
68 background: #08e;
69 color: white;
70 text-decoration: none;
71 font-weight: bold;
72 padding: 10px;
73 margin-left: 10px;
74 float: right;
75 font-size: 110%;
76 -moz-border-radius: 4px;
77 -webkit-border-radius: 4px;
78 border-radius: 4px;
79 }
80
81 #actions .button-decline:hover {
82 background: #09f;
83 }
84
85 #actions .button-accept {
86 background: #8b4;
87 }
88
89 #actions .button-accept:hover {
90 background: #9c5;
91 }
92</style>
93{% endblock %}
94
95{% block content-header %}
96<div id="head">
97<h1>
98</h1>
99
100
101</div>
102
103<div id="content">
104
105<div id="license-text">
106{% endblock %}
107{% block content-footer-top %}
108 </div><!-- license-text -->
109
110 <div id="actions">
111
112 <div style="float: left;">If accepting the license doesn't work, enable
113 cookies in your browser.</div><br />
114{% endblock %}
115{% block content-footer-bottom %}
116 </div>
117
118 </div><!-- content -->
119{% endblock %}
0120
=== added file 'templates_releases/licenses/ste.txt'
--- templates_releases/licenses/ste.txt 1970-01-01 00:00:00 +0000
+++ templates_releases/licenses/ste.txt 2012-08-02 11:02:22 +0000
@@ -0,0 +1,299 @@
1SNOWBALL CLICK-WRAP LIMITED LICENSE AGREEMENT FOR APPLICATION DEVELOPERS
2("Agreement") ST-Ericsson 2011-10-27
3
4<p>
5 This Agreement is a legally binding contract between you - either an
6 individual or a legal entity - (hereinafter referred to as "Licensee")
7 and ST-Ericsson SA, a company incorporated under the laws of
8 Switzerland (hereinafter referred to as "ST-Ericsson").
9</p>
10
11<p>
12 IMPORTANT - PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. THIS IS A
13 LEGALLY BINDING AGREEMENT. BY CLICKING THE "ACCEPT" BUTTON BELOW, OR
14 BY DOWNLOADING OR INSTALLING OR OTHERWISE USING THE SOFTWARE, YOU
15 AGREE TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE
16 TO THE TERMS OF THIS AGREEMENT OR ARE NOT AUTHORISED TO ACCEPT AND
17 AGREE TO THE TERMS OF THE AGREEMENT, DO NOT DOWNLOAD, INSTALL OR
18 OTHERWISE USE THE SOFTWARE.
19</p>
20
21<p>
22 ST-Ericsson and Licensee are each hereinafter also referred to as the
23 "Party" and, collectively, as the "Parties."
24</p>
25
26<h2>
27 1 DEFINITIONS
28</h2>
29
30<p>
31 1.1 Wherever used in this Agreement, the following terms shall have
32 the meanings set forth below:
33</p>
34
35<p>
36 "Licensee's Applications" means applications and other software
37 developed by Licensee which are intended to interface with and/or run
38 on the Snowball Kit.
39</p>
40
41<p>
42 "Limited License Purpose" shall mean the limited license granted under Article 2.1 below.
43</p>
44
45<p>
46 "Snowball Kit" means the hardware products "SKY-S9500-ULP-Cxy"
47 where x and y are integers between "0" and "9".
48</p>
49
50<p>
51 "Software" shall mean the ST-Ericsson's software for the A9500
52 platform delivered in binary or in source for the related header
53 files, including any copies and new releases thereof.
54</p>
55
56<p>
57 1.2 Other capitalized expressions used in this Agreement shall have
58 the meanings respectively assigned to them elsewhere in this
59 Agreement.
60</p>
61
62<p>
63 1.3 Words indicating the singular only also include the plural and
64 vice-versa, where the context so requires.
65</p>
66
67<p>
68 1.4 The headings of the Articles in this Agreement are for convenience
69 only and shall not affect the interpretation of this Agreement.
70</p>
71
72<h2>2 LICENSE GRANT</h2>
73
74<p>
75 2.1 Subject to the terms and conditions in this Agreement, STEricsson
76 hereby grants to Licensee a non-exclusive, non-transferable, limited
77 license to use and reproduce the Software solely to the extent
78 required in order to (i) develop Licensee's Applications that
79 interface with and/or run with the Snowball Kit; and (ii) integrate
80 the Software with Licensee Application and/or third party software;
81 and (iii) conduct development testing of the Licensee's Applications'
82 or third party software operation in conjunction with the Snowball Kit
83 and/or Licensee's demonstration of such Licensee's Applications in
84 conjunction with the Snowball Kit (hereinafter "Limited License
85 Purpose"). The Licensee is entitled to flash the Software on a
86 commercial product containg the Snowball Kit. The aforesaid license to
87 the Software is provided that all and any use of the Software is
88 solely and exclusively used on the Snowball Kit.
89</p>
90
91<p>
92 2.2 Some portion of the Software might contain Open Source
93 Software. Such Open Source Software might be subject to Open Source
94 Terms applicable for each such portion, as further specified in the
95 Software. Such Open Source Software is supplied to Licensee solely
96 under the applicable Open Source Terms and is not subject to the terms
97 of this Agreement.
98</p>
99
100<p>
101 2.3 Licensee shall not, and shall not permit any third party to alter,
102 change, modify, adapt, decompile, disassemble, compile or reverse
103 engineer or remove or circumvent any protection or other restrictive
104 technology mechanism of the the Software and/or any and all parts
105 thereof, or otherwise use, sub-license, assign or pledge the Software
106 and/or any and all parts thereof other than what is expressly
107 permitted in accordance with this Agreement.
108</p>
109
110<p>
111 2.4 ST-Ericsson shall retain on behalf of itself or the original owner
112 all right title and interest to any ST-Ericsson Intellectual Property
113 Rights, including but not limited to any patents, trademarks,
114 copyrights, and trade secret rights, and title to copies of any and
115 all media bearing the Software or the Snowball Kit and/or any and all
116 parts thereof, and the Licensee acquires no interest under this
117 Agreement to any ST-Ericsson Intellectual Property Rights or other
118 rights other than the Limited License Purpose expressly set forth in
119 this Article 2.
120</p>
121
122<p>
123 2.5 Notwithstanding anything to the contrary herein, nothing contained
124 hereunder shall be construed as conferring any right, license or
125 immunity, either directly or by implication, estoppel or otherwise to
126 Licensee or any third party: (i) under any intellectual property
127 rights of any third party; specifically, without limiting the
128 generality of the foregoing, the sale and use of the Products are not
129 licensed under any patents of Telefonaktiebolaget LM Ericsson, or any
130 affiliates of such company; (ii) under any intellectual property
131 rights of STEricsson other than explicitly granted under in this
132 Agreement; or (iii) with respect to any trademark, trade or brand
133 name, a corporate name of ST-Ericsson, or any other name or mark, or
134 contraction abbreviation or simulation thereof.
135</p>
136
137
138<h2>3 DELIVERY</h2>
139
140<p>
141 3.1 All deliveries of the Software are EX-WORKS (Incoterms 2000) at
142 ST-Ericsson's indicated facility.
143</p>
144
145
146<h2>4 NO REPRESENTATIONS OR WARRANTIES</h2>
147
148<p>
149 4.1 The Software is delivered "as is" and all representations and
150 warranties, express or implied, are hereby disclaimed, including, but
151 not limited to that:
152</p>
153
154<p>
155 a) the Software or any part thereof is accurate or reliable for any
156 purposes whatsoever; and
157</p>
158
159<p>
160 b) the use of the Software does not infringe any rights that may be
161 held by a third party in respect of any such information.
162</p>
163
164<p>
165 4.2 Licensee acknowledges and agrees that any use of the Software
166 and/or the Snowball Kit, or any other part thereof, or any use of
167 Licensee's Applications is at Licensee's sole risk.
168</p>
169
170<h2>5 WARRANTY DISCLAIMER AND GENERAL LIMITATION OF LIABILITY</h2>
171
172<p>
173 5.1 THE SOFTWARE AND/OR SNOWBALL KIT AND ANY AND ALL PARTS THEREOF ARE
174 PROVIDED "AS IS". ST-ERICSSON MAKES NO REPRESENTATIONS OR WARRANTIES
175 WITH RESPECT TO THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF
176 WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, IMPLIED
177 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
178 PURPOSE. SPECIFICALLY, WITHOUT LIMITING THE GENERALITY OF THE
179 FOREGOING, ST-ERICSSON MAKES NO REPRESENTATION OR WARRANTY THAT (I)
180 THE USE OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF WILL
181 BE UNINTERRUPTED OR ERROR FREE, AND OR (II) ANY USE AND OR
182 DISTRIBUTION OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF,
183 WHETHER INTEGRATED INTO OTHER EQUIPMENT OR NOT, ARE FREE FROM
184 INFRINGEMENT OF ANY THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, AND IT
185 SHALL BE THE SOLE RESPONSIBILITY OF LICENSEE TO MAKE SUCH
186 DETERMINATION AS IS NECESSARY WITH RESPECT TO THE ACQUISITION OF
187 LICENSES UNDER PATENTS AND OTHER INTELLECTUAL PROPERTY RIGHTS OF THIRD
188 PARTIES. CONSEQUENTLY, IN NO EVENT SHALL ST-ERICSSON, ITS AFFILIATES
189 OR THEIR SUPPLIERS BE LIABLE TO LICENSEE FOR ANY LOSS OR DAMAGES
190 (WHETHER DIRECT, INDRECT OR CONSEQUENTIAL) ARISING FROM ANY USE AND OR
191 DISTRIBUTION OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF,
192 WHETHER INTEGRATED INTO OTHER EQUIPMENT OR NOT, AND OR ARISING BY
193 REASON OF THE FACT THAT THE SOFTWARE AND/OR SNOWBALL KIT AND OR ANY
194 PARTS THEREOF ARE DEFECTIVE OR NON-CONFORMING AND OR ARISING FROM THIS
195 AGREEMENT AND OR ANY BREACH THEREOF.
196</p>
197
198<p>
199 5.2 THE PARTIES AGREE THAT ANY RIGHTS AND REMEDIES THE LICENSEE MAY
200 HAVE AND OR ANY OBLIGATIONS THAT ST-ERICSSON MAY HAVE ACCORDING TO LAW
201 OR OTHERWISE WITH RESPECT TO ERRORS AND DEFECTS IN THE SOFTWARE AND/OR
202 OTHER DELIVERABLES AND/OR IN ANY PART THEREOF SHALL HEREBY BE
203 DISCLAIMED.
204</p>
205
206<h2>
207 6 TERMINATION
208</h2>
209
210<p>
211 6.1 The license and this Agreement are effective until terminated.
212</p>
213
214<p>
215 6.2 Licensee agrees that each of the terms and conditions set out in
216 this Agreement are material and that failure of Licensee to comply
217 with these terms and conditions shall constitute sufficient cause for
218 ST-Ericsson to terminate this Agreement. The aforesaid is without any
219 prejudice to other rights ST-Ericsson may have in case of breach of
220 this Agreement.
221</p>
222
223<p>
224 6.3 In the event of termination of this Agreement Licensee shall
225 immediately destroy all copies of the Software, including all portions
226 and derivatives thereof.
227</p>
228
229<h2>
230 7 EXPORT CONTROL
231</h2>
232
233<p>
234 7.1 Licensee recognizes that the Software or any parts thereof may be
235 subject to import and export regulations in certain
236 countries. Licensee agrees that it will not knowingly export,
237 re-export or import products, technology or Software, or any parts
238 thereof, of ST-Ericsson, directly or indirectly, to any country to the
239 extent export to such country at the time of export requires an export
240 license or other governmental approval under any export control laws
241 and regulations, without first obtaining such license or approval.
242</p>
243
244<h2>
245 8 COMPLIANCE WITH LAWS
246</h2>
247
248<p>
249 8.1 Licensee agrees not to use the Software in violation of, and to
250 comply with any and all applicable law, statute, ordinance or other
251 regulation.
252</p>
253
254<h2>
255 9 ENTIRE AGREEMENT
256</h2>
257
258<p>
259 9.1 This is the entire agreement between Licensee and ST-Ericsson on
260 the subject matter of this Agreement, and supersedes all
261 representations, undertakings and agreements previously made between
262 the Parties with respect to the subject matter of this Agreement.
263</p>
264
265<h2>
266 10 SEVERABILITY
267</h2>
268
269<p>
270 10.1 If a court or agency of competent jurisdiction holds any term of
271 this Agreement invalid, illegal, or unenforceable for any reason, the
272 remainder of this Agreement shall be valid and enforceable and such
273 term shall be substituted by a valid and enforceable provision so as
274 to the best accomplish the objectives of such provision in this
275 Agreement.
276</p>
277
278<h2>
279 11 GOVERNING LAW AND JURISDICTION
280</h2>
281
282<p>
283 11.1 This Agreement shall be governed by and construed in accordance
284 with the laws of Switzerland, without regard to its conflict of laws
285 rules. The application of The United Nations Convention of Contracts
286 for the International Sale of Goods is explicitly excluded.
287</p>
288
289<p>
290 11.2 Any and all disputes, differences or questions arising out of or
291 in connection with this Agreement shall be under the exclusive
292 jurisdiction of the Swiss courts and the venue shall be Geneva.
293</p>
294
295<p>
296 11.3 Notwithstanding the aforesaid, nothing in this Article 11 shall
297 prevent the Parties from seeking any interim or final injunctive or
298 equitable relief by a court of competent jurisdiction.
299</p>
0300
=== added symlink 'templates_releases/licenses/stericsson.html'
=== target is u'ste.html'
=== added symlink 'templates_releases/licenses/stericsson.txt'
=== target is u'ste.txt'
=== added directory 'templates_snapshots'
=== added file 'templates_snapshots/404.html'
--- templates_snapshots/404.html 1970-01-01 00:00:00 +0000
+++ templates_snapshots/404.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,5 @@
1{% extends "header.html" %}
2
3{% block content %}
4Page not found.
5{% endblock %}
06
=== added file 'templates_snapshots/dir_template.html'
--- templates_snapshots/dir_template.html 1970-01-01 00:00:00 +0000
+++ templates_snapshots/dir_template.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,42 @@
1{% extends "header.html" %}
2
3{% block content %}
4{{ header_content|safe }}
5<table>
6 <tr>
7 <th></th><th>Name</th><th>License</th><th>Last modified</th><th>Size</th>
8 <tr><th colspan="5"><hr></th>
9 </tr>
10 {% if up_dir != None %}
11 <tr>
12 <td>
13 <img src="{{ STATIC_URL }}/static/go-up.png" alt="Parent Directory"/>
14 </td>
15 <td><a href="{{ up_dir }}">Parent Directory</a></td>
16 <td></td>
17 <td></td>
18 <td></td>
19 </tr>
20 {% endif %}
21
22{% for value in dirlist %}
23 <tr>
24 <td>
25 <img src="{{ STATIC_URL }}/static/{{ value.type }}.png" alt="{{ value.type }}"/>
26 </td>
27 <td><a href="{{ value.url }}">{{ value.name }}</a></td>
28 <td>
29 {% if value.license_digest_list == "OPEN" %}
30 <i>open</i>
31 {% else %}
32 {% for license in value.license_list %}
33 {{ license.theme }}
34 {% endfor %}
35 {% endif %}
36 </td>
37 <td>{{ value.mtime }}</td>
38 <td>{% if value.type != 'folder' %}{{ value.size }}{% endif %}</td>
39 </tr>
40{% endfor %}
41</table>
42{% endblock %}
043
=== added file 'templates_snapshots/folder.gif'
1Binary files templates_snapshots/folder.gif 1970-01-01 00:00:00 +0000 and templates_snapshots/folder.gif 2012-08-02 11:02:22 +0000 differ44Binary files templates_snapshots/folder.gif 1970-01-01 00:00:00 +0000 and templates_snapshots/folder.gif 2012-08-02 11:02:22 +0000 differ
=== added file 'templates_snapshots/header.html'
--- templates_snapshots/header.html 1970-01-01 00:00:00 +0000
+++ templates_snapshots/header.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,19 @@
1<head>
2 {% if dl != None %}
3 <meta http-equiv="REFRESH" content="0;url={{ dl }}">
4 {% endif %}
5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <title>Linaro Snapshots</title>
7 <link rel="stylesheet" type="text/css" href="resources/css/ext-all.css" />
8 <link href="http://www.linaro.org/remote/css/init.css" rel="stylesheet" type="text/css" >
9 <link href="http://www.linaro.org/remote/css/remote.css" rel="stylesheet" type="text/css" >
10 <script language="javascript" type="text/javascript" src="http://www.linaro.org/remote/js/linarofamily.js"></script>
11</head>
12<body>
13<div id="head">
14 <h1>Linaro Snapshots</h1>
15</div>
16<div id="content">
17 {% block content %}{% endblock %}
18</body>
19
020
=== added file 'templates_snapshots/license.html'
--- templates_snapshots/license.html 1970-01-01 00:00:00 +0000
+++ templates_snapshots/license.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,17 @@
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3<html>
4<head>
5 {% block header %}{% endblock %}
6</head>
7<body>
8 {% block content-header %}{% endblock %}
9 {{ license.text|safe }}
10 {% block content-footer-top %}{% endblock %}
11 <form action="/accept-license?lic={{ license.digest }}&url={{ url }}" method="post">
12 {% csrf_token %}
13 <input class="button button-accept" type="submit" value="Accept" name="accept" /> <input class="button button-decline" type="submit" value="Reject" name="reject"/>
14 </form>
15 {% block content-footer-bottom %}{% endblock %}
16</body>
17</html>
018
=== added directory 'templates_snapshots/licenses'
=== added file 'templates_snapshots/licenses/linaro.html'
--- templates_snapshots/licenses/linaro.html 1970-01-01 00:00:00 +0000
+++ templates_snapshots/licenses/linaro.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,112 @@
1{% extends "license.html" %}
2
3{% block header %}
4<title>License Agreement</title>
5<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6<style language="text/css">
7 html, body {
8// background: #aaa;
9 color: black;
10 margin: 0;
11 padding: 0;
12 font-size: 11pt;
13 font-family: Sans;
14 }
15
16 div#head {
17 height: 110px;
18 background: white;
19 padding: 2em;
20 }
21
22 h1 {
23 padding-left: 200px;
24 margin: 0;
25 color: #444;
26 font-size: 140%;
27 font-weight: bold;
28 text-align: center;
29 background-image: url(/static/linaro.png);
30 background-repeat: no-repeat;
31 height: 110px;
32 }
33
34 #content {
35 margin: 0 auto;
36 min-width: 600px;
37 max-width: 920px;
38 }
39
40 h2 {
41 font-size: 120%;
42 }
43
44 #license-text {
45 background: white;
46 color: black;
47 margin: 2em;
48 padding: 2em;
49 text-align: left;
50 -moz-border-radius: 10px;
51 -webkit-border-radius: 10px;
52 border-radius: 10px;
53 }
54
55 #actions {
56 padding: 2em;
57 font-size: 80%;
58 margin-bottom: 4em;
59 }
60
61 #actions .button {
62 background: #e80;
63 color: white;
64 text-decoration: none;
65 font-weight: bold;
66 padding: 10px;
67 margin-left: 10px;
68 float: right;
69 font-size: 110%;
70 -moz-border-radius: 4px;
71 -webkit-border-radius: 4px;
72 border-radius: 4px;
73 }
74
75 #actions .button-decline:hover {
76 background: #f90;
77 }
78
79 #actions .button-accept {
80 background: #8b4;
81 }
82
83 #actions .button-accept:hover {
84 background: #9c5;
85 }
86</style>
87{% endblock %}
88
89{% block content-header %}
90<div id="head">
91<h1>
92</h1>
93</div>
94
95<div id="content">
96
97<div id="license-text">
98{% endblock %}
99{% block content-footer-top %}
100 </div><!-- license-text -->
101
102 <div id="actions">
103
104 <div style="float: left;">If accepting the license doesn't work, enable
105 cookies in your browser.</div><br />
106{% endblock %}
107{% block content-footer-bottom %}
108 </div>
109
110 </div><!-- content -->
111{% endblock %}
112
0113
=== added file 'templates_snapshots/licenses/linaro.txt'
--- templates_snapshots/licenses/linaro.txt 1970-01-01 00:00:00 +0000
+++ templates_snapshots/licenses/linaro.txt 2012-08-02 11:02:22 +0000
@@ -0,0 +1,1 @@
1Linaro license
02
=== added file 'templates_snapshots/licenses/nolicense.html'
--- templates_snapshots/licenses/nolicense.html 1970-01-01 00:00:00 +0000
+++ templates_snapshots/licenses/nolicense.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,9 @@
1<html>
2<head>
3 <title>License has not been accepted</title>
4</head>
5<body>
6 <h1>License has not been accepted</h1>
7 <p>Without accepting the license, you can not download the requested files.</p>
8</body>
9</html>
010
=== added file 'templates_snapshots/licenses/samsung.html'
--- templates_snapshots/licenses/samsung.html 1970-01-01 00:00:00 +0000
+++ templates_snapshots/licenses/samsung.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,112 @@
1{% extends "license.html" %}
2
3{% block header %}
4<title>License Agreement</title>
5<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6<style language="text/css">
7 html, body {
8 background: #aaa;
9 color: black;
10 margin: 0;
11 padding: 0;
12 font-size: 11pt;
13 font-family: Sans;
14 }
15
16 div#head {
17 height: 120px;
18 background: #e80;
19 padding: 2em;
20 }
21
22 h1 {
23 padding-left: 200px;
24 margin: 0;
25 color: white;
26 font-size: 140%;
27 font-weight: bold;
28 text-align: center;
29 background-image: url(/static/exynos.png);
30 background-repeat: no-repeat;
31 height: 109px;
32 }
33
34 #content {
35 margin: 0 auto;
36 min-width: 600px;
37 max-width: 920px;
38 }
39
40 h2 {
41 font-size: 120%;
42 }
43
44 #license-text {
45 background: white;
46 color: black;
47 margin: 2em;
48 padding: 2em;
49 overflow: scroll;
50 text-align: left;
51 -moz-border-radius: 10px;
52 -webkit-border-radius: 10px;
53 border-radius: 10px;
54 }
55
56 #actions {
57 padding: 2em;
58 font-size: 80%;
59 margin-bottom: 4em;
60 }
61
62 #actions .button {
63 background: #e80;
64 color: white;
65 text-decoration: none;
66 font-weight: bold;
67 padding: 10px;
68 margin-left: 10px;
69 float: right;
70 font-size: 110%;
71 -moz-border-radius: 4px;
72 -webkit-border-radius: 4px;
73 border-radius: 4px;
74 }
75
76 #actions .button-decline:hover {
77 background: #f90;
78 }
79
80 #actions .button-accept {
81 background: #8b4;
82 }
83
84 #actions .button-accept:hover {
85 background: #9c5;
86 }
87</style>
88{% endblock %}
89
90{% block content-header %}
91<div id="head">
92<h1>
93</h1>
94</div>
95
96<div id="content">
97
98<div id="license-text">
99{% endblock %}
100{% block content-footer-top %}
101</div><!-- license-text -->
102
103<div id="actions">
104
105<div style="float: left;">If accepting the license doesn't work, enable
106cookies in your browser.</div><br />
107{% endblock %}
108{% block content-footer-bottom %}
109</div>
110
111</div><!-- content -->
112{% endblock %}
0113
=== added file 'templates_snapshots/licenses/samsung.txt'
--- templates_snapshots/licenses/samsung.txt 1970-01-01 00:00:00 +0000
+++ templates_snapshots/licenses/samsung.txt 2012-08-02 11:02:22 +0000
@@ -0,0 +1,268 @@
1SAMSUNG DEVELOPMENT TOOL KIT END-USER LICENSE AGREEMENT FOR LINARO
2DEVELOPERS (“Agreement”)
3
4<p>IMPORTANT — PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.</p>
5
6<p>
7 THIS IS A LEGALLY BINDING AGREEMENT BETWEEN YOU, an individual or a
8 legal entity, (“LICENSEE”) AND SAMSUNG ELECTRONICS CO.,
9 LTD. (“SAMSUNG”). BY CLICKING THE "ACCEPT" BUTTON, OR BY DOWNLOADING OR
10 INSTALLING OR OTHERWISE USING THE SOFTWARE, YOU AGREE TO BE BOUND BY THE
11 TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS
12 AGREEMENT OR ARE NOT AUTHORISED TO ACCEPT AND AGREE TO THE TERMS OF THE
13 AGREEMENT ON BEHALF OF YOUR LEGAL ENTITY, DO NOT DOWNLOAD, INSTALL OR
14 OTHERWISE USE THE SOFTWARE.
15</p>
16
17
18<h2>1. DEFINITIONS.</h2>
19<p>
20 <strong>1.1 <em>"Samsung Product"</em></strong> means any of integrated
21 circuit product(s), including but not limited to system on chip products,
22 made by or for Samsung with which the Software was designed to be used.
23</p>
24
25<p>
26 <strong>1.2 <em>"Software"</em></strong> shall mean the software in binary form
27 and all other machine readable materials that are included with such
28 software or intended for use with it, including (a) any updates or error
29 corrections and (b) any documentation including user manuals that you
30 obtain from Samsung via on-line transmission through Linaro’s official websites.
31</p>
32
33<p>
34 <strong>1.3 <em>“Use”</em></strong> means in respect of the Software,
35 the use of (including copying the Software to the extent that such
36 copying is incidental to such use, including installation, backup and
37 execution) the Software, or any part thereof. Use shall specifically
38 exclude: (i) the translation, adaptation, arrangement or other
39 alteration of the Software except as allowed by local legislation
40 implementing Article 6 of the EC Directive on the legal protection of
41 computer programs (91/250/EEC) and then only to the extent necessary to
42 achieve interoperability of an independently created program with other
43 programs; and (ii) the adapting or reverse compiling of the Software for
44 the purpose of error correction.
45</p>
46
47
48<h2>2. LICENSE GRANT; OWNERSHIP</h2>
49
50<p>
51 <strong>2.1 License Grants.</strong> Subject to the terms and conditions
52 of this Agreement, Samsung hereby grants to Licensee, a non-exclusive,
53 non-transferable, limited license, to Use, without right to sublicense
54 or distribute, the Software, solely to the extent required in order to
55 develop and/or test Licensee software applications for use solely with
56 Samsung Product, and only if in compliance with all the provisions
57 herein.
58</p>
59
60<p>
61 <strong>2.2 Restriction on Modification.</strong> Licensee shall not
62 modify, alter, adapt, reverse engineer, decompile, disassemble the
63 Software or make any attempts to create non-licensed derivative works from
64 the Software and otherwise use the Software in any manner not specifically
65 authorized by this Agreement.
66</p>
67
68<p>
69 Licensee acknowledges that the Software may contain open source
70 software, subject to applicable open source licenses, provided by
71 Samsung for Licensee’s convenience. It is Licensee’s responsibility to
72 comply with the terms and conditions, including but not limited to any
73 modification rights, of those licenses. Source codes for these portions
74 of the Software may be obtained separately through applicable sources.
75</p>
76
77<p>
78 Except for those portions of the Software clearly specified as open
79 source, Licensee represents and warrants that it will not take any
80 action that would create obligations that would conflict with Licensee's
81 obligations hereunder, including without limitation, using the Software
82 to merge with, link to, make function calls to, or share data structures
83 with software available under an Open Source License Licensee shall
84 defend and indemnify Samsung against all liabilities, losses, damages,
85 costs and expenses relating to or arising out of a breach by Licensee of
86 the foregoing representation and warranty. Open Source Licenses
87 includes, without limitation, a software license that requires as a
88 condition of use, modification, and/or distribution of such software
89 that such software or other software incorporated into, derived from or
90 distributed with such software be (a) disclosed or distributed in source
91 code form; (b) be licensed for the purpose of making derivative works;
92 or (c) be redistributable at no charge.
93</p>
94
95<p>
96 <strong>2.3 Restriction on Distribution.</strong> Licensee shall not
97 distribute, rent, lease, and/or lend the Software and any copies thereof
98 to any third parties (individuals or legal entities).
99</p>
100
101<p>
102 <strong>2.4 Proprietary Notices.</strong>
103 Licensee shall not remove, efface or obscure any copyright or trademark
104 notices from the Software. Licensee shall include reproductions of the
105 Samsung copyright notice with each copy, if any, of the
106 Software. Licensee acknowledges that any symbols, trademarks, trade
107 names, and service marks adopted by Samsung to identify the Software
108 belong to Samsung and that Licensee shall have no rights therein.
109</p>
110
111<p>
112 <strong>2.5 Ownership.</strong>
113 Samsung and its licensors shall retain all right, title and interest,
114 including all intellectual property rights, in and to the
115 Software. Licensee hereby covenants that it will not assert any claim
116 that the Software infringes any intellectual property right owned or
117 controlled by Licensee.
118</p>
119
120<p>
121 <strong>2.6 No Other Rights Granted.</strong>
122 Apart from the license rights expressly set forth in this Agreement,
123 Samsung does not grant and Licensee does not receive any ownership
124 right, title or interest nor any security interest or other interest in
125 any intellectual property rights relating to the Software, nor in any
126 copy of any part of the foregoing.
127</p>
128
129
130<h2>3. NO WARRANTY OR SUPPORT</h2>
131
132<p>
133 <strong>3.1 No Warranty.</strong>
134 THE SOFTWARE IS OFFERED "AS IS." SAMSUNG AND ITS LICENSORS GRANT AND
135 LICENSEE RECEIVES NO WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, BY
136 STATUTE, COMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE. SAMSUNG
137 SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY,
138 FITNESS FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THE
139 SOFTWARE. WITHOUT LIMITATION OF THE ABOVE, SAMSUNG DISCLAIMS ANY
140 WARRANTY THAT THE SOFTWARE IS BUG OR ERROR-FREE OR WILL OPERATE WITHOUT
141 INTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS
142 THEREFROM INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY OR
143 RELIABILITY.
144</p>
145
146<p>
147 <strong>3.2 No Support.</strong>
148 Nothing in this Agreement shall obligate Samsung to provide any support
149 for the Software. Samsung may, but shall be under no obligation to,
150 correct any defects in the Software and/or provide updates via Linaro’s
151 website. Licensee shall make reasonable efforts to promptly report to
152 Samsung any defects it finds in the Software, as an aid to creating
153 improved revisions of the Software.
154</p>
155
156<p>
157 <strong>3.3 Dangerous Applications.</strong>
158 The Software is not designed, intended, or certified for use in
159 components of systems intended for the operation of weapons, weapons
160 systems, nuclear installations, means of mass transportation, aviation,
161 life-support computers or equipment (including resuscitation equipment
162 and surgical implants), pollution control, hazardous substances
163 management, or for any other dangerous application in which the failure
164 of the Software could create a situation where personal injury or death
165 may occur. Licensee understands that use of the Software in such
166 applications is fully at the risk of Licensee.
167</p>
168
169
170<h2>4. TERM AND TERMINATION</h2>
171
172<p>
173 <strong>4.1 Term and Termination.</strong>
174 This Agreement is effective until terminated. Samsung may immediately
175 terminate and cancel this Agreement and the licenses granted hereunder
176 upon written notice to Licensee at any time with or without
177 cause. Licensee may terminate this Agreement at any time by (i)
178 completely removing the Software and any copies thereof from its system
179 and (ii) notifying in writing Samsung of Licensee’s intent to terminate
180 this Agreement.
181</p>
182
183<p>
184 <strong>4.2 Effect of Termination.</strong> Upon any termination of this
185 Agreement, the rights and licenses granted to Licensee under this
186 Agreement shall immediately terminate. Upon termination, Licensee shall
187 destroy all copies of the Software in its possession or control and
188 cease all use.
189</p>
190
191<p>
192 <strong>4.3 Survival.</strong> The provisions of Sections 1, 2.2, 2.3,
193 2.4, 2.5, 2.6, 3, 4, 5, and 6 shall survive the termination of this
194 Agreement.
195</p>
196
197<h2>5. LIMITATION OF LIABILITY</h2>
198
199<p>
200 TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL SAMSUNG OR ANY OF
201 SAMSUNG'S LICENSORS BE LIABLE FOR ANY LOSS, DAMAGE OR INJURY, DIRECT AND
202 INDIRECT, INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED
203 AND ON ANY THEORY OF LIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT
204 (INCLUDING NEGLIGENCE) OR OTHERWISE, ARISING OUT OF THIS AGREEMENT,
205 INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS, EVEN IF ADVISED OF THE
206 POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY
207 NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED
208 REMEDY. IN ADDITION TO THE FOREGOINGS, SAMSUNG HAS NO LIABILITY TO THE
209 LICENSEEE IF THE SOFTWARE INFRINGES OR IS ALLGEDED TO INFRINGE THE RIGHT
210 OF ANY THIRD PARTY.
211</p>
212
213<h2>6. MISCELLANEOUS</h2>
214
215<p>
216 <strong>6.1 Assignment.</strong> Licensee may not assign this Agreement
217 or any rights or obligation hereunder, directly or indirectly, by
218 operation of law or otherwise, without the prior written consent of
219 Samsung, and any such attempted assignment shall be void.
220</p>
221
222<p>
223 <strong>6.2 Governing Law; Venue.</strong>
224 This Agreement shall be governed by and construed in accordance with the
225 laws of the Republic of Korea, excluding conflict of laws provisions
226 which may direct the application of another jurisdiction’s laws and the
227 United Nations Convention on Contracts for the International Sale of
228 Goods. All disputes, controversies or differences which may arise out of
229 or in relation to or in connection with this Agreement, shall be shall
230 be submit to the jurisdiction of the Suwon Civil Court, Korea.
231</p>
232
233<p>
234 <strong>6.3 Severability.</strong>
235 All terms and provisions of this Agreement shall, if possible, be
236 construed in a manner which makes them valid, but in the event any term
237 or provision of this Agreement is found by a court of competent
238 jurisdiction to be illegal or unenforceable, the validity or
239 enforceability of the remainder of this Agreement shall not be affected
240 if the illegal or unenforceable provision does not materially affect the
241 intent of this Agreement. If the illegal or unenforceable provision
242 materially affects the intent of the parties to this Agreement, this
243 Agreement shall become terminated.
244</p>
245
246<p>
247 <strong>6.4 Equitable Relief.</strong>
248 Licensee hereby acknowledges that its breach of this Agreement would
249 cause irreparable harm and significant injury to Samsung that may be
250 difficult to ascertain and that a remedy at law would be
251 inadequate. Accordingly, Licensee agrees that Samsung shall have the
252 right to seek and obtain immediate injunctive relief to enforce
253 obligations under the Agreement in addition to any other rights and
254 remedies it may have.
255</p>
256
257<p>
258 <strong>6.5 Export Regulations.</strong>
259 Licensee agrees and warrants that it shall comply, at its own expense,
260 with any applicable export and import laws, restrictions, national
261 security controls and regulations.
262</p>
263
264<p>
265 <strong>6.6 Entire Agreement.</strong>
266 This Agreement sets forth the entire Agreement between Samsung and
267 Licensee relating to this subject matter.
268</p>
0269
=== added file 'templates_snapshots/licenses/ste.html'
--- templates_snapshots/licenses/ste.html 1970-01-01 00:00:00 +0000
+++ templates_snapshots/licenses/ste.html 2012-08-02 11:02:22 +0000
@@ -0,0 +1,119 @@
1{% extends "license.html" %}
2
3{% block header %}
4<title>License Agreement</title>
5<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6<style language="text/css">
7 html, body {
8 background: white;
9 color: black;
10 margin: 0;
11 padding: 0;
12 font-size: 11pt;
13 font-family: Sans;
14 }
15
16 div#head {
17 height: 180px;
18 width: 100%;
19 background-image: url(/static/igloo-bg.png);
20 background-repeat: repeat-x;
21 }
22
23 h1 {
24 height: 180px;
25 padding: 2em;
26 padding-left: 180px;
27 margin: 0;
28 margin-right: 1em;
29 margin-left: 1em;
30 color:white;
31 font-size: 140%;
32 font-weight: bold;
33 text-align: left;
34 background-image: url(/static/igloo.png);
35 background-repeat: no-repeat;
36 }
37
38 #content {
39 margin: 0 auto;
40 min-width: 600px;
41 max-width: 920px;
42 }
43
44 h2 {
45 font-size: 120%;
46 }
47
48 #license-text {
49 background: white;
50 color: black;
51 margin: 2em;
52 padding: 2em;
53 height: 50%;
54 overflow: scroll;
55 text-align: left;
56 -moz-border-radius: 10px;
57 -webkit-border-radius: 10px;
58 border-radius: 10px;
59 }
60
61 #actions {
62 padding: 2em;
63 font-size: 80%;
64 margin-bottom: 2em;
65 }
66
67 #actions .button {
68 background: #08e;
69 color: white;
70 text-decoration: none;
71 font-weight: bold;
72 padding: 10px;
73 margin-left: 10px;
74 float: right;
75 font-size: 110%;
76 -moz-border-radius: 4px;
77 -webkit-border-radius: 4px;
78 border-radius: 4px;
79 }
80
81 #actions .button-decline:hover {
82 background: #09f;
83 }
84
85 #actions .button-accept {
86 background: #8b4;
87 }
88
89 #actions .button-accept:hover {
90 background: #9c5;
91 }
92</style>
93{% endblock %}
94
95{% block content-header %}
96<div id="head">
97<h1>
98</h1>
99
100
101</div>
102
103<div id="content">
104
105<div id="license-text">
106{% endblock %}
107{% block content-footer-top %}
108 </div><!-- license-text -->
109
110 <div id="actions">
111
112 <div style="float: left;">If accepting the license doesn't work, enable
113 cookies in your browser.</div><br />
114{% endblock %}
115{% block content-footer-bottom %}
116 </div>
117
118 </div><!-- content -->
119{% endblock %}
0120
=== added file 'templates_snapshots/licenses/ste.txt'
--- templates_snapshots/licenses/ste.txt 1970-01-01 00:00:00 +0000
+++ templates_snapshots/licenses/ste.txt 2012-08-02 11:02:22 +0000
@@ -0,0 +1,299 @@
1SNOWBALL CLICK-WRAP LIMITED LICENSE AGREEMENT FOR APPLICATION DEVELOPERS
2("Agreement") ST-Ericsson 2011-10-27
3
4<p>
5 This Agreement is a legally binding contract between you - either an
6 individual or a legal entity - (hereinafter referred to as "Licensee")
7 and ST-Ericsson SA, a company incorporated under the laws of
8 Switzerland (hereinafter referred to as "ST-Ericsson").
9</p>
10
11<p>
12 IMPORTANT - PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. THIS IS A
13 LEGALLY BINDING AGREEMENT. BY CLICKING THE "ACCEPT" BUTTON BELOW, OR
14 BY DOWNLOADING OR INSTALLING OR OTHERWISE USING THE SOFTWARE, YOU
15 AGREE TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE
16 TO THE TERMS OF THIS AGREEMENT OR ARE NOT AUTHORISED TO ACCEPT AND
17 AGREE TO THE TERMS OF THE AGREEMENT, DO NOT DOWNLOAD, INSTALL OR
18 OTHERWISE USE THE SOFTWARE.
19</p>
20
21<p>
22 ST-Ericsson and Licensee are each hereinafter also referred to as the
23 "Party" and, collectively, as the "Parties."
24</p>
25
26<h2>
27 1 DEFINITIONS
28</h2>
29
30<p>
31 1.1 Wherever used in this Agreement, the following terms shall have
32 the meanings set forth below:
33</p>
34
35<p>
36 "Licensee's Applications" means applications and other software
37 developed by Licensee which are intended to interface with and/or run
38 on the Snowball Kit.
39</p>
40
41<p>
42 "Limited License Purpose" shall mean the limited license granted under Article 2.1 below.
43</p>
44
45<p>
46 "Snowball Kit" means the hardware products "SKY-S9500-ULP-Cxy"
47 where x and y are integers between "0" and "9".
48</p>
49
50<p>
51 "Software" shall mean the ST-Ericsson's software for the A9500
52 platform delivered in binary or in source for the related header
53 files, including any copies and new releases thereof.
54</p>
55
56<p>
57 1.2 Other capitalized expressions used in this Agreement shall have
58 the meanings respectively assigned to them elsewhere in this
59 Agreement.
60</p>
61
62<p>
63 1.3 Words indicating the singular only also include the plural and
64 vice-versa, where the context so requires.
65</p>
66
67<p>
68 1.4 The headings of the Articles in this Agreement are for convenience
69 only and shall not affect the interpretation of this Agreement.
70</p>
71
72<h2>2 LICENSE GRANT</h2>
73
74<p>
75 2.1 Subject to the terms and conditions in this Agreement, STEricsson
76 hereby grants to Licensee a non-exclusive, non-transferable, limited
77 license to use and reproduce the Software solely to the extent
78 required in order to (i) develop Licensee's Applications that
79 interface with and/or run with the Snowball Kit; and (ii) integrate
80 the Software with Licensee Application and/or third party software;
81 and (iii) conduct development testing of the Licensee's Applications'
82 or third party software operation in conjunction with the Snowball Kit
83 and/or Licensee's demonstration of such Licensee's Applications in
84 conjunction with the Snowball Kit (hereinafter "Limited License
85 Purpose"). The Licensee is entitled to flash the Software on a
86 commercial product containg the Snowball Kit. The aforesaid license to
87 the Software is provided that all and any use of the Software is
88 solely and exclusively used on the Snowball Kit.
89</p>
90
91<p>
92 2.2 Some portion of the Software might contain Open Source
93 Software. Such Open Source Software might be subject to Open Source
94 Terms applicable for each such portion, as further specified in the
95 Software. Such Open Source Software is supplied to Licensee solely
96 under the applicable Open Source Terms and is not subject to the terms
97 of this Agreement.
98</p>
99
100<p>
101 2.3 Licensee shall not, and shall not permit any third party to alter,
102 change, modify, adapt, decompile, disassemble, compile or reverse
103 engineer or remove or circumvent any protection or other restrictive
104 technology mechanism of the the Software and/or any and all parts
105 thereof, or otherwise use, sub-license, assign or pledge the Software
106 and/or any and all parts thereof other than what is expressly
107 permitted in accordance with this Agreement.
108</p>
109
110<p>
111 2.4 ST-Ericsson shall retain on behalf of itself or the original owner
112 all right title and interest to any ST-Ericsson Intellectual Property
113 Rights, including but not limited to any patents, trademarks,
114 copyrights, and trade secret rights, and title to copies of any and
115 all media bearing the Software or the Snowball Kit and/or any and all
116 parts thereof, and the Licensee acquires no interest under this
117 Agreement to any ST-Ericsson Intellectual Property Rights or other
118 rights other than the Limited License Purpose expressly set forth in
119 this Article 2.
120</p>
121
122<p>
123 2.5 Notwithstanding anything to the contrary herein, nothing contained
124 hereunder shall be construed as conferring any right, license or
125 immunity, either directly or by implication, estoppel or otherwise to
126 Licensee or any third party: (i) under any intellectual property
127 rights of any third party; specifically, without limiting the
128 generality of the foregoing, the sale and use of the Products are not
129 licensed under any patents of Telefonaktiebolaget LM Ericsson, or any
130 affiliates of such company; (ii) under any intellectual property
131 rights of STEricsson other than explicitly granted under in this
132 Agreement; or (iii) with respect to any trademark, trade or brand
133 name, a corporate name of ST-Ericsson, or any other name or mark, or
134 contraction abbreviation or simulation thereof.
135</p>
136
137
138<h2>3 DELIVERY</h2>
139
140<p>
141 3.1 All deliveries of the Software are EX-WORKS (Incoterms 2000) at
142 ST-Ericsson's indicated facility.
143</p>
144
145
146<h2>4 NO REPRESENTATIONS OR WARRANTIES</h2>
147
148<p>
149 4.1 The Software is delivered "as is" and all representations and
150 warranties, express or implied, are hereby disclaimed, including, but
151 not limited to that:
152</p>
153
154<p>
155 a) the Software or any part thereof is accurate or reliable for any
156 purposes whatsoever; and
157</p>
158
159<p>
160 b) the use of the Software does not infringe any rights that may be
161 held by a third party in respect of any such information.
162</p>
163
164<p>
165 4.2 Licensee acknowledges and agrees that any use of the Software
166 and/or the Snowball Kit, or any other part thereof, or any use of
167 Licensee's Applications is at Licensee's sole risk.
168</p>
169
170<h2>5 WARRANTY DISCLAIMER AND GENERAL LIMITATION OF LIABILITY</h2>
171
172<p>
173 5.1 THE SOFTWARE AND/OR SNOWBALL KIT AND ANY AND ALL PARTS THEREOF ARE
174 PROVIDED "AS IS". ST-ERICSSON MAKES NO REPRESENTATIONS OR WARRANTIES
175 WITH RESPECT TO THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF
176 WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, IMPLIED
177 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
178 PURPOSE. SPECIFICALLY, WITHOUT LIMITING THE GENERALITY OF THE
179 FOREGOING, ST-ERICSSON MAKES NO REPRESENTATION OR WARRANTY THAT (I)
180 THE USE OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF WILL
181 BE UNINTERRUPTED OR ERROR FREE, AND OR (II) ANY USE AND OR
182 DISTRIBUTION OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF,
183 WHETHER INTEGRATED INTO OTHER EQUIPMENT OR NOT, ARE FREE FROM
184 INFRINGEMENT OF ANY THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, AND IT
185 SHALL BE THE SOLE RESPONSIBILITY OF LICENSEE TO MAKE SUCH
186 DETERMINATION AS IS NECESSARY WITH RESPECT TO THE ACQUISITION OF
187 LICENSES UNDER PATENTS AND OTHER INTELLECTUAL PROPERTY RIGHTS OF THIRD
188 PARTIES. CONSEQUENTLY, IN NO EVENT SHALL ST-ERICSSON, ITS AFFILIATES
189 OR THEIR SUPPLIERS BE LIABLE TO LICENSEE FOR ANY LOSS OR DAMAGES
190 (WHETHER DIRECT, INDRECT OR CONSEQUENTIAL) ARISING FROM ANY USE AND OR
191 DISTRIBUTION OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF,
192 WHETHER INTEGRATED INTO OTHER EQUIPMENT OR NOT, AND OR ARISING BY
193 REASON OF THE FACT THAT THE SOFTWARE AND/OR SNOWBALL KIT AND OR ANY
194 PARTS THEREOF ARE DEFECTIVE OR NON-CONFORMING AND OR ARISING FROM THIS
195 AGREEMENT AND OR ANY BREACH THEREOF.
196</p>
197
198<p>
199 5.2 THE PARTIES AGREE THAT ANY RIGHTS AND REMEDIES THE LICENSEE MAY
200 HAVE AND OR ANY OBLIGATIONS THAT ST-ERICSSON MAY HAVE ACCORDING TO LAW
201 OR OTHERWISE WITH RESPECT TO ERRORS AND DEFECTS IN THE SOFTWARE AND/OR
202 OTHER DELIVERABLES AND/OR IN ANY PART THEREOF SHALL HEREBY BE
203 DISCLAIMED.
204</p>
205
206<h2>
207 6 TERMINATION
208</h2>
209
210<p>
211 6.1 The license and this Agreement are effective until terminated.
212</p>
213
214<p>
215 6.2 Licensee agrees that each of the terms and conditions set out in
216 this Agreement are material and that failure of Licensee to comply
217 with these terms and conditions shall constitute sufficient cause for
218 ST-Ericsson to terminate this Agreement. The aforesaid is without any
219 prejudice to other rights ST-Ericsson may have in case of breach of
220 this Agreement.
221</p>
222
223<p>
224 6.3 In the event of termination of this Agreement Licensee shall
225 immediately destroy all copies of the Software, including all portions
226 and derivatives thereof.
227</p>
228
229<h2>
230 7 EXPORT CONTROL
231</h2>
232
233<p>
234 7.1 Licensee recognizes that the Software or any parts thereof may be
235 subject to import and export regulations in certain
236 countries. Licensee agrees that it will not knowingly export,
237 re-export or import products, technology or Software, or any parts
238 thereof, of ST-Ericsson, directly or indirectly, to any country to the
239 extent export to such country at the time of export requires an export
240 license or other governmental approval under any export control laws
241 and regulations, without first obtaining such license or approval.
242</p>
243
244<h2>
245 8 COMPLIANCE WITH LAWS
246</h2>
247
248<p>
249 8.1 Licensee agrees not to use the Software in violation of, and to
250 comply with any and all applicable law, statute, ordinance or other
251 regulation.
252</p>
253
254<h2>
255 9 ENTIRE AGREEMENT
256</h2>
257
258<p>
259 9.1 This is the entire agreement between Licensee and ST-Ericsson on
260 the subject matter of this Agreement, and supersedes all
261 representations, undertakings and agreements previously made between
262 the Parties with respect to the subject matter of this Agreement.
263</p>
264
265<h2>
266 10 SEVERABILITY
267</h2>
268
269<p>
270 10.1 If a court or agency of competent jurisdiction holds any term of
271 this Agreement invalid, illegal, or unenforceable for any reason, the
272 remainder of this Agreement shall be valid and enforceable and such
273 term shall be substituted by a valid and enforceable provision so as
274 to the best accomplish the objectives of such provision in this
275 Agreement.
276</p>
277
278<h2>
279 11 GOVERNING LAW AND JURISDICTION
280</h2>
281
282<p>
283 11.1 This Agreement shall be governed by and construed in accordance
284 with the laws of Switzerland, without regard to its conflict of laws
285 rules. The application of The United Nations Convention of Contracts
286 for the International Sale of Goods is explicitly excluded.
287</p>
288
289<p>
290 11.2 Any and all disputes, differences or questions arising out of or
291 in connection with this Agreement shall be under the exclusive
292 jurisdiction of the Swiss courts and the venue shall be Geneva.
293</p>
294
295<p>
296 11.3 Notwithstanding the aforesaid, nothing in this Article 11 shall
297 prevent the Parties from seeking any interim or final injunctive or
298 equitable relief by a court of competent jurisdiction.
299</p>
0300
=== added symlink 'templates_snapshots/licenses/stericsson.html'
=== target is u'ste.html'
=== added symlink 'templates_snapshots/licenses/stericsson.txt'
=== target is u'ste.txt'

Subscribers

People subscribed via source and target branches