проблема с XSL - Visavi.net https://visavi.net/ RSS - Visavi.net https://visavi.net/assets/img/images/logo_small.png RSS - Visavi.net https://visavi.net/ admin@visavi.net (admin) admin@visavi.net (admin) Tue, 10 Mar 2026 18:43:17 +0300 так мне нужны только эти 2 тега чтобы показывало и все <br> &lt;xsl:value-of select=&quot;artist&quot; /&gt; - &lt;xsl:value-of select=&quot;title&quot; /&gt; https://visavi.net/topics/27446?pid=462727 проблема с XSL Удаленный Wed, 14 Dec 2011 21:39:38 +0400 Сообщения https://visavi.net/topics/27446?pid=462727 <pre class="prettyprint"> &lt;/div&gt; &lt;div class=&quot;roundbottom&quot;&gt; &lt;img src=&quot;/corner_bottomleft.jpg&quot; class=&quot;corner&quot; style=&quot;display&#58; none&quot; /&gt; &lt;/div&gt; &lt;/div&gt; &lt;br /&gt; &lt;br /&gt; &lt;/xsl&#58;when&gt; &lt;xsl&#58;otherwise&gt; &lt;h3&gt;&lt;xsl&#58;value-of select=&quot;&#64;mount&quot; /&gt; - Not Connected&lt;/h3&gt; &lt;/xsl&#58;otherwise&gt; &lt;/xsl&#58;choose&gt; &lt;/xsl&#58;for-each&gt; &lt;xsl&#58;text disable-output-escaping=&quot;yes&quot;&gt;&amp;amp;&lt;/xsl&#58;text&gt;nbsp; &lt;div class=&quot;poster&quot;&gt;Support icecast development at &lt;a class=&quot;nav&quot; target=&quot;_blank&quot; href=&quot;http&#58;//www.icecast.org&quot;&gt;www.icecast.org&lt;/a&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; &lt;/xsl&#58;template&gt; &lt;/xsl&#58;stylesheet&gt; </pre> А это:<br> <pre class="prettyprint"> &lt;xsl&#58;stylesheet xmlns&#58;xsl = &quot;http&#58;//www.w3.org/1999/XSL/Transform&quot; version = &quot;1.0&quot; &gt; &lt;xsl&#58;output omit-xml-declaration=&quot;no&quot; method=&quot;html&quot; doctype-public=&quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; doctype-system=&quot;http&#58;//www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot; indent=&quot;yes&quot; encoding=&quot;UTF-8&quot; /&gt; &lt;xsl&#58;template match = &quot;/icestats&quot; &gt; &lt;xsl&#58;value-of select=&quot;artist&quot; /&gt; - &lt;xsl&#58;value-of select=&quot;title&quot; /&gt; &lt;/xsl&#58;template&gt; &lt;/xsl&#58;stylesheet&gt; </pre> не пиши https://visavi.net/topics/27446?pid=462721 проблема с XSL Titov Wed, 14 Dec 2011 21:26:23 +0400 Сообщения https://visavi.net/topics/27446?pid=462721 <pre class="prettyprint"> &lt;xsl&#58;if test=&quot;stream_start&quot;&gt; &lt;tr&gt;&lt;td&gt;Mount started&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt;&lt;xsl&#58;value-of select=&quot;stream_start&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;bitrate&quot;&gt; &lt;tr&gt;&lt;td&gt;Bitrate&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;bitrate&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;quality&quot;&gt; &lt;tr&gt;&lt;td&gt;Quality&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;quality&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;video_quality&quot;&gt; &lt;tr&gt;&lt;td&gt;Video Quality&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;video_quality&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;frame_size&quot;&gt; &lt;tr&gt;&lt;td&gt;Framesize&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;frame_size&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;frame_rate&quot;&gt; &lt;tr&gt;&lt;td&gt;Framerate&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;frame_rate&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;listeners&quot;&gt; &lt;tr&gt;&lt;td&gt;Current Listeners&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;listeners&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;listener_peak&quot;&gt; &lt;tr&gt;&lt;td&gt;Peak Listeners&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;listener_peak&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;genre&quot;&gt; &lt;tr&gt;&lt;td&gt;Stream Genre&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;genre&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;server_url&quot;&gt; &lt;tr&gt;&lt;td&gt;Stream URL&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;a target=&quot;_blank&quot; href=&quot;{server_url}&quot;&gt;&lt;xsl&#58;value-of select=&quot;server_url&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;tr&gt;&lt;td&gt;Current Song&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;if test=&quot;artist&quot;&gt;&lt;xsl&#58;value-of select=&quot;artist&quot; /&gt; - &lt;/xsl&#58;if&gt;&lt;xsl&#58;value-of select=&quot;title&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; </pre> https://visavi.net/topics/27446?pid=462720 проблема с XSL Titov Wed, 14 Dec 2011 21:26:00 +0400 Сообщения https://visavi.net/topics/27446?pid=462720 <pre class="prettyprint"> &lt;!--end index header menu --&gt; &lt;!--mount point stats--&gt; &lt;xsl&#58;for-each select=&quot;source&quot;&gt; &lt;xsl&#58;choose&gt; &lt;xsl&#58;when test=&quot;listeners&quot;&gt; &lt;div class=&quot;roundcont&quot;&gt; &lt;div class=&quot;roundtop&quot;&gt; &lt;img src=&quot;/corner_topleft.jpg&quot; class=&quot;corner&quot; style=&quot;display&#58; none&quot; /&gt; &lt;/div&gt; &lt;div class=&quot;newscontent&quot;&gt; &lt;div class=&quot;streamheader&quot;&gt; &lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt; &lt;colgroup align=&quot;left&quot; /&gt; &lt;colgroup align=&quot;right&quot; width=&quot;300&quot; /&gt; &lt;tr&gt; &lt;td&gt;&lt;h3&gt;Mount Point &lt;xsl&#58;value-of select=&quot;&#64;mount&quot; /&gt;&lt;/h3&gt;&lt;/td&gt; &lt;xsl&#58;choose&gt; &lt;xsl&#58;when test=&quot;authenticator&quot;&gt; &lt;td align=&quot;right&quot;&gt;&lt;a class=&quot;auth&quot; href=&quot;/auth.xsl&quot;&gt;Login&lt;/a&gt;&lt;/td&gt; &lt;/xsl&#58;when&gt; &lt;xsl&#58;otherwise&gt; &lt;td align=&quot;right&quot;&gt; &lt;a href=&quot;{&#64;mount}.m3u&quot;&gt;M3U&lt;/a&gt; &lt;a href=&quot;{&#64;mount}.xspf&quot;&gt;XSPF&lt;/a&gt;&lt;/td&gt; &lt;/xsl&#58;otherwise&gt; &lt;/xsl&#58;choose&gt; &lt;/tr&gt;&lt;/table&gt; &lt;/div&gt; &lt;table border=&quot;0&quot; cellpadding=&quot;4&quot;&gt; &lt;xsl&#58;if test=&quot;server_name&quot;&gt; &lt;tr&gt;&lt;td&gt;Stream Title&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;server_name&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;server_description&quot;&gt; &lt;tr&gt;&lt;td&gt;Stream Description&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;server_description&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;server_type&quot;&gt; &lt;tr&gt;&lt;td&gt;Content Type&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt;&lt;xsl&#58;value-of select=&quot;server_type&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; </pre> https://visavi.net/topics/27446?pid=462719 проблема с XSL Titov Wed, 14 Dec 2011 21:25:27 +0400 Сообщения https://visavi.net/topics/27446?pid=462719 пиши так<br> <pre class="prettyprint"> &lt;xsl&#58;stylesheet xmlns&#58;xsl = &quot;http&#58;//www.w3.org/1999/XSL/Transform&quot; version = &quot;1.0&quot; &gt; &lt;xsl&#58;output omit-xml-declaration=&quot;no&quot; method=&quot;html&quot; doctype-public=&quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; doctype-system=&quot;http&#58;//www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot; indent=&quot;yes&quot; encoding=&quot;UTF-8&quot; /&gt; &lt;xsl&#58;template match = &quot;/icestats&quot; &gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Icecast Streaming Media Server&lt;/title&gt; &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;style.css&quot; /&gt; &lt;/head&gt; &lt;body topmargin=&quot;0&quot; leftmargin=&quot;0&quot; rightmargin=&quot;0&quot; bottommargin=&quot;0&quot;&gt; &lt;h2&gt;Icecast2 Status&lt;/h2&gt; &lt;br /&gt; &lt;!--index header menu --&gt; &lt;div class=&quot;roundcont&quot;&gt; &lt;div class=&quot;roundtop&quot;&gt; &lt;img src=&quot;/corner_topleft.jpg&quot; class=&quot;corner&quot; style=&quot;display&#58; none&quot; /&gt; &lt;/div&gt; &lt;table border=&quot;0&quot; width=&quot;100%&quot; id=&quot;table1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;4&quot;&gt; &lt;tr&gt; &lt;td bgcolor=&quot;#656565&quot;&gt; &lt;a class=&quot;nav&quot; href=&quot;admin/&quot;&gt;Administration&lt;/a&gt; &lt;a class=&quot;nav&quot; href=&quot;status.xsl&quot;&gt;Server Status&lt;/a&gt; &lt;a class=&quot;nav&quot; href=&quot;server_version.xsl&quot;&gt;Version&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;div class=&quot;roundbottom&quot;&gt; &lt;img src=&quot;/corner_bottomleft.jpg&quot; class=&quot;corner&quot; style=&quot;display&#58; none&quot; /&gt; &lt;/div&gt; &lt;/div&gt; &lt;br /&gt; &lt;br /&gt; </pre> https://visavi.net/topics/27446?pid=462716 проблема с XSL Titov Wed, 14 Dec 2011 21:24:55 +0400 Сообщения https://visavi.net/topics/27446?pid=462716 <pre class="prettyprint"> &lt;/div&gt; &lt;div class=&quot;roundbottom&quot;&gt; &lt;img src=&quot;/corner_bottomleft.jpg&quot; class=&quot;corner&quot; style=&quot;display&#58; none&quot; /&gt; &lt;/div&gt; &lt;/div&gt; &lt;br /&gt; &lt;br /&gt; &lt;/xsl&#58;when&gt; &lt;xsl&#58;otherwise&gt; &lt;h3&gt;&lt;xsl&#58;value-of select=&quot;&#64;mount&quot; /&gt; - Not Connected&lt;/h3&gt; &lt;/xsl&#58;otherwise&gt; &lt;/xsl&#58;choose&gt; &lt;/xsl&#58;for-each&gt; &lt;xsl&#58;text disable-output-escaping=&quot;yes&quot;&gt;&amp;amp;&lt;/xsl&#58;text&gt;nbsp; &lt;div class=&quot;poster&quot;&gt;Support icecast development at &lt;a class=&quot;nav&quot; target=&quot;_blank&quot; href=&quot;http&#58;//www.icecast.org&quot;&gt;www.icecast.org&lt;/a&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; &lt;/xsl&#58;template&gt; &lt;/xsl&#58;stylesheet&gt; </pre> а так не робит<br> <pre class="prettyprint"> &lt;xsl&#58;stylesheet xmlns&#58;xsl = &quot;http&#58;//www.w3.org/1999/XSL/Transform&quot; version = &quot;1.0&quot; &gt; &lt;xsl&#58;output omit-xml-declaration=&quot;no&quot; method=&quot;html&quot; doctype-public=&quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; doctype-system=&quot;http&#58;//www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot; indent=&quot;yes&quot; encoding=&quot;UTF-8&quot; /&gt; &lt;xsl&#58;template match = &quot;/icestats&quot; &gt; &lt;xsl&#58;value-of select=&quot;artist&quot; /&gt; - &lt;xsl&#58;value-of select=&quot;title&quot; /&gt; &lt;/xsl&#58;template&gt; &lt;/xsl&#58;stylesheet&gt; </pre> в чем проблема? https://visavi.net/topics/27446?pid=462711 проблема с XSL Удаленный Wed, 14 Dec 2011 21:13:23 +0400 Сообщения https://visavi.net/topics/27446?pid=462711 <pre class="prettyprint"> &lt;xsl&#58;if test=&quot;stream_start&quot;&gt; &lt;tr&gt;&lt;td&gt;Mount started&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt;&lt;xsl&#58;value-of select=&quot;stream_start&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;bitrate&quot;&gt; &lt;tr&gt;&lt;td&gt;Bitrate&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;bitrate&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;quality&quot;&gt; &lt;tr&gt;&lt;td&gt;Quality&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;quality&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;video_quality&quot;&gt; &lt;tr&gt;&lt;td&gt;Video Quality&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;video_quality&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;frame_size&quot;&gt; &lt;tr&gt;&lt;td&gt;Framesize&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;frame_size&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;frame_rate&quot;&gt; &lt;tr&gt;&lt;td&gt;Framerate&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;frame_rate&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;listeners&quot;&gt; &lt;tr&gt;&lt;td&gt;Current Listeners&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;listeners&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;listener_peak&quot;&gt; &lt;tr&gt;&lt;td&gt;Peak Listeners&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;listener_peak&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;genre&quot;&gt; &lt;tr&gt;&lt;td&gt;Stream Genre&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;genre&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;server_url&quot;&gt; &lt;tr&gt;&lt;td&gt;Stream URL&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;a target=&quot;_blank&quot; href=&quot;{server_url}&quot;&gt;&lt;xsl&#58;value-of select=&quot;server_url&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;tr&gt;&lt;td&gt;Current Song&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;if test=&quot;artist&quot;&gt;&lt;xsl&#58;value-of select=&quot;artist&quot; /&gt; - &lt;/xsl&#58;if&gt;&lt;xsl&#58;value-of select=&quot;title&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; </pre> https://visavi.net/topics/27446?pid=462710 проблема с XSL Удаленный Wed, 14 Dec 2011 21:12:39 +0400 Сообщения https://visavi.net/topics/27446?pid=462710 <pre class="prettyprint"> &lt;!--end index header menu --&gt; &lt;!--mount point stats--&gt; &lt;xsl&#58;for-each select=&quot;source&quot;&gt; &lt;xsl&#58;choose&gt; &lt;xsl&#58;when test=&quot;listeners&quot;&gt; &lt;div class=&quot;roundcont&quot;&gt; &lt;div class=&quot;roundtop&quot;&gt; &lt;img src=&quot;/corner_topleft.jpg&quot; class=&quot;corner&quot; style=&quot;display&#58; none&quot; /&gt; &lt;/div&gt; &lt;div class=&quot;newscontent&quot;&gt; &lt;div class=&quot;streamheader&quot;&gt; &lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt; &lt;colgroup align=&quot;left&quot; /&gt; &lt;colgroup align=&quot;right&quot; width=&quot;300&quot; /&gt; &lt;tr&gt; &lt;td&gt;&lt;h3&gt;Mount Point &lt;xsl&#58;value-of select=&quot;&#64;mount&quot; /&gt;&lt;/h3&gt;&lt;/td&gt; &lt;xsl&#58;choose&gt; &lt;xsl&#58;when test=&quot;authenticator&quot;&gt; &lt;td align=&quot;right&quot;&gt;&lt;a class=&quot;auth&quot; href=&quot;/auth.xsl&quot;&gt;Login&lt;/a&gt;&lt;/td&gt; &lt;/xsl&#58;when&gt; &lt;xsl&#58;otherwise&gt; &lt;td align=&quot;right&quot;&gt; &lt;a href=&quot;{&#64;mount}.m3u&quot;&gt;M3U&lt;/a&gt; &lt;a href=&quot;{&#64;mount}.xspf&quot;&gt;XSPF&lt;/a&gt;&lt;/td&gt; &lt;/xsl&#58;otherwise&gt; &lt;/xsl&#58;choose&gt; &lt;/tr&gt;&lt;/table&gt; &lt;/div&gt; &lt;table border=&quot;0&quot; cellpadding=&quot;4&quot;&gt; &lt;xsl&#58;if test=&quot;server_name&quot;&gt; &lt;tr&gt;&lt;td&gt;Stream Title&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;server_name&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;server_description&quot;&gt; &lt;tr&gt;&lt;td&gt;Stream Description&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt; &lt;xsl&#58;value-of select=&quot;server_description&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; &lt;xsl&#58;if test=&quot;server_type&quot;&gt; &lt;tr&gt;&lt;td&gt;Content Type&#58;&lt;/td&gt;&lt;td class=&quot;streamdata&quot;&gt;&lt;xsl&#58;value-of select=&quot;server_type&quot; /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/xsl&#58;if&gt; </pre> https://visavi.net/topics/27446?pid=462709 проблема с XSL Удаленный Wed, 14 Dec 2011 21:10:45 +0400 Сообщения https://visavi.net/topics/27446?pid=462709 так все работает<br> <pre class="prettyprint"> &lt;xsl&#58;stylesheet xmlns&#58;xsl = &quot;http&#58;//www.w3.org/1999/XSL/Transform&quot; version = &quot;1.0&quot; &gt; &lt;xsl&#58;output omit-xml-declaration=&quot;no&quot; method=&quot;html&quot; doctype-public=&quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; doctype-system=&quot;http&#58;//www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot; indent=&quot;yes&quot; encoding=&quot;UTF-8&quot; /&gt; &lt;xsl&#58;template match = &quot;/icestats&quot; &gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Icecast Streaming Media Server&lt;/title&gt; &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;style.css&quot; /&gt; &lt;/head&gt; &lt;body topmargin=&quot;0&quot; leftmargin=&quot;0&quot; rightmargin=&quot;0&quot; bottommargin=&quot;0&quot;&gt; &lt;h2&gt;Icecast2 Status&lt;/h2&gt; &lt;br /&gt; &lt;!--index header menu --&gt; &lt;div class=&quot;roundcont&quot;&gt; &lt;div class=&quot;roundtop&quot;&gt; &lt;img src=&quot;/corner_topleft.jpg&quot; class=&quot;corner&quot; style=&quot;display&#58; none&quot; /&gt; &lt;/div&gt; &lt;table border=&quot;0&quot; width=&quot;100%&quot; id=&quot;table1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;4&quot;&gt; &lt;tr&gt; &lt;td bgcolor=&quot;#656565&quot;&gt; &lt;a class=&quot;nav&quot; href=&quot;admin/&quot;&gt;Administration&lt;/a&gt; &lt;a class=&quot;nav&quot; href=&quot;status.xsl&quot;&gt;Server Status&lt;/a&gt; &lt;a class=&quot;nav&quot; href=&quot;server_version.xsl&quot;&gt;Version&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;div class=&quot;roundbottom&quot;&gt; &lt;img src=&quot;/corner_bottomleft.jpg&quot; class=&quot;corner&quot; style=&quot;display&#58; none&quot; /&gt; &lt;/div&gt; &lt;/div&gt; &lt;br /&gt; &lt;br /&gt; </pre> https://visavi.net/topics/27446?pid=462708 проблема с XSL Удаленный Wed, 14 Dec 2011 21:09:51 +0400 Сообщения https://visavi.net/topics/27446?pid=462708