Update to Django 1.8 + various changes
This commit is contained in:
parent
47f5f97618
commit
dd6739461b
4
README
4
README
|
@ -1,9 +1,9 @@
|
|||
Dynastie is static blog generator delivered under GPL v3 licence terms.
|
||||
|
||||
Current version is 0.2
|
||||
Current version is 0.5
|
||||
|
||||
Requirements :
|
||||
Django >= 1.4, libapache2-mod-wsgi if you want to use Dynastie with Apache. PyGments (Optional).
|
||||
Django >= 1.8, libapache2-mod-wsgi if you want to use Dynastie with Apache. PyGments (Optional).
|
||||
|
||||
Installation :
|
||||
* Download Dynastie
|
||||
|
|
|
@ -3,7 +3,9 @@
|
|||
|
||||
DocumentRoot /home/soutade/dynastie/dynastie/
|
||||
|
||||
WSGIScriptAlias / /home/soutade/dynastie/dynastie/wsgi.py
|
||||
WSGIDaemonProcess django-dynastie
|
||||
WSGIProcessGroup django-dynastie
|
||||
WSGIScriptAlias / /var/www/dynastie/dynastie/wsgi.py
|
||||
|
||||
Alias /static /home/soutade/dynastie/dynastie/static
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@ from dynastie.models import *
|
|||
class BlogForm(ModelForm):
|
||||
class Meta:
|
||||
model = Blog
|
||||
exclude = ()
|
||||
|
||||
class PostForm(ModelForm):
|
||||
description = forms.CharField(widget=forms.Textarea(attrs={'rows':'5', 'cols':'50'}), required=False)
|
||||
|
@ -51,6 +52,7 @@ class CategoryForm(ModelForm):
|
|||
class UserForm(ModelForm):
|
||||
class Meta:
|
||||
model = User
|
||||
exclude = ('groups', 'user_permissions', 'date_joined')
|
||||
|
||||
class CommentForm(ModelForm):
|
||||
class Meta:
|
||||
|
|
|
@ -116,7 +116,9 @@ class Blog(models.Model):
|
|||
if os.path.isdir(srcname):
|
||||
if not os.path.exists(dstname):
|
||||
os.makedirs(dstname)
|
||||
self.copytree(srcname, dstname)
|
||||
self.copytree(srcname, dstname, ignore=True)
|
||||
else:
|
||||
return self.copytree(srcname, dstname)
|
||||
else:
|
||||
copied = False
|
||||
if os.path.exists(dstname):
|
||||
|
|
|
@ -68,7 +68,10 @@ Available tags:
|
|||
<pre style="display:inline">#[Inline Picture](https://bits.wikimedia.org/images/wikimedia-button.png)</pre><img src="https://bits.wikimedia.org/images/wikimedia-button.png" alt="Picture"/><br/>
|
||||
<pre style="display:inline">[Link](http://www.wikipedia.org)</pre> <a href="http://www.wikipedia.org">Link</a><br/><br/>
|
||||
<pre>
|
||||
Code : 4 whitespaces ahead
|
||||
Code : 4 whitespaces ahead OR
|
||||
```language
|
||||
Code
|
||||
```
|
||||
</pre>
|
||||
</td>
|
||||
<td>
|
||||
|
|
|
@ -67,7 +67,10 @@ Available tags:
|
|||
<pre style="display:inline">#[Inline Picture](https://bits.wikimedia.org/images/wikimedia-button.png)</pre><img src="https://bits.wikimedia.org/images/wikimedia-button.png" alt="Picture"/><br/>
|
||||
<pre style="display:inline">[Link](http://www.wikipedia.org)</pre> <a href="http://www.wikipedia.org">Link</a><br/><br/>
|
||||
<pre>
|
||||
Code : 4 whitespaces ahead
|
||||
Code : 4 whitespaces ahead OR
|
||||
```language
|
||||
Code
|
||||
```
|
||||
</pre>
|
||||
</td>
|
||||
<td>
|
||||
|
|
|
@ -80,7 +80,10 @@ Available tags:
|
|||
<pre style="display:inline">#[Inline Picture](https://bits.wikimedia.org/images/wikimedia-button.png)</pre><img src="https://bits.wikimedia.org/images/wikimedia-button.png" alt="Picture"/><br/>
|
||||
<pre style="display:inline">[Link](http://www.wikipedia.org)</pre> <a href="http://www.wikipedia.org">Link</a><br/><br/>
|
||||
<pre>
|
||||
Code : 4 whitespaces ahead
|
||||
Code : 4 whitespaces ahead OR
|
||||
```language
|
||||
Code
|
||||
```
|
||||
</pre>
|
||||
</td>
|
||||
<td>
|
||||
|
|
Loading…
Reference in New Issue
Block a user