Skip to content

Commit 68a400b

Browse files
happy new year
1 parent dcbe518 commit 68a400b

File tree

13 files changed

+27
-18
lines changed

13 files changed

+27
-18
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Collab
3+
Copyright (c) 2015-2016 Collab
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

require_license/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright Collab 2015
1+
# Copyright Collab 2015-2016
2+
# See LICENSE for details.
23

34
"""
45
`django-require-license` application.

require_license/storage.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright Collab 2013-2015
1+
# Copyright Collab 2013-2016
2+
# See LICENSE for details.
23

34
"""
45
Custom static files storage for the :py:mod:`require_license` application.

require_license/tests/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright Collab 2015
1+
# Copyright Collab 2015-2016
2+
# See LICENSE for details.
23

34
"""
45
Tests for the ``django-require-license`` application.

require_license/tests/resources/js/app.build.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
// Copyright Collab 2013-2015
1+
// Copyright Collab 2013-2016
22
/*
33
* Build profile for tests.
4-
*
4+
*
55
* This supports all the normal configuration available to a r.js build profile.
66
* The only gotchas are:
77
*
88
* - 'baseUrl' will be overidden by django-require during the build process.
99
* - 'appDir' will be overidden by django-require during the build process.
1010
* - 'dir' will be overidden by django-require during the build process.
11-
*
11+
*
1212
* Check r.js docs for options: http://requirejs.org/docs/optimization.html#options
1313
*/
1414
({

require_license/tests/resources/js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright Collab 2012-2015
1+
// Copyright Collab 2012-2016
22

33
require.config({
44

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// Copyright Collab 2015
1+
// Copyright Collab 2015-2016
22

33
define([
44
'jquery',
55
'loglevel'
66
], function($, log)
77
{
8-
8+
99
log.enableAll();
10-
log.debug("Hello world!");
11-
10+
log.debug('Hello world!');
11+
1212
});

require_license/tests/settings.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright Collab 2015
2+
# Copyright Collab 2015-2016
3+
# See LICENSE for details.
34

45
import os
56
from datetime import datetime, date

require_license/tests/test_storage.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright Collab 2013-2015
1+
# Copyright Collab 2013-2016
2+
# See LICENSE for details.
23

34
"""
45
Tests for the :py:mod:`require_license.storage` module.

require_license/tests/test_version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright Collab 2015
1+
# Copyright Collab 2015-2016
2+
# See LICENSE for details.
23

34
"""
45
Tests for the :py:mod:`require_license` module.

0 commit comments

Comments
 (0)