~ci-train-bot/ubuntu-html5-theme/ubuntu-html5-theme-ubuntu-yakkety-landing-067

« back to all changes in this revision

Viewing changes to 0.1/ambiance/js/fix_copyright_header.py

  • Committer: CI Train Bot
  • Author(s): Michael Hall, Alexandre Abreu
  • Date: 2015-04-09 14:26:31 UTC
  • mfrom: (200.2.3 ubuntu-html5-theme)
  • Revision ID: ci-train-bot@canonical.com-20150409142631-5axmx6p7x08ej1im
Add -doc package, whose contents have to be generated locally (use the ./update-docs command) because not all of its node dependencies are in the archive. This is done, so we can more easily update developer.ubuntu.com/api
Approved by: David Barth

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python3
 
2
#
 
3
# Copyright 2015 Canonical Ltd
 
4
#
 
5
# This program is free software: you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation, version 3 of the License.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program.  If not, see <http://www.gnu.org/licenses/
 
16
 
 
17
filenamess_to_fix = [
 
18
    'docsbuild/assets/js/api-search.js',
 
19
    'docsbuild/assets/js/apidocs.js',
 
20
    'docsbuild/assets/js/api-filter.js',
 
21
    'docsbuild/assets/js/api-list.js',
 
22
    'docsbuild/api.js'
 
23
]
 
24
 
 
25
COPYRIGHT_HEADER = """
 
26
/*
 
27
 * Copyright 2011 Yahoo! Inc.
 
28
 * All rights reserved.
 
29
 * 
 
30
 * Redistribution and use in source and binary forms, with or without
 
31
 * modification, are permitted provided that the following conditions are met:
 
32
 *     * Redistributions of source code must retain the above copyright
 
33
 *       notice, this list of conditions and the following disclaimer.
 
34
 *     * Redistributions in binary form must reproduce the above copyright
 
35
 *       notice, this list of conditions and the following disclaimer in the
 
36
 *       documentation and/or other materials provided with the distribution.
 
37
 *     * Neither the name of the Yahoo! Inc. nor the
 
38
 *       names of its contributors may be used to endorse or promote products
 
39
 *       derived from this software without specific prior written permission.
 
40
 * 
 
41
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
42
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
43
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
44
 * DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY
 
45
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
46
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
47
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 
48
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
49
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
50
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
51
 */
 
52
 
 
53
"""
 
54
 
 
55
for filename in filenamess_to_fix:
 
56
    content = ''
 
57
    with open(filename, "r") as f:
 
58
        content = COPYRIGHT_HEADER + f.read()
 
59
    with open(filename, "w+") as f:
 
60
        f.write(content)