<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog for the Web Programmers &#187; typoscript</title>
	<atom:link href="http://blog.chandanweb.com/tags/typoscript/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.chandanweb.com</link>
	<description>A useful blog with code assitance on Typo3, Drupal, PHP, Apache, OpenSSL and PHP Frameworks</description>
	<lastBuildDate>Wed, 25 Jan 2012 08:35:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Conditional menu based on menu page-id</title>
		<link>http://blog.chandanweb.com/typo3/conditional-menu-based-on-menu-page-id</link>
		<comments>http://blog.chandanweb.com/typo3/conditional-menu-based-on-menu-page-id#comments</comments>
		<pubDate>Tue, 27 Dec 2011 12:16:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[hmenu]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/conditional-menu-based-on-menu-page-id</guid>
		<description><![CDATA[Following code gives a nice way to have a custom content element as sub-menu item for each main menu item lib.customMenu = HMENU lib.customMenu { 1 = TMENU 1 { wrap = &#124; NO.allWrap = &#124; NO.stdWrap.htmlSpecialChars = 1 NO.after.cObject = COA NO.after.cObject { 20 = CASE 20 { key.field = uid default = RECORDS [...]]]></description>
			<content:encoded><![CDATA[<p>Following code gives a nice way to have a custom content element as sub-menu item for each main menu item</p>
<pre>
lib.customMenu = HMENU
lib.customMenu {
 1 = TMENU
 1  {
        wrap = |
</pre>
<pre>
        NO.allWrap = |
        NO.stdWrap.htmlSpecialChars = 1
        NO.after.cObject = COA
        NO.after.cObject {
            20 = CASE
            20 {
               key.field = uid
               default = RECORDS
               default.tables = tt_content
               default.conf.tt_content &lt; tt_content
               default.conf.tt_content.stdWrap.innerWrap &gt;               

               14 &lt; .default
               14.source = {$submenu_element_14}

               15 &lt; .default
               15.source = {$submenu_element_15}

               16 &lt; .default
               16.source = {$submenu_element_16}

               17 &lt; .default
               17.source = {$submenu_element_17}

            }            

        }
        ACT = 1
        ACT.after.cObject &lt; .NO.after.cObject
        ACT.allWrap = |
        ACT.ATagParams = class="act"
        ACT.stdWrap.htmlSpecialChars = 1

        CUR &lt; .ACT
        CUR.ATagParams = class="cur"
    }
}
</pre>
<p>This code cannot be used as it is, you will need to make sure the DHTML/JavaScript code for the sub menu items are configured accordingly.</p>
<p>Further References:</p>
<ol>
<li>[TYPO3-english] conditional menu based on menu page-id <br/><a href="http://lists.typo3.org/pipermail/typo3-english/2009-November/065557.html">http://lists.typo3.org/pipermail/typo3-english/2009-November/065557.html</a></li>
<li>[TYPO3-english] Custom class in tmenu according to uid page <br/><a href="http://lists.typo3.org/pipermail/typo3-english/2010-February/067336.html">http://lists.typo3.org/pipermail/typo3-english/2010-February/067336.html</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/conditional-menu-based-on-menu-page-id/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display Image when both path and file name are in two fields</title>
		<link>http://blog.chandanweb.com/typo3/display-image-when-both-path-and-file-name-are-in-two-fields</link>
		<comments>http://blog.chandanweb.com/typo3/display-image-when-both-path-and-file-name-are-in-two-fields#comments</comments>
		<pubDate>Wed, 16 Nov 2011 11:30:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[IMAGE with 2 field]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/display-image-when-both-path-and-file-name-are-in-two-fields</guid>
		<description><![CDATA[The following code gives an overview of how to display an IMAGe when 2 fields are involved. That is one contains the image path &#8220;fileadmin/templates/imgs/&#8221; and the other field has the image name &#8220;mylogo.png&#8221; 10 = IMAGE10 { file.import { cObject = COA cObject { 10 = TEXT 10.data = field:image_path 20 = TEXT 20.data [...]]]></description>
			<content:encoded><![CDATA[<p>The following code gives an overview of how to display an IMAGe when 2 fields are involved. <br/>That is one contains the image path &#8220;fileadmin/templates/imgs/&#8221; and the other field has the image name &#8220;mylogo.png&#8221;</p>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr">
<pre>
10 = IMAGE<br/>10 {<br/>    file.import {<br/>         cObject = COA<br/>         cObject {<br/>             10 = TEXT<br/>              10.data = field:image_path<br/>             20 = TEXT<br/>             20.data = field:image_name<br/>         }<br/>    }<br/>}
</pre>
</blockquote>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/display-image-when-both-path-and-file-name-are-in-two-fields/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Menu based on selected Templavoila TemplateObject using TypoScript</title>
		<link>http://blog.chandanweb.com/typo3/changing-menu-based-on-selected-templavoila-templateobject-using-typoscript</link>
		<comments>http://blog.chandanweb.com/typo3/changing-menu-based-on-selected-templavoila-templateobject-using-typoscript#comments</comments>
		<pubDate>Tue, 25 Aug 2009 14:58:13 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[hmenu]]></category>
		<category><![CDATA[TMENU]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/uncategorized/changing-menu-based-on-selected-templavoila-templateobject-using-typoscript</guid>
		<description><![CDATA[TypoScript has so much features that it is indeed impossible to document each and every feature hidden with it. As we start adding extensions the feature list would increase as well. Consider you have selected a specific Templavoila Template and you wish to have a different type of menu based on the selected template. In [...]]]></description>
			<content:encoded><![CDATA[<p>TypoScript has so much features that it is indeed impossible to document each and every feature hidden with it. As we start adding extensions the feature list would increase as well.</p>
<p>Consider you have selected a specific Templavoila Template and you wish to have a different type of menu based on the selected template. <br/>In such case it would be easy to change menu styles if the entire menu is enclosed in a separate CSS class.</p>
<p>I have given an example where I am checking for template IDs 10 , 11. If this template is used for current page I am changing it&#8217;s class.</p>
<blockquote><p>lib.mymenu = HMENU <br/>lib.mymenu { <br/>entryLevel = 1 <br/>stdWrap.ifEmpty.wrap = &amp;nbsp;</p>
<p>1 = TMENU <br/>1 { <br/>wrap = &lt;ul&gt;|&lt;/ul&gt; <br/>NO.wrapItemAndSub = |&lt;/li&gt; <br/>NO.allWrap = &lt;li&gt;| <br/>NO.allWrap { <br/>override = &lt;li class=&#8221;alternate_menu&#8221;&gt;| <br/>override.if.value = 10,11 <br/>override.if.isInList.field = tx_templavoila_to <br/>} <br/># same way we can configure ACT and CUR as well <br/>ACT = 1 <br/>CUR = 1 <br/><br/>} <br/><br/># For second level I would like to change the class of the A Tag <br/>2 &lt; .1 <br/>2.wrap = &lt;ul&gt;|&lt;/ul&gt; <br/>2.CUR.ATagParams = id=&#8221;cur_menu&#8221; <br/>2.ACT.ATagParams.cObject = TEXT <br/>2.ACT.ATagParams.cObject { <br/>override = class=&#8221;cur_menu_a&#8221; <br/>override.if.value = 10,11 <br/>override.if.isInList.field = tx_templavoila_to <br/>} <br/>3 &lt; .2</p>
<p>#let us generate the 3rd level only if the page uses the Template of our choice. <br/>3.if { <br/>value = 10,11 <br/>isInList.field = tx_templavoila_to <br/>}</p>
<p>}</p>
</blockquote>
<p>Not all templates may have a template ID specified, in such case we need to use the sliding feature. <br/>When we use the sliding feature the template id of parent ID is used. <br/>We can do this Like:</p>
<blockquote><p><br/>isInList.data = levelfield:-1, tx_templavoila_to, slide <br/></p>
</blockquote>
<p>Note: <br/>Usually Templates are stored in the Storage Folder, and you can view the Template IDs of Templavoila Template Objects from the list view!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/changing-menu-based-on-selected-templavoila-templateobject-using-typoscript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>date2cal for mailformplus</title>
		<link>http://blog.chandanweb.com/typo3/date2cal-for-mailformplus</link>
		<comments>http://blog.chandanweb.com/typo3/date2cal-for-mailformplus#comments</comments>
		<pubDate>Wed, 25 Mar 2009 12:53:35 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[date2cal]]></category>
		<category><![CDATA[date2cal for mailformplus]]></category>
		<category><![CDATA[mailformplus]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/date2cal-for-mailformplus</guid>
		<description><![CDATA[In order to set date2cal for mailformplus we need to follow 3 important steps: 1. Include the necessary js and css files page.headerData.80 = TEXT page.headerData.80.value ( &#60;script type=&#34;text/javascript&#34; src=&#34;typo3conf/ext/date2cal/js/jscalendar/calendar.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;typo3conf/ext/date2cal/js/jscalendar/lang/calendar-en.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;typo3conf/ext/date2cal/js/jscalendar/calendar-setup.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;typo3conf/ext/date2cal/js/date2cal.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;typo3conf/ext/date2cal/js/naturalLanguageParser.js&#34;&#62;&#60;/script&#62; &#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;typo3conf/ext/date2cal/js/jscalendar/skins/aqua/theme.css&#34; /&#62; ) # add translations # French &#8211; DEFAULT [...]]]></description>
			<content:encoded><![CDATA[<p align="left">In order to set date2cal for mailformplus we need to follow 3 important steps:</p>
<p align="left">1. Include the necessary js and css files</p>
<blockquote><p align="left">page.headerData.80 = TEXT      <br />page.headerData.80.value (      <br />&lt;script type=&quot;text/javascript&quot; src=&quot;typo3conf/ext/date2cal/js/jscalendar/calendar.js&quot;&gt;&lt;/script&gt;      <br />&lt;script type=&quot;text/javascript&quot; src=&quot;typo3conf/ext/date2cal/js/jscalendar/lang/calendar-en.js&quot;&gt;&lt;/script&gt;      <br />&lt;script type=&quot;text/javascript&quot; src=&quot;typo3conf/ext/date2cal/js/jscalendar/calendar-setup.js&quot;&gt;&lt;/script&gt;      <br />&lt;script type=&quot;text/javascript&quot; src=&quot;typo3conf/ext/date2cal/js/date2cal.js&quot;&gt;&lt;/script&gt;      <br />&lt;script type=&quot;text/javascript&quot; src=&quot;typo3conf/ext/date2cal/js/naturalLanguageParser.js&quot;&gt;&lt;/script&gt;      <br />&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;typo3conf/ext/date2cal/js/jscalendar/skins/aqua/theme.css&quot; /&gt; </p>
<p align="left">)     <br /># add translations      <br /># French &#8211; DEFAULT      <br />page.headerData.90 = TEXT       <br />page.headerData.90.value = &lt;script type=&quot;text/javascript&quot; src=&quot;typo3conf/ext/date2cal/js/jscalendar/lang/calendar-fr.js&quot;&gt;&lt;/script&gt;       </p>
</blockquote>
<p align="left">2. Create the target input box and the calendar trigger button</p>
<blockquote><p align="left">&lt;input type=&quot;text&quot; name=&quot;datebox&quot; id=&quot;datebox&quot; value=&quot;###value_datebox###&quot; tabindex=&quot;13&quot; maxlength=&quot;16&quot; size=&quot;9&quot;/&gt;     <br />&lt;img id=&quot;datebox_trigger&quot; alt=&quot;Calendar&quot; title=&quot;Calendar&quot; style=&quot;cursor: pointer; vertical-align: middle;&quot; src=&quot;typo3conf/ext/date2cal/res/calendar.png&quot;/&gt;</p>
</blockquote>
<p align="left">3. Write the calendar instantiation code using JavaScript   <br />(The id of “<em>inputField</em>” and “<em>button</em>” should match the textbox and trigger button)    <br /><strong>NOTE: this code must be executed after the above input boxes are loaded!</strong></p>
<blockquote><p align="left">&lt;script type=&quot;text/javascript&quot;&gt;     <br />&#160;&#160;&#160; Calendar.setup({      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; inputField&#160;&#160;&#160;&#160; :&#160;&#160;&#160; &quot;datebox&quot;,&#160;&#160;&#160;&#160;&#160; // id of the input field      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ifFormat&#160;&#160;&#160;&#160;&#160;&#160;&#160; :&#160;&#160;&#160; &quot;%d/%m/%Y&quot;,&#160;&#160;&#160;&#160;&#160;&#160; // format of the input field&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; align&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; :&#160;&#160;&#160; &quot;Bl&quot;,&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; // alignment (defaults to &quot;Bl&quot;)      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; button&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; :&#160;&#160;&#160; &quot;datebox_trigger&quot;,&#160;&#160; // trigger for the calendar (button ID)      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; singleClick&#160;&#160;&#160; :&#160;&#160;&#160; true,&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; // single-click mode      <br />&#160;&#160;&#160; });      <br />&lt;/script&gt;</p>
</blockquote>
<p align="left">That’s all now you should be able to view the calendar if you click the image!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/date2cal-for-mailformplus/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dynamically change class attribute of body tag using typoscript</title>
		<link>http://blog.chandanweb.com/typo3/dynamically-change-class-attribute-of-body-tag-using-typoscript</link>
		<comments>http://blog.chandanweb.com/typo3/dynamically-change-class-attribute-of-body-tag-using-typoscript#comments</comments>
		<pubDate>Thu, 19 Mar 2009 14:53:56 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[body tag]]></category>
		<category><![CDATA[class attribute]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/dynamically-change-class-attribute-of-body-tag-using-typoscript</guid>
		<description><![CDATA[This is a small note about how we can change the class attribute of body tag using typoscript. # bodyTag page.bodyTag &#62; page.bodyTagCObject = TEXT page.bodyTagCObject.data = levelfield:-1 :, myfeildname, slide page.bodyTagCObject.wrap = &#60;body class=&#34;myclass_&#124;&#34;&#62; Well here I am using a custom field added to pages table. If you wish to use the page id [...]]]></description>
			<content:encoded><![CDATA[<p>This is a small note about how we can change the class attribute of body tag using typoscript.</p>
<blockquote><p># bodyTag     <br />page.bodyTag &gt; </p>
<p>page.bodyTagCObject = TEXT     <br />page.bodyTagCObject.data = levelfield:-1 :, myfeildname, slide      <br />page.bodyTagCObject.wrap = &lt;body class=&quot;myclass_|&quot;&gt;</p>
</blockquote>
<p>Well here I am using a custom field added to pages table. If you wish to use the page id you may try using this code below:</p>
<p># bodyTag   <br />page.bodyTag &gt; </p>
<p>page.bodyTagCObject = TEXT   <br />page.bodyTagCObject.data = field:id    <br />page.bodyTagCObject.wrap = &lt;body class=&quot;myclass_|&quot;&gt;</p>
<p>This way you may expect body tags like:   <br />&lt;body class=&quot;myclass_1&quot;&gt;    <br />&lt;body class=&quot;myclass_2&quot;&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/dynamically-change-class-attribute-of-body-tag-using-typoscript/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Changing default image width of 600 px in Typo3</title>
		<link>http://blog.chandanweb.com/typo3/changing-default-image-width-of-600-px-in-typo3</link>
		<comments>http://blog.chandanweb.com/typo3/changing-default-image-width-of-600-px-in-typo3#comments</comments>
		<pubDate>Tue, 10 Mar 2009 10:43:41 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[imgtext maxw]]></category>
		<category><![CDATA[max image width]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/changing-default-image-width-of-600-px-in-typo3</guid>
		<description><![CDATA[Typo3 by default limits image width to 600 px. You can easily change this setting using TypoScript. These TypoScript can be usually located on the root Template record. If not you can try using the object browser to find the exact location. You may have to change this in setup and in constants as shown [...]]]></description>
			<content:encoded><![CDATA[<p>Typo3 by default limits image width to 600 px. You can easily change this setting using TypoScript. These TypoScript can be usually located on the root Template record. If not you can try using the object browser to find the exact location.   </p>
<p>You may have to change this in setup and in constants as shown below:</p>
<blockquote><p>&#160;</p>
<p>In CONSANTS:      <br />styles.content.imgtext.maxW = 700</p>
<p>In SETUP:      <br />tt_content.image.20.maxW = 930</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/changing-default-image-width-of-600-px-in-typo3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set ATagParams for menu items (except for some pages)</title>
		<link>http://blog.chandanweb.com/typo3/how-to-set-atagparams-for-menu-items-except-for-some-pages</link>
		<comments>http://blog.chandanweb.com/typo3/how-to-set-atagparams-for-menu-items-except-for-some-pages#comments</comments>
		<pubDate>Fri, 05 Sep 2008 07:30:02 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[ATagParams]]></category>
		<category><![CDATA[COA]]></category>
		<category><![CDATA[cObject]]></category>
		<category><![CDATA[expAll]]></category>
		<category><![CDATA[ifEmpty]]></category>
		<category><![CDATA[isInList]]></category>
		<category><![CDATA[stdWrap]]></category>
		<category><![CDATA[TEXT]]></category>
		<category><![CDATA[TMENU]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[wrapItemAndSub]]></category>

		<guid isPermaLink="false">http://blog.spabhat.com/?p=49</guid>
		<description><![CDATA[This code may be useful when you may wish to have some extra parameter to all anchor tags in menu items, the code even shows how you can avoid these parameters for some selected pages.]]></description>
			<content:encoded><![CDATA[<p>This code may be useful when you may wish to have some extra parameter to all anchor tags in menu items, the code even shows how you can avoid these parameters for some selected pages.</p>
<p>The code below creates this link:</p>
<p>&lt;a rel=&#8221;moodalbox&#8221; href=&#8221;pagelink&#8221; &gt;page title&lt;/a&gt;</p>
<p>For pages with uid 10, 23 the link will be generated as follows:</p>
<p>&lt;a href=&#8221;pagelink&#8221; &gt;page title&lt;/a&gt;</p>
<p>To get this kind of menu write the following typoscript in the Setup section:</p>
<blockquote><p>lib.atl_lefttop = COA<br />
lib.atl_lefttop.10 = HMENU<br />
# Level 1<br />
lib.atl_lefttop.10 {<br />
stdWrap.ifEmpty.wrap = &amp;nbsp;<br />
1 = TMENU<br />
1 {<br />
wrap = &lt;ul&gt;|&lt;/ul&gt;<br />
expAll = 1<br />
NO.wrapItemAndSub = &lt;li&gt;|&lt;/li&gt;</p>
<p>NO.ATagParams.cObject = TEXT<br />
NO.ATagParams.cObject {<br />
value = rel=moodalbox<br />
/*<br />
moodalbox should not be applied for the uid specified here<br />
*/<br />
if {<br />
value = 10,23<br />
isInList.field = uid<br />
negate = 1<br />
}<br />
}</p>
<p>ACT &lt; NO<br />
ACT.wrapItemAndSub = &lt;li class=&#8221;act&#8221;&gt;|&lt;/li&gt;</p>
<p>CUR &lt; NO<br />
CUR.wrapItemAndSub = &lt;li class=&#8221;cur&#8221;&gt;|&lt;/li&gt;<br />
}</p>
<p>}</p>
<p># level 2 3 and 4 use same settings as sown above<br />
2&lt; .1<br />
3&lt; .2<br />
4&lt; .3<br />
}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/how-to-set-atagparams-for-menu-items-except-for-some-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

