fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
editor update
[redakcja.git]
/
apps
/
catalogue
/
models
/
chunk.py
diff --git
a/apps/catalogue/models/chunk.py
b/apps/catalogue/models/chunk.py
index
70e185b
..
df6370d
100755
(executable)
--- a/
apps/catalogue/models/chunk.py
+++ b/
apps/catalogue/models/chunk.py
@@
-53,7
+53,7
@@
class Chunk(dvcs_models.Document):
@models.permalink
def get_absolute_url(self):
@models.permalink
def get_absolute_url(self):
- return
("wiki_editor", [self.book.slug, self.slug])
+ return
"wiki_editor", [self.book.slug, self.slug]
def pretty_name(self, book_length=None):
title = self.book.title
def pretty_name(self, book_length=None):
title = self.book.title
@@
-63,7
+63,6
@@
class Chunk(dvcs_models.Document):
title += " (%d/%d)" % (self.number, book_length)
return title
title += " (%d/%d)" % (self.number, book_length)
return title
-
# Creating and manipulation
# =========================
# Creating and manipulation
# =========================
@@
-75,8
+74,8
@@
class Chunk(dvcs_models.Document):
while not new_chunk:
new_slug = self.book.make_chunk_slug(slug)
try:
while not new_chunk:
new_slug = self.book.make_chunk_slug(slug)
try:
- new_chunk = self.book.chunk_set.create(
number=self.number+1,
- slug=new_slug[:50], title=title[:255], **kwargs)
+ new_chunk = self.book.chunk_set.create(
+
number=self.number+1,
slug=new_slug[:50], title=title[:255], **kwargs)
except IntegrityError:
pass
return new_chunk
except IntegrityError:
pass
return new_chunk
@@
-88,7
+87,6
@@
class Chunk(dvcs_models.Document):
else:
return cls.objects.get(book__slug=book_slug, slug=chunk_slug)
else:
return cls.objects.get(book__slug=book_slug, slug=chunk_slug)
-
# State & cache
# =============
# State & cache
# =============