search for: xsl

Displaying 20 results from an estimated 820 matches for "xsl".

Did you mean: xs
2008 Oct 28
2
Kickstart package groups
Hello, I'm building another kickstart CD, minimal, and creating my own repository. Is there any way I can get the list of files that a group (like @core o @base) will install? The idea is to put only those files in the repository to be included later in the iso file, and only those files, nothing else. Thanks in advance Francisco -------------- next part -------------- An HTML attachment
2005 Mar 19
3
[Fwd: IceCast up to v2.20 multiple vulnerabilities]
...pports Ogg Vorbis and MP3 audio streams. It can be used to create an Internet radio station or a privately running jukebox and many things in between. It is very versatile in that new formats can be added relatively easily and supports open standards for commuincation and interaction." 1) The XSL parser has some unchecked buffers (local), but they dont seem to be exploitable. If they are, they can be used for priviledge escalation, under the user that the server runs. <xsl:when test="<lots of chars>"></xsl:when> <xsl:if test="<lots of chars>"&...
2018 Mar 12
0
IceCast Listenter Count Stat - BASH or php?
...simple way to get just the listener count on mounts out of > IceCast, specifically 2.4.1 > > Via BASH preferred, or CLI php if I must, I guess python 2.x would be an > option too. (3.x is not an option though!) > > All the stuff I've seen is scrapping things from the status.xsl, which is > bad form. Well, you can create your own XSL with less data. I use this (as web/simple.xsl): <xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" > <xsl:output omit-xml-declaration="no" method="text" doc...
2004 Aug 06
2
commas are status2.xsl?
in the status2.xsl there seems to be some extra commas ... --snippet of status2.xsl Global,Client:<xsl:value-of select="connections" /> Source: <xsl:value-of select="source_connections" />,,<xsl:value-of select="listeners" />,, <xsl:for-each select="source&qu...
2004 Aug 06
2
icecast status page -status.xsl
So I point my browser to http://206.168.174.48:8000/status.xsl Looking at the xsl doc status.xsl I some some nice variables I can use. For some reason I don't seem to be able to pull out the comment tag from the ogg file. I used to easytag to add this so i know it exists. These appear to work <xsl:value-of select="artist" /> - <xsl:...
2015 Dec 06
1
Listener statistics on a fallback stream
...it a fallback stream or even a file played from disk) is irrelevant. > > Now, as for the statistics, should we be able to help without knowing > what system you use to gather your statistics and build those charts? > or i missed it? No you didn't miss it; I'm using a homebrew XSLT to present the information in a simple, parseable format: <xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" > <xsl:output omit-xml-declaration="no" method="text" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN...
2018 Mar 14
0
IceCast Listenter Count Stat - BASH or php?
just parse status-json.xsl with php's curl/json_parse... ScanCaster: > On Mon, 12 Mar 2018 22:07:34 +0100, Jeroen van Oosten wrote: > > > Well, you can create your own XSL with less data. I use this (as > > web/simple.xsl): > > Well since I don't know XSL, BASH etc. was my go to choice......
2004 Aug 06
2
Custom .xsl files?
On Thursday 22 July 2004 04:56, Myke Place wrote: > I'm curious if it is possible to create custom .xsl files in the /admin > directory, using the same xsl params that appear in in the web > interfaces that ship with Icecast2. Yes. Though I don't know if using an arbitrary one works from the admin directory. Certainly you can put them in icecast's webroot directory (or some subdirector...
2006 Mar 16
1
script.aculo.us in xsl
Hello, first of all, sorry for my English, I´m a Spanish student and I´m having some problems with script.aculo.us. These are the following: I have a XML file like this: <?xml version="1.0" encoding="iso-8859-1"?> <?xml-stylesheet type="text/xsl" href="barraNav.xsl"?> <barraNav> <boton> <imagen>img/page_text.gif</imagen> <accion>archivoNuevo</accion> <textoAyuda>Crear un archivo nuevo</textoAyuda> </boton> </barraNav> and I want t...
2006 Sep 24
1
Add-on patch to support .pls .asx .ram .qtl listing formats
...3546 AS29222 / BACO-RIPE -------------- next part -------------- --- ChangeLog 2005-11-30 19:17:41.000000000 +0100 +++ ChangeLog 2006-09-22 15:52:11.191506000 +0200 @@ -1,3 +1,15 @@ +2006-09-22 16:38 baco + + * trunk/icecast/src/admin.c, trunk/icecast/src/fserve.c, + trunk/icecast/web/status.xsl, trunk/icecast/web/auth.xsl, + trunk/icecast/admin/listmounts.xsl, trunk/icecast/admin/stats.xsl, + trunk/icecast/admin/listclients.xsl, + trunk/icecast/doc/icecast2_basicsetup.html, + trunk/icecast/doc/icecast2_listenerauth.html: + add pls,asx,ram,qtl support when user want to launch a...
2015 Mar 13
1
IceCast status - raw XML output
Please add the following XSL file to IceCast distribution (web directory). It returns IceCast's state in raw XML form. <xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0"> <xsl:output indent="yes" encoding="UTF-8" /> <xsl:template match=...
2007 Apr 13
2
Parsing status.xsl
hi i work for a non-for-profit broadcaster and we use Icecast to serve a number of community radio stations - and it does a great job. i'd like to parse or edit the status.xsl file into a series of files that only show information for one mountpoint or station at a time. i have no idea of XSL syntax but looking at /usr/share/icecast/content/status.xsl i see the following statement pair: <xsl:for-each select="source"> [...] </xsl:for-each> would i...
2012 Dec 11
2
Adding additional mount info to xsl stylesheet
The following patch attempts to make the source client user agent and the max listener client connection duration information available to (icecast 2.3.2) xsl stylesheets. Will there be any memory leak issues in the lower level functions like the acl, etc. when the source is disconnected, when servicing queries, or otherwise? BEGIN icecast-2.3.2-moremntinfo.patch diff --git src/source.c src/source.c index 02bfc74..7e90d34 100644 --- src/source.c +++ src...
2005 Feb 15
3
icecast stats
Regardless of the xsl files. Can't we communicate with the icecast server directly to retrieve the information ?? On Mon, 14 Feb 2005 12:58:56 -0500, Ian A. Underwood <agentgrn@dcne.net> wrote: > lluis wrote: > > i need to access the info of the files > > > > /admin/stats.xsl > >...
2004 Aug 06
2
xsl data
...<server>xxx.xxx.xxx.xxx</server> <port>xxxx</port> <mount>/</mount> <local-mount>/xxx</local-mount> <relay-shoutcast-metadata>1</relay-shoutcast-metadata> </relay> --- also im using status.xsl and admin/stats.xsl to get data for my www. But "current song" xml data from http://url:port/status.xsl for shoutcast relay always showing "-" Relay from icecast server is displayed without problems, showing current title. How I can display current song title on www? I have...
2020 Sep 21
2
Listener stats
Hello Jordan Thanks for the reply.  I commented out all the fields in the status-json.xsl but it didn't give me the listener IP.  The example below would show me the source IP.  I can get the IP from the web interface at this location, http://xxx.xxx.xxx.xxx:8000/admin/listclients.xsl?mount=/dhantal, but that means I would have to scrape the web interface which I don't want...
2005 Apr 17
0
Listener count in stream title
.... It can be seen in action on http://radio.ethereal.net:8000/stale, where it runs every minute out of cron. The script should be self-explanatory, but feel free to write me privately with any questions or problems... there's obviously some room for improvement. thanks, Tris P.S. status2.xsl seems to have some bugs (use of old variable names), some of which I fixed in the attached patch. The patch shouldn't be needed to get the script to work, though. -------------- next part -------------- #!/usr/bin/perl -w # tristan+perl@ethereal.net 17apr2005 # public domain use strict; use...
2020 Sep 21
2
Listener stats
...sion 2.4.4. How would I be able to get a Jason file that has listener information specifically listener location or at least the IP address. I can get listener count but I’m looking for location through the IP. I need to write a php script to gather this information. I have checked the status-Jason.xsl and the xml2json.xsl but neither gives me that information. What would I have to modify and how, to get this? I would prefer not to modify any xsl file to get this if at all possible. Thanks Reaz
2020 Sep 22
2
Listener stats
...ernoon, On Tue, 2020-09-22 at 11:43 -0400, Reaz Baksh wrote: > Too much work. I would like to refer to Jordan Erickson's comment here. > If I am able to see it on the web interface I should be able to get a Json or XML file with this in it. Why not just use the API? Remove the ".xsl" from any URL in the admin interface and get the raw XML. The rendered webinterface is just that: XSLT applied to the API. > This should be easy. As easy as asking nicely. With best regards, > > On Sep 22, 2020, at 11:16 AM, <jorr at streamguys.com> <jorr at streamguys....
2004 Aug 06
1
how to get &quot;now playing&quot;
greetings! i'd like to incorporate a "now playing" section on my web page (links to the icecast2 server) i'm guessing i have to get the <xsl:value-of select="artist" /> and <xsl:value-of select="title" /> tags from the status.xsl file. not sure what else needs to be coded into the index.html file to get this info. can anybody point me in the right direction? thanks, jg __________________________________...