Skip to content

Commit a6d8178

Browse files
author
Joeri Djojosoeparto
committed
Merge branch 'master' of github.com:wunki/busylissy
2 parents 8114ed8 + f324b84 commit a6d8178

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

README.mkd

+21-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,32 @@
33
This is the software that is running the site
44
[busylissy](http://busylissy.com). Busylissy started as a learning project for
55
the us at [Bread and Pepper](http://breadandpepper). We also still use it to
6-
manage our own project.
6+
manage our own projects.
77

88
Recently Busylissy was blogged about and reached a new high of 2.000 users.
99
Because we are very busy working on other web applications we have decided to
1010
open source it.
1111

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+
1232
# Credits
1333
- [Django](www.djangoproject.com) is the foundation on which Busylissy is
1434
build.

blproject/forms.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ def clean_tags(self):
4545
tags += tag + ","
4646

4747
# 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
4951
if project_tag not in tag_list:
5052
tags = project_tag + ',' + tags
5153

settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
ADMIN_MEDIA_PREFIX = '/media/admin/'
3737

38-
SECRET_KEY = '9*1^o17$q*3f*a63gc)pavb+8h3nf#$&)tcx5_a2n^u^kgxf!c'
38+
SECRET_KEY = 'dummy'
3939

4040
TEMPLATE_LOADERS = (
4141
'django.template.loaders.filesystem.load_template_source',

0 commit comments

Comments
 (0)