Skip to content

Commit 3854986

Browse files
committed
merge
2 parents 3a7b62d + 3e65327 commit 3854986

File tree

6 files changed

+38
-8
lines changed

6 files changed

+38
-8
lines changed

LICENSE

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2015, Onni Software Ltd.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
* Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
* Neither the name of Flask-Excel nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,11 @@ Here is the example viewing function codes::
116116
sheet = excel.pe.Sheet([[1, 2],[3, 4]])
117117
return excel.make_response(sheet, "csv")
118118

119+
License
120+
=============
121+
122+
New BSD License
123+
119124
Dependencies
120125
=============
121126

django_excel/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
:copyright: (c) 2015 by Onni Software Ltd.
99
:license: New BSD License
1010
"""
11-
12-
1311
from django.core.files.uploadhandler import MemoryFileUploadHandler, TemporaryFileUploadHandler
1412
from django.core.files.uploadedfile import InMemoryUploadedFile, TemporaryUploadedFile
1513
from django.http import HttpResponse

doc/source/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
# General information about the project.
5151
project = u'django-excel'
52-
copyright = u'2015, Onni Software Ltd.'
52+
copyright = u'2015 by Onni Software Ltd.'
5353

5454
# The version info for the project you're documenting, acts as replacement for
5555
# |version| and |release|, also used in various other places throughout the
@@ -202,7 +202,7 @@
202202
# author, documentclass [howto, manual, or own class]).
203203
latex_documents = [
204204
('index', 'django-excel.tex', u'django-excel Documentation',
205-
u'C. W.', 'manual'),
205+
u'Onni Software Ltd.', 'manual'),
206206
]
207207

208208
# The name of an image file (relative to this directory) to place at the top of
@@ -232,7 +232,7 @@
232232
# (source start file, name, description, authors, manual section).
233233
man_pages = [
234234
('index', 'django-excel', u'django-excel Documentation',
235-
[u'C. W.'], 1)
235+
[u'Onni Software ltd.'], 1)
236236
]
237237

238238
# If true, show URL addresses after external links.
@@ -246,7 +246,7 @@
246246
# dir menu entry, description, category)
247247
texinfo_documents = [
248248
('index', 'django-excel', u'django-excel Documentation',
249-
u'C. W.', 'django-excel', 'One line description of project.',
249+
u'Onni Software Ltd.', 'django-excel', 'One line description of project.',
250250
'Miscellaneous'),
251251
]
252252

doc/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Welcome to django-excel's documentation!
99
:Author: C.W.
1010
:Source code: http://github.com/chfw/django-excel
1111
:Issues: http://github.com/chfw/django-excel/issues
12-
:License: GPL v3 or BSD
12+
:License: New BSD License
1313
:Version: |version|
1414
:Generated: |today|
1515

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
'Topic :: Software Development :: Libraries :: Python Modules',
3737
'Programming Language :: Python',
3838
'License :: OSI Approved :: BSD License',
39-
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
4039
'Intended Audience :: Developers',
4140
'Programming Language :: Python :: 2',
4241
'Programming Language :: Python :: 2.7',

0 commit comments

Comments
 (0)