<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.visrc.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.visrc.com/feed.php">
        <title>TD Wiki programming:django:django_cms</title>
        <description></description>
        <link>https://wiki.visrc.com/</link>
        <image rdf:resource="https://wiki.visrc.com/lib/tpl/monobook/images/favicon.ico" />
       <dc:date>2026-05-07T16:48:53+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_anatomy&amp;rev=1740059798&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_installation_guide&amp;rev=1740059798&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_plugin_blog_internals&amp;rev=1740059797&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_plugin_blog&amp;rev=1740059797&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_themes&amp;rev=1740059798&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_zinnia&amp;rev=1740059798&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_reusable_app&amp;rev=1740059798&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.visrc.com/lib/tpl/monobook/images/favicon.ico">
        <title>TD Wiki</title>
        <link>https://wiki.visrc.com/</link>
        <url>https://wiki.visrc.com/lib/tpl/monobook/images/favicon.ico</url>
    </image>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_anatomy&amp;rev=1740059798&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:56:38+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:django:django_cms:django_cms_anatomy</title>
        <link>https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_anatomy&amp;rev=1740059798&amp;do=diff</link>
        <description>Django-cms anatomy</description>
    </item>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_installation_guide&amp;rev=1740059798&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:56:38+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:django:django_cms:django_cms_installation_guide</title>
        <link>https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_installation_guide&amp;rev=1740059798&amp;do=diff</link>
        <description>Django-cms Installation

	*  &lt;http://django-cms.readthedocs.org/en/latest/how_to/install.html#installing&gt;

User virtualenv and pip to avoid dependency problems.
$ yum install python2.6 python-setuptools python-imaging
virtualenv --no-site-packages mysite-env

“No site packages” create isolated env from host env.

Install Django. From version 1.7.0 django has built-in migration, south is not needed.</description>
    </item>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_plugin_blog_internals&amp;rev=1740059797&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:56:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:django:django_cms:django_cms_plugin_blog_internals</title>
        <link>https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_plugin_blog_internals&amp;rev=1740059797&amp;do=diff</link>
        <description>Rendering entry details

	*  urls.py: when url that matchs this pattern is called. 
	*  The unction &#039;blogdetail&#039; is called. It is defined in urls.py as function &#039;views.py.EntryDateDetailView.asview()&#039;


urls.py
--------------------------------
...
from cmsplugin_blog.views import EntryDateDetailView, EntryArchiveIndexView
...
(r&#039;^(?P&lt;year&gt;\d{4})/(?P&lt;month&gt;\d{2})/(?P&lt;day&gt;\d{2})/(?P&lt;slug&gt;[-\w]+)/$&#039;,blog_detail, blog_info_detail_dict, &#039;blog_detail&#039;)
...
blog_detail = EntryDateDetailView.as_view()</description>
    </item>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_plugin_blog&amp;rev=1740059797&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:56:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:django:django_cms:django_cms_plugin_blog</title>
        <link>https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_plugin_blog&amp;rev=1740059797&amp;do=diff</link>
        <description>Installing cmsplugin-blog

&lt;http://readthedocs.org/docs/django-cms/en/latest/&gt;

Problem and solution

Blog content is not shown

Blog content doesn&#039;t display.

Solution:

	* copy entrydetail.html to project&#039;s templates dir so we can modify it. This file will overwrite the original one in site-package.
&lt;code&gt;
vfoss</description>
    </item>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_themes&amp;rev=1740059798&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:56:38+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:django:django_cms:django_cms_themes</title>
        <link>https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_themes&amp;rev=1740059798&amp;do=diff</link>
        <description>Django-cms-themes

Using themes form www.djangocmsthemes.com

User can use an app to download themes from the website and upload/apply them using &#039;admin&#039; interface. It does not work properly at the moment

&lt;http://www.djangocmsthemes.com/getting-started&gt;

install the django-cms-themes pluggable django app. The best way to do this is to use the command {{}}</description>
    </item>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_zinnia&amp;rev=1740059798&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:56:38+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:django:django_cms:django_cms_zinnia</title>
        <link>https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_cms_zinnia&amp;rev=1740059798&amp;do=diff</link>
        <description>Zinnia</description>
    </item>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_reusable_app&amp;rev=1740059798&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:56:38+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:django:django_cms:django_reusable_app</title>
        <link>https://wiki.visrc.com/doku.php?id=programming:django:django_cms:django_reusable_app&amp;rev=1740059798&amp;do=diff</link>
        <description>django reusable apps

	*  &lt;http://ericholscher.com/projects/django-conventions/app/&gt;
	*</description>
    </item>
</rdf:RDF>
