Merge lp:~danilo/linaro-license-protection/add-rev-number into lp:~linaro-automation/linaro-license-protection/trunk

Proposed by Данило Шеган
Status: Merged
Merged at revision: 101
Proposed branch: lp:~danilo/linaro-license-protection/add-rev-number
Merge into: lp:~linaro-automation/linaro-license-protection/trunk
Diff against target: 2255 lines (+58/-1990)
26 files modified
license_protected_downloads/bzr_version.py (+15/-0)
license_protected_downloads/tests/test_views.py (+10/-0)
license_protected_downloads/views.py (+5/-1)
templates/header.html (+14/-1)
templates_releases/404.html (+0/-5)
templates_releases/dir_template.html (+0/-42)
templates_releases/header.html (+14/-1)
templates_releases/license.html (+0/-17)
templates_releases/licenses/linaro.html (+0/-112)
templates_releases/licenses/linaro.txt (+0/-1)
templates_releases/licenses/nolicense.html (+0/-9)
templates_releases/licenses/samsung.html (+0/-112)
templates_releases/licenses/samsung.txt (+0/-268)
templates_releases/licenses/ste.html (+0/-119)
templates_releases/licenses/ste.txt (+0/-299)
templates_snapshots/404.html (+0/-5)
templates_snapshots/dir_template.html (+0/-42)
templates_snapshots/header.html (+0/-19)
templates_snapshots/license.html (+0/-17)
templates_snapshots/licenses/linaro.html (+0/-112)
templates_snapshots/licenses/linaro.txt (+0/-1)
templates_snapshots/licenses/nolicense.html (+0/-9)
templates_snapshots/licenses/samsung.html (+0/-112)
templates_snapshots/licenses/samsung.txt (+0/-268)
templates_snapshots/licenses/ste.html (+0/-119)
templates_snapshots/licenses/ste.txt (+0/-299)
To merge this branch: bzr merge lp:~danilo/linaro-license-protection/add-rev-number
Reviewer Review Type Date Requested Status
Stevan Radaković Approve
Review via email: mp+119888@code.launchpad.net

Description of the change

This first cleans up a bunch of duplicated template files and instead simply keeps templates_snapshots and templates_releases for overriding (configs are already updated to provide that, but they are external to this branch).

Then, it introduces a bzr revision info display in the footer of header.html. It makes header.html look a bit more like HTML as well.

There are more things that'd make sense to generalize here, but it'd be so much easier if views were classes. Ahem.

Anyway, a simple view test is provided. bzr_version functionality is untested though.

To post a comment you must log in.
Revision history for this message
Stevan Radaković (stevanr) wrote :

Looks good as well.
Approve +1.

review: Approve

Preview Diff

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

Subscribers

People subscribed via source and target branches