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
1=== added directory 'releases'
2=== added directory 'snapshots'
3=== added directory 'templates_releases'
4=== added file 'templates_releases/404.html'
5--- templates_releases/404.html 1970-01-01 00:00:00 +0000
6+++ templates_releases/404.html 2012-08-02 11:02:22 +0000
7@@ -0,0 +1,5 @@
8+{% extends "header.html" %}
9+
10+{% block content %}
11+Page not found.
12+{% endblock %}
13
14=== added file 'templates_releases/dir_template.html'
15--- templates_releases/dir_template.html 1970-01-01 00:00:00 +0000
16+++ templates_releases/dir_template.html 2012-08-02 11:02:22 +0000
17@@ -0,0 +1,42 @@
18+{% extends "header.html" %}
19+
20+{% block content %}
21+{{ header_content|safe }}
22+<table>
23+ <tr>
24+ <th></th><th>Name</th><th>License</th><th>Last modified</th><th>Size</th>
25+ <tr><th colspan="5"><hr></th>
26+ </tr>
27+ {% if up_dir != None %}
28+ <tr>
29+ <td>
30+ <img src="{{ STATIC_URL }}/static/go-up.png" alt="Parent Directory"/>
31+ </td>
32+ <td><a href="{{ up_dir }}">Parent Directory</a></td>
33+ <td></td>
34+ <td></td>
35+ <td></td>
36+ </tr>
37+ {% endif %}
38+
39+{% for value in dirlist %}
40+ <tr>
41+ <td>
42+ <img src="{{ STATIC_URL }}/static/{{ value.type }}.png" alt="{{ value.type }}"/>
43+ </td>
44+ <td><a href="{{ value.url }}">{{ value.name }}</a></td>
45+ <td>
46+ {% if value.license_digest_list == "OPEN" %}
47+ <i>open</i>
48+ {% else %}
49+ {% for license in value.license_list %}
50+ {{ license.theme }}
51+ {% endfor %}
52+ {% endif %}
53+ </td>
54+ <td>{{ value.mtime }}</td>
55+ <td>{% if value.type != 'folder' %}{{ value.size }}{% endif %}</td>
56+ </tr>
57+{% endfor %}
58+</table>
59+{% endblock %}
60
61=== added file 'templates_releases/folder.gif'
62Binary 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
63=== added file 'templates_releases/header.html'
64--- templates_releases/header.html 1970-01-01 00:00:00 +0000
65+++ templates_releases/header.html 2012-08-02 11:02:22 +0000
66@@ -0,0 +1,19 @@
67+<head>
68+ {% if dl != None %}
69+ <meta http-equiv="REFRESH" content="0;url={{ dl }}">
70+ {% endif %}
71+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
72+ <title>Linaro Releases</title>
73+ <link rel="stylesheet" type="text/css" href="resources/css/ext-all.css" />
74+ <link href="http://www.linaro.org/remote/css/init.css" rel="stylesheet" type="text/css" >
75+ <link href="http://www.linaro.org/remote/css/remote.css" rel="stylesheet" type="text/css" >
76+ <script language="javascript" type="text/javascript" src="http://www.linaro.org/remote/js/linarofamily.js"></script>
77+</head>
78+<body>
79+<div id="head">
80+ <h1>Linaro Releases</h1>
81+</div>
82+<div id="content">
83+ {% block content %}{% endblock %}
84+</body>
85+
86
87=== added file 'templates_releases/license.html'
88--- templates_releases/license.html 1970-01-01 00:00:00 +0000
89+++ templates_releases/license.html 2012-08-02 11:02:22 +0000
90@@ -0,0 +1,17 @@
91+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
92+ "http://www.w3.org/TR/html4/loose.dtd">
93+<html>
94+<head>
95+ {% block header %}{% endblock %}
96+</head>
97+<body>
98+ {% block content-header %}{% endblock %}
99+ {{ license.text|safe }}
100+ {% block content-footer-top %}{% endblock %}
101+ <form action="/accept-license?lic={{ license.digest }}&url={{ url }}" method="post">
102+ {% csrf_token %}
103+ <input class="button button-accept" type="submit" value="Accept" name="accept" /> <input class="button button-decline" type="submit" value="Reject" name="reject"/>
104+ </form>
105+ {% block content-footer-bottom %}{% endblock %}
106+</body>
107+</html>
108
109=== added directory 'templates_releases/licenses'
110=== added file 'templates_releases/licenses/linaro.html'
111--- templates_releases/licenses/linaro.html 1970-01-01 00:00:00 +0000
112+++ templates_releases/licenses/linaro.html 2012-08-02 11:02:22 +0000
113@@ -0,0 +1,112 @@
114+{% extends "license.html" %}
115+
116+{% block header %}
117+<title>License Agreement</title>
118+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
119+<style language="text/css">
120+ html, body {
121+// background: #aaa;
122+ color: black;
123+ margin: 0;
124+ padding: 0;
125+ font-size: 11pt;
126+ font-family: Sans;
127+ }
128+
129+ div#head {
130+ height: 110px;
131+ background: white;
132+ padding: 2em;
133+ }
134+
135+ h1 {
136+ padding-left: 200px;
137+ margin: 0;
138+ color: #444;
139+ font-size: 140%;
140+ font-weight: bold;
141+ text-align: center;
142+ background-image: url(/static/linaro.png);
143+ background-repeat: no-repeat;
144+ height: 110px;
145+ }
146+
147+ #content {
148+ margin: 0 auto;
149+ min-width: 600px;
150+ max-width: 920px;
151+ }
152+
153+ h2 {
154+ font-size: 120%;
155+ }
156+
157+ #license-text {
158+ background: white;
159+ color: black;
160+ margin: 2em;
161+ padding: 2em;
162+ text-align: left;
163+ -moz-border-radius: 10px;
164+ -webkit-border-radius: 10px;
165+ border-radius: 10px;
166+ }
167+
168+ #actions {
169+ padding: 2em;
170+ font-size: 80%;
171+ margin-bottom: 4em;
172+ }
173+
174+ #actions .button {
175+ background: #e80;
176+ color: white;
177+ text-decoration: none;
178+ font-weight: bold;
179+ padding: 10px;
180+ margin-left: 10px;
181+ float: right;
182+ font-size: 110%;
183+ -moz-border-radius: 4px;
184+ -webkit-border-radius: 4px;
185+ border-radius: 4px;
186+ }
187+
188+ #actions .button-decline:hover {
189+ background: #f90;
190+ }
191+
192+ #actions .button-accept {
193+ background: #8b4;
194+ }
195+
196+ #actions .button-accept:hover {
197+ background: #9c5;
198+ }
199+</style>
200+{% endblock %}
201+
202+{% block content-header %}
203+<div id="head">
204+<h1>
205+</h1>
206+</div>
207+
208+<div id="content">
209+
210+<div id="license-text">
211+{% endblock %}
212+{% block content-footer-top %}
213+ </div><!-- license-text -->
214+
215+ <div id="actions">
216+
217+ <div style="float: left;">If accepting the license doesn't work, enable
218+ cookies in your browser.</div><br />
219+{% endblock %}
220+{% block content-footer-bottom %}
221+ </div>
222+
223+ </div><!-- content -->
224+{% endblock %}
225+
226
227=== added file 'templates_releases/licenses/linaro.txt'
228--- templates_releases/licenses/linaro.txt 1970-01-01 00:00:00 +0000
229+++ templates_releases/licenses/linaro.txt 2012-08-02 11:02:22 +0000
230@@ -0,0 +1,1 @@
231+Linaro license
232
233=== added file 'templates_releases/licenses/nolicense.html'
234--- templates_releases/licenses/nolicense.html 1970-01-01 00:00:00 +0000
235+++ templates_releases/licenses/nolicense.html 2012-08-02 11:02:22 +0000
236@@ -0,0 +1,9 @@
237+<html>
238+<head>
239+ <title>License has not been accepted</title>
240+</head>
241+<body>
242+ <h1>License has not been accepted</h1>
243+ <p>Without accepting the license, you can not download the requested files.</p>
244+</body>
245+</html>
246
247=== added file 'templates_releases/licenses/samsung.html'
248--- templates_releases/licenses/samsung.html 1970-01-01 00:00:00 +0000
249+++ templates_releases/licenses/samsung.html 2012-08-02 11:02:22 +0000
250@@ -0,0 +1,112 @@
251+{% extends "license.html" %}
252+
253+{% block header %}
254+<title>License Agreement</title>
255+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
256+<style language="text/css">
257+ html, body {
258+ background: #aaa;
259+ color: black;
260+ margin: 0;
261+ padding: 0;
262+ font-size: 11pt;
263+ font-family: Sans;
264+ }
265+
266+ div#head {
267+ height: 120px;
268+ background: #e80;
269+ padding: 2em;
270+ }
271+
272+ h1 {
273+ padding-left: 200px;
274+ margin: 0;
275+ color: white;
276+ font-size: 140%;
277+ font-weight: bold;
278+ text-align: center;
279+ background-image: url(/static/exynos.png);
280+ background-repeat: no-repeat;
281+ height: 109px;
282+ }
283+
284+ #content {
285+ margin: 0 auto;
286+ min-width: 600px;
287+ max-width: 920px;
288+ }
289+
290+ h2 {
291+ font-size: 120%;
292+ }
293+
294+ #license-text {
295+ background: white;
296+ color: black;
297+ margin: 2em;
298+ padding: 2em;
299+ overflow: scroll;
300+ text-align: left;
301+ -moz-border-radius: 10px;
302+ -webkit-border-radius: 10px;
303+ border-radius: 10px;
304+ }
305+
306+ #actions {
307+ padding: 2em;
308+ font-size: 80%;
309+ margin-bottom: 4em;
310+ }
311+
312+ #actions .button {
313+ background: #e80;
314+ color: white;
315+ text-decoration: none;
316+ font-weight: bold;
317+ padding: 10px;
318+ margin-left: 10px;
319+ float: right;
320+ font-size: 110%;
321+ -moz-border-radius: 4px;
322+ -webkit-border-radius: 4px;
323+ border-radius: 4px;
324+ }
325+
326+ #actions .button-decline:hover {
327+ background: #f90;
328+ }
329+
330+ #actions .button-accept {
331+ background: #8b4;
332+ }
333+
334+ #actions .button-accept:hover {
335+ background: #9c5;
336+ }
337+</style>
338+{% endblock %}
339+
340+{% block content-header %}
341+<div id="head">
342+<h1>
343+</h1>
344+</div>
345+
346+<div id="content">
347+
348+<div id="license-text">
349+{% endblock %}
350+{% block content-footer-top %}
351+</div><!-- license-text -->
352+
353+<div id="actions">
354+
355+<div style="float: left;">If accepting the license doesn't work, enable
356+cookies in your browser.</div><br />
357+{% endblock %}
358+{% block content-footer-bottom %}
359+</div>
360+
361+</div><!-- content -->
362+{% endblock %}
363
364=== added file 'templates_releases/licenses/samsung.txt'
365--- templates_releases/licenses/samsung.txt 1970-01-01 00:00:00 +0000
366+++ templates_releases/licenses/samsung.txt 2012-08-02 11:02:22 +0000
367@@ -0,0 +1,268 @@
368+SAMSUNG DEVELOPMENT TOOL KIT END-USER LICENSE AGREEMENT FOR LINARO
369+DEVELOPERS (“Agreement”)
370+
371+<p>IMPORTANT — PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.</p>
372+
373+<p>
374+ THIS IS A LEGALLY BINDING AGREEMENT BETWEEN YOU, an individual or a
375+ legal entity, (“LICENSEE”) AND SAMSUNG ELECTRONICS CO.,
376+ LTD. (“SAMSUNG”). BY CLICKING THE "ACCEPT" BUTTON, OR BY DOWNLOADING OR
377+ INSTALLING OR OTHERWISE USING THE SOFTWARE, YOU AGREE TO BE BOUND BY THE
378+ TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS
379+ AGREEMENT OR ARE NOT AUTHORISED TO ACCEPT AND AGREE TO THE TERMS OF THE
380+ AGREEMENT ON BEHALF OF YOUR LEGAL ENTITY, DO NOT DOWNLOAD, INSTALL OR
381+ OTHERWISE USE THE SOFTWARE.
382+</p>
383+
384+
385+<h2>1. DEFINITIONS.</h2>
386+<p>
387+ <strong>1.1 <em>"Samsung Product"</em></strong> means any of integrated
388+ circuit product(s), including but not limited to system on chip products,
389+ made by or for Samsung with which the Software was designed to be used.
390+</p>
391+
392+<p>
393+ <strong>1.2 <em>"Software"</em></strong> shall mean the software in binary form
394+ and all other machine readable materials that are included with such
395+ software or intended for use with it, including (a) any updates or error
396+ corrections and (b) any documentation including user manuals that you
397+ obtain from Samsung via on-line transmission through Linaro’s official websites.
398+</p>
399+
400+<p>
401+ <strong>1.3 <em>“Use”</em></strong> means in respect of the Software,
402+ the use of (including copying the Software to the extent that such
403+ copying is incidental to such use, including installation, backup and
404+ execution) the Software, or any part thereof. Use shall specifically
405+ exclude: (i) the translation, adaptation, arrangement or other
406+ alteration of the Software except as allowed by local legislation
407+ implementing Article 6 of the EC Directive on the legal protection of
408+ computer programs (91/250/EEC) and then only to the extent necessary to
409+ achieve interoperability of an independently created program with other
410+ programs; and (ii) the adapting or reverse compiling of the Software for
411+ the purpose of error correction.
412+</p>
413+
414+
415+<h2>2. LICENSE GRANT; OWNERSHIP</h2>
416+
417+<p>
418+ <strong>2.1 License Grants.</strong> Subject to the terms and conditions
419+ of this Agreement, Samsung hereby grants to Licensee, a non-exclusive,
420+ non-transferable, limited license, to Use, without right to sublicense
421+ or distribute, the Software, solely to the extent required in order to
422+ develop and/or test Licensee software applications for use solely with
423+ Samsung Product, and only if in compliance with all the provisions
424+ herein.
425+</p>
426+
427+<p>
428+ <strong>2.2 Restriction on Modification.</strong> Licensee shall not
429+ modify, alter, adapt, reverse engineer, decompile, disassemble the
430+ Software or make any attempts to create non-licensed derivative works from
431+ the Software and otherwise use the Software in any manner not specifically
432+ authorized by this Agreement.
433+</p>
434+
435+<p>
436+ Licensee acknowledges that the Software may contain open source
437+ software, subject to applicable open source licenses, provided by
438+ Samsung for Licensee’s convenience. It is Licensee’s responsibility to
439+ comply with the terms and conditions, including but not limited to any
440+ modification rights, of those licenses. Source codes for these portions
441+ of the Software may be obtained separately through applicable sources.
442+</p>
443+
444+<p>
445+ Except for those portions of the Software clearly specified as open
446+ source, Licensee represents and warrants that it will not take any
447+ action that would create obligations that would conflict with Licensee's
448+ obligations hereunder, including without limitation, using the Software
449+ to merge with, link to, make function calls to, or share data structures
450+ with software available under an Open Source License Licensee shall
451+ defend and indemnify Samsung against all liabilities, losses, damages,
452+ costs and expenses relating to or arising out of a breach by Licensee of
453+ the foregoing representation and warranty. Open Source Licenses
454+ includes, without limitation, a software license that requires as a
455+ condition of use, modification, and/or distribution of such software
456+ that such software or other software incorporated into, derived from or
457+ distributed with such software be (a) disclosed or distributed in source
458+ code form; (b) be licensed for the purpose of making derivative works;
459+ or (c) be redistributable at no charge.
460+</p>
461+
462+<p>
463+ <strong>2.3 Restriction on Distribution.</strong> Licensee shall not
464+ distribute, rent, lease, and/or lend the Software and any copies thereof
465+ to any third parties (individuals or legal entities).
466+</p>
467+
468+<p>
469+ <strong>2.4 Proprietary Notices.</strong>
470+ Licensee shall not remove, efface or obscure any copyright or trademark
471+ notices from the Software. Licensee shall include reproductions of the
472+ Samsung copyright notice with each copy, if any, of the
473+ Software. Licensee acknowledges that any symbols, trademarks, trade
474+ names, and service marks adopted by Samsung to identify the Software
475+ belong to Samsung and that Licensee shall have no rights therein.
476+</p>
477+
478+<p>
479+ <strong>2.5 Ownership.</strong>
480+ Samsung and its licensors shall retain all right, title and interest,
481+ including all intellectual property rights, in and to the
482+ Software. Licensee hereby covenants that it will not assert any claim
483+ that the Software infringes any intellectual property right owned or
484+ controlled by Licensee.
485+</p>
486+
487+<p>
488+ <strong>2.6 No Other Rights Granted.</strong>
489+ Apart from the license rights expressly set forth in this Agreement,
490+ Samsung does not grant and Licensee does not receive any ownership
491+ right, title or interest nor any security interest or other interest in
492+ any intellectual property rights relating to the Software, nor in any
493+ copy of any part of the foregoing.
494+</p>
495+
496+
497+<h2>3. NO WARRANTY OR SUPPORT</h2>
498+
499+<p>
500+ <strong>3.1 No Warranty.</strong>
501+ THE SOFTWARE IS OFFERED "AS IS." SAMSUNG AND ITS LICENSORS GRANT AND
502+ LICENSEE RECEIVES NO WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, BY
503+ STATUTE, COMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE. SAMSUNG
504+ SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY,
505+ FITNESS FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THE
506+ SOFTWARE. WITHOUT LIMITATION OF THE ABOVE, SAMSUNG DISCLAIMS ANY
507+ WARRANTY THAT THE SOFTWARE IS BUG OR ERROR-FREE OR WILL OPERATE WITHOUT
508+ INTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS
509+ THEREFROM INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY OR
510+ RELIABILITY.
511+</p>
512+
513+<p>
514+ <strong>3.2 No Support.</strong>
515+ Nothing in this Agreement shall obligate Samsung to provide any support
516+ for the Software. Samsung may, but shall be under no obligation to,
517+ correct any defects in the Software and/or provide updates via Linaro’s
518+ website. Licensee shall make reasonable efforts to promptly report to
519+ Samsung any defects it finds in the Software, as an aid to creating
520+ improved revisions of the Software.
521+</p>
522+
523+<p>
524+ <strong>3.3 Dangerous Applications.</strong>
525+ The Software is not designed, intended, or certified for use in
526+ components of systems intended for the operation of weapons, weapons
527+ systems, nuclear installations, means of mass transportation, aviation,
528+ life-support computers or equipment (including resuscitation equipment
529+ and surgical implants), pollution control, hazardous substances
530+ management, or for any other dangerous application in which the failure
531+ of the Software could create a situation where personal injury or death
532+ may occur. Licensee understands that use of the Software in such
533+ applications is fully at the risk of Licensee.
534+</p>
535+
536+
537+<h2>4. TERM AND TERMINATION</h2>
538+
539+<p>
540+ <strong>4.1 Term and Termination.</strong>
541+ This Agreement is effective until terminated. Samsung may immediately
542+ terminate and cancel this Agreement and the licenses granted hereunder
543+ upon written notice to Licensee at any time with or without
544+ cause. Licensee may terminate this Agreement at any time by (i)
545+ completely removing the Software and any copies thereof from its system
546+ and (ii) notifying in writing Samsung of Licensee’s intent to terminate
547+ this Agreement.
548+</p>
549+
550+<p>
551+ <strong>4.2 Effect of Termination.</strong> Upon any termination of this
552+ Agreement, the rights and licenses granted to Licensee under this
553+ Agreement shall immediately terminate. Upon termination, Licensee shall
554+ destroy all copies of the Software in its possession or control and
555+ cease all use.
556+</p>
557+
558+<p>
559+ <strong>4.3 Survival.</strong> The provisions of Sections 1, 2.2, 2.3,
560+ 2.4, 2.5, 2.6, 3, 4, 5, and 6 shall survive the termination of this
561+ Agreement.
562+</p>
563+
564+<h2>5. LIMITATION OF LIABILITY</h2>
565+
566+<p>
567+ TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL SAMSUNG OR ANY OF
568+ SAMSUNG'S LICENSORS BE LIABLE FOR ANY LOSS, DAMAGE OR INJURY, DIRECT AND
569+ INDIRECT, INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED
570+ AND ON ANY THEORY OF LIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT
571+ (INCLUDING NEGLIGENCE) OR OTHERWISE, ARISING OUT OF THIS AGREEMENT,
572+ INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS, EVEN IF ADVISED OF THE
573+ POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY
574+ NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED
575+ REMEDY. IN ADDITION TO THE FOREGOINGS, SAMSUNG HAS NO LIABILITY TO THE
576+ LICENSEEE IF THE SOFTWARE INFRINGES OR IS ALLGEDED TO INFRINGE THE RIGHT
577+ OF ANY THIRD PARTY.
578+</p>
579+
580+<h2>6. MISCELLANEOUS</h2>
581+
582+<p>
583+ <strong>6.1 Assignment.</strong> Licensee may not assign this Agreement
584+ or any rights or obligation hereunder, directly or indirectly, by
585+ operation of law or otherwise, without the prior written consent of
586+ Samsung, and any such attempted assignment shall be void.
587+</p>
588+
589+<p>
590+ <strong>6.2 Governing Law; Venue.</strong>
591+ This Agreement shall be governed by and construed in accordance with the
592+ laws of the Republic of Korea, excluding conflict of laws provisions
593+ which may direct the application of another jurisdiction’s laws and the
594+ United Nations Convention on Contracts for the International Sale of
595+ Goods. All disputes, controversies or differences which may arise out of
596+ or in relation to or in connection with this Agreement, shall be shall
597+ be submit to the jurisdiction of the Suwon Civil Court, Korea.
598+</p>
599+
600+<p>
601+ <strong>6.3 Severability.</strong>
602+ All terms and provisions of this Agreement shall, if possible, be
603+ construed in a manner which makes them valid, but in the event any term
604+ or provision of this Agreement is found by a court of competent
605+ jurisdiction to be illegal or unenforceable, the validity or
606+ enforceability of the remainder of this Agreement shall not be affected
607+ if the illegal or unenforceable provision does not materially affect the
608+ intent of this Agreement. If the illegal or unenforceable provision
609+ materially affects the intent of the parties to this Agreement, this
610+ Agreement shall become terminated.
611+</p>
612+
613+<p>
614+ <strong>6.4 Equitable Relief.</strong>
615+ Licensee hereby acknowledges that its breach of this Agreement would
616+ cause irreparable harm and significant injury to Samsung that may be
617+ difficult to ascertain and that a remedy at law would be
618+ inadequate. Accordingly, Licensee agrees that Samsung shall have the
619+ right to seek and obtain immediate injunctive relief to enforce
620+ obligations under the Agreement in addition to any other rights and
621+ remedies it may have.
622+</p>
623+
624+<p>
625+ <strong>6.5 Export Regulations.</strong>
626+ Licensee agrees and warrants that it shall comply, at its own expense,
627+ with any applicable export and import laws, restrictions, national
628+ security controls and regulations.
629+</p>
630+
631+<p>
632+ <strong>6.6 Entire Agreement.</strong>
633+ This Agreement sets forth the entire Agreement between Samsung and
634+ Licensee relating to this subject matter.
635+</p>
636
637=== added file 'templates_releases/licenses/ste.html'
638--- templates_releases/licenses/ste.html 1970-01-01 00:00:00 +0000
639+++ templates_releases/licenses/ste.html 2012-08-02 11:02:22 +0000
640@@ -0,0 +1,119 @@
641+{% extends "license.html" %}
642+
643+{% block header %}
644+<title>License Agreement</title>
645+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
646+<style language="text/css">
647+ html, body {
648+ background: white;
649+ color: black;
650+ margin: 0;
651+ padding: 0;
652+ font-size: 11pt;
653+ font-family: Sans;
654+ }
655+
656+ div#head {
657+ height: 180px;
658+ width: 100%;
659+ background-image: url(/static/igloo-bg.png);
660+ background-repeat: repeat-x;
661+ }
662+
663+ h1 {
664+ height: 180px;
665+ padding: 2em;
666+ padding-left: 180px;
667+ margin: 0;
668+ margin-right: 1em;
669+ margin-left: 1em;
670+ color:white;
671+ font-size: 140%;
672+ font-weight: bold;
673+ text-align: left;
674+ background-image: url(/static/igloo.png);
675+ background-repeat: no-repeat;
676+ }
677+
678+ #content {
679+ margin: 0 auto;
680+ min-width: 600px;
681+ max-width: 920px;
682+ }
683+
684+ h2 {
685+ font-size: 120%;
686+ }
687+
688+ #license-text {
689+ background: white;
690+ color: black;
691+ margin: 2em;
692+ padding: 2em;
693+ height: 50%;
694+ overflow: scroll;
695+ text-align: left;
696+ -moz-border-radius: 10px;
697+ -webkit-border-radius: 10px;
698+ border-radius: 10px;
699+ }
700+
701+ #actions {
702+ padding: 2em;
703+ font-size: 80%;
704+ margin-bottom: 2em;
705+ }
706+
707+ #actions .button {
708+ background: #08e;
709+ color: white;
710+ text-decoration: none;
711+ font-weight: bold;
712+ padding: 10px;
713+ margin-left: 10px;
714+ float: right;
715+ font-size: 110%;
716+ -moz-border-radius: 4px;
717+ -webkit-border-radius: 4px;
718+ border-radius: 4px;
719+ }
720+
721+ #actions .button-decline:hover {
722+ background: #09f;
723+ }
724+
725+ #actions .button-accept {
726+ background: #8b4;
727+ }
728+
729+ #actions .button-accept:hover {
730+ background: #9c5;
731+ }
732+</style>
733+{% endblock %}
734+
735+{% block content-header %}
736+<div id="head">
737+<h1>
738+</h1>
739+
740+
741+</div>
742+
743+<div id="content">
744+
745+<div id="license-text">
746+{% endblock %}
747+{% block content-footer-top %}
748+ </div><!-- license-text -->
749+
750+ <div id="actions">
751+
752+ <div style="float: left;">If accepting the license doesn't work, enable
753+ cookies in your browser.</div><br />
754+{% endblock %}
755+{% block content-footer-bottom %}
756+ </div>
757+
758+ </div><!-- content -->
759+{% endblock %}
760
761=== added file 'templates_releases/licenses/ste.txt'
762--- templates_releases/licenses/ste.txt 1970-01-01 00:00:00 +0000
763+++ templates_releases/licenses/ste.txt 2012-08-02 11:02:22 +0000
764@@ -0,0 +1,299 @@
765+SNOWBALL CLICK-WRAP LIMITED LICENSE AGREEMENT FOR APPLICATION DEVELOPERS
766+("Agreement") ST-Ericsson 2011-10-27
767+
768+<p>
769+ This Agreement is a legally binding contract between you - either an
770+ individual or a legal entity - (hereinafter referred to as "Licensee")
771+ and ST-Ericsson SA, a company incorporated under the laws of
772+ Switzerland (hereinafter referred to as "ST-Ericsson").
773+</p>
774+
775+<p>
776+ IMPORTANT - PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. THIS IS A
777+ LEGALLY BINDING AGREEMENT. BY CLICKING THE "ACCEPT" BUTTON BELOW, OR
778+ BY DOWNLOADING OR INSTALLING OR OTHERWISE USING THE SOFTWARE, YOU
779+ AGREE TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE
780+ TO THE TERMS OF THIS AGREEMENT OR ARE NOT AUTHORISED TO ACCEPT AND
781+ AGREE TO THE TERMS OF THE AGREEMENT, DO NOT DOWNLOAD, INSTALL OR
782+ OTHERWISE USE THE SOFTWARE.
783+</p>
784+
785+<p>
786+ ST-Ericsson and Licensee are each hereinafter also referred to as the
787+ "Party" and, collectively, as the "Parties."
788+</p>
789+
790+<h2>
791+ 1 DEFINITIONS
792+</h2>
793+
794+<p>
795+ 1.1 Wherever used in this Agreement, the following terms shall have
796+ the meanings set forth below:
797+</p>
798+
799+<p>
800+ "Licensee's Applications" means applications and other software
801+ developed by Licensee which are intended to interface with and/or run
802+ on the Snowball Kit.
803+</p>
804+
805+<p>
806+ "Limited License Purpose" shall mean the limited license granted under Article 2.1 below.
807+</p>
808+
809+<p>
810+ "Snowball Kit" means the hardware products "SKY-S9500-ULP-Cxy"
811+ where x and y are integers between "0" and "9".
812+</p>
813+
814+<p>
815+ "Software" shall mean the ST-Ericsson's software for the A9500
816+ platform delivered in binary or in source for the related header
817+ files, including any copies and new releases thereof.
818+</p>
819+
820+<p>
821+ 1.2 Other capitalized expressions used in this Agreement shall have
822+ the meanings respectively assigned to them elsewhere in this
823+ Agreement.
824+</p>
825+
826+<p>
827+ 1.3 Words indicating the singular only also include the plural and
828+ vice-versa, where the context so requires.
829+</p>
830+
831+<p>
832+ 1.4 The headings of the Articles in this Agreement are for convenience
833+ only and shall not affect the interpretation of this Agreement.
834+</p>
835+
836+<h2>2 LICENSE GRANT</h2>
837+
838+<p>
839+ 2.1 Subject to the terms and conditions in this Agreement, STEricsson
840+ hereby grants to Licensee a non-exclusive, non-transferable, limited
841+ license to use and reproduce the Software solely to the extent
842+ required in order to (i) develop Licensee's Applications that
843+ interface with and/or run with the Snowball Kit; and (ii) integrate
844+ the Software with Licensee Application and/or third party software;
845+ and (iii) conduct development testing of the Licensee's Applications'
846+ or third party software operation in conjunction with the Snowball Kit
847+ and/or Licensee's demonstration of such Licensee's Applications in
848+ conjunction with the Snowball Kit (hereinafter "Limited License
849+ Purpose"). The Licensee is entitled to flash the Software on a
850+ commercial product containg the Snowball Kit. The aforesaid license to
851+ the Software is provided that all and any use of the Software is
852+ solely and exclusively used on the Snowball Kit.
853+</p>
854+
855+<p>
856+ 2.2 Some portion of the Software might contain Open Source
857+ Software. Such Open Source Software might be subject to Open Source
858+ Terms applicable for each such portion, as further specified in the
859+ Software. Such Open Source Software is supplied to Licensee solely
860+ under the applicable Open Source Terms and is not subject to the terms
861+ of this Agreement.
862+</p>
863+
864+<p>
865+ 2.3 Licensee shall not, and shall not permit any third party to alter,
866+ change, modify, adapt, decompile, disassemble, compile or reverse
867+ engineer or remove or circumvent any protection or other restrictive
868+ technology mechanism of the the Software and/or any and all parts
869+ thereof, or otherwise use, sub-license, assign or pledge the Software
870+ and/or any and all parts thereof other than what is expressly
871+ permitted in accordance with this Agreement.
872+</p>
873+
874+<p>
875+ 2.4 ST-Ericsson shall retain on behalf of itself or the original owner
876+ all right title and interest to any ST-Ericsson Intellectual Property
877+ Rights, including but not limited to any patents, trademarks,
878+ copyrights, and trade secret rights, and title to copies of any and
879+ all media bearing the Software or the Snowball Kit and/or any and all
880+ parts thereof, and the Licensee acquires no interest under this
881+ Agreement to any ST-Ericsson Intellectual Property Rights or other
882+ rights other than the Limited License Purpose expressly set forth in
883+ this Article 2.
884+</p>
885+
886+<p>
887+ 2.5 Notwithstanding anything to the contrary herein, nothing contained
888+ hereunder shall be construed as conferring any right, license or
889+ immunity, either directly or by implication, estoppel or otherwise to
890+ Licensee or any third party: (i) under any intellectual property
891+ rights of any third party; specifically, without limiting the
892+ generality of the foregoing, the sale and use of the Products are not
893+ licensed under any patents of Telefonaktiebolaget LM Ericsson, or any
894+ affiliates of such company; (ii) under any intellectual property
895+ rights of STEricsson other than explicitly granted under in this
896+ Agreement; or (iii) with respect to any trademark, trade or brand
897+ name, a corporate name of ST-Ericsson, or any other name or mark, or
898+ contraction abbreviation or simulation thereof.
899+</p>
900+
901+
902+<h2>3 DELIVERY</h2>
903+
904+<p>
905+ 3.1 All deliveries of the Software are EX-WORKS (Incoterms 2000) at
906+ ST-Ericsson's indicated facility.
907+</p>
908+
909+
910+<h2>4 NO REPRESENTATIONS OR WARRANTIES</h2>
911+
912+<p>
913+ 4.1 The Software is delivered "as is" and all representations and
914+ warranties, express or implied, are hereby disclaimed, including, but
915+ not limited to that:
916+</p>
917+
918+<p>
919+ a) the Software or any part thereof is accurate or reliable for any
920+ purposes whatsoever; and
921+</p>
922+
923+<p>
924+ b) the use of the Software does not infringe any rights that may be
925+ held by a third party in respect of any such information.
926+</p>
927+
928+<p>
929+ 4.2 Licensee acknowledges and agrees that any use of the Software
930+ and/or the Snowball Kit, or any other part thereof, or any use of
931+ Licensee's Applications is at Licensee's sole risk.
932+</p>
933+
934+<h2>5 WARRANTY DISCLAIMER AND GENERAL LIMITATION OF LIABILITY</h2>
935+
936+<p>
937+ 5.1 THE SOFTWARE AND/OR SNOWBALL KIT AND ANY AND ALL PARTS THEREOF ARE
938+ PROVIDED "AS IS". ST-ERICSSON MAKES NO REPRESENTATIONS OR WARRANTIES
939+ WITH RESPECT TO THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF
940+ WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, IMPLIED
941+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
942+ PURPOSE. SPECIFICALLY, WITHOUT LIMITING THE GENERALITY OF THE
943+ FOREGOING, ST-ERICSSON MAKES NO REPRESENTATION OR WARRANTY THAT (I)
944+ THE USE OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF WILL
945+ BE UNINTERRUPTED OR ERROR FREE, AND OR (II) ANY USE AND OR
946+ DISTRIBUTION OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF,
947+ WHETHER INTEGRATED INTO OTHER EQUIPMENT OR NOT, ARE FREE FROM
948+ INFRINGEMENT OF ANY THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, AND IT
949+ SHALL BE THE SOLE RESPONSIBILITY OF LICENSEE TO MAKE SUCH
950+ DETERMINATION AS IS NECESSARY WITH RESPECT TO THE ACQUISITION OF
951+ LICENSES UNDER PATENTS AND OTHER INTELLECTUAL PROPERTY RIGHTS OF THIRD
952+ PARTIES. CONSEQUENTLY, IN NO EVENT SHALL ST-ERICSSON, ITS AFFILIATES
953+ OR THEIR SUPPLIERS BE LIABLE TO LICENSEE FOR ANY LOSS OR DAMAGES
954+ (WHETHER DIRECT, INDRECT OR CONSEQUENTIAL) ARISING FROM ANY USE AND OR
955+ DISTRIBUTION OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF,
956+ WHETHER INTEGRATED INTO OTHER EQUIPMENT OR NOT, AND OR ARISING BY
957+ REASON OF THE FACT THAT THE SOFTWARE AND/OR SNOWBALL KIT AND OR ANY
958+ PARTS THEREOF ARE DEFECTIVE OR NON-CONFORMING AND OR ARISING FROM THIS
959+ AGREEMENT AND OR ANY BREACH THEREOF.
960+</p>
961+
962+<p>
963+ 5.2 THE PARTIES AGREE THAT ANY RIGHTS AND REMEDIES THE LICENSEE MAY
964+ HAVE AND OR ANY OBLIGATIONS THAT ST-ERICSSON MAY HAVE ACCORDING TO LAW
965+ OR OTHERWISE WITH RESPECT TO ERRORS AND DEFECTS IN THE SOFTWARE AND/OR
966+ OTHER DELIVERABLES AND/OR IN ANY PART THEREOF SHALL HEREBY BE
967+ DISCLAIMED.
968+</p>
969+
970+<h2>
971+ 6 TERMINATION
972+</h2>
973+
974+<p>
975+ 6.1 The license and this Agreement are effective until terminated.
976+</p>
977+
978+<p>
979+ 6.2 Licensee agrees that each of the terms and conditions set out in
980+ this Agreement are material and that failure of Licensee to comply
981+ with these terms and conditions shall constitute sufficient cause for
982+ ST-Ericsson to terminate this Agreement. The aforesaid is without any
983+ prejudice to other rights ST-Ericsson may have in case of breach of
984+ this Agreement.
985+</p>
986+
987+<p>
988+ 6.3 In the event of termination of this Agreement Licensee shall
989+ immediately destroy all copies of the Software, including all portions
990+ and derivatives thereof.
991+</p>
992+
993+<h2>
994+ 7 EXPORT CONTROL
995+</h2>
996+
997+<p>
998+ 7.1 Licensee recognizes that the Software or any parts thereof may be
999+ subject to import and export regulations in certain
1000+ countries. Licensee agrees that it will not knowingly export,
1001+ re-export or import products, technology or Software, or any parts
1002+ thereof, of ST-Ericsson, directly or indirectly, to any country to the
1003+ extent export to such country at the time of export requires an export
1004+ license or other governmental approval under any export control laws
1005+ and regulations, without first obtaining such license or approval.
1006+</p>
1007+
1008+<h2>
1009+ 8 COMPLIANCE WITH LAWS
1010+</h2>
1011+
1012+<p>
1013+ 8.1 Licensee agrees not to use the Software in violation of, and to
1014+ comply with any and all applicable law, statute, ordinance or other
1015+ regulation.
1016+</p>
1017+
1018+<h2>
1019+ 9 ENTIRE AGREEMENT
1020+</h2>
1021+
1022+<p>
1023+ 9.1 This is the entire agreement between Licensee and ST-Ericsson on
1024+ the subject matter of this Agreement, and supersedes all
1025+ representations, undertakings and agreements previously made between
1026+ the Parties with respect to the subject matter of this Agreement.
1027+</p>
1028+
1029+<h2>
1030+ 10 SEVERABILITY
1031+</h2>
1032+
1033+<p>
1034+ 10.1 If a court or agency of competent jurisdiction holds any term of
1035+ this Agreement invalid, illegal, or unenforceable for any reason, the
1036+ remainder of this Agreement shall be valid and enforceable and such
1037+ term shall be substituted by a valid and enforceable provision so as
1038+ to the best accomplish the objectives of such provision in this
1039+ Agreement.
1040+</p>
1041+
1042+<h2>
1043+ 11 GOVERNING LAW AND JURISDICTION
1044+</h2>
1045+
1046+<p>
1047+ 11.1 This Agreement shall be governed by and construed in accordance
1048+ with the laws of Switzerland, without regard to its conflict of laws
1049+ rules. The application of The United Nations Convention of Contracts
1050+ for the International Sale of Goods is explicitly excluded.
1051+</p>
1052+
1053+<p>
1054+ 11.2 Any and all disputes, differences or questions arising out of or
1055+ in connection with this Agreement shall be under the exclusive
1056+ jurisdiction of the Swiss courts and the venue shall be Geneva.
1057+</p>
1058+
1059+<p>
1060+ 11.3 Notwithstanding the aforesaid, nothing in this Article 11 shall
1061+ prevent the Parties from seeking any interim or final injunctive or
1062+ equitable relief by a court of competent jurisdiction.
1063+</p>
1064
1065=== added symlink 'templates_releases/licenses/stericsson.html'
1066=== target is u'ste.html'
1067=== added symlink 'templates_releases/licenses/stericsson.txt'
1068=== target is u'ste.txt'
1069=== added directory 'templates_snapshots'
1070=== added file 'templates_snapshots/404.html'
1071--- templates_snapshots/404.html 1970-01-01 00:00:00 +0000
1072+++ templates_snapshots/404.html 2012-08-02 11:02:22 +0000
1073@@ -0,0 +1,5 @@
1074+{% extends "header.html" %}
1075+
1076+{% block content %}
1077+Page not found.
1078+{% endblock %}
1079
1080=== added file 'templates_snapshots/dir_template.html'
1081--- templates_snapshots/dir_template.html 1970-01-01 00:00:00 +0000
1082+++ templates_snapshots/dir_template.html 2012-08-02 11:02:22 +0000
1083@@ -0,0 +1,42 @@
1084+{% extends "header.html" %}
1085+
1086+{% block content %}
1087+{{ header_content|safe }}
1088+<table>
1089+ <tr>
1090+ <th></th><th>Name</th><th>License</th><th>Last modified</th><th>Size</th>
1091+ <tr><th colspan="5"><hr></th>
1092+ </tr>
1093+ {% if up_dir != None %}
1094+ <tr>
1095+ <td>
1096+ <img src="{{ STATIC_URL }}/static/go-up.png" alt="Parent Directory"/>
1097+ </td>
1098+ <td><a href="{{ up_dir }}">Parent Directory</a></td>
1099+ <td></td>
1100+ <td></td>
1101+ <td></td>
1102+ </tr>
1103+ {% endif %}
1104+
1105+{% for value in dirlist %}
1106+ <tr>
1107+ <td>
1108+ <img src="{{ STATIC_URL }}/static/{{ value.type }}.png" alt="{{ value.type }}"/>
1109+ </td>
1110+ <td><a href="{{ value.url }}">{{ value.name }}</a></td>
1111+ <td>
1112+ {% if value.license_digest_list == "OPEN" %}
1113+ <i>open</i>
1114+ {% else %}
1115+ {% for license in value.license_list %}
1116+ {{ license.theme }}
1117+ {% endfor %}
1118+ {% endif %}
1119+ </td>
1120+ <td>{{ value.mtime }}</td>
1121+ <td>{% if value.type != 'folder' %}{{ value.size }}{% endif %}</td>
1122+ </tr>
1123+{% endfor %}
1124+</table>
1125+{% endblock %}
1126
1127=== added file 'templates_snapshots/folder.gif'
1128Binary 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
1129=== added file 'templates_snapshots/header.html'
1130--- templates_snapshots/header.html 1970-01-01 00:00:00 +0000
1131+++ templates_snapshots/header.html 2012-08-02 11:02:22 +0000
1132@@ -0,0 +1,19 @@
1133+<head>
1134+ {% if dl != None %}
1135+ <meta http-equiv="REFRESH" content="0;url={{ dl }}">
1136+ {% endif %}
1137+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
1138+ <title>Linaro Snapshots</title>
1139+ <link rel="stylesheet" type="text/css" href="resources/css/ext-all.css" />
1140+ <link href="http://www.linaro.org/remote/css/init.css" rel="stylesheet" type="text/css" >
1141+ <link href="http://www.linaro.org/remote/css/remote.css" rel="stylesheet" type="text/css" >
1142+ <script language="javascript" type="text/javascript" src="http://www.linaro.org/remote/js/linarofamily.js"></script>
1143+</head>
1144+<body>
1145+<div id="head">
1146+ <h1>Linaro Snapshots</h1>
1147+</div>
1148+<div id="content">
1149+ {% block content %}{% endblock %}
1150+</body>
1151+
1152
1153=== added file 'templates_snapshots/license.html'
1154--- templates_snapshots/license.html 1970-01-01 00:00:00 +0000
1155+++ templates_snapshots/license.html 2012-08-02 11:02:22 +0000
1156@@ -0,0 +1,17 @@
1157+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
1158+ "http://www.w3.org/TR/html4/loose.dtd">
1159+<html>
1160+<head>
1161+ {% block header %}{% endblock %}
1162+</head>
1163+<body>
1164+ {% block content-header %}{% endblock %}
1165+ {{ license.text|safe }}
1166+ {% block content-footer-top %}{% endblock %}
1167+ <form action="/accept-license?lic={{ license.digest }}&url={{ url }}" method="post">
1168+ {% csrf_token %}
1169+ <input class="button button-accept" type="submit" value="Accept" name="accept" /> <input class="button button-decline" type="submit" value="Reject" name="reject"/>
1170+ </form>
1171+ {% block content-footer-bottom %}{% endblock %}
1172+</body>
1173+</html>
1174
1175=== added directory 'templates_snapshots/licenses'
1176=== added file 'templates_snapshots/licenses/linaro.html'
1177--- templates_snapshots/licenses/linaro.html 1970-01-01 00:00:00 +0000
1178+++ templates_snapshots/licenses/linaro.html 2012-08-02 11:02:22 +0000
1179@@ -0,0 +1,112 @@
1180+{% extends "license.html" %}
1181+
1182+{% block header %}
1183+<title>License Agreement</title>
1184+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
1185+<style language="text/css">
1186+ html, body {
1187+// background: #aaa;
1188+ color: black;
1189+ margin: 0;
1190+ padding: 0;
1191+ font-size: 11pt;
1192+ font-family: Sans;
1193+ }
1194+
1195+ div#head {
1196+ height: 110px;
1197+ background: white;
1198+ padding: 2em;
1199+ }
1200+
1201+ h1 {
1202+ padding-left: 200px;
1203+ margin: 0;
1204+ color: #444;
1205+ font-size: 140%;
1206+ font-weight: bold;
1207+ text-align: center;
1208+ background-image: url(/static/linaro.png);
1209+ background-repeat: no-repeat;
1210+ height: 110px;
1211+ }
1212+
1213+ #content {
1214+ margin: 0 auto;
1215+ min-width: 600px;
1216+ max-width: 920px;
1217+ }
1218+
1219+ h2 {
1220+ font-size: 120%;
1221+ }
1222+
1223+ #license-text {
1224+ background: white;
1225+ color: black;
1226+ margin: 2em;
1227+ padding: 2em;
1228+ text-align: left;
1229+ -moz-border-radius: 10px;
1230+ -webkit-border-radius: 10px;
1231+ border-radius: 10px;
1232+ }
1233+
1234+ #actions {
1235+ padding: 2em;
1236+ font-size: 80%;
1237+ margin-bottom: 4em;
1238+ }
1239+
1240+ #actions .button {
1241+ background: #e80;
1242+ color: white;
1243+ text-decoration: none;
1244+ font-weight: bold;
1245+ padding: 10px;
1246+ margin-left: 10px;
1247+ float: right;
1248+ font-size: 110%;
1249+ -moz-border-radius: 4px;
1250+ -webkit-border-radius: 4px;
1251+ border-radius: 4px;
1252+ }
1253+
1254+ #actions .button-decline:hover {
1255+ background: #f90;
1256+ }
1257+
1258+ #actions .button-accept {
1259+ background: #8b4;
1260+ }
1261+
1262+ #actions .button-accept:hover {
1263+ background: #9c5;
1264+ }
1265+</style>
1266+{% endblock %}
1267+
1268+{% block content-header %}
1269+<div id="head">
1270+<h1>
1271+</h1>
1272+</div>
1273+
1274+<div id="content">
1275+
1276+<div id="license-text">
1277+{% endblock %}
1278+{% block content-footer-top %}
1279+ </div><!-- license-text -->
1280+
1281+ <div id="actions">
1282+
1283+ <div style="float: left;">If accepting the license doesn't work, enable
1284+ cookies in your browser.</div><br />
1285+{% endblock %}
1286+{% block content-footer-bottom %}
1287+ </div>
1288+
1289+ </div><!-- content -->
1290+{% endblock %}
1291+
1292
1293=== added file 'templates_snapshots/licenses/linaro.txt'
1294--- templates_snapshots/licenses/linaro.txt 1970-01-01 00:00:00 +0000
1295+++ templates_snapshots/licenses/linaro.txt 2012-08-02 11:02:22 +0000
1296@@ -0,0 +1,1 @@
1297+Linaro license
1298
1299=== added file 'templates_snapshots/licenses/nolicense.html'
1300--- templates_snapshots/licenses/nolicense.html 1970-01-01 00:00:00 +0000
1301+++ templates_snapshots/licenses/nolicense.html 2012-08-02 11:02:22 +0000
1302@@ -0,0 +1,9 @@
1303+<html>
1304+<head>
1305+ <title>License has not been accepted</title>
1306+</head>
1307+<body>
1308+ <h1>License has not been accepted</h1>
1309+ <p>Without accepting the license, you can not download the requested files.</p>
1310+</body>
1311+</html>
1312
1313=== added file 'templates_snapshots/licenses/samsung.html'
1314--- templates_snapshots/licenses/samsung.html 1970-01-01 00:00:00 +0000
1315+++ templates_snapshots/licenses/samsung.html 2012-08-02 11:02:22 +0000
1316@@ -0,0 +1,112 @@
1317+{% extends "license.html" %}
1318+
1319+{% block header %}
1320+<title>License Agreement</title>
1321+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
1322+<style language="text/css">
1323+ html, body {
1324+ background: #aaa;
1325+ color: black;
1326+ margin: 0;
1327+ padding: 0;
1328+ font-size: 11pt;
1329+ font-family: Sans;
1330+ }
1331+
1332+ div#head {
1333+ height: 120px;
1334+ background: #e80;
1335+ padding: 2em;
1336+ }
1337+
1338+ h1 {
1339+ padding-left: 200px;
1340+ margin: 0;
1341+ color: white;
1342+ font-size: 140%;
1343+ font-weight: bold;
1344+ text-align: center;
1345+ background-image: url(/static/exynos.png);
1346+ background-repeat: no-repeat;
1347+ height: 109px;
1348+ }
1349+
1350+ #content {
1351+ margin: 0 auto;
1352+ min-width: 600px;
1353+ max-width: 920px;
1354+ }
1355+
1356+ h2 {
1357+ font-size: 120%;
1358+ }
1359+
1360+ #license-text {
1361+ background: white;
1362+ color: black;
1363+ margin: 2em;
1364+ padding: 2em;
1365+ overflow: scroll;
1366+ text-align: left;
1367+ -moz-border-radius: 10px;
1368+ -webkit-border-radius: 10px;
1369+ border-radius: 10px;
1370+ }
1371+
1372+ #actions {
1373+ padding: 2em;
1374+ font-size: 80%;
1375+ margin-bottom: 4em;
1376+ }
1377+
1378+ #actions .button {
1379+ background: #e80;
1380+ color: white;
1381+ text-decoration: none;
1382+ font-weight: bold;
1383+ padding: 10px;
1384+ margin-left: 10px;
1385+ float: right;
1386+ font-size: 110%;
1387+ -moz-border-radius: 4px;
1388+ -webkit-border-radius: 4px;
1389+ border-radius: 4px;
1390+ }
1391+
1392+ #actions .button-decline:hover {
1393+ background: #f90;
1394+ }
1395+
1396+ #actions .button-accept {
1397+ background: #8b4;
1398+ }
1399+
1400+ #actions .button-accept:hover {
1401+ background: #9c5;
1402+ }
1403+</style>
1404+{% endblock %}
1405+
1406+{% block content-header %}
1407+<div id="head">
1408+<h1>
1409+</h1>
1410+</div>
1411+
1412+<div id="content">
1413+
1414+<div id="license-text">
1415+{% endblock %}
1416+{% block content-footer-top %}
1417+</div><!-- license-text -->
1418+
1419+<div id="actions">
1420+
1421+<div style="float: left;">If accepting the license doesn't work, enable
1422+cookies in your browser.</div><br />
1423+{% endblock %}
1424+{% block content-footer-bottom %}
1425+</div>
1426+
1427+</div><!-- content -->
1428+{% endblock %}
1429
1430=== added file 'templates_snapshots/licenses/samsung.txt'
1431--- templates_snapshots/licenses/samsung.txt 1970-01-01 00:00:00 +0000
1432+++ templates_snapshots/licenses/samsung.txt 2012-08-02 11:02:22 +0000
1433@@ -0,0 +1,268 @@
1434+SAMSUNG DEVELOPMENT TOOL KIT END-USER LICENSE AGREEMENT FOR LINARO
1435+DEVELOPERS (“Agreement”)
1436+
1437+<p>IMPORTANT — PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.</p>
1438+
1439+<p>
1440+ THIS IS A LEGALLY BINDING AGREEMENT BETWEEN YOU, an individual or a
1441+ legal entity, (“LICENSEE”) AND SAMSUNG ELECTRONICS CO.,
1442+ LTD. (“SAMSUNG”). BY CLICKING THE "ACCEPT" BUTTON, OR BY DOWNLOADING OR
1443+ INSTALLING OR OTHERWISE USING THE SOFTWARE, YOU AGREE TO BE BOUND BY THE
1444+ TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS
1445+ AGREEMENT OR ARE NOT AUTHORISED TO ACCEPT AND AGREE TO THE TERMS OF THE
1446+ AGREEMENT ON BEHALF OF YOUR LEGAL ENTITY, DO NOT DOWNLOAD, INSTALL OR
1447+ OTHERWISE USE THE SOFTWARE.
1448+</p>
1449+
1450+
1451+<h2>1. DEFINITIONS.</h2>
1452+<p>
1453+ <strong>1.1 <em>"Samsung Product"</em></strong> means any of integrated
1454+ circuit product(s), including but not limited to system on chip products,
1455+ made by or for Samsung with which the Software was designed to be used.
1456+</p>
1457+
1458+<p>
1459+ <strong>1.2 <em>"Software"</em></strong> shall mean the software in binary form
1460+ and all other machine readable materials that are included with such
1461+ software or intended for use with it, including (a) any updates or error
1462+ corrections and (b) any documentation including user manuals that you
1463+ obtain from Samsung via on-line transmission through Linaro’s official websites.
1464+</p>
1465+
1466+<p>
1467+ <strong>1.3 <em>“Use”</em></strong> means in respect of the Software,
1468+ the use of (including copying the Software to the extent that such
1469+ copying is incidental to such use, including installation, backup and
1470+ execution) the Software, or any part thereof. Use shall specifically
1471+ exclude: (i) the translation, adaptation, arrangement or other
1472+ alteration of the Software except as allowed by local legislation
1473+ implementing Article 6 of the EC Directive on the legal protection of
1474+ computer programs (91/250/EEC) and then only to the extent necessary to
1475+ achieve interoperability of an independently created program with other
1476+ programs; and (ii) the adapting or reverse compiling of the Software for
1477+ the purpose of error correction.
1478+</p>
1479+
1480+
1481+<h2>2. LICENSE GRANT; OWNERSHIP</h2>
1482+
1483+<p>
1484+ <strong>2.1 License Grants.</strong> Subject to the terms and conditions
1485+ of this Agreement, Samsung hereby grants to Licensee, a non-exclusive,
1486+ non-transferable, limited license, to Use, without right to sublicense
1487+ or distribute, the Software, solely to the extent required in order to
1488+ develop and/or test Licensee software applications for use solely with
1489+ Samsung Product, and only if in compliance with all the provisions
1490+ herein.
1491+</p>
1492+
1493+<p>
1494+ <strong>2.2 Restriction on Modification.</strong> Licensee shall not
1495+ modify, alter, adapt, reverse engineer, decompile, disassemble the
1496+ Software or make any attempts to create non-licensed derivative works from
1497+ the Software and otherwise use the Software in any manner not specifically
1498+ authorized by this Agreement.
1499+</p>
1500+
1501+<p>
1502+ Licensee acknowledges that the Software may contain open source
1503+ software, subject to applicable open source licenses, provided by
1504+ Samsung for Licensee’s convenience. It is Licensee’s responsibility to
1505+ comply with the terms and conditions, including but not limited to any
1506+ modification rights, of those licenses. Source codes for these portions
1507+ of the Software may be obtained separately through applicable sources.
1508+</p>
1509+
1510+<p>
1511+ Except for those portions of the Software clearly specified as open
1512+ source, Licensee represents and warrants that it will not take any
1513+ action that would create obligations that would conflict with Licensee's
1514+ obligations hereunder, including without limitation, using the Software
1515+ to merge with, link to, make function calls to, or share data structures
1516+ with software available under an Open Source License Licensee shall
1517+ defend and indemnify Samsung against all liabilities, losses, damages,
1518+ costs and expenses relating to or arising out of a breach by Licensee of
1519+ the foregoing representation and warranty. Open Source Licenses
1520+ includes, without limitation, a software license that requires as a
1521+ condition of use, modification, and/or distribution of such software
1522+ that such software or other software incorporated into, derived from or
1523+ distributed with such software be (a) disclosed or distributed in source
1524+ code form; (b) be licensed for the purpose of making derivative works;
1525+ or (c) be redistributable at no charge.
1526+</p>
1527+
1528+<p>
1529+ <strong>2.3 Restriction on Distribution.</strong> Licensee shall not
1530+ distribute, rent, lease, and/or lend the Software and any copies thereof
1531+ to any third parties (individuals or legal entities).
1532+</p>
1533+
1534+<p>
1535+ <strong>2.4 Proprietary Notices.</strong>
1536+ Licensee shall not remove, efface or obscure any copyright or trademark
1537+ notices from the Software. Licensee shall include reproductions of the
1538+ Samsung copyright notice with each copy, if any, of the
1539+ Software. Licensee acknowledges that any symbols, trademarks, trade
1540+ names, and service marks adopted by Samsung to identify the Software
1541+ belong to Samsung and that Licensee shall have no rights therein.
1542+</p>
1543+
1544+<p>
1545+ <strong>2.5 Ownership.</strong>
1546+ Samsung and its licensors shall retain all right, title and interest,
1547+ including all intellectual property rights, in and to the
1548+ Software. Licensee hereby covenants that it will not assert any claim
1549+ that the Software infringes any intellectual property right owned or
1550+ controlled by Licensee.
1551+</p>
1552+
1553+<p>
1554+ <strong>2.6 No Other Rights Granted.</strong>
1555+ Apart from the license rights expressly set forth in this Agreement,
1556+ Samsung does not grant and Licensee does not receive any ownership
1557+ right, title or interest nor any security interest or other interest in
1558+ any intellectual property rights relating to the Software, nor in any
1559+ copy of any part of the foregoing.
1560+</p>
1561+
1562+
1563+<h2>3. NO WARRANTY OR SUPPORT</h2>
1564+
1565+<p>
1566+ <strong>3.1 No Warranty.</strong>
1567+ THE SOFTWARE IS OFFERED "AS IS." SAMSUNG AND ITS LICENSORS GRANT AND
1568+ LICENSEE RECEIVES NO WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, BY
1569+ STATUTE, COMMUNICATION OR CONDUCT WITH LICENSEE, OR OTHERWISE. SAMSUNG
1570+ SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY,
1571+ FITNESS FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THE
1572+ SOFTWARE. WITHOUT LIMITATION OF THE ABOVE, SAMSUNG DISCLAIMS ANY
1573+ WARRANTY THAT THE SOFTWARE IS BUG OR ERROR-FREE OR WILL OPERATE WITHOUT
1574+ INTERRUPTION, AND GRANTS NO WARRANTY REGARDING ITS USE OR THE RESULTS
1575+ THEREFROM INCLUDING, WITHOUT LIMITATION, ITS CORRECTNESS, ACCURACY OR
1576+ RELIABILITY.
1577+</p>
1578+
1579+<p>
1580+ <strong>3.2 No Support.</strong>
1581+ Nothing in this Agreement shall obligate Samsung to provide any support
1582+ for the Software. Samsung may, but shall be under no obligation to,
1583+ correct any defects in the Software and/or provide updates via Linaro’s
1584+ website. Licensee shall make reasonable efforts to promptly report to
1585+ Samsung any defects it finds in the Software, as an aid to creating
1586+ improved revisions of the Software.
1587+</p>
1588+
1589+<p>
1590+ <strong>3.3 Dangerous Applications.</strong>
1591+ The Software is not designed, intended, or certified for use in
1592+ components of systems intended for the operation of weapons, weapons
1593+ systems, nuclear installations, means of mass transportation, aviation,
1594+ life-support computers or equipment (including resuscitation equipment
1595+ and surgical implants), pollution control, hazardous substances
1596+ management, or for any other dangerous application in which the failure
1597+ of the Software could create a situation where personal injury or death
1598+ may occur. Licensee understands that use of the Software in such
1599+ applications is fully at the risk of Licensee.
1600+</p>
1601+
1602+
1603+<h2>4. TERM AND TERMINATION</h2>
1604+
1605+<p>
1606+ <strong>4.1 Term and Termination.</strong>
1607+ This Agreement is effective until terminated. Samsung may immediately
1608+ terminate and cancel this Agreement and the licenses granted hereunder
1609+ upon written notice to Licensee at any time with or without
1610+ cause. Licensee may terminate this Agreement at any time by (i)
1611+ completely removing the Software and any copies thereof from its system
1612+ and (ii) notifying in writing Samsung of Licensee’s intent to terminate
1613+ this Agreement.
1614+</p>
1615+
1616+<p>
1617+ <strong>4.2 Effect of Termination.</strong> Upon any termination of this
1618+ Agreement, the rights and licenses granted to Licensee under this
1619+ Agreement shall immediately terminate. Upon termination, Licensee shall
1620+ destroy all copies of the Software in its possession or control and
1621+ cease all use.
1622+</p>
1623+
1624+<p>
1625+ <strong>4.3 Survival.</strong> The provisions of Sections 1, 2.2, 2.3,
1626+ 2.4, 2.5, 2.6, 3, 4, 5, and 6 shall survive the termination of this
1627+ Agreement.
1628+</p>
1629+
1630+<h2>5. LIMITATION OF LIABILITY</h2>
1631+
1632+<p>
1633+ TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL SAMSUNG OR ANY OF
1634+ SAMSUNG'S LICENSORS BE LIABLE FOR ANY LOSS, DAMAGE OR INJURY, DIRECT AND
1635+ INDIRECT, INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES, HOWEVER CAUSED
1636+ AND ON ANY THEORY OF LIABILITY, WHETHER FOR BREACH OF CONTRACT, TORT
1637+ (INCLUDING NEGLIGENCE) OR OTHERWISE, ARISING OUT OF THIS AGREEMENT,
1638+ INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS, EVEN IF ADVISED OF THE
1639+ POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY
1640+ NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED
1641+ REMEDY. IN ADDITION TO THE FOREGOINGS, SAMSUNG HAS NO LIABILITY TO THE
1642+ LICENSEEE IF THE SOFTWARE INFRINGES OR IS ALLGEDED TO INFRINGE THE RIGHT
1643+ OF ANY THIRD PARTY.
1644+</p>
1645+
1646+<h2>6. MISCELLANEOUS</h2>
1647+
1648+<p>
1649+ <strong>6.1 Assignment.</strong> Licensee may not assign this Agreement
1650+ or any rights or obligation hereunder, directly or indirectly, by
1651+ operation of law or otherwise, without the prior written consent of
1652+ Samsung, and any such attempted assignment shall be void.
1653+</p>
1654+
1655+<p>
1656+ <strong>6.2 Governing Law; Venue.</strong>
1657+ This Agreement shall be governed by and construed in accordance with the
1658+ laws of the Republic of Korea, excluding conflict of laws provisions
1659+ which may direct the application of another jurisdiction’s laws and the
1660+ United Nations Convention on Contracts for the International Sale of
1661+ Goods. All disputes, controversies or differences which may arise out of
1662+ or in relation to or in connection with this Agreement, shall be shall
1663+ be submit to the jurisdiction of the Suwon Civil Court, Korea.
1664+</p>
1665+
1666+<p>
1667+ <strong>6.3 Severability.</strong>
1668+ All terms and provisions of this Agreement shall, if possible, be
1669+ construed in a manner which makes them valid, but in the event any term
1670+ or provision of this Agreement is found by a court of competent
1671+ jurisdiction to be illegal or unenforceable, the validity or
1672+ enforceability of the remainder of this Agreement shall not be affected
1673+ if the illegal or unenforceable provision does not materially affect the
1674+ intent of this Agreement. If the illegal or unenforceable provision
1675+ materially affects the intent of the parties to this Agreement, this
1676+ Agreement shall become terminated.
1677+</p>
1678+
1679+<p>
1680+ <strong>6.4 Equitable Relief.</strong>
1681+ Licensee hereby acknowledges that its breach of this Agreement would
1682+ cause irreparable harm and significant injury to Samsung that may be
1683+ difficult to ascertain and that a remedy at law would be
1684+ inadequate. Accordingly, Licensee agrees that Samsung shall have the
1685+ right to seek and obtain immediate injunctive relief to enforce
1686+ obligations under the Agreement in addition to any other rights and
1687+ remedies it may have.
1688+</p>
1689+
1690+<p>
1691+ <strong>6.5 Export Regulations.</strong>
1692+ Licensee agrees and warrants that it shall comply, at its own expense,
1693+ with any applicable export and import laws, restrictions, national
1694+ security controls and regulations.
1695+</p>
1696+
1697+<p>
1698+ <strong>6.6 Entire Agreement.</strong>
1699+ This Agreement sets forth the entire Agreement between Samsung and
1700+ Licensee relating to this subject matter.
1701+</p>
1702
1703=== added file 'templates_snapshots/licenses/ste.html'
1704--- templates_snapshots/licenses/ste.html 1970-01-01 00:00:00 +0000
1705+++ templates_snapshots/licenses/ste.html 2012-08-02 11:02:22 +0000
1706@@ -0,0 +1,119 @@
1707+{% extends "license.html" %}
1708+
1709+{% block header %}
1710+<title>License Agreement</title>
1711+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
1712+<style language="text/css">
1713+ html, body {
1714+ background: white;
1715+ color: black;
1716+ margin: 0;
1717+ padding: 0;
1718+ font-size: 11pt;
1719+ font-family: Sans;
1720+ }
1721+
1722+ div#head {
1723+ height: 180px;
1724+ width: 100%;
1725+ background-image: url(/static/igloo-bg.png);
1726+ background-repeat: repeat-x;
1727+ }
1728+
1729+ h1 {
1730+ height: 180px;
1731+ padding: 2em;
1732+ padding-left: 180px;
1733+ margin: 0;
1734+ margin-right: 1em;
1735+ margin-left: 1em;
1736+ color:white;
1737+ font-size: 140%;
1738+ font-weight: bold;
1739+ text-align: left;
1740+ background-image: url(/static/igloo.png);
1741+ background-repeat: no-repeat;
1742+ }
1743+
1744+ #content {
1745+ margin: 0 auto;
1746+ min-width: 600px;
1747+ max-width: 920px;
1748+ }
1749+
1750+ h2 {
1751+ font-size: 120%;
1752+ }
1753+
1754+ #license-text {
1755+ background: white;
1756+ color: black;
1757+ margin: 2em;
1758+ padding: 2em;
1759+ height: 50%;
1760+ overflow: scroll;
1761+ text-align: left;
1762+ -moz-border-radius: 10px;
1763+ -webkit-border-radius: 10px;
1764+ border-radius: 10px;
1765+ }
1766+
1767+ #actions {
1768+ padding: 2em;
1769+ font-size: 80%;
1770+ margin-bottom: 2em;
1771+ }
1772+
1773+ #actions .button {
1774+ background: #08e;
1775+ color: white;
1776+ text-decoration: none;
1777+ font-weight: bold;
1778+ padding: 10px;
1779+ margin-left: 10px;
1780+ float: right;
1781+ font-size: 110%;
1782+ -moz-border-radius: 4px;
1783+ -webkit-border-radius: 4px;
1784+ border-radius: 4px;
1785+ }
1786+
1787+ #actions .button-decline:hover {
1788+ background: #09f;
1789+ }
1790+
1791+ #actions .button-accept {
1792+ background: #8b4;
1793+ }
1794+
1795+ #actions .button-accept:hover {
1796+ background: #9c5;
1797+ }
1798+</style>
1799+{% endblock %}
1800+
1801+{% block content-header %}
1802+<div id="head">
1803+<h1>
1804+</h1>
1805+
1806+
1807+</div>
1808+
1809+<div id="content">
1810+
1811+<div id="license-text">
1812+{% endblock %}
1813+{% block content-footer-top %}
1814+ </div><!-- license-text -->
1815+
1816+ <div id="actions">
1817+
1818+ <div style="float: left;">If accepting the license doesn't work, enable
1819+ cookies in your browser.</div><br />
1820+{% endblock %}
1821+{% block content-footer-bottom %}
1822+ </div>
1823+
1824+ </div><!-- content -->
1825+{% endblock %}
1826
1827=== added file 'templates_snapshots/licenses/ste.txt'
1828--- templates_snapshots/licenses/ste.txt 1970-01-01 00:00:00 +0000
1829+++ templates_snapshots/licenses/ste.txt 2012-08-02 11:02:22 +0000
1830@@ -0,0 +1,299 @@
1831+SNOWBALL CLICK-WRAP LIMITED LICENSE AGREEMENT FOR APPLICATION DEVELOPERS
1832+("Agreement") ST-Ericsson 2011-10-27
1833+
1834+<p>
1835+ This Agreement is a legally binding contract between you - either an
1836+ individual or a legal entity - (hereinafter referred to as "Licensee")
1837+ and ST-Ericsson SA, a company incorporated under the laws of
1838+ Switzerland (hereinafter referred to as "ST-Ericsson").
1839+</p>
1840+
1841+<p>
1842+ IMPORTANT - PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. THIS IS A
1843+ LEGALLY BINDING AGREEMENT. BY CLICKING THE "ACCEPT" BUTTON BELOW, OR
1844+ BY DOWNLOADING OR INSTALLING OR OTHERWISE USING THE SOFTWARE, YOU
1845+ AGREE TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE
1846+ TO THE TERMS OF THIS AGREEMENT OR ARE NOT AUTHORISED TO ACCEPT AND
1847+ AGREE TO THE TERMS OF THE AGREEMENT, DO NOT DOWNLOAD, INSTALL OR
1848+ OTHERWISE USE THE SOFTWARE.
1849+</p>
1850+
1851+<p>
1852+ ST-Ericsson and Licensee are each hereinafter also referred to as the
1853+ "Party" and, collectively, as the "Parties."
1854+</p>
1855+
1856+<h2>
1857+ 1 DEFINITIONS
1858+</h2>
1859+
1860+<p>
1861+ 1.1 Wherever used in this Agreement, the following terms shall have
1862+ the meanings set forth below:
1863+</p>
1864+
1865+<p>
1866+ "Licensee's Applications" means applications and other software
1867+ developed by Licensee which are intended to interface with and/or run
1868+ on the Snowball Kit.
1869+</p>
1870+
1871+<p>
1872+ "Limited License Purpose" shall mean the limited license granted under Article 2.1 below.
1873+</p>
1874+
1875+<p>
1876+ "Snowball Kit" means the hardware products "SKY-S9500-ULP-Cxy"
1877+ where x and y are integers between "0" and "9".
1878+</p>
1879+
1880+<p>
1881+ "Software" shall mean the ST-Ericsson's software for the A9500
1882+ platform delivered in binary or in source for the related header
1883+ files, including any copies and new releases thereof.
1884+</p>
1885+
1886+<p>
1887+ 1.2 Other capitalized expressions used in this Agreement shall have
1888+ the meanings respectively assigned to them elsewhere in this
1889+ Agreement.
1890+</p>
1891+
1892+<p>
1893+ 1.3 Words indicating the singular only also include the plural and
1894+ vice-versa, where the context so requires.
1895+</p>
1896+
1897+<p>
1898+ 1.4 The headings of the Articles in this Agreement are for convenience
1899+ only and shall not affect the interpretation of this Agreement.
1900+</p>
1901+
1902+<h2>2 LICENSE GRANT</h2>
1903+
1904+<p>
1905+ 2.1 Subject to the terms and conditions in this Agreement, STEricsson
1906+ hereby grants to Licensee a non-exclusive, non-transferable, limited
1907+ license to use and reproduce the Software solely to the extent
1908+ required in order to (i) develop Licensee's Applications that
1909+ interface with and/or run with the Snowball Kit; and (ii) integrate
1910+ the Software with Licensee Application and/or third party software;
1911+ and (iii) conduct development testing of the Licensee's Applications'
1912+ or third party software operation in conjunction with the Snowball Kit
1913+ and/or Licensee's demonstration of such Licensee's Applications in
1914+ conjunction with the Snowball Kit (hereinafter "Limited License
1915+ Purpose"). The Licensee is entitled to flash the Software on a
1916+ commercial product containg the Snowball Kit. The aforesaid license to
1917+ the Software is provided that all and any use of the Software is
1918+ solely and exclusively used on the Snowball Kit.
1919+</p>
1920+
1921+<p>
1922+ 2.2 Some portion of the Software might contain Open Source
1923+ Software. Such Open Source Software might be subject to Open Source
1924+ Terms applicable for each such portion, as further specified in the
1925+ Software. Such Open Source Software is supplied to Licensee solely
1926+ under the applicable Open Source Terms and is not subject to the terms
1927+ of this Agreement.
1928+</p>
1929+
1930+<p>
1931+ 2.3 Licensee shall not, and shall not permit any third party to alter,
1932+ change, modify, adapt, decompile, disassemble, compile or reverse
1933+ engineer or remove or circumvent any protection or other restrictive
1934+ technology mechanism of the the Software and/or any and all parts
1935+ thereof, or otherwise use, sub-license, assign or pledge the Software
1936+ and/or any and all parts thereof other than what is expressly
1937+ permitted in accordance with this Agreement.
1938+</p>
1939+
1940+<p>
1941+ 2.4 ST-Ericsson shall retain on behalf of itself or the original owner
1942+ all right title and interest to any ST-Ericsson Intellectual Property
1943+ Rights, including but not limited to any patents, trademarks,
1944+ copyrights, and trade secret rights, and title to copies of any and
1945+ all media bearing the Software or the Snowball Kit and/or any and all
1946+ parts thereof, and the Licensee acquires no interest under this
1947+ Agreement to any ST-Ericsson Intellectual Property Rights or other
1948+ rights other than the Limited License Purpose expressly set forth in
1949+ this Article 2.
1950+</p>
1951+
1952+<p>
1953+ 2.5 Notwithstanding anything to the contrary herein, nothing contained
1954+ hereunder shall be construed as conferring any right, license or
1955+ immunity, either directly or by implication, estoppel or otherwise to
1956+ Licensee or any third party: (i) under any intellectual property
1957+ rights of any third party; specifically, without limiting the
1958+ generality of the foregoing, the sale and use of the Products are not
1959+ licensed under any patents of Telefonaktiebolaget LM Ericsson, or any
1960+ affiliates of such company; (ii) under any intellectual property
1961+ rights of STEricsson other than explicitly granted under in this
1962+ Agreement; or (iii) with respect to any trademark, trade or brand
1963+ name, a corporate name of ST-Ericsson, or any other name or mark, or
1964+ contraction abbreviation or simulation thereof.
1965+</p>
1966+
1967+
1968+<h2>3 DELIVERY</h2>
1969+
1970+<p>
1971+ 3.1 All deliveries of the Software are EX-WORKS (Incoterms 2000) at
1972+ ST-Ericsson's indicated facility.
1973+</p>
1974+
1975+
1976+<h2>4 NO REPRESENTATIONS OR WARRANTIES</h2>
1977+
1978+<p>
1979+ 4.1 The Software is delivered "as is" and all representations and
1980+ warranties, express or implied, are hereby disclaimed, including, but
1981+ not limited to that:
1982+</p>
1983+
1984+<p>
1985+ a) the Software or any part thereof is accurate or reliable for any
1986+ purposes whatsoever; and
1987+</p>
1988+
1989+<p>
1990+ b) the use of the Software does not infringe any rights that may be
1991+ held by a third party in respect of any such information.
1992+</p>
1993+
1994+<p>
1995+ 4.2 Licensee acknowledges and agrees that any use of the Software
1996+ and/or the Snowball Kit, or any other part thereof, or any use of
1997+ Licensee's Applications is at Licensee's sole risk.
1998+</p>
1999+
2000+<h2>5 WARRANTY DISCLAIMER AND GENERAL LIMITATION OF LIABILITY</h2>
2001+
2002+<p>
2003+ 5.1 THE SOFTWARE AND/OR SNOWBALL KIT AND ANY AND ALL PARTS THEREOF ARE
2004+ PROVIDED "AS IS". ST-ERICSSON MAKES NO REPRESENTATIONS OR WARRANTIES
2005+ WITH RESPECT TO THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF
2006+ WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, IMPLIED
2007+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2008+ PURPOSE. SPECIFICALLY, WITHOUT LIMITING THE GENERALITY OF THE
2009+ FOREGOING, ST-ERICSSON MAKES NO REPRESENTATION OR WARRANTY THAT (I)
2010+ THE USE OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF WILL
2011+ BE UNINTERRUPTED OR ERROR FREE, AND OR (II) ANY USE AND OR
2012+ DISTRIBUTION OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF,
2013+ WHETHER INTEGRATED INTO OTHER EQUIPMENT OR NOT, ARE FREE FROM
2014+ INFRINGEMENT OF ANY THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, AND IT
2015+ SHALL BE THE SOLE RESPONSIBILITY OF LICENSEE TO MAKE SUCH
2016+ DETERMINATION AS IS NECESSARY WITH RESPECT TO THE ACQUISITION OF
2017+ LICENSES UNDER PATENTS AND OTHER INTELLECTUAL PROPERTY RIGHTS OF THIRD
2018+ PARTIES. CONSEQUENTLY, IN NO EVENT SHALL ST-ERICSSON, ITS AFFILIATES
2019+ OR THEIR SUPPLIERS BE LIABLE TO LICENSEE FOR ANY LOSS OR DAMAGES
2020+ (WHETHER DIRECT, INDRECT OR CONSEQUENTIAL) ARISING FROM ANY USE AND OR
2021+ DISTRIBUTION OF THE SOFTWARE AND/OR SNOWBALL KIT AND OR PARTS THEREOF,
2022+ WHETHER INTEGRATED INTO OTHER EQUIPMENT OR NOT, AND OR ARISING BY
2023+ REASON OF THE FACT THAT THE SOFTWARE AND/OR SNOWBALL KIT AND OR ANY
2024+ PARTS THEREOF ARE DEFECTIVE OR NON-CONFORMING AND OR ARISING FROM THIS
2025+ AGREEMENT AND OR ANY BREACH THEREOF.
2026+</p>
2027+
2028+<p>
2029+ 5.2 THE PARTIES AGREE THAT ANY RIGHTS AND REMEDIES THE LICENSEE MAY
2030+ HAVE AND OR ANY OBLIGATIONS THAT ST-ERICSSON MAY HAVE ACCORDING TO LAW
2031+ OR OTHERWISE WITH RESPECT TO ERRORS AND DEFECTS IN THE SOFTWARE AND/OR
2032+ OTHER DELIVERABLES AND/OR IN ANY PART THEREOF SHALL HEREBY BE
2033+ DISCLAIMED.
2034+</p>
2035+
2036+<h2>
2037+ 6 TERMINATION
2038+</h2>
2039+
2040+<p>
2041+ 6.1 The license and this Agreement are effective until terminated.
2042+</p>
2043+
2044+<p>
2045+ 6.2 Licensee agrees that each of the terms and conditions set out in
2046+ this Agreement are material and that failure of Licensee to comply
2047+ with these terms and conditions shall constitute sufficient cause for
2048+ ST-Ericsson to terminate this Agreement. The aforesaid is without any
2049+ prejudice to other rights ST-Ericsson may have in case of breach of
2050+ this Agreement.
2051+</p>
2052+
2053+<p>
2054+ 6.3 In the event of termination of this Agreement Licensee shall
2055+ immediately destroy all copies of the Software, including all portions
2056+ and derivatives thereof.
2057+</p>
2058+
2059+<h2>
2060+ 7 EXPORT CONTROL
2061+</h2>
2062+
2063+<p>
2064+ 7.1 Licensee recognizes that the Software or any parts thereof may be
2065+ subject to import and export regulations in certain
2066+ countries. Licensee agrees that it will not knowingly export,
2067+ re-export or import products, technology or Software, or any parts
2068+ thereof, of ST-Ericsson, directly or indirectly, to any country to the
2069+ extent export to such country at the time of export requires an export
2070+ license or other governmental approval under any export control laws
2071+ and regulations, without first obtaining such license or approval.
2072+</p>
2073+
2074+<h2>
2075+ 8 COMPLIANCE WITH LAWS
2076+</h2>
2077+
2078+<p>
2079+ 8.1 Licensee agrees not to use the Software in violation of, and to
2080+ comply with any and all applicable law, statute, ordinance or other
2081+ regulation.
2082+</p>
2083+
2084+<h2>
2085+ 9 ENTIRE AGREEMENT
2086+</h2>
2087+
2088+<p>
2089+ 9.1 This is the entire agreement between Licensee and ST-Ericsson on
2090+ the subject matter of this Agreement, and supersedes all
2091+ representations, undertakings and agreements previously made between
2092+ the Parties with respect to the subject matter of this Agreement.
2093+</p>
2094+
2095+<h2>
2096+ 10 SEVERABILITY
2097+</h2>
2098+
2099+<p>
2100+ 10.1 If a court or agency of competent jurisdiction holds any term of
2101+ this Agreement invalid, illegal, or unenforceable for any reason, the
2102+ remainder of this Agreement shall be valid and enforceable and such
2103+ term shall be substituted by a valid and enforceable provision so as
2104+ to the best accomplish the objectives of such provision in this
2105+ Agreement.
2106+</p>
2107+
2108+<h2>
2109+ 11 GOVERNING LAW AND JURISDICTION
2110+</h2>
2111+
2112+<p>
2113+ 11.1 This Agreement shall be governed by and construed in accordance
2114+ with the laws of Switzerland, without regard to its conflict of laws
2115+ rules. The application of The United Nations Convention of Contracts
2116+ for the International Sale of Goods is explicitly excluded.
2117+</p>
2118+
2119+<p>
2120+ 11.2 Any and all disputes, differences or questions arising out of or
2121+ in connection with this Agreement shall be under the exclusive
2122+ jurisdiction of the Swiss courts and the venue shall be Geneva.
2123+</p>
2124+
2125+<p>
2126+ 11.3 Notwithstanding the aforesaid, nothing in this Article 11 shall
2127+ prevent the Parties from seeking any interim or final injunctive or
2128+ equitable relief by a court of competent jurisdiction.
2129+</p>
2130
2131=== added symlink 'templates_snapshots/licenses/stericsson.html'
2132=== target is u'ste.html'
2133=== added symlink 'templates_snapshots/licenses/stericsson.txt'
2134=== target is u'ste.txt'

Subscribers

People subscribed via source and target branches