Skip to content

Commit 8f7dabd

Browse files
l-hedgehogSancus
authored andcommitted
Bug 816080: Upgrade Bedrock to latest Playdoh
1 parent a994197 commit 8f7dabd

File tree

495 files changed

+743
-4496
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

495 files changed

+743
-4496
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
settings_local.py
22
settings/local.py
3+
*/settings/local.py
34
*.py[co]
45
*.sw[po]
56
.coverage
67
pip-log.txt
78
docs/_gh-pages
89
build.py
10+
build
911
.DS_Store
1012
*-min.css
1113
*-all.css
1214
*-min.js
1315
*-all.js
14-
vendor
1516
.noseids
1617
tmp/*
1718
*~
@@ -20,4 +21,4 @@ tmp/*
2021
db.sql
2122
/locale
2223
Thumbs.db
23-
Desktop.ini
24+
Desktop.ini

.gitmodules

-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,3 @@
2222
[submodule "vendor-local/src/pystatsd"]
2323
path = vendor-local/src/pystatsd
2424
url = git://github.com/jsocol/pystatsd.git
25-
[submodule "vendor-local/src/django"]
26-
path = vendor-local/src/django
27-
url = git://github.com/django/django.git

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
recursive-include */*/templates *.*
2+
recursive-include */locale *.*

apps/collusion/views.py

-13
This file was deleted.

apps/l10n_example/views.py

-9
This file was deleted.

apps/mozorg/templates/mozorg/sandstone.html

-275
This file was deleted.

apps/persona/views.py

-19
This file was deleted.

apps/research/views.py

-13
This file was deleted.

__init__.py bedrock/__init__.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

apps/collusion/templates/collusion/demo.html bedrock/collusion/templates/collusion/demo.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<nav id="nav-main" role="navigation">
1313
<span class="toggle" role="button" aria-controls="nav-main-menu" tabindex="0">{{_('Menu')}}</span>
1414
<ul id="nav-main-menu">
15-
<li><a href="{{ url('collusion') }}">Home</a></li>
15+
<li><a href="{{ url('collusion.collusion') }}">Home</a></li>
1616
<li><b>Demo</b></li>
1717
</ul>
1818
</nav>

apps/collusion/urls.py bedrock/collusion/urls.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44

55
from django.conf.urls.defaults import *
6-
from views import collusion, demo
6+
from bedrock.mozorg.util import page
77

88
urlpatterns = patterns('',
9-
url(r'^demo/$', demo, name='collusion.demo'),
10-
url(r'^$', collusion, name='collusion'),
9+
page('demo', 'collusion/demo.html'),
10+
page('', 'collusion/collusion.html'),
1111
)
File renamed without changes.

0 commit comments

Comments
 (0)