Skip to content

Commit b3b8819

Browse files
committed
Merge pull request #2 from EnTeQuAk/master
More fixes, cleanups and tests for django-babel
2 parents 23069b3 + 71a5a54 commit b3b8819

File tree

20 files changed

+1371
-113
lines changed

20 files changed

+1371
-113
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
build
2+
dist
3+
*.pyc
4+
django_babel.egg-info
5+
.tox

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: python
2+
python: 2.7
3+
env:
4+
- TOX_ENV=py33-1.7.x
5+
- TOX_ENV=py33-1.6.x
6+
- TOX_ENV=py33-1.5.x
7+
- TOX_ENV=py27-1.7.x
8+
- TOX_ENV=py27-1.6.x
9+
- TOX_ENV=py27-1.5.x
10+
- TOX_ENV=py26-1.5.x
11+
install:
12+
- pip install tox
13+
script:
14+
- tox -e $TOX_ENV
15+

AUTHORS

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
django-babel is written and maintained by the django-babel team and various
2+
contributors:
3+
4+
Contributors:
5+
6+
- Christopher Lenz <[email protected]>
7+
- Felix Schwarz <[email protected]>
8+
- Jeroen Ruigrok van der Werven <[email protected]>
9+
- Ramiro Morales <[email protected]>
10+
- Thomas Grainger <[email protected]>
11+
- Christopher Grebs <[email protected]>
12+
13+
django-babel was previously developed under the Copyright of Edgewall Software.
14+
The following copyright notice holds true for releases before 2013: "Copyright
15+
(c) 2007 - 2011 by Edgewall Software"

CHANGES.rst

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
Changes
2-
=========
2+
=======
33

4-
0.3.2 (unreleased)
5-
------------------
4+
1.0 (unreleased)
5+
----------------
66

7-
- Nothing changed yet.
7+
* Nothing changed yet.
88

99

1010
0.3.1 (2013-12-11)
1111
------------------
1212

13-
- fix relative import in template tags
13+
* fix relative import in template tags
1414

1515

1616
0.3.0 (2013-12-11)
1717
------------------
1818

19-
- Rename package to django_babel
19+
* Rename package to django_babel
2020

2121

2222
0.2.3 (2013-12-11)
2323
------------------
2424

25-
- Rename package on PyPI
26-
- Use GitHub as source control
27-
25+
* Rename package on PyPI
26+
* Use GitHub as source control

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2007 Edgewall Software
1+
Copyright (C) 2013-2014 django-babel Team
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

MANIFEST.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
include CHANGES.rst README.rst COPYING
2+
recursive-include tests *
3+
recursive-include docs *
4+
global-exclude *.pyc
5+
global-exclode *.pyo
6+
prune docs/_build

0 commit comments

Comments
 (0)