summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-sysadm/2010-December/001214.html
blob: 7b132182bffaeca48bedfb69aef0787f51dfc263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
 <HEAD>
   <TITLE> [Mageia-sysadm] [617] disable transifex authentication to use native one on django ( and so ldap )
   </TITLE>
   <LINK REL="Index" HREF="index.html" >
   <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B617%5D%20disable%20transifex%20authentication%20to%20use%0A%20native%20one%20on%20django%20%28%20and%20so%20ldap%20%29&In-Reply-To=%3C20101215013934.2486F4029E%40valstar.mageia.org%3E">
   <META NAME="robots" CONTENT="index,nofollow">
   <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
   <LINK REL="Previous"  HREF="001213.html">
   <LINK REL="Next"  HREF="001215.html">
 </HEAD>
 <BODY BGCOLOR="#ffffff">
   <H1>[Mageia-sysadm] [617] disable transifex authentication to use native one on django ( and so ldap )</H1>
    <B>root at mageia.org</B> 
    <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B617%5D%20disable%20transifex%20authentication%20to%20use%0A%20native%20one%20on%20django%20%28%20and%20so%20ldap%20%29&In-Reply-To=%3C20101215013934.2486F4029E%40valstar.mageia.org%3E"
       TITLE="[Mageia-sysadm] [617] disable transifex authentication to use native one on django ( and so ldap )">root at mageia.org
       </A><BR>
    <I>Wed Dec 15 02:39:34 CET 2010</I>
    <P><UL>
        <LI>Previous message: <A HREF="001213.html">[Mageia-sysadm] [616] deploy transifex with wsgi on apache
</A></li>
        <LI>Next message: <A HREF="001215.html">[Mageia-sysadm] [618] - add ldap authentication to transifex, so far for sysadmin only (  for
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#1214">[ date ]</a>
              <a href="thread.html#1214">[ thread ]</a>
              <a href="subject.html#1214">[ subject ]</a>
              <a href="author.html#1214">[ author ]</a>
         </LI>
       </UL>
    <HR>  
<!--beginarticle-->
<PRE>Revision: 617
Author:   misc
Date:     2010-12-15 02:39:33 +0100 (Wed, 15 Dec 2010)
Log Message:
-----------
disable transifex authentication to use native one on django ( and so ldap )

Modified Paths:
--------------
    puppet/modules/transifex/manifests/init.pp

Added Paths:
-----------
    puppet/modules/transifex/templates/40-apps.conf

Modified: puppet/modules/transifex/manifests/init.pp
===================================================================
--- puppet/modules/transifex/manifests/init.pp	2010-12-15 01:39:32 UTC (rev 616)
+++ puppet/modules/transifex/manifests/init.pp	2010-12-15 01:39:33 UTC (rev 617)
@@ -37,6 +37,17 @@
     notify =&gt; Service['apache']
   }
 
+  file { &quot;40-apps.conf&quot;:
+    path =&gt; &quot;/etc/transifex/40-apps.conf&quot;,
+    ensure =&gt; present,
+    owner =&gt; root,
+    group =&gt; root,
+    mode =&gt; 644,
+    content =&gt; template(&quot;transifex/40-apps.conf&quot;),
+    require =&gt; Package['transifex'],
+    notify =&gt; Service['apache']
+  }
+
   apache::vhost_django_app { &quot;transifex.$domain&quot;:
     module =&gt; &quot;transifex&quot;,
     module_path =&gt; [&quot;/usr/share/transifex&quot;,&quot;/usr/share&quot;] 

Added: puppet/modules/transifex/templates/40-apps.conf
===================================================================
--- puppet/modules/transifex/templates/40-apps.conf	                        (rev 0)
+++ puppet/modules/transifex/templates/40-apps.conf	2010-12-15 01:39:33 UTC (rev 617)
@@ -0,0 +1,59 @@
+# Enable actionlog application 
+ACTIONLOG_ENABLED = True
+
+# Notifications
+# Enable notifications (requires working email settings)
+# TODO: Make notifications not crash the app if email sending doesn't work.
+# To enable notices you also need to enable the context processor and
+# application below.
+ENABLE_NOTICES = False
+
+# If True it requires a `./manage.py emit_notices` from the command line to 
+# send the notifications/emails.
+NOTIFICATION_QUEUE_ALL = True
+
+# Tagging
+FORCE_LOWERCASE_TAGS = True
+
+# Registration - OpenID (Currently not used)
+# Requires respective middleware and application 
+ENABLE_OPENID=False
+
+# Useful to work with another authentication backends
+# When True the registration system (django-profile) is disabled
+ENABLE_SIMPLEAUTH=True
+
+# Enable/Disable django-contact app URL.
+ENABLE_CONTACT_FORM = True
+
+# Django-profile
+AUTH_PROFILE_MODULE = 'txcommon.profile'
+DEFAULT_AVATAR_WIDTH = 96
+AVATAR_WEBSEARCH = False
+GOOGLE_MAPS_API_KEY = &quot;ABQIAAAAfLle-Q79W6zCD3xcdCPsABQCULP4XOMyhPd8d_NrQQEO8sT8XBRbfo_kvrGWYPqQ7PnWFWJbDj4bQQ&quot;
+REQUIRE_EMAIL_CONFIRMATION = False
+
+ugettext = lambda s: s
+LOGIN_URL = '/%s%s' % ('accounts/', 'login/')
+
+# Default timeout duration in days
+# How many days should the user stay logged in if he selects &quot;Stay signed in&quot;?
+LOGIN_DAYS = 21
+
+# URL used to access the Django Admin Panel
+# Ex. <A HREF="http://domain.com/admin/">http://domain.com/admin/</A>
+DJANGO_ADMIN_PANEL_URL = 'admin'
+
+# The directory where the vcs app will checkout stuff and play around.
+# Warning: On production systems this should be a place outside of the source
+# and with enough disk space. Eg. /var/lib/transifex.
+# WARNING: Kept only for migration purposes. It will be removed in 1.1.
+SCRATCH_DIR = os.path.join('/var/lib/transifex', 'scratchdir')
+
+AJAX_LOOKUP_CHANNELS = {
+    # the simplest case, pass a DICT with the model and field to search against :
+    'users' : ('txcommon.lookups', 'UsersLookup'),
+    'projects' : ('projects.lookups', 'ProjectsLookup'),
+    'resources' : ('resources.lookups', 'ResourcesLookup'),
+}
+
-------------- next part --------------
An HTML attachment was scrubbed...
URL: &lt;/pipermail/mageia-sysadm/attachments/20101215/4d667fc3/attachment-0001.html&gt;
</PRE>




<!--endarticle-->
    <HR>
    <P><UL>
        <!--threads-->
	<LI>Previous message: <A HREF="001213.html">[Mageia-sysadm] [616] deploy transifex with wsgi on apache
</A></li>
	<LI>Next message: <A HREF="001215.html">[Mageia-sysadm] [618] - add ldap authentication to transifex, so far for sysadmin only (  for
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#1214">[ date ]</a>
              <a href="thread.html#1214">[ thread ]</a>
              <a href="subject.html#1214">[ subject ]</a>
              <a href="author.html#1214">[ author ]</a>
         </LI>
       </UL>

<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm
mailing list</a><br>
</body></html>