<?xml version='1.0' encoding="utf-8"?>
      <rss version='2.0'>
      <channel>
      <title>Форум на Исходниках.RU</title>
      <link>https://forum.sources.ru</link>
      <description>Форум на Исходниках.RU</description>
      <generator>Форум на Исходниках.RU</generator>
  	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=397736&amp;view=findpost&amp;p=3559592</guid>
        <pubDate>Sun, 04 Jan 2015 15:31:34 +0000</pubDate>
        <title>Удалить пустой xmlns=&amp;quot;&amp;quot; из xml</title>
        <link>https://forum.sources.ru/index.php?showtopic=397736&amp;view=findpost&amp;p=3559592</link>
        <description><![CDATA[Tropic777: Пол года назад, тоже столкнулся с данной проблемой XML . И мне помогла эта статья <a class='tag-url' href='http://www.modber.ru/catalog/item1800.html' target='_blank'>http://www.modber.ru/catalog/item1800.html</a> .]]></description>
        <author>Tropic777</author>
        <category>XML, XSL, XSLT</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=397736&amp;view=findpost&amp;p=3555416</guid>
        <pubDate>Thu, 18 Dec 2014 11:30:23 +0000</pubDate>
        <title>Удалить пустой xmlns=&amp;quot;&amp;quot; из xml</title>
        <link>https://forum.sources.ru/index.php?showtopic=397736&amp;view=findpost&amp;p=3555416</link>
        <description><![CDATA[evgen55: Один xml файл преобразую в другой с помощью xslt преобразований. В выходном файле появляется пустой namespace xmlns=&quot;&quot;. Что я делаю не так и как его удалить? Добрый день, знаю что этот вопрос уже обсуждался. Но никак не могу решить эту проблему. Заранее спасибо<br>
<br>
Выходной файл<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">&#60;realty-feed xmlns=&quot;http://webmaster.yandex.ru/schemas/feed/realty/2010-06&quot;&#62;</div><div class="code_line">&#60;generation-date&#62;2014-09-02T09:36:00+04:00 &#60;/generation-date&#62;</div><div class="code_line">&#60;offer internal-id=&quot;23748&quot; xmlns=&quot;&quot;&#62;</div><div class="code_line">&#60;type&#62;продажа&#60;/type&#62;</div><div class="code_line">&#60;/offer&#62;</div><div class="code_line">&#60;/realty-feed&#62;</div></ol></div></div></div></div><script>preloadCodeButtons('1');</script><br>
<br>
Входной файл<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">&#60;OBJECT is_general_description=&quot;0&quot; &#62;</div><div class="code_line">&#60;SUBJECT_ID&#62;23748&#60;/SUBJECT_ID&#62;</div><div class="code_line">&#60;DESCRIPTION&#62;</div><div class="code_line">&#60;ESTATE_TYPE&#62;5 _Квартира&#60;/ESTATE_TYPE&#62;</div><div class="code_line">&#60;/DESCRIPTION&#62;</div><div class="code_line">&#60;/OBJECT&#62;</div></ol></div></div></div></div><br>
<br>
<br>
Преобразование<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">&#60;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&#62;</div><div class="code_line">&#60;xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp;&#60;xsl:output method=&quot;xml&quot; indent=&quot;yes&quot; omit-xml-declaration=&quot;yes&quot;/&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp;&#60;xsl:template match=&quot;/&quot;&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&#60;realty-feed xmlns=&quot;http://webmaster.yandex.ru/schemas/feed/realty/2010-06&quot;&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#60;generation-date&#62;2014-09-02T09:36:00+04:00 &#60;/generation-date&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#60;xsl:apply-templates select=&quot;OBJECT&quot;/&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#60;xsl:apply-templates select=&quot;OBJECT2&quot;/&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&#60;/realty-feed&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp;&#60;/xsl:template&#62;</div><div class="code_line">&#60;xsl:template match=&quot;OBJECT&quot;&#62;</div><div class="code_line">&nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&#60;xsl:variable name=&quot;myid&quot;&#62;&#60;xsl:value-of select=&quot;SUBJECT_ID&quot;/&#62;&#60;/xsl:variable&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp;</div><div class="code_line">&nbsp;</div><div class="code_line">&#60;xsl:choose&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp;&#60;xsl:when test=&quot;DESCRIPTION/ESTATE_TYPE = &#39;5 _Квартира&#39;&quot;&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&#60;offer internal-id=&quot;{$myid}&quot;&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#60;type&#62;продажа&#60;/type&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div><div class="code_line">&nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&#60;/offer&#62;</div><div class="code_line">&nbsp;&nbsp; &nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp;&#60;/xsl:when&#62;</div><div class="code_line">&#60;/xsl:choose&#62;</div><div class="code_line">&nbsp;</div><div class="code_line">&#60;/xsl:template&#62;</div><div class="code_line">&#60;/xsl:stylesheet&#62;</div></ol></div></div></div></div>]]></description>
        <author>evgen55</author>
        <category>XML, XSL, XSLT</category>
      </item>
	
      </channel>
      </rss>
	