From: Lukasz Date: Tue, 11 May 2010 07:33:43 +0000 (+0200) Subject: Merge branch 'master' of http://github.com/fnp/wolnelektury X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/3ac9cb26acd9b7c5ba421dac123ba8f75b782bd2?ds=sidebyside;hp=-c Merge branch 'master' of github.com/fnp/wolnelektury --- 3ac9cb26acd9b7c5ba421dac123ba8f75b782bd2 diff --combined wolnelektury/settings.py index 164a7de52,eb6b88e35..62a2c9e23 --- a/wolnelektury/settings.py +++ b/wolnelektury/settings.py @@@ -3,7 -3,7 +3,7 @@@ from os import pat PROJECT_DIR = path.abspath(path.dirname(__file__)) -DEBUG = False +DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = [ @@@ -75,7 -75,6 +75,7 @@@ MIDDLEWARE_CLASSES = 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.middleware.doc.XViewMiddleware', 'pagination.middleware.PaginationMiddleware', + 'django.middleware.locale.LocaleMiddleware', ] ROOT_URLCONF = 'wolnelektury.urls' @@@ -116,7 -115,7 +116,7 @@@ CACHE_BACKEND = 'locmem:///?max_entries # CSS and JavaScript file groups COMPRESS_CSS = { 'all': { - 'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/master.plain.css', 'css/sponsors.css',), + 'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/jquery.countdown.css', 'css/master.plain.css', 'css/sponsors.css',), 'output_filename': 'css/all.min?.css', }, 'book': { @@@ -132,6 -131,7 +132,7 @@@ COMPRESS_JS = }, 'all': { 'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js', + 'js/jquery.countdown.js', 'js/jquery.countdown-pl.js', 'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js', 'js/jquery.cookie.js',), 'output_filename': 'js/all?.min.js', diff --combined wolnelektury/templates/catalogue/tagged_object_list.html index 1b441e7fe,3539ebea2..d5cb775f3 --- a/wolnelektury/templates/catalogue/tagged_object_list.html +++ b/wolnelektury/templates/catalogue/tagged_object_list.html @@@ -1,4 -1,3 +1,4 @@@ +{% load i18n %} {% extends "base.html" %} {% load catalogue_tags pagination_tags %} @@@ -15,6 -14,7 +15,7 @@@

Twoja półka jest pusta

Możesz wrzucić książkę na półkę, wchodząc na stronę danej lektury i klikając na przycisk „Na półkę!”.

+ {% else {% else %} {% autopaginate object_list 10 %}
@@@ -55,18 -55,45 +56,45 @@@ {% ifequal last_tag.category "epoch" %}Przeczytaj artykuł o epoce {{ last_tag }} w Wikipedii{% endifequal %}

{% endif %} -
    - {% for book in object_list %} -
  1. - {% if user_is_owner %} - Usuń + + {% if object_list %} +
      + {% for book in object_list %} +
    1. + {% if user_is_owner %} + Usuń + {% endif %} + {{ book.short_html }}
    2. + {% endfor %} +
    + {% else %} + {% if only_author %} + {% if last_tag.alive %} + Dzieła tego autora objęte są prawem autorskim. + {% else %}{% comment %} Nie żyje {% endcomment %} + {% if last_tag.in_pd %} + Dzieła tego autora znajdują się w domenie publicznej + i niedługo zostaną opublikowane w szkolnej bibliotece + internetowej Wolne Lektury. + {% else %}{% comment %} Nie żyje, ale jeszcze nie w PD {% endcomment %} +
    +

    Dzieła tego autora przejdą do zasobów domeny + publicznej i będą mogły być publikowane bez + żadnych ograniczeń za:

    + {% include "catalogue/pd_counter.html" %} +
    + {% endif %} {% endif %} - {{ book.short_html }}
  2. - {% endfor %} -
+ {% else %} + Nie znaleziono żadnych utworów. + {% endif %} + {% include "info/join_us.html" %} + {% endif %} {% endwith %} {% paginate %}
+ {% if object_list %} + {% comment %} Jeśli nic nie znaleźliśmy, to i po prawej stronie nic nie będzie {% endcomment %}
{% if categories.author %} @@@ -94,6 -121,7 +122,7 @@@
+ {% endif %} {% endif %}