Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(551)

Issue 6307082: Simple blog view and template (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
11 years, 11 months ago by spy
Modified:
11 years, 9 months ago
Reviewers:
thomas.j.waldmann, Reimar Bauer, ThomasJWaldmann
Visibility:
Public.

Description

Simple blog view and template

Patch Set 1 #

Total comments: 4

Patch Set 2 : Added information about posted date and author #

Patch Set 3 : Fixed rewriting of 'item' variable #

Patch Set 4 : Using SUMMARY as a link title #

Total comments: 9

Patch Set 5 : Added tags listing to each blog post #

Total comments: 6

Patch Set 6 : Added blog categories box #

Total comments: 4

Patch Set 7 : Added blog_layout, blog sidebar with 'Categories' widget, simple +post view #

Total comments: 14

Patch Set 8 : Rename blog post to blog entry #

Unified diffs Side-by-side diffs Delta from patch set Stats (+43 lines, -36 lines) Patch
M MoinMoin/apps/frontend/views.py View 1 2 3 4 5 6 7 2 chunks +7 lines, -7 lines 0 comments Download
M MoinMoin/templates/blog.html View 1 2 3 4 5 6 7 1 chunk +4 lines, -4 lines 0 comments Download
A MoinMoin/templates/blog_entry.html View 1 2 3 4 5 6 7 1 chunk +7 lines, -0 lines 0 comments Download
M MoinMoin/templates/blog_layout.html View 1 2 3 4 5 6 7 1 chunk +19 lines, -19 lines 0 comments Download
M MoinMoin/themes/modernized/static/css/common.css View 1 2 3 4 5 6 7 1 chunk +6 lines, -6 lines 0 comments Download

Messages

Total messages: 15
ThomasJWaldmann
http://codereview.appspot.com/6307082/diff/1/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6307082/diff/1/MoinMoin/apps/frontend/views.py#newcode474 MoinMoin/apps/frontend/views.py:474: #TODO: move to BlogItem class # TODO: ... http://codereview.appspot.com/6307082/diff/1/MoinMoin/apps/frontend/views.py#newcode484 ...
11 years, 11 months ago (2012-06-12 17:07:18 UTC) #1
Reimar Bauer
answered 22:31 < spy> dreimark: do you have any ideas on http://codereview.appspot.com/6307082/diff/1/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): ...
11 years, 11 months ago (2012-06-13 06:00:00 UTC) #2
ThomasJWaldmann
some more comments http://codereview.appspot.com/6307082/diff/14001/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6307082/diff/14001/MoinMoin/apps/frontend/views.py#newcode485 MoinMoin/apps/frontend/views.py:485: # We only want the sub-item ...
11 years, 11 months ago (2012-06-17 22:42:38 UTC) #3
spy
http://codereview.appspot.com/6307082/diff/14001/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6307082/diff/14001/MoinMoin/apps/frontend/views.py#newcode485 MoinMoin/apps/frontend/views.py:485: # We only want the sub-item part of the ...
11 years, 11 months ago (2012-06-17 22:53:01 UTC) #4
Reimar Bauer
a comment http://codereview.appspot.com/6307082/diff/10004/MoinMoin/templates/blog.html File MoinMoin/templates/blog.html (right): http://codereview.appspot.com/6307082/diff/10004/MoinMoin/templates/blog.html#newcode25 MoinMoin/templates/blog.html:25: <ul class="moin-post-tags"> why is for div and ...
11 years, 11 months ago (2012-06-19 06:07:23 UTC) #5
Reimar Bauer
another comment http://codereview.appspot.com/6307082/diff/10004/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6307082/diff/10004/MoinMoin/apps/frontend/views.py#newcode465 MoinMoin/apps/frontend/views.py:465: @frontend.route('/+blog/<itemname:item_name>', defaults=dict(rev=CURRENT)) which methods ?
11 years, 11 months ago (2012-06-19 10:51:44 UTC) #6
spy
http://codereview.appspot.com/6307082/diff/10004/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6307082/diff/10004/MoinMoin/apps/frontend/views.py#newcode465 MoinMoin/apps/frontend/views.py:465: @frontend.route('/+blog/<itemname:item_name>', defaults=dict(rev=CURRENT)) On 2012/06/19 10:51:45, Reimar Bauer wrote: > ...
11 years, 11 months ago (2012-06-19 19:50:32 UTC) #7
Reimar Bauer
answered http://codereview.appspot.com/6307082/diff/10004/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6307082/diff/10004/MoinMoin/apps/frontend/views.py#newcode465 MoinMoin/apps/frontend/views.py:465: @frontend.route('/+blog/<itemname:item_name>', defaults=dict(rev=CURRENT)) On 2012/06/19 19:50:32, spy wrote: > ...
11 years, 11 months ago (2012-06-19 20:49:45 UTC) #8
spy
Thanks, fixed. http://codereview.appspot.com/6307082/diff/10004/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6307082/diff/10004/MoinMoin/apps/frontend/views.py#newcode465 MoinMoin/apps/frontend/views.py:465: @frontend.route('/+blog/<itemname:item_name>', defaults=dict(rev=CURRENT)) On 2012/06/19 20:49:46, Reimar Bauer ...
11 years, 11 months ago (2012-06-19 21:09:44 UTC) #9
ThomasJWaldmann
http://codereview.appspot.com/6307082/diff/17002/MoinMoin/templates/blog.html File MoinMoin/templates/blog.html (right): http://codereview.appspot.com/6307082/diff/17002/MoinMoin/templates/blog.html#newcode22 MoinMoin/templates/blog.html:22: {% set categories = item.meta['supertags'] %} you could reverse ...
11 years, 11 months ago (2012-06-23 11:23:04 UTC) #10
Reimar Bauer
some comments http://codereview.appspot.com/6307082/diff/23001/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6307082/diff/23001/MoinMoin/apps/frontend/views.py#newcode486 MoinMoin/apps/frontend/views.py:486: title_name=item.name, where is title_name used in the ...
11 years, 10 months ago (2012-07-04 04:53:19 UTC) #11
spy
Reply on comments about 'title_name' http://codereview.appspot.com/6307082/diff/23001/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6307082/diff/23001/MoinMoin/apps/frontend/views.py#newcode486 MoinMoin/apps/frontend/views.py:486: title_name=item.name, On 2012/07/04 04:53:19, ...
11 years, 10 months ago (2012-07-04 17:29:07 UTC) #12
ThomasJWaldmann
http://codereview.appspot.com/6307082/diff/17002/MoinMoin/themes/modernized/static/css/common.css File MoinMoin/themes/modernized/static/css/common.css (right): http://codereview.appspot.com/6307082/diff/17002/MoinMoin/themes/modernized/static/css/common.css#newcode305 MoinMoin/themes/modernized/static/css/common.css:305: .moin-box-heading { font-weight: bold; margin: 0; padding: 0; } ...
11 years, 10 months ago (2012-07-05 15:11:04 UTC) #13
spy
http://codereview.appspot.com/6307082/diff/23001/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6307082/diff/23001/MoinMoin/apps/frontend/views.py#newcode493 MoinMoin/apps/frontend/views.py:493: def show_post(item_name, rev): On 2012/07/05 15:11:05, ThomasJWaldmann wrote: > ...
11 years, 10 months ago (2012-07-05 17:33:22 UTC) #14
ThomasJWaldmann
11 years, 10 months ago (2012-07-06 20:53:24 UTC) #15
> we have a cfg.supplementation_item_names = [u'Discussion', ] it is used in the
> itemviews listing. How could I use this list of names in our case? I guess
there
> may be multiple names in this list.

Use cfg.supplementation_item_names[0] for now. I guess we need something better
there, but [0] is still better than hardcoding it likely.
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b