Merge lp:~elachuni/ubuntu-webcatalog/remove-adminaudit into lp:ubuntu-webcatalog

Proposed by Anthony Lenton
Status: Merged
Approved by: Anthony Lenton
Approved revision: 34
Merged at revision: 35
Proposed branch: lp:~elachuni/ubuntu-webcatalog/remove-adminaudit
Merge into: lp:ubuntu-webcatalog
Diff against target: 94 lines (+1/-18)
6 files modified
.bzrignore (+0/-1)
debian/control (+0/-1)
django_project/config/main.cfg (+0/-1)
django_project/urls.py (+0/-2)
fabtasks/bootstrap.py (+1/-7)
src/webcatalog/schema.py (+0/-6)
To merge this branch: bzr merge lp:~elachuni/ubuntu-webcatalog/remove-adminaudit
Reviewer Review Type Date Requested Status
Ricardo Kirkner (community) Approve
Review via email: mp+66924@code.launchpad.net

Commit message

Removed django-adminaudit, until that project has been made public.

Description of the change

This branch removes the use of django-adminaudit, until that project has been made public.

We can eventually add it back in, hopefully soon.

To post a comment you must log in.
Revision history for this message
Ricardo Kirkner (ricardokirkner) wrote :

LGTM

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.bzrignore'
2--- .bzrignore 2011-06-18 23:17:11 +0000
3+++ .bzrignore 2011-07-05 16:12:34 +0000
4@@ -1,7 +1,6 @@
5 webcatalog.db
6 src/ubuntu_webcatalog.egg-info/
7 virtualenv/
8-django_project/adminaudit
9 django_project/django_openid_auth
10 django_project/local_settings.py
11 django_project/static/
12
13=== modified file 'debian/control'
14--- debian/control 2011-06-20 21:49:31 +0000
15+++ debian/control 2011-07-05 16:12:34 +0000
16@@ -20,7 +20,6 @@
17 python-configglue (>> 0.9.1),
18 python-django-configglue (>> 0.3),
19 python-django-preflight,
20- python-django-adminaudit,
21 python-django-pgtools,
22 python-django-south,
23 python-django-openid-auth,
24
25=== modified file 'django_project/config/main.cfg'
26--- django_project/config/main.cfg 2011-06-29 09:24:48 +0000
27+++ django_project/config/main.cfg 2011-07-05 16:12:34 +0000
28@@ -18,7 +18,6 @@
29 django.contrib.messages
30 django.contrib.staticfiles
31 django.contrib.markup
32- adminaudit
33 django.contrib.admin
34 django_openid_auth
35 django_configglue
36
37=== modified file 'django_project/urls.py'
38--- django_project/urls.py 2011-06-20 22:03:17 +0000
39+++ django_project/urls.py 2011-07-05 16:12:34 +0000
40@@ -16,7 +16,6 @@
41 # along with this program. If not, see <http://www.gnu.org/licenses/>.
42
43 import preflight
44-import adminaudit
45 from django.conf.urls.defaults import patterns, include, url
46 from django.conf import settings
47 from django.contrib import admin
48@@ -24,7 +23,6 @@
49
50 admin.autodiscover()
51 preflight.autodiscover()
52-adminaudit.audit_install()
53
54 urlpatterns = patterns('',
55 url(r'^cat/', include('webcatalog.urls')),
56
57=== modified file 'fabtasks/bootstrap.py'
58--- fabtasks/bootstrap.py 2011-07-01 15:36:47 +0000
59+++ fabtasks/bootstrap.py 2011-07-05 16:12:34 +0000
60@@ -106,12 +106,6 @@
61
62 def pull_required_branches():
63 _get_or_pull_bzr_branch(
64- "lp:django-adminaudit",
65- "django-adminaudit")
66- _symlink(
67- "branches/django-adminaudit/adminaudit",
68- "django_project/adminaudit")
69- _get_or_pull_bzr_branch(
70 "lp:~django-openid-auth/django-openid-auth/trunk",
71 "django-openid-auth",
72 revision=79)
73@@ -130,6 +124,6 @@
74 local("rm -rf virtualenv/")
75 local("rm -rf src/ubuntu_webcatalog.egg-info")
76 local("rm -f webcatalog.db")
77- links = ("adminaudit", "django_openid_auth")
78+ links = ("django_openid_auth", )
79 for link in links:
80 local("rm -f django_project/{0}".format(link))
81
82=== modified file 'src/webcatalog/schema.py'
83--- src/webcatalog/schema.py 2011-06-28 15:03:12 +0000
84+++ src/webcatalog/schema.py 2011-07-05 16:12:34 +0000
85@@ -60,9 +60,3 @@
86 preflight = ConfigSection()
87 preflight.preflight_base_template = StringConfigOption(
88 default="webcatalog/base.html")
89-
90- #adminaudit
91- adminaudit_emails_recipients = LinesConfigOption(
92- item=StringConfigOption())
93- adminaudit_summary_subject = StringConfigOption(
94- default='Admin Audit Summary')

Subscribers

People subscribed via source and target branches