текст во всех группах корме одной

#
текст во всех группах корме одной
фотогалерея
мне нужно вставить текст вверху, во всех группах кроме одной
но что то у меня не выходит
как правильно?

я пробовала так:

<xsl:if test="//group[@group_id != 29]"><p>Текст</p>
            
</xsl:if>   

и так
<xsl:if test="//group[@current_group_id != 29]"><p>Текст</p>
            
</xsl:if>   

и так
<xsl:if test="@current_group_id != 29"><p>Текст</p>
            
</xsl:if>   

и так
<xsl:if test="@group_id != 29"><p>Текст</p>
            
</xsl:if>
Email: golden-puma@yandex.ru; Telegram: @GoldenPuma; Сайт: https://goldenpuma.ru
#
Re: текст во всех группах корме одной
А XSL полностью с XML
Skype:ferdinant1988 ICQ:311960596 E-mail: ferdinant@i.ua
#
Re: текст во всех группах корме одной
xsl
<?xml version="1.0" encoding="windows-1251"?>
<!DOCTYPE xsl:stylesheet>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output xmlns="http://www.w3.org/TR/xhtml1/strict" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" encoding="Windows-1251" indent="yes" method="html" omit-xml-declaration="no" version="1.0" media-type="text/xml"/>
   
   <xsl:template match="/">
      <xsl:apply-templates select="/document"/>
   </xsl:template>
   
   <xsl:template match="/document">
      
      <!-- Получаем ID родительской группы и записываем в переменную $parent_group_id -->
      <xsl:variable name="parent_group_id" select="blocks/parent_group_id"/>
      
      <!-- Если в находимся корне - выводим название информационной системы -->
      <xsl:if test="blocks/parent_group_id = 0">
         <h1>
            <xsl:value-of disable-output-escaping="yes" select="blocks/name"/>
         </h1>
         
         
      </xsl:if>
      
      
      <!-- Если в находимся в группе - выводим название группы -->
      <xsl:if test="blocks/parent_group_id != 0">
         <h1>
            <xsl:value-of disable-output-escaping="yes" select=".//group[@id=$parent_group_id]/name"/>
         </h1><xsl:if test="//group[@group_id != 29]"><p>Текст1</p>      
</xsl:if>  

<xsl:if test="//group[@current_group_id != 29]"><p>Текст2</p>
            
</xsl:if>  

<xsl:if test="@current_group_id != 29"><p>Текст3</p>
            
</xsl:if>  

<xsl:if test="@group_id != 29"><p>Текст4</p>
            
</xsl:if> 
<!-- <xsl:if test="@current_group_id != 29"><p>Котята  в этом разделе  проданы . Если Вы хотите выбрать и купить  котенка , перейдите в раздел " Котята  на продажу". Если Вы хотите купить  котенка  на этих фотографиях, спросите у меня, есть ли похожий  котенок  в наличии или когда появится. т.+7-926-577-34-61, Титова Яна Юрьевна. </p>

</xsl:if> -->         <!-- Путь к группе -->
         <!--
         <p>
            <xsl:apply-templates select=".//group[@id=$parent_group_id]" mode="goup_path"/>
         </p>
         -->
      </xsl:if>
      
      <!-- Обработка выбранных тэгов -->
      <xsl:if test="count(blocks/selected_tags/tag) = 1">
      <h2>Метка &#x97; <strong><xsl:value-of select="blocks/selected_tags/tag/tag_name"/></strong>.</h2>
      </xsl:if>
      
      <!-- Отображение подгрупп данной группы, только если подгруппы есть и не идет фильтра по меткам -->
      <xsl:if test="count(blocks/selected_tags/tag) = 0 and count(.//group[@parent_id=$parent_group_id]) &gt; 0">
         <xsl:apply-templates select=".//group[@parent_id=$parent_group_id]" mode="groups"/>
      </xsl:if>
      
      <!-- Если в находимся корне - выводим ОПИСАНИЕ информационной системы -->
      <xsl:if test="blocks/parent_group_id = 0">
         
         <!-- Описание выводится при отсутствии фильтрации по тэгам -->
         <xsl:if test="count(blocks/tags/tag) = 0">
            <xsl:value-of disable-output-escaping="yes" select="blocks/description"/>
         </xsl:if>
      </xsl:if>
      
      <xsl:if test="count(//blocks/items/item[item_status=1]) > 0">
         <!-- Число элементов в строку -->
         <xsl:variable name="items_in_line" select="2"/>
         <div id="gallery">
            
            <xsl:call-template name="items">
               <xsl:with-param name="items_in_line" select="$items_in_line"/>
               <xsl:with-param name="current_position" select="0"/>
         </xsl:call-template></div>
      </xsl:if>
      
      <xsl:value-of disable-output-escaping="yes" select="/document/qq"/>
      
      <!-- Если в находимся в группе - выводим ОПИСАНИЕ группы -->
      <xsl:if test="blocks/parent_group_id != 0">
         
         
         <!-- Описание выводим только на первой странице -->
         <xsl:if test="blocks/items/current_page = 0">
            <xsl:value-of disable-output-escaping="yes" select=".//group[@id=$parent_group_id]/description"/>
         </xsl:if>
         
      </xsl:if>
      
      <!-- Строка ссылок на другие страницы информационной системы -->
      <xsl:if test="ОтображатьСсылкиНаСледующиеСтраницы=1">
         <p>
            <!-- Ссылка, для которой дописываются суффиксы page-XX/ -->
            <xsl:variable name="link">
               <xsl:value-of select="/document/blocks/url"/>
               <xsl:if test="$parent_group_id != 0">
                  <xsl:value-of select="/document/blocks//group[@id = $parent_group_id]/fullpath"/>
               </xsl:if>
            </xsl:variable>
            
            <xsl:call-template name="for">
               <xsl:with-param name="link" select="$link"/>
               <xsl:with-param name="items_on_page" select="blocks/items/items_on_page"/>
               <xsl:with-param name="current_page" select="blocks/items/current_page"/>
               <xsl:with-param name="count_items" select="blocks/items/count_items"/>
               <xsl:with-param name="visible_pages">5</xsl:with-param>
            </xsl:call-template>
         </p>
      </xsl:if>
      
      <div style="clear: both"></div>
      
      <!-- Rss -->
      <!--<div class="rss_4_ie"></div>
      <a href="{blocks/url}rss/">
         <img src="/images/rss/rss_2.0.png" style="filter: alpha(opacity=0); margin: 0px 0px -4px 0px"/>
      </a>
      <a href="{blocks/url}rss/">RSS</a>-->
      
      <xsl:if test="ОтображатьСсылкуНаАрхив=1">
         <div class="archives_4_ie"></div>
         <a href="{blocks/url}">
            <img src="/images/archives.png" style="filter: alpha(opacity=0); margin: 0px 0px -4px 0px"/>
         </a>
         <a href="{blocks/url}">Архив "<xsl:value-of disable-output-escaping="yes" select="blocks/name"/>"</a>
      </xsl:if>
   </xsl:template>
   
   <!-- Шаблон выводит рекурсивно ссылки на группы инф. элемента -->
   <xsl:template match="group" mode="goup_path">
      <xsl:variable name="parent_id" select="@parent_id"/>
      
      <xsl:apply-templates select="//group[@id=$parent_id]" mode="goup_path"/>
      
      <xsl:if test="@parent_id=0">
         <a href="{/document/blocks/url}">
            <xsl:value-of disable-output-escaping="yes" select="/document/blocks/name"/>
         </a>
      </xsl:if>
      
      <span class="path_arrow">&#x2192;</span>
      
      <a href="{/document/blocks/url}{fullpath}">
         <xsl:value-of disable-output-escaping="yes" select="name"/>
      </a>
   </xsl:template>
   
   <!-- Шаблон выводит ссылки подгруппы информационного элемента -->
   <xsl:template match="group" mode="groups">
      <div class="group_gallery">
         <div class="t"></div>
         <div class="r"></div>
         <div class="b"></div>
         <div class="l"></div>
         <xsl:if test="small_image!=''">
            <a href="{/document/blocks/url}{fullpath}">
               <img src="{small_image}"/>
               <br/>
         </a>&#xA0;</xsl:if>
         <a href="{/document/blocks/url}{fullpath}">
            <b>
               <xsl:value-of disable-output-escaping="yes" select="name"/>
            </b>
   </a>&#xA0;<span style="color: #b7af9c">(<xsl:value-of select="count_all_items"/>)</span></div>
      <xsl:if test="position() mod 3 = 0">
         <div style="clear: left;"></div>
      </xsl:if>
   </xsl:template>
   
   <xsl:template name="items">
      <xsl:param name="items_in_line"/>
      <xsl:param name="current_position"/>
      <table border="0" cellspacing="0" cellpadding="0" style="width: 100%; margin-bottom: 10px;">
         <tr style="background: url('/images/top_film_border.gif') repeat-x 0 100%;">
            <xsl:for-each select="//blocks/items/item[item_status=1]">
               <xsl:if test="position() > $current_position and ($current_position + $items_in_line) >= position()">
                  <td style="padding: 0px 0px 22px 5px; text-align: center;">
                     <!-- Название -->
                     <span class="news_title">
                        
                        <xsl:value-of disable-output-escaping="yes" select="item_name"/>
                        
                     </span>
                  </td>
               </xsl:if>
            </xsl:for-each>
         </tr>
         
         <tr style="background-color: #eee;">
            <xsl:for-each select="//blocks/items/item[item_status=1]">
               <xsl:if test="position() > $current_position and ($current_position + $items_in_line) >= position()">
                  <td style="padding: 0px 5px 0px 5px;">
                     <center><xsl:if test="item_small_image!=''">
                           <!-- Проверяем задан ли путь к файлу большого изображения -->
                           <xsl:if test="item_image!=''">
                              <a href="{item_image}" target="_blank" >
                                 <img src="{item_small_image}" style="border: 1px solid #c6bea7; padding: 1px;"/>
                              </a>
                           </xsl:if>
                           
                           <xsl:if test="item_image =''">
                              <img src="{item_small_image}" style="border: 1px solid #c6bea7; padding: 1px;"/>
                           </xsl:if>
                     </xsl:if></center>
                  </td>
               </xsl:if>
            </xsl:for-each>
         </tr>
         
         <tr style="background: url('/images/bottom_film_border.gif') repeat-x 0 0;">
            <xsl:for-each select="//blocks/items/item[item_status=1]">
               <xsl:if test="position() > $current_position and ($current_position + $items_in_line) >= position()">
                  <td style="padding: 25px 0px 0px 5px;">
                     
                     
                     <xsl:if test="item_description != ''">
                        
                        <xsl:value-of disable-output-escaping="yes" select="item_description"/>
                     </xsl:if>
                     
                     <xsl:if test="count(tags/tag) &gt; 0">
                        <p class="tags">
                           <img src="/hostcmsfiles/images/tags.gif" align="left" style="margin: 0px 5px -2px 0px"/>
                           <xsl:apply-templates select="tags/tag"/>
                        </p>
                     </xsl:if>
                     
                     <xsl:if test="count(site_user) &gt; 0">
                        <p>
                           <img src="/hostcmsfiles/images/user.gif" style="margin: 0px 5px -4px 0px"/>
                           <strong>
                              <a href="/users/info/{site_user/site_user_login}/" class="c_u_l">
                                 <xsl:value-of select="site_user/site_user_login"/>
                              </a>
                           </strong>
                           <xsl:if test="count(item_comments/comment) &gt; 0">,
                              <img src="/hostcmsfiles/images/comments.gif" style="margin: 0px 5px -4px 0px"/>
                              <a href="{item_path}#comments">
                                 <xsl:value-of select="count(item_comments//comment)"/>&#xA0;<xsl:call-template name="declension">
                                 <xsl:with-param name="number" select="count(item_comments//comment)"/></xsl:call-template></a>
                           </xsl:if>
                        </p>
                     </xsl:if>
                  </td>
               </xsl:if>
            </xsl:for-each>
         </tr>
      </table>
      <xsl:if test="count(//blocks/items/item[item_status=1]) > ($current_position + $items_in_line)">
         <xsl:call-template name="items">
            <xsl:with-param name="items_in_line" select="$items_in_line"/>
            <xsl:with-param name="current_position" select="$current_position + $items_in_line"/>
         </xsl:call-template>
      </xsl:if>
   </xsl:template>
   
   <!-- /// Метки для информационного элемента /// -->
   <xsl:template match="tags/tag">
      <a href="{/document/blocks/url}tag/{tag_path_name}/" class="tag">
         <xsl:value-of select="tag_name"/>
      </a>
   <xsl:if test="position() != last()">,</xsl:if>&#xA0;</xsl:template>
   
   <!-- Цикл для вывода строк ссылок -->
   <xsl:template name="for">
      <xsl:param name="i" select="0"/>
      <xsl:param name="prefix">page</xsl:param>
      <xsl:param name="link"/>
      <xsl:param name="items_on_page"/>
      <xsl:param name="current_page"/>
      <xsl:param name="count_items"/>
      <xsl:param name="visible_pages"/>
      
      <xsl:variable name="n" select="$count_items div $items_on_page"/>
      
      <!-- Заносим в переменную $parent_group_id идентификатор текущей группы -->
      <xsl:variable name="parent_group_id" select="/document/blocks/parent_group_id"/>
      
      
      <!-- Считаем количество выводимых ссылок перед текущим элементом -->
      <xsl:variable name="pre_count_page">
         <xsl:choose>
            <xsl:when test="$current_page &gt; ($n - (round($visible_pages div 2) - 1))">
               <xsl:value-of select="$visible_pages - ($n - $current_page)"/>
            </xsl:when>
            <xsl:otherwise>
               <xsl:value-of select="round($visible_pages div 2) - 1"/>
            </xsl:otherwise>
         </xsl:choose>
      </xsl:variable>
      
      <!-- Считаем количество выводимых ссылок после текущего элемента -->
      <xsl:variable name="post_count_page">
         <xsl:choose>
            <xsl:when test="0 &gt; $current_page - (round($visible_pages div 2) - 1)">
               <xsl:value-of select="$visible_pages - $current_page - 1"/>
            </xsl:when>
            <xsl:otherwise>
               <xsl:choose>
                  <xsl:when test="round($visible_pages div 2) = ($visible_pages div 2)">
                     <xsl:value-of select="$visible_pages div 2"/>
                  </xsl:when>
                  <xsl:otherwise>
                     <xsl:value-of select="round($visible_pages div 2) - 1"/>
                  </xsl:otherwise>
               </xsl:choose>
            </xsl:otherwise>
         </xsl:choose>
      </xsl:variable>
      
      <xsl:if test="$i = 0 and $current_page != 0">
         <span class="ctrl">&#x2190;
         Ctrl</span>
      </xsl:if>
      
      <xsl:if test="$i &gt;= $n and ($n - 1) &gt; $current_page">
         <span class="ctrl">Ctrl &#x2192;</span>
      </xsl:if>
      
      <xsl:if test="$count_items &gt; $items_on_page and $n &gt; $i">
         
         <!-- Определяем адрес тэга -->
         <xsl:variable name="tag_link">
            <xsl:choose>
               <!-- Если не нулевой уровень -->
               <xsl:when test="count(/document/blocks/selected_tags/tag) != 0">tag/<xsl:value-of select="/document/blocks/selected_tags/tag/tag_path_name"/>/</xsl:when>
               <!-- Иначе если нулевой уровень - просто ссылка на страницу со списком элементов -->
               <xsl:otherwise></xsl:otherwise>
            </xsl:choose>
         </xsl:variable>
         
         <!-- Определяем адрес ссылки -->
         <xsl:variable name="number_link">
            <xsl:choose>
               <!-- Если не нулевой уровень -->
               <xsl:when test="$i != 0">
                  <xsl:value-of select="$prefix"/>-<xsl:value-of select="$i + 1"/>/</xsl:when>
               <!-- Иначе если нулевой уровень - просто ссылка на страницу со списком элементов -->
               <xsl:otherwise></xsl:otherwise>
            </xsl:choose>
         </xsl:variable>
         
         <!-- Ставим ссылку на страницу-->
         <xsl:if test="$i != $current_page">
            <!-- Выводим ссылку на первую страницу -->
            <xsl:if test="$current_page - $pre_count_page &gt; 0 and $i = 0">
               <a href="{$link}" class="page_link" style="text-decoration: none;">&#x2190;</a>
            </xsl:if>
            
            <xsl:choose>
               <xsl:when test="$i &gt;= ($current_page - $pre_count_page) and ($current_page + $post_count_page) &gt;= $i">
                  <!-- Выводим ссылки на видимые страницы -->
                  <a href="{$link}{$tag_link}{$number_link}" class="page_link">
                     <xsl:value-of select="$i + 1"/>
                  </a>
               </xsl:when>
               <xsl:otherwise></xsl:otherwise>
            </xsl:choose>
            
            <!-- Выводим ссылку на последнюю страницу -->
            <xsl:if test="$i+1 &gt;= $n and $n &gt; ($current_page + 1 + $post_count_page)">
               <xsl:choose>
                  <xsl:when test="$n &gt; round($n)">
                     <!-- Выводим ссылку на последнюю страницу -->
                     <a href="{$link}{$prefix}-{round($n+1)}/" class="page_link" style="text-decoration: none;">&#x2192;</a>
                  </xsl:when>
                  <xsl:otherwise>
                     <a href="{$link}{$prefix}-{round($n)}/" class="page_link" style="text-decoration: none;">&#x2192;</a>
                  </xsl:otherwise>
               </xsl:choose>
            </xsl:if>
         </xsl:if>
         
         <!-- Ссылка на предыдущую страницу для Ctrl + влево -->
         <xsl:if test="$current_page != 0 and $i = $current_page">
            <xsl:variable name="prev_number_link">
               <xsl:choose>
                  <!-- Если не нулевой уровень -->
                  <xsl:when test="($current_page - 1) != 0">page-<xsl:value-of select="$i"/>/</xsl:when>
                  <!-- Иначе если нулевой уровень - просто ссылка на страницу со списком элементов -->
                  <xsl:otherwise></xsl:otherwise>
               </xsl:choose>
            </xsl:variable>
            
            <a href="{$link}{$tag_link}{$prev_number_link}" id="id_prev"></a>
         </xsl:if>
         
         <!-- Ссылка на следующую страницу для Ctrl + вправо -->
         <xsl:if test="($n - 1) &gt; $current_page and $i = $current_page">
            <a href="{$link}{$tag_link}page-{$current_page+2}/" id="id_next"></a>
         </xsl:if>
         
         <!-- Не ставим ссылку на страницу-->
         <xsl:if test="$i = $current_page">
            <span class="current">
               <xsl:value-of select="$i+1"/>
            </span>
         </xsl:if>
         
         <!-- Рекурсивный вызов шаблона. НЕОБХОДИМО ПЕРЕДАВАТЬ ВСЕ НЕОБХОДИМЫЕ ПАРАМЕТРЫ! -->
         <xsl:call-template name="for">
            <xsl:with-param name="i" select="$i + 1"/>
            <xsl:with-param name="prefix" select="$prefix"/>
            <xsl:with-param name="link" select="$link"/>
            <xsl:with-param name="items_on_page" select="$items_on_page"/>
            <xsl:with-param name="current_page" select="$current_page"/>
            <xsl:with-param name="count_items" select="$count_items"/>
            <xsl:with-param name="visible_pages" select="$visible_pages"/>
         </xsl:call-template>
      </xsl:if>
   </xsl:template>
   
   <!-- Склонение после числительных -->
   <xsl:template name="declension">
      
      <xsl:param name="number" select="number"/>
      
      <!-- Именительный падеж -->
      <xsl:variable name="nominative">
         <xsl:text>комментарий</xsl:text>
      </xsl:variable>
      
      <!-- Родительный падеж, единственное число -->
      <xsl:variable name="genitive_singular">
         <xsl:text>комментария</xsl:text>
      </xsl:variable>
      
      
      <xsl:variable name="genitive_plural">
         <xsl:text>комментариев</xsl:text>
      </xsl:variable>
      
      <xsl:variable name="last_digit">
         <xsl:value-of select="$number mod 10"/>
      </xsl:variable>
      
      <xsl:variable name="last_two_digits">
         <xsl:value-of select="$number mod 100"/>
      </xsl:variable>
      
      <xsl:choose>
         <xsl:when test="$last_digit = 1 and $last_two_digits != 11">
            <xsl:value-of select="$nominative"/>
         </xsl:when>
         <xsl:when test="$last_digit = 2 and $last_two_digits != 12    or $last_digit = 3 and $last_two_digits != 13    or $last_digit = 4 and $last_two_digits != 14">
            <xsl:value-of select="$genitive_singular"/>
         </xsl:when>
         <xsl:otherwise>
            <xsl:value-of select="$genitive_plural"/>
         </xsl:otherwise>
      </xsl:choose>
   </xsl:template>
</xsl:stylesheet>


xml
<?xml version="1.0" encoding="windows-1251"?>
<document>
   <site_user_id>0</site_user_id>
   <ОтображатьСсылкуНаАрхив>0</ОтображатьСсылкуНаАрхив>
   <ОтображатьСсылкиНаСледующиеСтраницы>1</ОтображатьСсылкиНаСледующиеСтраницы>
   <blocks id="4">
      <name>Фотогалерея</name>
      <description>&lt;h1&gt;Наше портфолио&lt;/h1&gt;
         &lt;p&gt;Предлагаю вам посмотреть на фото персидских кошек, которые содержатся в нашем питомнике, и на фото котят персидских кошек, которые в настоящее время ждут прихода своего любящего хозяина!&lt;/p&gt;
         &lt;h2&gt;Наши малыши&lt;/h2&gt;
         &lt;p&gt;В нашем питомнике всегда есть в наличии &lt;a href=&quot;/pers/kittens/&quot;&gt;котята на продажу&lt;/a&gt; от высококачественных персидских кошек. Следует отметить, что рекомендуемый возраст для приобретения котенка составляет 3 - 4 месяца. К этому времени малыш становится полностью самостоятельным, проходит все необходимые ветеринарные процедуры, которые формируют иммунитет и, как следствие, крепкое здоровье.&lt;/p&gt;
         &lt;p&gt;Котята получают основное воспитание и продаются только по фискальному чеку, который предоставляет вам гарантию честности сделки, и полным пакетом документов, которые могут вам потребоваться в дальнейшем.&lt;/p&gt;
         &lt;h2&gt;При выборе, прислушивайтесь к сердцу!&lt;/h2&gt;
         &lt;p&gt;Наша галерея содержит фото персидских кошек и фото котят персидских кошек с основным описанием, по которому вы сможете выбрать малыша, с учетом своих предпочтений и описаний. Вы сможете ознакомиться с точной информацией, о породе котенка и его характеристиками. Если вы точно определились с выбором, то смело звоните нам и приходите в гости. Я думаю, что малыш будет рад знакомству со своей новой семьей!&lt;/p&gt;
      &lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <url>/photogallery/</url>
      <access>0</access>
      <parent_group_id>9</parent_group_id>
      <count_items>0</count_items>
      <count_items_on_page>0</count_items_on_page>
      <count_all_items>78</count_all_items>
      <count_groups>3</count_groups>
      <count_all_groups>3</count_all_groups>
      <group id="10" parent_id="0">
         <site_user>0</site_user>
         <name>Британские кошки</name>
         <description>&lt;h1&gt;Фото британских кошек и&amp;nbsp;фото котят британских кошек&lt;/h1&gt;
            &lt;p&gt;Этот раздел содержит фото британских кошек и&amp;nbsp;фото котят британских кошек. Все&amp;nbsp;&lt;a href=&quot;http://www.palmer-cats.ru/british/kittens/&quot;&gt;котята на&amp;nbsp;продажу&lt;/a&gt;, которые в&amp;nbsp;настоящий момент содержатся в&amp;nbsp;нашем питомнике, обладают отличной родословной. Мы&amp;nbsp;можем с&amp;nbsp;гордостью сказать, что&amp;nbsp;у&amp;nbsp;всех наших котят на&amp;nbsp;продажу отличные &lt;a href=&quot;http://www.palmer-cats.ru/british/cats/&quot;&gt;производители&lt;/a&gt;, которые отличаются высокими показателями стандарта породы, а&amp;nbsp;также чистотой своей родословной, в&amp;nbsp;которой отсутствуют крови других пород. Это&amp;nbsp;настоящие представители породы. Мы&amp;nbsp;своевременно обновляем всю&amp;nbsp;информацию, касающуюся наших питомцев, и&amp;nbsp;предоставляем консультации по&amp;nbsp;всем возникшим вопросам. Вы&amp;nbsp;можете приехать к&amp;nbsp;нам&amp;nbsp;в&amp;nbsp;гости и&amp;nbsp;познакомиться с&amp;nbsp;котенком, которого выберете по&amp;nbsp;фото. Мы&amp;nbsp;ведем запись на&amp;nbsp;котят британских кошек, а&amp;nbsp;также резервируем для&amp;nbsp;вас&amp;nbsp;определенного котенка. Но, для&amp;nbsp;того, чтобы зарезервировать котенка на&amp;nbsp;продаже, вам&amp;nbsp;следует обговорить с&amp;nbsp;нами все&amp;nbsp;подробности предстоящей сделки.&lt;/p&gt;
            &lt;h2&gt;Мы заботимся о&amp;nbsp;судьбе наших питомцев!&lt;/h2&gt;
            &lt;p&gt;Мы заботимся о&amp;nbsp;наших питомцах, поэтому оставляем за&amp;nbsp;собой право отказаться от&amp;nbsp;продажи! Но, в&amp;nbsp;этом случае, мы&amp;nbsp;предоставим вам&amp;nbsp;разъяснения и&amp;nbsp;прокомментируем принятое решение.&lt;/p&gt;
         &lt;p&gt;Мы рады новым друзьям, которые разделяют нашу любовь к&amp;nbsp;британским кошкам и&amp;nbsp;смогут стать новыми любящими и&amp;nbsp;заботливыми хозяевами для&amp;nbsp;наших малышей!&lt;/p&gt;</description>
         <order>0</order>
         <path>british</path>
         <fullpath>british/</fullpath>
         <access>-1</access>
         <activity>1</activity>
         <count_items>14</count_items>
         <count_all_items>14</count_all_items>
         <count_groups>0</count_groups>
         <count_all_groups>0</count_all_groups>
         <allow_indexation>1</allow_indexation>
         <propertys>
         </propertys>
      </group>
      <group id="9" parent_id="0">
         <site_user>0</site_user>
         <name>Персидские кошки</name>
         <description>&lt;h2&gt;Наше портфолио&lt;/h2&gt;
            &lt;p&gt;Предлагаю вам&amp;nbsp;посмотреть на&amp;nbsp;фото персидских кошек, которые содержатся в&amp;nbsp;нашем питомнике, и&amp;nbsp;на&amp;nbsp;фото котят персидских кошек, которые в&amp;nbsp;настоящее время ждут прихода своего любящего хозяина!&lt;/p&gt;
            &lt;h3&gt;Наши малыши&lt;/h3&gt;
            &lt;p&gt;В нашем питомнике всегда есть в&amp;nbsp;наличии котята на&amp;nbsp;продажу от&amp;nbsp;высококачественных персидских кошек. Следует отметить, что&amp;nbsp;рекомендуемый возраст для&amp;nbsp;приобретения котенка составляет 3&amp;nbsp;&amp;mdash; 4 месяца. К&amp;nbsp;этому времени малыш становится полностью самостоятельным, проходит все&amp;nbsp;необходимые ветеринарные процедуры, которые формируют иммунитет и, как&amp;nbsp;следствие, крепкое здоровье.&lt;/p&gt;
            &lt;p&gt;Котята получают основное воспитание и&amp;nbsp;продаются только по&amp;nbsp;фискальному чеку, который предоставляет вам&amp;nbsp;гарантию честности сделки, и&amp;nbsp;полным пакетом документов, которые могут вам&amp;nbsp;потребоваться в&amp;nbsp;дальнейшем.&lt;/p&gt;
            &lt;h3&gt;При выборе, прислушивайтесь к&amp;nbsp;сердцу!&lt;/h3&gt;
            &lt;p&gt;Наша галерея содержит фото персидских кошек и&amp;nbsp;фото котят персидских кошек с&amp;nbsp;основным описанием, по&amp;nbsp;которому вы&amp;nbsp;сможете выбрать малыша, с&amp;nbsp;учетом своих предпочтений и&amp;nbsp;описаний. Вы&amp;nbsp;сможете ознакомиться с&amp;nbsp;точной информацией, о&amp;nbsp;породе котенка и&amp;nbsp;его&amp;nbsp;характеристиками. Если&amp;nbsp;вы&amp;nbsp;точно определились с&amp;nbsp;выбором, то&amp;nbsp;смело звоните нам&amp;nbsp;и&amp;nbsp;приходите в&amp;nbsp;гости. Я&amp;nbsp;думаю, что&amp;nbsp;малыш будет рад&amp;nbsp;знакомству со&amp;nbsp;своей новой семьей!&lt;/p&gt;
         &lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
         <order>0</order>
         <path>pers</path>
         <fullpath>pers/</fullpath>
         <access>-1</access>
         <activity>1</activity>
         <count_items>43</count_items>
         <count_all_items>43</count_all_items>
         <count_groups>0</count_groups>
         <count_all_groups>0</count_all_groups>
         <allow_indexation>1</allow_indexation>
         <propertys>
         </propertys>
      </group>
      <group id="29" parent_id="0">
         <site_user>0</site_user>
         <name>Чихуахуа</name>
         <description></description>
         <order>0</order>
         <path>chihua</path>
         <fullpath>chihua/</fullpath>
         <access>-1</access>
         <activity>1</activity>
         <count_items>21</count_items>
         <count_all_items>21</count_all_items>
         <count_groups>0</count_groups>
         <count_all_groups>0</count_all_groups>
         <allow_indexation>1</allow_indexation>
         <propertys>
         </propertys>
      </group>
      <tags>
      </tags>
      <items>
         <count_items>43</count_items>
         <current_page>0</current_page>
         <items_on_page>100</items_on_page>
         <item id="756" group_id="9">
            <item_date>22.09.2012</item_date>
            <item_datetime>22.09.2012 19:50:54</item_datetime>
            <item_time>19:50:54</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Vegas is chinchilla. He is THE perfect cat! He is beautiful, very tender and loving. Funny enough, he follows me like a little dog when i call him! He lived one year in France and he is back in Moscow. Thank you, Yana, for such a beautiful cat. He is now a part of our family.</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="750">/upload/information_system_4/7/5/6/item_756/information_items_756.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/7/5/6/item_756/small_information_items_756.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/756/</item_path>
            <item_path_field>756</item_path_field>
            <item_show_count>1</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="656" group_id="9">
            <item_date>06.09.2012</item_date>
            <item_datetime>06.09.2012 17:40:16</item_datetime>
            <item_time>17:40:16</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Vegas, kitten-traveller, lives in France and in Moscow, Pokrovka Str.</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="750">/upload/information_system_4/6/5/6/item_656/information_items_656.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/6/5/6/item_656/small_information_items_656.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/656/</item_path>
            <item_path_field>656</item_path_field>
            <item_show_count>1</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="655" group_id="9">
            <item_date>06.09.2012</item_date>
            <item_datetime>06.09.2012 17:37:39</item_datetime>
            <item_time>17:37:39</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Вегас, кот-путешественник. Живет во Франции и в Москве на улице Покровке в семье у Татьяны</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="960" height="720">/upload/information_system_4/6/5/5/item_655/information_items_655.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/6/5/5/item_655/small_information_items_655.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/655/</item_path>
            <item_path_field>655</item_path_field>
            <item_show_count>2</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="654" group_id="9">
            <item_date>06.09.2012</item_date>
            <item_datetime>06.09.2012 17:35:01</item_datetime>
            <item_time>17:35:01</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>День рождения у Прокоши, ему 1 годик. (Котенок от Яси).</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="598">/upload/information_system_4/6/5/4/item_654/information_items_654.jpg</item_image>
            <item_small_image width="234" height="350">/upload/information_system_4/6/5/4/item_654/small_information_items_654.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/654/</item_path>
            <item_path_field>654</item_path_field>
            <item_show_count>2</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="652" group_id="9">
            <item_date>01.09.2012</item_date>
            <item_datetime>01.09.2012 01:11:43</item_datetime>
            <item_time>01:11:43</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Шиншилла от кошки Снежинки</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="342" height="242">/upload/information_system_4/6/5/2/item_652/information_items_652.jpg</item_image>
            <item_small_image width="342" height="242">/upload/information_system_4/6/5/2/item_652/small_information_items_652.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/652/</item_path>
            <item_path_field>652</item_path_field>
            <item_show_count>5</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="629" group_id="9">
            <item_date>11.07.2012</item_date>
            <item_datetime>11.07.2012 12:35:21</item_datetime>
            <item_time>12:35:21</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Юля с Лавриком и Прокошей</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="465">/upload/information_system_4/6/2/9/item_629/information_items_629.jpg</item_image>
            <item_small_image width="301" height="350">/upload/information_system_4/6/2/9/item_629/small_information_items_629.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/629/</item_path>
            <item_path_field>629</item_path_field>
            <item_show_count>15</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="589" group_id="9">
            <item_date>04.07.2012</item_date>
            <item_datetime>04.07.2012 17:04:59</item_datetime>
            <item_time>17:04:59</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Белый персидский котенок от кошки Снежинки</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/5/8/9/item_589/information_items_589.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/5/8/9/item_589/small_information_items_589.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/589/</item_path>
            <item_path_field>589</item_path_field>
            <item_show_count>4</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="588" group_id="9">
            <item_date>04.07.2012</item_date>
            <item_datetime>04.07.2012 17:03:19</item_datetime>
            <item_time>17:03:19</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Котенок от кошки Снежинки</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/5/8/8/item_588/information_items_588.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/5/8/8/item_588/small_information_items_588.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/588/</item_path>
            <item_path_field>588</item_path_field>
            <item_show_count>5</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="573" group_id="9">
            <item_date>30.04.2012</item_date>
            <item_datetime>30.04.2012 23:14:16</item_datetime>
            <item_time>23:14:16</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Насилика, дочка Эмеральд и Дали Блюз. На фото ей 2 года. Так выглядит чистокровная американская персидская серебристая шиншилла топ-шоу-класса. Хотите такую киску?Сейчас есть в наличии такой котенок на продажу</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="428" height="282">/upload/information_system_4/5/7/3/item_573/information_items_573.jpg</item_image>
            <item_small_image width="350" height="230">/upload/information_system_4/5/7/3/item_573/small_information_items_573.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/573/</item_path>
            <item_path_field>573</item_path_field>
            <item_show_count>25</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="568" group_id="9">
            <item_date>24.04.2012</item_date>
            <item_datetime>24.04.2012 01:46:41</item_datetime>
            <item_time>01:46:41</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Самый дорогой котенок моего питомника (от племенной пары Эмеральд Айз и Дали Блюз), - персидская серебристая шиншилла экстремального типа PER ns 12</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="340" height="239">/upload/information_system_4/5/6/8/item_568/information_items_568.jpg</item_image>
            <item_small_image width="340" height="239">/upload/information_system_4/5/6/8/item_568/small_information_items_568.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/568/</item_path>
            <item_path_field>568</item_path_field>
            <item_show_count>27</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="565" group_id="9">
            <item_date>21.04.2012</item_date>
            <item_datetime>21.04.2012 01:28:45</item_datetime>
            <item_time>01:28:45</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>День Рождения у Лаврика в семье у Юли. Ему исполнился 1 годик.</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="514" height="768">/upload/information_system_4/5/6/5/item_565/information_items_565.png</item_image>
            <item_small_image width="234" height="350">/upload/information_system_4/5/6/5/item_565/small_information_items_565.png</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/565/</item_path>
            <item_path_field>565</item_path_field>
            <item_show_count>12</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="562" group_id="9">
            <item_date>18.04.2012</item_date>
            <item_datetime>18.04.2012 20:10:24</item_datetime>
            <item_time>20:10:24</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Котенок от Эмеральд и Дали Блюз. Топ-шоу класс. Продается. Прекрасный выбор для выставок и разведения, и в любящую семью желающую завести здорового очень породистого котенка</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/5/6/2/item_562/information_items_562.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/5/6/2/item_562/small_information_items_562.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/562/</item_path>
            <item_path_field>562</item_path_field>
            <item_show_count>14</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="472" group_id="9">
            <item_date>30.01.2012</item_date>
            <item_datetime>30.01.2012 21:52:45</item_datetime>
            <item_time>21:52:45</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Николь и ее новая мама Светлана такие гостеприимные и дружелюбные!</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/7/2/item_472/information_items_472.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/7/2/item_472/small_information_items_472.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/472/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>5</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="468" group_id="9">
            <item_date>23.01.2012</item_date>
            <item_datetime>23.01.2012 00:06:38</item_datetime>
            <item_time>00:06:38</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Викки (д.р.27.08.10г.) живет у Ирины Романычевой</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="336">/upload/information_system_4/4/6/8/item_468/information_items_468.jpg</item_image>
            <item_small_image width="350" height="294">/upload/information_system_4/4/6/8/item_468/small_information_items_468.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/468/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>4</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="463" group_id="9">
            <item_date>17.01.2012</item_date>
            <item_datetime>17.01.2012 02:08:04</item_datetime>
            <item_time>02:08:04</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Миха и Диди после SPA процедур с американской косметикой Джероб</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="657" height="440">/upload/information_system_4/4/6/3/item_463/information_items_463.jpg</item_image>
            <item_small_image width="350" height="234">/upload/information_system_4/4/6/3/item_463/small_information_items_463.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/463/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>4</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="462" group_id="9">
            <item_date>17.01.2012</item_date>
            <item_datetime>17.01.2012 02:02:49</item_datetime>
            <item_time>02:02:49</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>У Юли живет 2 моих кота. Миха и Диди.</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="640" height="480">/upload/information_system_4/4/6/2/item_462/information_items_462.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/6/2/item_462/small_information_items_462.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/462/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>7</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="461" group_id="9">
            <item_date>17.01.2012</item_date>
            <item_datetime>17.01.2012 01:59:45</item_datetime>
            <item_time>01:59:45</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Котенок от Яси, Миха, 4 месяца, - уже в новом доме!</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="657" height="440">/upload/information_system_4/4/6/1/item_461/information_items_461.jpg</item_image>
            <item_small_image width="350" height="234">/upload/information_system_4/4/6/1/item_461/small_information_items_461.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/461/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>4</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="418" group_id="9">
            <item_date>21.12.2010</item_date>
            <item_datetime>21.12.2010 19:23:16</item_datetime>
            <item_time>19:23:16</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Памела получила титул Чемпиона на выставке кошек 18-19 декабря 2010г. по системе CFA</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/1/8/item_418/information_items_418.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/1/8/item_418/small_information_items_418.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/418/</item_path>
            <item_path_field>418</item_path_field>
            <item_show_count>963</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="417" group_id="9">
            <item_date>21.12.2010</item_date>
            <item_datetime>21.12.2010 19:16:41</item_datetime>
            <item_time>19:16:41</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Судейство кошки Памелы у американского эксперта Wayne Trevathan</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/1/7/item_417/information_items_417.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/1/7/item_417/small_information_items_417.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/417/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>550</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="412" group_id="9">
            <item_date>06.12.2010</item_date>
            <item_datetime>06.12.2010 20:05:25</item_datetime>
            <item_time>20:05:25</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Кошечку Памелу оценивает американский эксперт Лиз Ватсон</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/1/2/item_412/information_items_412.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/1/2/item_412/small_information_items_412.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/412/</item_path>
            <item_path_field>412</item_path_field>
            <item_show_count>578</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="410" group_id="9">
            <item_date>06.12.2010</item_date>
            <item_datetime>06.12.2010 20:05:02</item_datetime>
            <item_time>20:05:02</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Ума устала, отдыхает на диване</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/1/0/item_410/information_items_410.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/1/0/item_410/small_information_items_410.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/410/</item_path>
            <item_path_field>410</item_path_field>
            <item_show_count>602</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="409" group_id="9">
            <item_date>06.12.2010</item_date>
            <item_datetime>06.12.2010 20:04:55</item_datetime>
            <item_time>20:04:55</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Оформление оценочного листа</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/0/9/item_409/information_items_409.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/0/9/item_409/small_information_items_409.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/409/</item_path>
            <item_path_field>409</item_path_field>
            <item_show_count>618</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="408" group_id="9">
            <item_date>06.12.2010</item_date>
            <item_datetime>06.12.2010 20:04:50</item_datetime>
            <item_time>20:04:50</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Эксперт оценивает экстерьер кошечки</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/0/8/item_408/information_items_408.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/0/8/item_408/small_information_items_408.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/408/</item_path>
            <item_path_field>408</item_path_field>
            <item_show_count>771</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="407" group_id="9">
            <item_date>06.12.2010</item_date>
            <item_datetime>06.12.2010 20:04:32</item_datetime>
            <item_time>20:04:32</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Проведение экспертизы</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/0/7/item_407/information_items_407.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/0/7/item_407/small_information_items_407.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/407/</item_path>
            <item_path_field>407</item_path_field>
            <item_show_count>556</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="406" group_id="9">
            <item_date>06.12.2010</item_date>
            <item_datetime>06.12.2010 20:04:25</item_datetime>
            <item_time>20:04:25</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Кошечка Ума в руках у эксперта из Великобритании Лейтон С.</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/0/6/item_406/information_items_406.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/0/6/item_406/small_information_items_406.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/406/</item_path>
            <item_path_field>406</item_path_field>
            <item_show_count>571</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="405" group_id="9">
            <item_date>06.12.2010</item_date>
            <item_datetime>06.12.2010 20:04:16</item_datetime>
            <item_time>20:04:16</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Участница выставки кошек №610</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/0/5/item_405/information_items_405.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/0/5/item_405/small_information_items_405.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/405/</item_path>
            <item_path_field>405</item_path_field>
            <item_show_count>979</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="404" group_id="9">
            <item_date>06.12.2010</item_date>
            <item_datetime>06.12.2010 20:04:03</item_datetime>
            <item_time>20:04:03</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Кошечка Ума в выставочной клетке</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/4/0/4/item_404/information_items_404.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/4/0/4/item_404/small_information_items_404.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/404/</item_path>
            <item_path_field>404</item_path_field>
            <item_show_count>981</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="352" group_id="9">
            <item_date>15.01.2010</item_date>
            <item_datetime>15.01.2010 17:37:53</item_datetime>
            <item_time>17:37:53</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Выставка кошек &quot;Содружество&quot; 4-5 декабря 2010г.</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="750">/upload/information_system_4/3/5/2/item_352/information_items_352.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/3/5/2/item_352/small_information_items_352.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/352/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>988</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="353" group_id="9">
            <item_date>15.01.2010</item_date>
            <item_datetime>15.01.2010 17:37:53</item_datetime>
            <item_time>17:37:53</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>На выставке учавствовало 1180 породистых кошек</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="750">/upload/information_system_4/3/5/3/item_353/information_items_353.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/3/5/3/item_353/small_information_items_353.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/353/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>978</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="354" group_id="9">
            <item_date>15.01.2010</item_date>
            <item_datetime>15.01.2010 17:37:53</item_datetime>
            <item_time>17:37:53</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Компания &quot;Роял Канин&quot; проводит презентацию корма для кошек</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="750">/upload/information_system_4/3/5/4/item_354/information_items_354.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/3/5/4/item_354/small_information_items_354.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/354/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>720</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="74" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:22:09</item_datetime>
            <item_time>11:22:09</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Мордочка и грудка у затушеваных шиншилл белые, а спинка - с серебристым переливом</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="266">/upload/information_system_4/0/7/4/item_74/information_items_74.jpg</item_image>
            <item_small_image width="350" height="232">/upload/information_system_4/0/7/4/item_74/small_information_items_74.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/74/</item_path>
            <item_path_field>74</item_path_field>
            <item_show_count>669</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="71" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:20:00</item_datetime>
            <item_time>11:20:00</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Знаменитые котята от кошки Яси</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="750">/upload/information_system_4/0/7/1/item_71/information_items_71.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/0/7/1/item_71/small_information_items_71.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/71/</item_path>
            <item_path_field>71</item_path_field>
            <item_show_count>738</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="69" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:15:58</item_datetime>
            <item_time>11:15:58</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Коллекция шампуней моих кошечек</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="300">/upload/information_system_4/0/6/9/item_69/information_items_69.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/0/6/9/item_69/small_information_items_69.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/69/</item_path>
            <item_path_field>69</item_path_field>
            <item_show_count>626</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="67" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:14:59</item_datetime>
            <item_time>11:14:59</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Глаза у шиншилл по стандарту бывают зеленые и бирюзовые</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="640" height="409">/upload/information_system_4/0/6/7/item_67/information_items_67.jpg</item_image>
            <item_small_image width="350" height="223">/upload/information_system_4/0/6/7/item_67/small_information_items_67.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/67/</item_path>
            <item_path_field>67</item_path_field>
            <item_show_count>918</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="297" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:03:10</item_datetime>
            <item_time>11:03:10</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Котенок от кошки Лилии, шоу-класс, чистокровная персидская серебристая шиншилла (линия Канады)</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="750">/upload/information_system_4/2/9/7/item_297/information_items_297.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/2/9/7/item_297/small_information_items_297.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/297/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>832</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="294" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:03:10</item_datetime>
            <item_time>11:03:10</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Котята от кошки Яси горячо всеми любимы</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="666">/upload/information_system_4/2/9/4/item_294/information_items_294.jpg</item_image>
            <item_small_image width="350" height="233">/upload/information_system_4/2/9/4/item_294/small_information_items_294.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/294/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>681</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="291" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:03:10</item_datetime>
            <item_time>11:03:10</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Участники Best in Show на выставке кошек</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="666">/upload/information_system_4/2/9/1/item_291/information_items_291.jpg</item_image>
            <item_small_image width="350" height="233">/upload/information_system_4/2/9/1/item_291/small_information_items_291.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/291/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>1252</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="295" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:03:10</item_datetime>
            <item_time>11:03:10</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Принцесса</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="750">/upload/information_system_4/2/9/5/item_295/information_items_295.jpg</item_image>
            <item_small_image width="350" height="262">/upload/information_system_4/2/9/5/item_295/small_information_items_295.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/295/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>575</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="63" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:03:10</item_datetime>
            <item_time>11:03:10</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Шоу-класс, современный тип, линия Канады</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="547" height="480">/upload/information_system_4/0/6/3/item_63/information_items_63.jpg</item_image>
            <item_small_image width="350" height="307">/upload/information_system_4/0/6/3/item_63/small_information_items_63.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/63/</item_path>
            <item_path_field>63</item_path_field>
            <item_show_count>776</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="337" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:03:10</item_datetime>
            <item_time>11:03:10</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Котята от кошки Интерчемпиона Яси, есть сейчас в наличии</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="664">/upload/information_system_4/3/3/7/item_337/information_items_337.jpg</item_image>
            <item_small_image width="350" height="232">/upload/information_system_4/3/3/7/item_337/small_information_items_337.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/337/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>679</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="338" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:03:10</item_datetime>
            <item_time>11:03:10</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Кошечка Ума от кошки Чемпиона Белой Лилии.</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="664">/upload/information_system_4/3/3/8/item_338/information_items_338.jpg</item_image>
            <item_small_image width="350" height="232">/upload/information_system_4/3/3/8/item_338/small_information_items_338.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/338/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>614</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="351" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:03:10</item_datetime>
            <item_time>11:03:10</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Кошечка от Яси</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="400" height="266">/upload/information_system_4/3/5/1/item_351/information_items_351.jpg</item_image>
            <item_small_image width="350" height="232">/upload/information_system_4/3/5/1/item_351/small_information_items_351.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/351/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>463</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
         <item id="287" group_id="9">
            <item_date>11.01.2010</item_date>
            <item_datetime>11.01.2010 11:03:10</item_datetime>
            <item_time>11:03:10</item_time>
            <item_putoff_date>00.00.0000 00:00:00</item_putoff_date>
            <item_putend_date>00.00.0000 00:00:00</item_putend_date>
            <item_name>Затушеваные серебристые шиншиллы, PER ns 11, тип улучшенный классик</item_name>
            <item_description></item_description>
            <part count="1">0</part>
            <item_text></item_text>
            <item_image width="1000" height="666">/upload/information_system_4/2/8/7/item_287/information_items_287.jpg</item_image>
            <item_small_image width="350" height="233">/upload/information_system_4/2/8/7/item_287/small_information_items_287.jpg</item_small_image>
            <information_items_order>0</information_items_order>
            <item_status>1</item_status>
            <item_seo_title></item_seo_title>
            <item_seo_description></item_seo_description>
            <item_seo_keywords></item_seo_keywords>
            <item_access>-1</item_access>
            <item_path>/photogallery/pers/287/</item_path>
            <item_path_field></item_path_field>
            <item_show_count>781</item_show_count>
            <site_user_id>0</site_user_id>
            <item_propertys>
            </item_propertys>
            <item_comments>
               <count_comments>0</count_comments>
               <grade_sum>0</grade_sum>
               <grade_count>0</grade_count>
               <average_grade>0</average_grade>
            </item_comments>
         </item>
      </items>
   </blocks>
</document>
Email: golden-puma@yandex.ru; Telegram: @GoldenPuma; Сайт: https://goldenpuma.ru
#
Re: текст во всех группах корме одной

<xsl:if test="block/group[@id != 29]"><p>Текст4</p>
            
</xsl:if> 


А если так?
Skype:ferdinant1988 ICQ:311960596 E-mail: ferdinant@i.ua
#
Re: текст во всех группах корме одной
то же самое - текст не отображается ни в одной группе
Email: golden-puma@yandex.ru; Telegram: @GoldenPuma; Сайт: https://goldenpuma.ru
#
Re: текст во всех группах корме одной
ну может кто-то все же подскажет как надо правильно?
Email: golden-puma@yandex.ru; Telegram: @GoldenPuma; Сайт: https://goldenpuma.ru
Модератор
#
Re: текст во всех группах корме одной

<xsl:if test="blocks/group[@id != 29]"><p>Текст4</p>
            
</xsl:if>


Во всех, кроме 29й, будет Текст4.
Вы только что начали читать предложение, чтение которого вы уже заканчиваете.
#
Re: текст во всех группах корме одной
alexander.egorov,
не правильно -  текст отобразился во всех группах и в 29 тоже.
Email: golden-puma@yandex.ru; Telegram: @GoldenPuma; Сайт: https://goldenpuma.ru
Модератор
#
Re: текст во всех группах корме одной
Не может такого быть. Напишите запрос в поддержку, с данными доступа и страницей, где можно пронаблюдать и скажите номер запроса, посмотрю.
Вы только что начали читать предложение, чтение которого вы уже заканчиваете.
Модератор
#
Re: текст во всех группах корме одной
А не, погодите. В ТДС, которая показывает страницу, через $external_propertys в ShowInformationSystem() передайте текущую группу:


$external_propertys['current_group_id'] = $GLOBALS['INFSYS_result']['group'];


и тогда делайте проверку:

<xsl:if test="current_group_id != 29">
<p>Текст4</p>        
</xsl:if>


Если не получится, тогда в поддержку.
Вы только что начали читать предложение, чтение которого вы уже заканчиваете.
Авторизация