File tree 3 files changed +25
-3
lines changed
3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 3
3
This is the software that is running the site
4
4
[ busylissy] ( http://busylissy.com ) . Busylissy started as a learning project for
5
5
the us at [ Bread and Pepper] ( http://breadandpepper ) . We also still use it to
6
- manage our own project .
6
+ manage our own projects .
7
7
8
8
Recently Busylissy was blogged about and reached a new high of 2.000 users.
9
9
Because we are very busy working on other web applications we have decided to
10
10
open source it.
11
11
12
+ # F.A.Q.
13
+
14
+ ## Are you going to ask money to use Busylissy?
15
+
16
+ No. We will keep Busylissy in the public domain and pay for the hosting by
17
+ ourselves. When the costs of hosting keep going up we will have to consider
18
+ placing banners or asking for donations.
19
+
20
+ ## Can I have Busylissy in language X
21
+
22
+ Yes. We would love to have as many languages as possible. That's one of the
23
+ reasons the application is open source. It would be great if you would be
24
+ willing to translate the translation file found in `` locales `` to your own
25
+ language.
26
+
27
+ ## Why have you open-sourced Busylissy?
28
+
29
+ We didn't have the time to make Busylissy the web application it could be. So
30
+ we hope that the community can take Busylissy to the next level.
31
+
12
32
# Credits
13
33
- [ Django] ( www.djangoproject.com ) is the foundation on which Busylissy is
14
34
build.
Original file line number Diff line number Diff line change @@ -45,7 +45,9 @@ def clean_tags(self):
45
45
tags += tag + ","
46
46
47
47
# Project name must always be a tag
48
- project_tag = slugify (self .cleaned_data ['name' ])
48
+ # getting name field if not cleaned
49
+ name = self .fields ["name" ] or self .cleaned_data ["name" ]
50
+ project_tag = slugify (name ) # getting name field
49
51
if project_tag not in tag_list :
50
52
tags = project_tag + ',' + tags
51
53
Original file line number Diff line number Diff line change 35
35
36
36
ADMIN_MEDIA_PREFIX = '/media/admin/'
37
37
38
- SECRET_KEY = '9*1^o17$q*3f*a63gc)pavb+8h3nf#$&)tcx5_a2n^u^kgxf!c '
38
+ SECRET_KEY = 'dummy '
39
39
40
40
TEMPLATE_LOADERS = (
41
41
'django.template.loaders.filesystem.load_template_source' ,
You can’t perform that action at this time.
0 commit comments