From 44090c986d9a16f6913047c25319c446bb9308ad Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Tue, 7 Aug 2012 17:37:13 +0200 Subject: [PATCH] dirty, ugly but workable --- .gitignore | 34 + LICENSE | 661 ++++++++++++++++++ NOTICE | 19 + events/__init__.py | 0 events/admin.py | 8 + events/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 865 bytes events/locale/pl/LC_MESSAGES/django.po | 55 ++ events/migrations/0001_initial.py | 46 ++ events/migrations/__init__.py | 0 events/models.py | 23 + events/templates/events/event_list.html | 12 + .../templates/events/snippets/events_box.html | 15 + events/templatetags/__init__.py | 0 events/templatetags/events_tags.py | 15 + events/tests.py | 20 + events/urls.py | 13 + events/views.py | 1 + manage.py | 10 + migdal/__init__.py | 6 + migdal/admin.py | 70 ++ migdal/api.py | 19 + migdal/feeds.py | 49 ++ migdal/helpers.py | 72 ++ migdal/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 2124 bytes migdal/locale/pl/LC_MESSAGES/django.po | 168 +++++ migdal/middleware.py | 26 + migdal/migrations/0001_initial.py | 130 ++++ migdal/migrations/__init__.py | 0 migdal/models.py | 97 +++ migdal/settings.py | 31 + .../templates/comments/migdal/entry/list.html | 13 + .../comments/migdal/entry/preview.html | 51 ++ .../email_followup_comment.txt | 1 + migdal/templates/migdal/categories.html | 7 + .../templates/migdal/entry/entry_begin.html | 17 + .../templates/migdal/entry/entry_detail.html | 19 + migdal/templates/migdal/entry/entry_list.html | 24 + .../templates/migdal/entry/entry_short.html | 19 + .../migdal/entry/info/entry_begin.html | 5 + migdal/templates/migdal/last_comments.html | 14 + migdal/templatetags/__init__.py | 0 migdal/templatetags/migdal_tags.py | 41 ++ migdal/tests.py | 16 + migdal/urls.py | 38 + migdal/views.py | 44 ++ prawokultury/__init__.py | 0 prawokultury/helpers.py | 42 ++ prawokultury/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 1024 bytes prawokultury/locale/pl/LC_MESSAGES/django.po | 66 ++ prawokultury/settings.py | 212 ++++++ prawokultury/static/css/base.css | 29 + prawokultury/templates/404.html | 1 + prawokultury/templates/500.html | 1 + prawokultury/templates/base.html | 57 ++ prawokultury/templatetags/__init__.py | 0 prawokultury/templatetags/markup_tags.py | 18 + prawokultury/urls.py | 28 + prawokultury/wsgi.py | 28 + requirements.txt | 10 + 59 files changed, 2401 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 NOTICE create mode 100644 events/__init__.py create mode 100644 events/admin.py create mode 100644 events/locale/pl/LC_MESSAGES/django.mo create mode 100644 events/locale/pl/LC_MESSAGES/django.po create mode 100644 events/migrations/0001_initial.py create mode 100644 events/migrations/__init__.py create mode 100644 events/models.py create mode 100755 events/templates/events/event_list.html create mode 100755 events/templates/events/snippets/events_box.html create mode 100644 events/templatetags/__init__.py create mode 100644 events/templatetags/events_tags.py create mode 100644 events/tests.py create mode 100644 events/urls.py create mode 100644 events/views.py create mode 100755 manage.py create mode 100644 migdal/__init__.py create mode 100644 migdal/admin.py create mode 100755 migdal/api.py create mode 100755 migdal/feeds.py create mode 100644 migdal/helpers.py create mode 100644 migdal/locale/pl/LC_MESSAGES/django.mo create mode 100644 migdal/locale/pl/LC_MESSAGES/django.po create mode 100644 migdal/middleware.py create mode 100644 migdal/migrations/0001_initial.py create mode 100644 migdal/migrations/__init__.py create mode 100644 migdal/models.py create mode 100644 migdal/settings.py create mode 100755 migdal/templates/comments/migdal/entry/list.html create mode 100755 migdal/templates/comments/migdal/entry/preview.html create mode 100755 migdal/templates/django_comments_xtd/email_followup_comment.txt create mode 100755 migdal/templates/migdal/categories.html create mode 100755 migdal/templates/migdal/entry/entry_begin.html create mode 100755 migdal/templates/migdal/entry/entry_detail.html create mode 100755 migdal/templates/migdal/entry/entry_list.html create mode 100755 migdal/templates/migdal/entry/entry_short.html create mode 100755 migdal/templates/migdal/entry/info/entry_begin.html create mode 100755 migdal/templates/migdal/last_comments.html create mode 100644 migdal/templatetags/__init__.py create mode 100644 migdal/templatetags/migdal_tags.py create mode 100644 migdal/tests.py create mode 100644 migdal/urls.py create mode 100644 migdal/views.py create mode 100644 prawokultury/__init__.py create mode 100644 prawokultury/helpers.py create mode 100644 prawokultury/locale/pl/LC_MESSAGES/django.mo create mode 100644 prawokultury/locale/pl/LC_MESSAGES/django.po create mode 100644 prawokultury/settings.py create mode 100755 prawokultury/static/css/base.css create mode 100755 prawokultury/templates/404.html create mode 100755 prawokultury/templates/500.html create mode 100755 prawokultury/templates/base.html create mode 100644 prawokultury/templatetags/__init__.py create mode 100644 prawokultury/templatetags/markup_tags.py create mode 100644 prawokultury/urls.py create mode 100644 prawokultury/wsgi.py create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c3e3e48 --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +localsettings.py +dev.sqlite +*.db +*.db-journal +*~ +*.orig +*.log + +# Compress output +/static + +# Python garbage +*.pyc +.coverage +pip-log.txt +nosetests.xml + +# Mac OS X garbage +.DS_Store + +# Windows garbage +thumbs.db + +# Eclipse +.project +.settings +.pydevproject +.tmp_* + +# Tags file +TAGS + +media +search_index diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2def0e8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. \ No newline at end of file diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..88c1cb5 --- /dev/null +++ b/NOTICE @@ -0,0 +1,19 @@ + + FNP PrawoKultury + + Copyright © 2010 Fundacja Nowoczesna Polska + + For full list of contributors see AUTHORS file. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . \ No newline at end of file diff --git a/events/__init__.py b/events/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/events/admin.py b/events/admin.py new file mode 100644 index 0000000..2fb55d6 --- /dev/null +++ b/events/admin.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.contrib import admin +from events.models import Event + +admin.site.register(Event) diff --git a/events/locale/pl/LC_MESSAGES/django.mo b/events/locale/pl/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..2f62cb107b9743c99ff422d88fb5571de0c122ff GIT binary patch literal 865 zcmah{&2AGh5H_^@bP+-zE(i`j(5hAB)Vow_*k%hNBvK^;Q4~PpHr;iXO*Zz*_BJHy z3GoUXco&ZJ8MyHbaN~l+csErpNR0IDH}iSM9((77EK{4N1TXBAj1;4aqY( zAycIVtz<)#PC;f1p-GWLEQrl)F33Quv4|}@O4u8rO{Qc>3k@?hDRW!uIjgI^p(vEL ztZ&jRVb99cu#pO>H+VH-9WB6OA$yKZgf!rOz<7)Ced_OrL94+7&M}b<#cAda_;=pp z2KO=V1sKal8l=g=Djm`xBw|843m8v;wlyRQS7yz)5}rymQ}IF=35Ckd1e$ouW|1G_ zJ~AyK6>KD68q(g&0d1d@GJ$vu|F6QE^^f}9)sy&5?sb&3_`qy5FYuaHe6YLtl9@c9 z@q5rl*y#1B$6BjAcZ(CDSy#p?$z&SR)^TRNL0)ReSx@Py38^fq&_s_8XzfPZGKzfq zgmQ|@n?65`0=l(Tx$S7rx!X?WZJ*P#vr2b4d|in++hdi&(5& isE1^heftuNF, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: prawokultury-events\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-07 17:28+0200\n" +"PO-Revision-Date: 2012-08-07 17:29+0100\n" +"Last-Translator: Radek Czajka \n" +"Language-Team: FNP \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: models.py:11 +msgid "date" +msgstr "data" + +#: models.py:12 +msgid "link" +msgstr "link" + +#: models.py:15 +msgid "event" +msgstr "wydarzenie" + +#: models.py:16 +msgid "events" +msgstr "wydarzenia" + +#: models.py:20 +msgid "title" +msgstr "tytuł" + +#: models.py:21 +msgid "organizer" +msgstr "organizator" + +#: models.py:22 +msgid "place" +msgstr "miejsce" + +#: templates/events/event_list.html:5 +msgid "Events" +msgstr "Wydarzenia" + +#: templates/events/snippets/events_box.html:15 +msgid "more events" +msgstr "więcej wydarzeń" + diff --git a/events/migrations/0001_initial.py b/events/migrations/0001_initial.py new file mode 100644 index 0000000..1230887 --- /dev/null +++ b/events/migrations/0001_initial.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +import datetime +from south.db import db +from south.v2 import SchemaMigration +from django.db import models + + +class Migration(SchemaMigration): + + def forwards(self, orm): + # Adding model 'Event' + db.create_table('events_event', ( + ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)), + ('date', self.gf('django.db.models.fields.DateTimeField')(max_length=255, db_index=True)), + ('link', self.gf('django.db.models.fields.URLField')(max_length=200)), + ('title_pl', self.gf('django.db.models.fields.CharField')(max_length=255)), + ('title_en', self.gf('django.db.models.fields.CharField')(max_length=255)), + ('organizer_pl', self.gf('django.db.models.fields.CharField')(max_length=255, db_index=True)), + ('organizer_en', self.gf('django.db.models.fields.CharField')(max_length=255, db_index=True)), + ('place_pl', self.gf('django.db.models.fields.CharField')(max_length=255)), + ('place_en', self.gf('django.db.models.fields.CharField')(max_length=255)), + )) + db.send_create_signal('events', ['Event']) + + + def backwards(self, orm): + # Deleting model 'Event' + db.delete_table('events_event') + + + models = { + 'events.event': { + 'Meta': {'ordering': "['date']", 'object_name': 'Event'}, + 'date': ('django.db.models.fields.DateTimeField', [], {'max_length': '255', 'db_index': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'link': ('django.db.models.fields.URLField', [], {'max_length': '200'}), + 'organizer_en': ('django.db.models.fields.CharField', [], {'max_length': '255', 'db_index': 'True'}), + 'organizer_pl': ('django.db.models.fields.CharField', [], {'max_length': '255', 'db_index': 'True'}), + 'place_en': ('django.db.models.fields.CharField', [], {'max_length': '255'}), + 'place_pl': ('django.db.models.fields.CharField', [], {'max_length': '255'}), + 'title_en': ('django.db.models.fields.CharField', [], {'max_length': '255'}), + 'title_pl': ('django.db.models.fields.CharField', [], {'max_length': '255'}) + } + } + + complete_apps = ['events'] \ No newline at end of file diff --git a/events/migrations/__init__.py b/events/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/events/models.py b/events/models.py new file mode 100644 index 0000000..742c2f2 --- /dev/null +++ b/events/models.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.db import models +from django.utils.translation import ugettext_lazy as _ +from migdal.helpers import add_translatable + + +class Event(models.Model): + date = models.DateTimeField(_('date'), max_length=255, db_index=True) + link = models.URLField(_('link')) + + class Meta: + verbose_name = _('event') + verbose_name_plural = _('events') + ordering = ['date'] + +add_translatable(Event, { + 'title': models.CharField(_('title'), max_length=255), + 'organizer': models.CharField(_('organizer'), max_length=255, db_index=True), + 'place': models.CharField(_('place'), max_length=255), +}) diff --git a/events/templates/events/event_list.html b/events/templates/events/event_list.html new file mode 100755 index 0000000..62b1259 --- /dev/null +++ b/events/templates/events/event_list.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block "body" %} +

{% trans "Events" %}

+{% for event in object_list %} + {{ event.title }} + {{ event.place }} + {{ event.organizer }} + {{ event.date }} +{% endfor %} +{% endblock %} \ No newline at end of file diff --git a/events/templates/events/snippets/events_box.html b/events/templates/events/snippets/events_box.html new file mode 100755 index 0000000..b10c33d --- /dev/null +++ b/events/templates/events/snippets/events_box.html @@ -0,0 +1,15 @@ +{% load i18n %} +{% load url from future %} + + +{% trans "more events" %} diff --git a/events/templatetags/__init__.py b/events/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/events/templatetags/events_tags.py b/events/templatetags/events_tags.py new file mode 100644 index 0000000..00ea5c7 --- /dev/null +++ b/events/templatetags/events_tags.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django import template +from events.models import Event + +register = template.Library() +from datetime import datetime + + +@register.inclusion_tag('events/snippets/events_box.html', takes_context=True) +def events_box(context, limit=5): + objects = Event.objects.filter(date__gte=datetime.now())[:limit] + return {'objects': objects} diff --git a/events/tests.py b/events/tests.py new file mode 100644 index 0000000..c4c2187 --- /dev/null +++ b/events/tests.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/events/urls.py b/events/urls.py new file mode 100644 index 0000000..5dbae6d --- /dev/null +++ b/events/urls.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.conf.urls import patterns, include, url +from django.views.generic import ListView, DetailView +from events.models import Event + + +urlpatterns = patterns('', + url(r'^$', ListView.as_view(model=Event), name='events'), + #url(r'^(?P[^/]+)/$', DetailView.as_view(model=Event), name='news'), +) diff --git a/events/views.py b/events/views.py new file mode 100644 index 0000000..60f00ef --- /dev/null +++ b/events/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/manage.py b/manage.py new file mode 100755 index 0000000..1889972 --- /dev/null +++ b/manage.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python +import os +import sys + +if __name__ == "__main__": + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "prawokultury.settings") + + from django.core.management import execute_from_command_line + + execute_from_command_line(sys.argv) diff --git a/migdal/__init__.py b/migdal/__init__.py new file mode 100644 index 0000000..ae94f9e --- /dev/null +++ b/migdal/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +""" +Migdal (מִגְדָּל) is a multilingual blog Django app. + +Author: Radek Czajka +""" \ No newline at end of file diff --git a/migdal/admin.py b/migdal/admin.py new file mode 100644 index 0000000..d7a7224 --- /dev/null +++ b/migdal/admin.py @@ -0,0 +1,70 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.contrib import admin +from django.utils.translation import ugettext_lazy as _ +from migdal.models import Category, Entry, Attachment +from migdal import settings + + +def translated_fields(field_names, languages=settings.LANGUAGES): + return tuple("%s_%s" % (field_name, lang_code) + for field_name in field_names + for lang_code, lang_name in languages + ) + + +class AttachmentInline(admin.TabularInline): + model = Attachment + readonly_fields = ['url'] + + +class EntryAdmin(admin.ModelAdmin): + fieldsets = ( + (None, {'fields': ('type', 'author', 'author_email', 'image')}), + ) + tuple( + (ln, {'fields': ( + ('published_%s' % lc), + 'title_%s' % lc, + 'slug_%s' % lc, + 'lead_%s' % lc, + 'body_%s' % lc, + )}) + for lc, ln in settings.OBLIGATORY_LANGUAGES + ) + tuple( + (ln, {'fields': ( + ('needed_%s' % lc, 'published_%s' % lc), + 'title_%s' % lc, + 'slug_%s' % lc, + 'lead_%s' % lc, + 'body_%s' % lc, + )}) + for lc, ln in settings.OPTIONAL_LANGUAGES + ) + ( + (_('Categories'), {'fields': ('categories',)}), + ) + prepopulated_fields = dict([ + ("slug_%s" % lang_code, ("title_%s" % lang_code,)) + for lang_code, lang_name in settings.LANGUAGES + ]) + + list_display = translated_fields(('title',), settings.OBLIGATORY_LANGUAGES + ) + ('type', 'date', 'author' + ) + translated_fields(('published',) + ) + translated_fields(('needed',), settings.OPTIONAL_LANGUAGES) + list_filter = ('type',) + translated_fields(('published',) + ) + translated_fields(('needed',), settings.OPTIONAL_LANGUAGES) + inlines = (AttachmentInline,) + + +class CategoryAdmin(admin.ModelAdmin): + list_display = translated_fields(('title', 'slug')) + prepopulated_fields = dict([ + ("slug_%s" % lang_code, ("title_%s" % lang_code,)) + for lang_code, lang_name in settings.LANGUAGES + ]) + + +admin.site.register(Entry, EntryAdmin) +admin.site.register(Category, CategoryAdmin) diff --git a/migdal/api.py b/migdal/api.py new file mode 100755 index 0000000..7ed17ec --- /dev/null +++ b/migdal/api.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from migdal.models import Entry +from migdal.settings import TYPES +from django.utils.translation import get_language + + +def entry_list(entry_type=None, category=None): + lang = get_language() + object_list = Entry.objects.filter(**{"published_%s" % lang: True}) + if entry_type: + object_list = object_list.filter(type=entry_type.db) + else: + object_list = object_list.filter(type__in=[t.db for t in TYPES if t.on_main]) + if category: + object_list = object_list.filter(categories=category) + return object_list diff --git a/migdal/feeds.py b/migdal/feeds.py new file mode 100755 index 0000000..93b39ce --- /dev/null +++ b/migdal/feeds.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.contrib.syndication.views import Feed +from django.core.urlresolvers import reverse +from django.shortcuts import get_object_or_404 +from django.utils.translation import ugettext as _ +from migdal import api +from migdal.models import Category +from migdal.settings import TYPES_DICT + + +class EntriesFeed(Feed): + def get_object(self, request, type_db=None, category_slug=None): + lang = request.LANGUAGE_CODE + if category_slug: + category = get_object_or_404(Category, **{'slug_%s' % lang: category_slug}) + else: + category = None + if type_db: + entry_type = TYPES_DICT[type_db] + return {'entry_type': entry_type, 'category': category} + + def title(self, obj): + t = "Prawo kultury, " + _("latest") + " " + if obj['entry_type']: + t += unicode(obj['entry_type'].slug) + else: + t += _("entries") + if obj['category']: + t += " " + _("in category") + " " + obj['category'].title + return t + + def link(self, obj): + if obj['category']: + return reverse('migdal_category', args=[obj['category'].slug]) + if obj['entry_type']: + return reverse('migdal_entry_list_%s' % obj['entry_type'].db) + return reverse('migdal_main') + + def items(self, obj): + return api.entry_list(**obj) + + def item_title(self, item): + return item.title + + def item_description(self, item): + return item.lead diff --git a/migdal/helpers.py b/migdal/helpers.py new file mode 100644 index 0000000..4fec03a --- /dev/null +++ b/migdal/helpers.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from collections import namedtuple +from copy import copy +import re +from django.conf import settings +from django.conf.urls import patterns +from django.core.urlresolvers import LocaleRegexURLResolver +from django.utils.translation import get_language, string_concat + + +class EntryType(namedtuple('EntryType', 'db slug commentable on_main')): + def __unicode__(self): + return unicode(self.slug) + + +def field_getter(name): + @property + def getter(self): + val = getattr(self, "%s_%s" % (name, get_language())) + if not val: + val = getattr(self, "%s_%s" % (name, settings.LANGUAGE_CODE)) + return val + return getter + + +def add_translatable(model, fields, languages=None): + """Adds some translatable fields to a model, and a getter.""" + if languages is None: + languages = settings.LANGUAGES + for name, field in fields.items(): + for lang_code, lang_name in languages: + new_field = copy(field) + if field.verbose_name: + new_field.verbose_name = string_concat(field.verbose_name, ' [%s]' % lang_code) + new_field.contribute_to_class(model, "%s_%s" % (name, lang_code)) + setattr(model, name, field_getter(name)) + # add setter? + + +class MyLocaleRegexURLResolver(LocaleRegexURLResolver): + """ + A URL resolver that always matches the active language code as URL prefix. + + Rather than taking a regex argument, we just override the ``regex`` + function to always return the active language-code as regex. + """ + @property + def regex(self): + language_code = get_language() + if language_code == settings.LANGUAGE_CODE: + return re.compile('') + if language_code not in self._regex_dict: + regex_compiled = re.compile('^%s/' % language_code, re.UNICODE) + self._regex_dict[language_code] = regex_compiled + return self._regex_dict[language_code] + + +def i18n_patterns(prefix, *args): + """ + Adds the language code prefix to every URL pattern within this + function. This may only be used in the root URLconf, not in an included + URLconf. + + """ + pattern_list = patterns(prefix, *args) + if not settings.USE_I18N: + return pattern_list + return pattern_list + [MyLocaleRegexURLResolver(pattern_list)] + diff --git a/migdal/locale/pl/LC_MESSAGES/django.mo b/migdal/locale/pl/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..52cedd237fc38ea6c9a70c58f4cd0b9c32c72d7e GIT binary patch literal 2124 zcma)+O>7%Q6vqczXk#cJp+Na61Eo=-YSUe}(8!HbAWfvINopbo5Vx^+;*7nXS!TzW zHN8-ZdIcm9QSS&Y2#E^^dZ}Wm7dZ5S;DE%XmtFyh6a3$LZL1X(j6Cz3H}CCx^IqoV z*U8o4KZE4|21s#lf@J?ENPhkX?*aF~i0t-ZA$by{ z`y9y6UjWJPOfLJm{9-Q8gAYRg3P}E611bJn-~`yn`8G)Y-vj?Zjot?X$Xz%myRUM7 z3(|eBfDeGz^7Eg-Cgk5hy8j9ms!J85xSQZ3paCiV2Oz?*k3fq13AhjZ9K?@(fra9J zo%1`8?5={i8oQSB2M|AY9Shavm;C$&NO5oG^6wz|`wJvLyP%{zCO|shpUVe9y59^) z`Mm@pCAI|8eMy%;olH+T(f3s2hcFLf4#y#E9?b=cN#m&jvNu87$1$J5Jb+2}c?|Pe z%;zy_P)?JW&yj%f1SY*Ns?~5%ooP^AkY4uAaoz0RPl6ni9iFbwB)o3gZK>U@QoK6|tHLQ&t}*k#AFmT(hi*Dce+$ zWU4J1ST!FRDZOb}lx510T*&fhS=LCbEn3KTOXvpb6I;_Z4t0n-wMfB-G8(5OBwIMP zaKPKfO6HV9xQaDR)X6&&dap~Hz`Df4CVUyMts0?-xIY^d)@5w0^H!6F3cXi5jl`>( z5-(KFRlP-cq#)jD+_1!peo*xMInO`AgA=9V+!4R%`!Mv@Q9yG4uXe|RBYpt86_Gfv zYK2aaudyY*E<)Mji#^e72|jN{XrSrN*0Y0`wdtCAPbON#CQ4dj*4V~u94)|)Zgfyb zuPQ~m#Fy79e15Z|Ls4&v|Ng4PD~8HdSUt14G%iap>lYS{cKBm?)ig%3PQL4o#*t9^ zB>e$wB3*f-y6nx3?I@Q`X}u*~H=)vv5}&InSExiCD$HvSC03GhvErtqd$F)~!n8&+eK zSKePOL(L{^?{-<9M1?Oei6tN!;%FXgrVg`E%4v3E3)naMVq=l|Hek@hb~s>yQlae5UKHli$4z8UKT zTT^)4!|N()T(qzBsBw8F20e;~0M^e7OaK4? literal 0 HcmV?d00001 diff --git a/migdal/locale/pl/LC_MESSAGES/django.po b/migdal/locale/pl/LC_MESSAGES/django.po new file mode 100644 index 0000000..1055e0e --- /dev/null +++ b/migdal/locale/pl/LC_MESSAGES/django.po @@ -0,0 +1,168 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: django-migdal 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-07 17:28+0200\n" +"PO-Revision-Date: 2012-08-07 17:31+0100\n" +"Last-Translator: Radek Czajka \n" +"Language-Team: FNP \n" +"Language: Polish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"X-Poedit-Language: Polish\n" + +#: admin.py:45 +msgid "Categories" +msgstr "Kategorie" + +#: feeds.py:26 +msgid "latest" +msgstr "ostatnie" + +#: feeds.py:30 +#: models.py:48 +msgid "entries" +msgstr "wpisy" + +#: feeds.py:32 +msgid "in category" +msgstr "w kategorii" + +#: models.py:15 +msgid "category" +msgstr "kategoria" + +#: models.py:16 +#: urls.py:32 +#: urls.py:34 +msgid "categories" +msgstr "kategorie" + +#: models.py:40 +msgid "author" +msgstr "autor" + +#: models.py:41 +msgid "author email" +msgstr "e-mail autora" + +#: models.py:42 +msgid "image" +msgstr "obrazek" + +#: models.py:43 +msgid "promoted" +msgstr "promowane" + +#: models.py:47 +msgid "entry" +msgstr "wpis" + +#: models.py:72 +#: models.py:78 +msgid "title" +msgstr "tytuł" + +#: models.py:73 +#: models.py:79 +msgid "lead" +msgstr "lead" + +#: models.py:80 +msgid "needed" +msgstr "potrzebne" + +#: models.py:81 +msgid "Unneeded" +msgstr "Niepotrzebne" + +#: models.py:81 +msgid "Needed" +msgstr "Potrzebne" + +#: models.py:81 +msgid "Done" +msgstr "Ukończone" + +#: models.py:86 +msgid "body" +msgstr "treść" + +#: models.py:87 +msgid "published" +msgstr "opublikowane" + +#: models.py:93 +msgid "file" +msgstr "plik" + +#: settings.py:19 +msgid "news" +msgstr "newsy" + +#: settings.py:20 +msgid "publications" +msgstr "publikacje" + +#: settings.py:21 +msgid "info" +msgstr "info" + +#: templates/comments/migdal/entry/preview.html:19 +msgid "Please correct the error below" +msgid_plural "Please correct the errors below" +msgstr[0] "Proszę poprawić poniższy błąd" +msgstr[1] "Proszę poprawić poniższe błędy" +msgstr[2] "Proszę poprawić poniższe błędy" + +#: templates/comments/migdal/entry/preview.html:21 +msgid "Preview your comment" +msgstr "Podgląd komentarza" + +#: templates/comments/migdal/entry/preview.html:29 +msgid "and" +msgstr "i" + +#: templates/comments/migdal/entry/preview.html:29 +msgid "Post your comment" +msgstr "Wyślij komentarz" + +#: templates/comments/migdal/entry/preview.html:29 +msgid "or make changes" +msgstr "lub zmień" + +#: templates/comments/migdal/entry/preview.html:45 +msgid "Post" +msgstr "Wyślij" + +#: templates/comments/migdal/entry/preview.html:46 +msgid "Preview" +msgstr "Podgląd" + +#: templates/migdal/entry/entry_list.html:10 +msgid "Category" +msgstr "Kategoria" + +#: templates/migdal/entry/entry_list.html:16 +msgid "Latest news" +msgstr "Ostatnie newsy" + +#: templates/migdal/entry/entry_short.html:10 +msgid "read more" +msgstr "czytaj więcej" + +#: templates/migdal/entry/entry_short.html:16 +#, python-format +msgid "%(c)s comment" +msgid_plural "%(c)s comments" +msgstr[0] "%(c)s komentarz" +msgstr[1] "%(c)s komentarze" +msgstr[2] "%(c)s komentarzy" + diff --git a/migdal/middleware.py b/migdal/middleware.py new file mode 100644 index 0000000..7153562 --- /dev/null +++ b/migdal/middleware.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.utils import translation +from django.conf import settings +from django.http import Http404 + + +class URLLocaleMiddleware(object): + """Decides which translation to use, based on path only.""" + + def process_request(self, request): + language = translation.get_language_from_path(request.path_info) + if language == settings.LANGUAGE_CODE: + raise Http404 + if language: + translation.activate(language) + request.LANGUAGE_CODE = translation.get_language() + + def process_response(self, request, response): + language = translation.get_language() + translation.deactivate() + if 'Content-Language' not in response: + response['Content-Language'] = language + return response diff --git a/migdal/migrations/0001_initial.py b/migdal/migrations/0001_initial.py new file mode 100644 index 0000000..3af9e00 --- /dev/null +++ b/migdal/migrations/0001_initial.py @@ -0,0 +1,130 @@ +# -*- coding: utf-8 -*- +import datetime +from south.db import db +from south.v2 import SchemaMigration +from django.db import models + + +class Migration(SchemaMigration): + + def forwards(self, orm): + # Adding model 'Category' + db.create_table('migdal_category', ( + ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)), + ('slug_pl', self.gf('django.db.models.fields.SlugField')(unique=True, max_length=50)), + ('slug_en', self.gf('django.db.models.fields.SlugField')(unique=True, max_length=50)), + ('title_pl', self.gf('django.db.models.fields.CharField')(unique=True, max_length=64, db_index=True)), + ('title_en', self.gf('django.db.models.fields.CharField')(unique=True, max_length=64, db_index=True)), + )) + db.send_create_signal('migdal', ['Category']) + + # Adding model 'Entry' + db.create_table('migdal_entry', ( + ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)), + ('type', self.gf('django.db.models.fields.CharField')(max_length=16, db_index=True)), + ('date', self.gf('django.db.models.fields.DateTimeField')(auto_now_add=True, db_index=True, blank=True)), + ('author', self.gf('django.db.models.fields.CharField')(max_length=128)), + ('author_email', self.gf('django.db.models.fields.EmailField')(max_length=128, null=True, blank=True)), + ('image', self.gf('django.db.models.fields.files.ImageField')(max_length=100, null=True, blank=True)), + ('promo', self.gf('django.db.models.fields.BooleanField')(default=False)), + ('slug_pl', self.gf('django.db.models.fields.SlugField')(unique=True, max_length=50)), + ('title_pl', self.gf('django.db.models.fields.CharField')(max_length=255)), + ('lead_pl', self.gf('markupfield.fields.MarkupField')(rendered_field=True)), + ('lead_pl_markup_type', self.gf('django.db.models.fields.CharField')(default='textile_pl', max_length=30)), + ('_lead_pl_rendered', self.gf('django.db.models.fields.TextField')()), + ('slug_en', self.gf('django.db.models.fields.SlugField')(max_length=50, unique=True, null=True, blank=True)), + ('title_en', self.gf('django.db.models.fields.CharField')(max_length=255, null=True, blank=True)), + ('lead_en', self.gf('markupfield.fields.MarkupField')(null=True, rendered_field=True, blank=True)), + ('needed_en', self.gf('django.db.models.fields.CharField')(default='n', max_length=1, db_index=True)), + ('lead_en_markup_type', self.gf('django.db.models.fields.CharField')(default='textile_pl', max_length=30, blank=True)), + ('_lead_en_rendered', self.gf('django.db.models.fields.TextField')()), + ('body_pl', self.gf('markupfield.fields.MarkupField')(null=True, rendered_field=True, blank=True)), + ('body_en', self.gf('markupfield.fields.MarkupField')(null=True, rendered_field=True, blank=True)), + ('body_pl_markup_type', self.gf('django.db.models.fields.CharField')(default='textile_pl', max_length=30, blank=True)), + ('body_en_markup_type', self.gf('django.db.models.fields.CharField')(default='textile_pl', max_length=30, blank=True)), + ('published_pl', self.gf('django.db.models.fields.BooleanField')(default=False)), + ('published_en', self.gf('django.db.models.fields.BooleanField')(default=False)), + ('_body_pl_rendered', self.gf('django.db.models.fields.TextField')()), + ('_body_en_rendered', self.gf('django.db.models.fields.TextField')()), + )) + db.send_create_signal('migdal', ['Entry']) + + # Adding M2M table for field categories on 'Entry' + db.create_table('migdal_entry_categories', ( + ('id', models.AutoField(verbose_name='ID', primary_key=True, auto_created=True)), + ('entry', models.ForeignKey(orm['migdal.entry'], null=False)), + ('category', models.ForeignKey(orm['migdal.category'], null=False)) + )) + db.create_unique('migdal_entry_categories', ['entry_id', 'category_id']) + + # Adding model 'Attachment' + db.create_table('migdal_attachment', ( + ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)), + ('file', self.gf('django.db.models.fields.files.FileField')(max_length=100)), + ('entry', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['migdal.Entry'])), + )) + db.send_create_signal('migdal', ['Attachment']) + + + def backwards(self, orm): + # Deleting model 'Category' + db.delete_table('migdal_category') + + # Deleting model 'Entry' + db.delete_table('migdal_entry') + + # Removing M2M table for field categories on 'Entry' + db.delete_table('migdal_entry_categories') + + # Deleting model 'Attachment' + db.delete_table('migdal_attachment') + + + models = { + 'migdal.attachment': { + 'Meta': {'object_name': 'Attachment'}, + 'entry': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['migdal.Entry']"}), + 'file': ('django.db.models.fields.files.FileField', [], {'max_length': '100'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}) + }, + 'migdal.category': { + 'Meta': {'object_name': 'Category'}, + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'slug_en': ('django.db.models.fields.SlugField', [], {'unique': 'True', 'max_length': '50'}), + 'slug_pl': ('django.db.models.fields.SlugField', [], {'unique': 'True', 'max_length': '50'}), + 'title_en': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '64', 'db_index': 'True'}), + 'title_pl': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '64', 'db_index': 'True'}) + }, + 'migdal.entry': { + 'Meta': {'ordering': "['-date']", 'object_name': 'Entry'}, + '_body_en_rendered': ('django.db.models.fields.TextField', [], {}), + '_body_pl_rendered': ('django.db.models.fields.TextField', [], {}), + '_lead_en_rendered': ('django.db.models.fields.TextField', [], {}), + '_lead_pl_rendered': ('django.db.models.fields.TextField', [], {}), + 'author': ('django.db.models.fields.CharField', [], {'max_length': '128'}), + 'author_email': ('django.db.models.fields.EmailField', [], {'max_length': '128', 'null': 'True', 'blank': 'True'}), + 'body_en': ('markupfield.fields.MarkupField', [], {'null': 'True', 'rendered_field': 'True', 'blank': 'True'}), + 'body_en_markup_type': ('django.db.models.fields.CharField', [], {'default': "'textile_pl'", 'max_length': '30', 'blank': 'True'}), + 'body_pl': ('markupfield.fields.MarkupField', [], {'null': 'True', 'rendered_field': 'True', 'blank': 'True'}), + 'body_pl_markup_type': ('django.db.models.fields.CharField', [], {'default': "'textile_pl'", 'max_length': '30', 'blank': 'True'}), + 'categories': ('django.db.models.fields.related.ManyToManyField', [], {'symmetrical': 'False', 'to': "orm['migdal.Category']", 'null': 'True', 'blank': 'True'}), + 'date': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'db_index': 'True', 'blank': 'True'}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'image': ('django.db.models.fields.files.ImageField', [], {'max_length': '100', 'null': 'True', 'blank': 'True'}), + 'lead_en': ('markupfield.fields.MarkupField', [], {'null': 'True', 'rendered_field': 'True', 'blank': 'True'}), + 'lead_en_markup_type': ('django.db.models.fields.CharField', [], {'default': "'textile_pl'", 'max_length': '30', 'blank': 'True'}), + 'lead_pl': ('markupfield.fields.MarkupField', [], {'rendered_field': 'True'}), + 'lead_pl_markup_type': ('django.db.models.fields.CharField', [], {'default': "'textile_pl'", 'max_length': '30'}), + 'needed_en': ('django.db.models.fields.CharField', [], {'default': "'n'", 'max_length': '1', 'db_index': 'True'}), + 'promo': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'published_en': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'published_pl': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'slug_en': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'unique': 'True', 'null': 'True', 'blank': 'True'}), + 'slug_pl': ('django.db.models.fields.SlugField', [], {'unique': 'True', 'max_length': '50'}), + 'title_en': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}), + 'title_pl': ('django.db.models.fields.CharField', [], {'max_length': '255'}), + 'type': ('django.db.models.fields.CharField', [], {'max_length': '16', 'db_index': 'True'}) + } + } + + complete_apps = ['migdal'] \ No newline at end of file diff --git a/migdal/migrations/__init__.py b/migdal/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/migdal/models.py b/migdal/models.py new file mode 100644 index 0000000..d735ba6 --- /dev/null +++ b/migdal/models.py @@ -0,0 +1,97 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.db import models +from django.utils.translation import get_language, ugettext_lazy as _, ugettext +from markupfield.fields import MarkupField +from migdal.helpers import add_translatable +from migdal import settings + + +class Category(models.Model): + + class Meta: + verbose_name = _('category') + verbose_name_plural = _('categories') + + def __unicode__(self): + return self.title + + @models.permalink + def get_absolute_url(self): + return ('migdal_category', [self.slug]) + + +add_translatable(Category, { + 'title': models.CharField(max_length=64, unique=True, db_index=True), + 'slug': models.SlugField(unique=True, db_index=True), +}) + + +class Entry(models.Model): + #type = models.CharField(max_length=16, + # choices=((t.db, t.slug) for t in settings.TYPES), + # db_index=True) + type = models.CharField(max_length=16, + choices=((t.db, t.slug) for t in settings.TYPES), + db_index=True) + date = models.DateTimeField(auto_now_add=True, db_index=True) + author = models.CharField(_('author'), max_length=128) + author_email = models.EmailField(_('author email'), max_length=128, null=True, blank=True) + image = models.ImageField(_('image'), upload_to='entry/image/', null=True, blank=True) + promo = models.BooleanField(_('promoted'), default=False) + categories = models.ManyToManyField(Category, null=True, blank=True) + + class Meta: + verbose_name = _('entry') + verbose_name_plural = _('entries') + ordering = ['-date'] + + def __unicode__(self): + return self.title + + def save(self, *args, **kwargs): + # convert blank to null for slug uniqueness check to work + for lc, ln in settings.OPTIONAL_LANGUAGES: + slug_name = "slug_%s" % lc + if hasattr(self, slug_name) == u'': + setattr(self, slug_name, None) + super(Entry, self).save(*args, **kwargs) + + @models.permalink + def get_absolute_url(self): + return ('migdal_entry_%s' % self.type, [self.slug]) + + def get_type(self): + return dict(settings.TYPES_DICT)[self.type] + + +add_translatable(Entry, languages=settings.OBLIGATORY_LANGUAGES, fields={ + 'slug': models.SlugField(unique=True, db_index=True), + 'title': models.CharField(_('title'), max_length=255), + 'lead': MarkupField(_('lead'), markup_type='textile_pl'), +}) + +add_translatable(Entry, languages=settings.OPTIONAL_LANGUAGES, fields={ + 'slug': models.SlugField(unique=True, db_index=True, null=True, blank=True), + 'title': models.CharField(_('title'), max_length=255, null=True, blank=True), + 'lead': MarkupField(_('lead'), markup_type='textile_pl', null=True, blank=True), + 'needed': models.CharField(_('needed'), max_length=1, db_index=True, choices=( + ('n', _('Unneeded')), ('w', _('Needed')), ('y', _('Done'))), + default='n'), +}) + +add_translatable(Entry, { + 'body': MarkupField(_('body'), markup_type='textile_pl', null=True, blank=True), + 'published': models.BooleanField(_('published'), default=False), +}) + + + +class Attachment(models.Model): + file = models.FileField(_('file'), upload_to='entry/attach/') + entry = models.ForeignKey(Entry) + + def url(self): + return self.file.url if self.file else '' diff --git a/migdal/settings.py b/migdal/settings.py new file mode 100644 index 0000000..4331c07 --- /dev/null +++ b/migdal/settings.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.conf import settings +from django.utils.translation import ugettext_lazy as _ +from migdal.helpers import EntryType + + +def app_setting(global_name, default): + try: + return getattr(settings, global_name) + except AttributeError: + return default + +# Types of entries: +# (slug, commentable, on main) +TYPES = app_setting('MIGDAL_TYPES', ( + EntryType('news', _('news'), commentable=True, on_main=True), + EntryType('publications', _('publications'), commentable=False, on_main=False), + EntryType('info', _('info'), commentable=False, on_main=False), + )) +TYPES_DICT = dict((t.db, t) for t in TYPES) +TYPES_ON_MAIN = tuple(t.db for t in TYPES if t.on_main) +# FIXME: if only news is on_main, `news/` should either throw 404 or redirect to main + +LANGUAGES = app_setting('MIGDAL_LANGUAGES', settings.LANGUAGES) +LANGUAGE_CODE = app_setting('MIGDAL_LANGUAGE_CODE', settings.LANGUAGE_CODE) +OBLIGATORY_LANGUAGES = app_setting('MIGDAL_OBLIGATORY', tuple( + lang for lang in LANGUAGES if lang[0]==LANGUAGE_CODE)) +OPTIONAL_LANGUAGES = tuple(lang for lang in LANGUAGES if lang not in OBLIGATORY_LANGUAGES) diff --git a/migdal/templates/comments/migdal/entry/list.html b/migdal/templates/comments/migdal/entry/list.html new file mode 100755 index 0000000..c01f256 --- /dev/null +++ b/migdal/templates/comments/migdal/entry/list.html @@ -0,0 +1,13 @@ +{% load gravatar %} +{% load markup_tags %} +
+ {% for comment in comment_list %} +
+ + {{ comment.submit_date }} - {{ comment.name }} +
+
+

{{ comment.comment|textile_restricted_pl }}

+
+ {% endfor %} +
\ No newline at end of file diff --git a/migdal/templates/comments/migdal/entry/preview.html b/migdal/templates/comments/migdal/entry/preview.html new file mode 100755 index 0000000..c322f9a --- /dev/null +++ b/migdal/templates/comments/migdal/entry/preview.html @@ -0,0 +1,51 @@ +{% extends "base.html" %} +{% load i18n %} +{% load comments %} +{% load gravatar %} +{% load migdal_tags markup_tags %} + + +{% block "body" %} + +{% entry_begin form.target_object %} +{{ form.target_object.body }} + +{% render_comment_list for form.target_object %} + + +
{% csrf_token %} + {% if next %}
{% endif %} + {% if form.errors %} +

{% blocktrans count counter=form.errors|length %}Please correct the error below{% plural %}Please correct the errors below{% endblocktrans %}

+ {% else %} +

{% trans "Preview your comment" %}

+
+ + {{ form.name.value }} +
+ +
{{ comment|textile_restricted_pl }}
+

+ {% trans "and" %} {% trans "or make changes" %}: +

+ {% endif %} + {% for field in form %} + {% if field.is_hidden %} +
{{ field }}
+ {% else %} + {% if field.errors %}{{ field.errors }}{% endif %} + + {% endif %} + {% endfor %} +

+ + +

+
+ + +{% endblock %} diff --git a/migdal/templates/django_comments_xtd/email_followup_comment.txt b/migdal/templates/django_comments_xtd/email_followup_comment.txt new file mode 100755 index 0000000..7d9df1d --- /dev/null +++ b/migdal/templates/django_comments_xtd/email_followup_comment.txt @@ -0,0 +1 @@ +POWIADOMIENIE \ No newline at end of file diff --git a/migdal/templates/migdal/categories.html b/migdal/templates/migdal/categories.html new file mode 100755 index 0000000..8a490c5 --- /dev/null +++ b/migdal/templates/migdal/categories.html @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/migdal/templates/migdal/entry/entry_begin.html b/migdal/templates/migdal/entry/entry_begin.html new file mode 100755 index 0000000..fbec320 --- /dev/null +++ b/migdal/templates/migdal/entry/entry_begin.html @@ -0,0 +1,17 @@ +{% load gravatar %} + + +

{{ object.title }}

+ +
+{{ object.date }} +{{ object.author }} +{% for category in object.categories.all %} + {{ category }} +{% endfor %} +
+ +{% if object.image %} + +{% endif %} +{{ object.lead }} diff --git a/migdal/templates/migdal/entry/entry_detail.html b/migdal/templates/migdal/entry/entry_detail.html new file mode 100755 index 0000000..6ef926a --- /dev/null +++ b/migdal/templates/migdal/entry/entry_detail.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} +{% load comments %} +{% load migdal_tags %} + + +{% block "body" %} + +
+ +{% entry_begin entry %} +{{ entry.body }} + +{% if entry.get_type.commentable %} + {% render_comment_list for entry %} + {% render_comment_form for entry %} +{% endif %} +
+ +{% endblock %} \ No newline at end of file diff --git a/migdal/templates/migdal/entry/entry_list.html b/migdal/templates/migdal/entry/entry_list.html new file mode 100755 index 0000000..d68673b --- /dev/null +++ b/migdal/templates/migdal/entry/entry_list.html @@ -0,0 +1,24 @@ +{% extends "base.html" %} +{% load url from future %} +{% load i18n %} +{% load migdal_tags %} + +{% block "body" %} + +

+{% if category %} + {% trans "Category" %}: {{ category }} + RSS +{% elif entry_type %} + {{ entry_type|capfirst }} + RSS +{% else %} + {% trans "Latest news" %} +{% endif %} +

+ +{% for object in object_list %} + {% entry_short object %} +{% endfor %} + +{% endblock %} \ No newline at end of file diff --git a/migdal/templates/migdal/entry/entry_short.html b/migdal/templates/migdal/entry/entry_short.html new file mode 100755 index 0000000..432f4c4 --- /dev/null +++ b/migdal/templates/migdal/entry/entry_short.html @@ -0,0 +1,19 @@ +{% load i18n %} +{% load comments %} +{% load migdal_tags %} + + +
+{% entry_begin object %} + +{% if object.has_body %} + {% trans "read more" %} +{% endif %} + +{% if object.get_type.commentable %} +{% get_comment_count for object as comment_count %} + +{% blocktrans count comment_count as c %}{{c}} comment{% plural %}{{c}} comments{% endblocktrans %} + +{% endif %} +
\ No newline at end of file diff --git a/migdal/templates/migdal/entry/info/entry_begin.html b/migdal/templates/migdal/entry/info/entry_begin.html new file mode 100755 index 0000000..7544b6f --- /dev/null +++ b/migdal/templates/migdal/entry/info/entry_begin.html @@ -0,0 +1,5 @@ +

{{ object.title }}

+{% if object.image %} + +{% endif %} +{{ object.lead }} diff --git a/migdal/templates/migdal/last_comments.html b/migdal/templates/migdal/last_comments.html new file mode 100755 index 0000000..33851fb --- /dev/null +++ b/migdal/templates/migdal/last_comments.html @@ -0,0 +1,14 @@ +{% load gravatar %} +{% load markup_tags %} + \ No newline at end of file diff --git a/migdal/templatetags/__init__.py b/migdal/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/migdal/templatetags/migdal_tags.py b/migdal/templatetags/migdal_tags.py new file mode 100644 index 0000000..b9722b6 --- /dev/null +++ b/migdal/templatetags/migdal_tags.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django_comments_xtd.models import XtdComment +from django import template +from migdal.models import Category + +register = template.Library() + + +@register.simple_tag +def entry_begin(entry): + t = template.loader.select_template(( + 'migdal/entry/%s/entry_begin.html' % entry.type, + 'migdal/entry/entry_begin.html', + )) + context = {'object': entry} + return t.render(template.Context(context)) + + +@register.simple_tag +def entry_short(entry): + t = template.loader.select_template(( + 'migdal/entry/%s/entry_short.html' % entry.type, + 'migdal/entry/entry_short.html', + )) + context = {'object': entry} + return t.render(template.Context(context)) + + +@register.inclusion_tag('migdal/categories.html', takes_context=True) +def categories(context): + context.update({'object_list': Category.objects.all()}) + return context + + +@register.inclusion_tag('migdal/last_comments.html') +def last_comments(limit=10): + return {'object_list': + XtdComment.objects.filter(is_public=True, is_removed=False).order_by('-submit_date')[:limit]} diff --git a/migdal/tests.py b/migdal/tests.py new file mode 100644 index 0000000..501deb7 --- /dev/null +++ b/migdal/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/migdal/urls.py b/migdal/urls.py new file mode 100644 index 0000000..b600cef --- /dev/null +++ b/migdal/urls.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.conf.urls import patterns, include, url +from django.utils.translation import ugettext_lazy as _ +from django.utils.translation import string_concat +from migdal import feeds, settings +from migdal.helpers import i18n_patterns + +pats = [] +for t in settings.TYPES: + pats += [ + # entry list + url(string_concat(r'^', t.slug, r'/$'), + 'migdal.views.entry_list', {'type_db': t.db}, + name='migdal_entry_list_%s' % t.db), + url(string_concat(r'^', t.slug, r'/rss.xml$'), + feeds.EntriesFeed(), {'type_db': t.db}, + name='migdal_entry_list_%s_feed' % t.db), + # single entry + url(string_concat(r'^', t.slug, r'/(?P[^/]+)/$'), + 'migdal.views.entry', {'type_db': t.db}, + name='migdal_entry_%s' % t.db), + ] + +urlpatterns = i18n_patterns('', + # main page + url(r'^$', 'migdal.views.entry_list', name='migdal_main'), + url(r'^rss.xml$', feeds.EntriesFeed(), name='migdal_main_feed'), + # category + url(string_concat(r'^', _('categories'), r'/(?P[^/]*)/$'), + 'migdal.views.entry_list', name='migdal_category'), + url(string_concat(r'^', _('categories'), r'/(?P[^/]*)/rss.xml$'), + feeds.EntriesFeed(), name='migdal_category_feed'), + # type-specific views + *pats +) diff --git a/migdal/views.py b/migdal/views.py new file mode 100644 index 0000000..d705d34 --- /dev/null +++ b/migdal/views.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.shortcuts import get_object_or_404, render +from migdal import api +from migdal.models import Category, Entry +from migdal.settings import TYPES_DICT + + +def entry_list(request, type_db=None, category_slug=None): + lang = request.LANGUAGE_CODE + templates = ["migdal/entry/entry_list.html"] + + if category_slug: + category = get_object_or_404(Category, **{'slug_%s' % lang: category_slug}) + else: + category = None + if type_db: + entry_type = TYPES_DICT[type_db] + # TODO: if it's the only on main, redirect to main + templates = ["migdal/entry/%s/entry_list.html" % type_db] + templates + else: + entry_type = None + + object_list = api.entry_list(entry_type=entry_type, category=category) + + return render(request, templates, { + 'object_list': object_list, + 'category': category, + 'entry_type': entry_type, + }) + + +def entry(request, type_db, slug): + lang = request.LANGUAGE_CODE + args = {'type': type_db, 'slug_%s' % lang: slug, 'published_%s' % lang: True} + # TODO: preview for admins + entry = get_object_or_404(Entry, **args) + + templates = ["migdal/entry/entry_detail.html"] + if type_db is not None: + templates = ["migdal/entry/%s/entry_detail.html" % type_db] + templates + return render(request, templates, {'entry': entry}) diff --git a/prawokultury/__init__.py b/prawokultury/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/prawokultury/helpers.py b/prawokultury/helpers.py new file mode 100644 index 0000000..aa8e3dd --- /dev/null +++ b/prawokultury/helpers.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from textile import Textile + + +class TextilePL(Textile): + glyph_defaults = [(name, repl) + for (name, repl) in Textile.glyph_defaults + if name != 'txt_quote_double_open'] + glyph_defaults.append(('txt_quote_double_open', '„')) + + +def textile_pl(text): + return TextilePL().textile(text) + + +def textile_restricted_pl(text): + return TextilePL(restricted=True, lite=True, + noimage=True, auto_link=False).textile( + text, rel='nofollow') + + + +class LazyUGettextLazy(): + """You can use it to internationalize strings in settings. + + Just import this class as gettext. + """ + _ = lambda s: s + real = False + + def __init__(self, text): + self.text = text + + def __unicode__(self): + if not self.real: + from django.utils.translation import ugettext_lazy + LazyUGettextLazy._ = staticmethod(ugettext_lazy) + LazyUGettextLazy.real = True + return unicode(self._(self.text)) diff --git a/prawokultury/locale/pl/LC_MESSAGES/django.mo b/prawokultury/locale/pl/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..ea9a5cf6db7bc315d37f83f2d60facb130669e87 GIT binary patch literal 1024 zcmaiyJ8u**5P%JY*YOfi&`=BoAtCaydjaLNxebrwPKwB56)vI0*>yI~?b$2an#J53gkJo zpCjFQuaM`FZ;@w^ACQ-kAFKT@6~7^`p#Mi@|3YHva-m8lP>znx@;s-yd$}{*aFjc84e1JPEHIIfuF5hsbXiN7 zh0a(F24zg7jIcsUL!x3c6EPbb>p4aUnF1e|st{?l!(&Sq6S~2*!Mp%+&4#L9-e9k` z#&e}DT{fvm=z}6Pw5I~7MXNp9*1RlEAL11PXn1~udQIxhfj<{CnloO*^DvOE@m=96 z|1)mZpYeQ*TVlr2o@UZy%qktg8cTQ|+9S5pXVB6tQMfa#$ED+*R6`YyxRESZnd!5- z(rG=<7O;*?3zl-)<7^N>cO`<>Rv{A>@38-8VQ0&W%bmkn_;s(=R?^~VX>TvbHZ6Z< zZ{-;iavtJsrVY2@dap~HhjFfpEv{)t#wx*?2hiLUwiacDW*O}&Jum^tyfjTXI}c+u zoRVSa!(H$Ix3Bx&LfC-G$x>~Fx1BoW++NG~V1K{#yBKd8b9~HcOxMUNNM^{RKVOMN z?lGZyP4Z+fVS2=+U?dV;56y@{t_CV52k$bT9DFLXSB+&>3J!hc{*=ogk1fNQ3moTmBC2(thH literal 0 HcmV?d00001 diff --git a/prawokultury/locale/pl/LC_MESSAGES/django.po b/prawokultury/locale/pl/LC_MESSAGES/django.po new file mode 100644 index 0000000..a16c5fe --- /dev/null +++ b/prawokultury/locale/pl/LC_MESSAGES/django.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: prawokultury\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-08-07 17:28+0200\n" +"PO-Revision-Date: 2012-08-07 17:31+0100\n" +"Last-Translator: Radek Czajka \n" +"Language-Team: FNP \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: urls.py:23 +msgid "events" +msgstr "wydarzenia" + +#: templates/base.html:8 +#: templates/base.html.py:12 +msgid "Culture's right" +msgstr "Prawo kultury" + +#: templates/base.html:15 +#: templates/base.html.py:17 +msgid "About us" +msgstr "O nas" + +#: templates/base.html:19 +msgid "Publications" +msgstr "Publikacje" + +#: templates/base.html:20 +msgid "Events" +msgstr "Wydarzenia" + +#: templates/base.html:22 +#: templates/base.html.py:26 +msgid "Positions" +msgstr "Stanowiska" + +#: templates/base.html:23 +#: templates/base.html.py:27 +msgid "First aid" +msgstr "Pierwsza pomoc" + +#: templates/base.html:35 +msgid "Upcoming events" +msgstr "Nadchodzące wydarzenia" + +#: templates/base.html:39 +msgid "Categories" +msgstr "Kategorie" + +#: templates/base.html:43 +msgid "Latest comments" +msgstr "Ostatnie komentarze" + +#: templates/base.html:47 +msgid "Follow us" +msgstr "Śledź nas" diff --git a/prawokultury/settings.py b/prawokultury/settings.py new file mode 100644 index 0000000..008b72b --- /dev/null +++ b/prawokultury/settings.py @@ -0,0 +1,212 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +# Django settings for prawokultury project. + +DEBUG = True +TEMPLATE_DEBUG = DEBUG + +ADMINS = ( + # ('Your Name', 'your_email@example.com'), +) + +MANAGERS = ADMINS + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': 'dev.db', # Or path to database file if using sqlite3. + 'USER': '', # Not used with sqlite3. + 'PASSWORD': '', # Not used with sqlite3. + 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. + 'PORT': '', # Set to empty string for default. Not used with sqlite3. + } +} + +# Local time zone for this installation. Choices can be found here: +# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name +# although not all choices may be available on all operating systems. +# On Unix systems, a value of None will cause Django to use the same +# timezone as the operating system. +# If running in a Windows environment this must be set to the same as your +# system time zone. +TIME_ZONE = 'America/Chicago' + +# Language code for this installation. All choices can be found here: +# http://www.i18nguy.com/unicode/language-identifiers.html +LANGUAGE_CODE = 'pl' + +SITE_ID = 1 + +# If you set this to False, Django will make some optimizations so as not +# to load the internationalization machinery. +USE_I18N = True + +# If you set this to False, Django will not format dates, numbers and +# calendars according to the current locale. +USE_L10N = True + +# If you set this to False, Django will not use timezone-aware datetimes. +USE_TZ = True + +# Absolute filesystem path to the directory that will hold user-uploaded files. +# Example: "/home/media/media.lawrence.com/media/" +#MEDIA_ROOT = '/home/rczajka/workspace/media/prawokultury/dynamic/' +MEDIA_ROOT = '' + +# URL that handles the media served from MEDIA_ROOT. Make sure to use a +# trailing slash. +# Examples: "http://media.lawrence.com/media/", "http://example.com/media/" +MEDIA_URL = '/media/' + +# Absolute path to the directory static files should be collected to. +# Don't put anything in this directory yourself; store your static files +# in apps' "static/" subdirectories and in STATICFILES_DIRS. +# Example: "/home/media/media.lawrence.com/static/" +STATIC_ROOT = '' + +# URL prefix for static files. +# Example: "http://media.lawrence.com/static/" +STATIC_URL = '/static/' + +# Additional locations of static files +STATICFILES_DIRS = ( + # Put strings here, like "/home/html/static" or "C:/www/django/static". + # Always use forward slashes, even on Windows. + # Don't forget to use absolute paths, not relative paths. +) + +# List of finder classes that know how to find static files in +# various locations. +STATICFILES_FINDERS = ( + 'django.contrib.staticfiles.finders.FileSystemFinder', + 'django.contrib.staticfiles.finders.AppDirectoriesFinder', +# 'django.contrib.staticfiles.finders.DefaultStorageFinder', +) + +# Make this unique, and don't share it with anybody. +SECRET_KEY = 'a7np^jzj9=ed17(w(q%z!@gfpu^e0k$99cmto)yon$e06t(leg' + +# List of callables that know how to import templates from various sources. +TEMPLATE_LOADERS = ( + 'django.template.loaders.filesystem.Loader', + 'django.template.loaders.app_directories.Loader', +# 'django.template.loaders.eggs.Loader', +) + +MIDDLEWARE_CLASSES = ( + 'django.contrib.sessions.middleware.SessionMiddleware', + #'django.middleware.locale.LocaleMiddleware', + 'migdal.middleware.URLLocaleMiddleware', + + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + # Uncomment the next line for simple clickjacking protection: + # 'django.middleware.clickjacking.XFrameOptionsMiddleware', +) + +ROOT_URLCONF = 'prawokultury.urls' + +# Python dotted path to the WSGI application used by Django's runserver. +WSGI_APPLICATION = 'prawokultury.wsgi.application' + +TEMPLATE_DIRS = ( + # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". + # Always use forward slashes, even on Windows. + # Don't forget to use absolute paths, not relative paths. +) + +INSTALLED_APPS = ( + 'prawokultury', + 'events', + 'migdal', + + 'gravatar', + 'south', + 'django.contrib.comments', + 'django_comments_xtd', + 'pipeline', + + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.sites', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'django.contrib.admin', + 'django.contrib.admindocs', +) + +COMMENTS_APP = "django_comments_xtd" +COMMENTS_XTD_CONFIRM_EMAIL = False + + +LANGUAGES = ( + ('pl', u'polski'), + ('en', u'English'), +) + + +# A sample logging configuration. The only tangible logging +# performed by this configuration is to send an email to +# the site admins on every HTTP 500 error when DEBUG=False. +# See http://docs.djangoproject.com/en/dev/topics/logging for +# more details on how to customize your logging configuration. +LOGGING = { + 'version': 1, + 'disable_existing_loggers': False, + 'filters': { + 'require_debug_false': { + '()': 'django.utils.log.RequireDebugFalse' + } + }, + 'handlers': { + 'mail_admins': { + 'level': 'ERROR', + 'filters': ['require_debug_false'], + 'class': 'django.utils.log.AdminEmailHandler' + } + }, + 'loggers': { + 'django.request': { + 'handlers': ['mail_admins'], + 'level': 'ERROR', + 'propagate': True, + }, + } +} + +STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage' +PIPELINE_CSS_COMPRESSOR = None +PIPELINE_JS_COMPRESSOR = None +PIPELINE_CSS = { + 'base': { + 'source_filenames': ( + 'css/base.css', + ), + 'output_filename': 'compressed/base.css', + }, +} + +TEMPLATE_CONTEXT_PROCESSORS = ( + "django.contrib.auth.context_processors.auth", + "django.core.context_processors.debug", + "django.core.context_processors.i18n", + "django.core.context_processors.media", + "django.core.context_processors.static", + "django.core.context_processors.tz", + "django.contrib.messages.context_processors.messages", + 'django.core.context_processors.request', +) + +from prawokultury.helpers import textile_pl +MARKUP_FIELD_TYPES = ( + ('textile_pl', textile_pl), +) +EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' +COMMENTS_XTD_LIST_URL_ACTIVE = True +COMMENTS_XTD_LIST_PAGINATE_BY = 10 + diff --git a/prawokultury/static/css/base.css b/prawokultury/static/css/base.css new file mode 100755 index 0000000..e3227ee --- /dev/null +++ b/prawokultury/static/css/base.css @@ -0,0 +1,29 @@ +body { + font-family: Purisa, sans-serif; +} + +#menu { + list-style: none; + padding-left: 0; + margin-left: 0; +} +#menu li { + display: inline-block; + list-style: none; + padding-left: 0; + margin-left: 0; +} + +.avatar { + float: left; + margin-left: -60px; +} +.entry { + margin-left: 60px; +} +.entry h2 { + margin: 0; +} +.entry-data { + font-size: .8em; +} \ No newline at end of file diff --git a/prawokultury/templates/404.html b/prawokultury/templates/404.html new file mode 100755 index 0000000..57db2e9 --- /dev/null +++ b/prawokultury/templates/404.html @@ -0,0 +1 @@ +404 \ No newline at end of file diff --git a/prawokultury/templates/500.html b/prawokultury/templates/500.html new file mode 100755 index 0000000..eb1f494 --- /dev/null +++ b/prawokultury/templates/500.html @@ -0,0 +1 @@ +500 \ No newline at end of file diff --git a/prawokultury/templates/base.html b/prawokultury/templates/base.html new file mode 100755 index 0000000..bc23d2e --- /dev/null +++ b/prawokultury/templates/base.html @@ -0,0 +1,57 @@ +{% load url from future %} +{% load i18n %} +{% load migdal_tags events_tags %} +{% load compressed %} + + + + {% trans "Culture's right" %} + {% compressed_css 'base' %} + + + {% trans "Culture's right" %} + + + + +
+ {% block "body" %}{% endblock %} +
+ + \ No newline at end of file diff --git a/prawokultury/templatetags/__init__.py b/prawokultury/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/prawokultury/templatetags/markup_tags.py b/prawokultury/templatetags/markup_tags.py new file mode 100644 index 0000000..9f1117e --- /dev/null +++ b/prawokultury/templatetags/markup_tags.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django import template +from django.utils.safestring import mark_safe +from prawokultury import helpers + +register = template.Library() + + +@register.filter +def textile_pl(node): + return mark_safe(helpers.textile_pl(node)) + +@register.filter +def textile_restricted_pl(node): + return mark_safe(helpers.textile_restricted_pl(node)) diff --git a/prawokultury/urls.py b/prawokultury/urls.py new file mode 100644 index 0000000..f074158 --- /dev/null +++ b/prawokultury/urls.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from django.conf import settings +from django.conf.urls import patterns, include, url +from django.contrib import admin +from django.contrib.staticfiles.urls import staticfiles_urlpatterns +from migdal.helpers import i18n_patterns +from migdal.urls import urlpatterns as migdal_urlpatterns +from django.utils.translation import ugettext_lazy as _, string_concat + + +admin.autodiscover() + +urlpatterns = patterns('', + url(r'^admin/doc/', include('django.contrib.admindocs.urls')), + url(r'^admin/', include(admin.site.urls)), + url(r'^media/(?P.*)$', 'django.views.static.serve', { + 'document_root': settings.MEDIA_ROOT, + }), +) + i18n_patterns('', + url(string_concat(r'^', _('events'), r'/'), include('events.urls')), + url(r'^comments/', include('django_comments_xtd.urls')), +) + migdal_urlpatterns + + +urlpatterns += staticfiles_urlpatterns() \ No newline at end of file diff --git a/prawokultury/wsgi.py b/prawokultury/wsgi.py new file mode 100644 index 0000000..8003485 --- /dev/null +++ b/prawokultury/wsgi.py @@ -0,0 +1,28 @@ +""" +WSGI config for prawokultury project. + +This module contains the WSGI application used by Django's development server +and any production WSGI deployments. It should expose a module-level variable +named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover +this application via the ``WSGI_APPLICATION`` setting. + +Usually you will have the standard Django WSGI application here, but it also +might make sense to replace the whole Django WSGI application with a custom one +that later delegates to the Django one. For example, you could introduce WSGI +middleware here, or combine a Django application with an application of another +framework. + +""" +import os + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "prawokultury.settings") + +# This application object is used by any WSGI server configured to use this +# file. This includes Django's development server, if the WSGI_APPLICATION +# setting points here. +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application() + +# Apply WSGI middleware here. +# from helloworld.wsgi import HelloWorldApplication +# application = HelloWorldApplication(application) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8d580d9 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,10 @@ +Django>=1.4,<1.5 +South>=0.7.4 +PIL +sorl-thumbnail>=11.09,<12 + +textile +django-markupfield +django-gravatar +django_comments_xtd +django-pipeline -- 2.20.1