Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 3.15.189.218
Web Server : Apache/2.4.61 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/share/svn2cl/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /usr/share/svn2cl/svn2html.xsl
<?xml version="1.0" encoding="utf-8"?>

<!--

   svn2html.xsl - xslt stylesheet for converting svn log to a normal
                  changelog fromatted in html

   version 0.14

   Usage (replace ++ with two minus signs):
     svn ++verbose ++xml log | \
       xsltproc ++stringparam strip-prefix `basename $(pwd)` \
                ++stringparam groupbyday yes \
                ++stringparam authorsfile FILE \
                ++stringparam title NAME \
                ++stringparam revision-link NAME \
                ++stringparam ticket-link NAME \
                ++stringparam ticket-prefix NAME \
                svn2html.xsl - > ChangeLog.html

   This file is partially based on (and includes) svn2cl.xsl.

   Copyright (C) 2005, 2006, 2007, 2009, 2010, 2013 Arthur de Jong.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions
   are met:
   1. Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
   2. Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in
      the documentation and/or other materials provided with the
      distribution.
   3. The name of the author may not be used to endorse or promote
      products derived from this software without specific prior
      written permission.

   THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
   DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
   GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
   IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
   OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
   IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

-->

<xsl:stylesheet
  version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns="http://www.w3.org/1999/xhtml">

 <!-- include default formatting templates from svn2cl.xsl -->
 <xsl:include href="svn2cl.xsl" />

 <xsl:output
   method="xml"
   encoding="utf-8"
   media-type="text/html"
   omit-xml-declaration="no"
   standalone="yes"
   indent="yes"
   doctype-public="-//W3C//DTD XHTML 1.1//EN"
   doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />

 <!-- title of the report -->
 <xsl:param name="title" select="'ChangeLog'" />

 <!-- link to use for linking revision numbers -->
 <xsl:param name="revision-link" select="'#r'" />

 <!-- link to use for linking ticket numbers -->
 <xsl:param name="ticket-link" select="''" />

 <!-- string to search for as prefix to ticket ID to use for linking ticket numbers -->
 <xsl:param name="ticket-prefix" select="'#'" />

 <!-- match toplevel element -->
 <xsl:template match="log">
  <html>
   <head>
    <title><xsl:value-of select="string($title)" /></title>
    <link rel="stylesheet" href="svn2html.css" type="text/css" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   </head>
   <body>
    <xsl:if test="$title">
     <h1><xsl:value-of select="string($title)" /></h1>
    </xsl:if>
    <ul class="changelog_entries">
     <xsl:choose>
      <xsl:when test="$ignore-message-starting != ''">
       <!-- only handle logentries with don't contain the string -->
       <xsl:apply-templates select="logentry[not(starts-with(msg,$ignore-message-starting))]" />
      </xsl:when>
      <xsl:otherwise>
       <xsl:apply-templates select="logentry" />
      </xsl:otherwise>
     </xsl:choose>
    </ul>
    <p class="changelog_footer">
     <xsl:text>Generated by </xsl:text><a href="http://arthurdejong.org/svn2cl/">svn2cl 0.14</a>
    </p>
   </body>
  </html>
 </xsl:template>

 <!-- format one entry from the log -->
 <xsl:template match="logentry">
  <xsl:choose>
   <!-- if we're grouping we should omit some headers -->
   <xsl:when test="$groupbyday='yes'">
    <!-- fetch previous entry's date -->
    <xsl:variable name="prevdate">
     <xsl:apply-templates select="preceding-sibling::logentry[position()=1]/date" />
    </xsl:variable>
    <!-- fetch previous entry's author -->
    <xsl:variable name="prevauthor">
     <xsl:value-of select="normalize-space(preceding-sibling::logentry[position()=1]/author)" />
    </xsl:variable>
    <!-- fetch this entry's date -->
    <xsl:variable name="date">
     <xsl:apply-templates select="date" />
    </xsl:variable>
    <!-- fetch this entry's author -->
    <xsl:variable name="author">
     <xsl:value-of select="normalize-space(author)" />
    </xsl:variable>
    <!-- check if header is changed -->
    <xsl:if test="($prevdate!=$date) or ($prevauthor!=$author)">
     <li class="changelog_entry">
      <!-- date -->
      <span class="changelog_date"><xsl:value-of select="$date" /></span>
      <xsl:text>&#32;</xsl:text>
      <!-- author's name -->
      <span class="changelog_author"><xsl:apply-templates select="author" /></span>
     </li>
    </xsl:if>
   </xsl:when>
   <!-- write the log header -->
   <xsl:otherwise>
    <li class="changelog_entry">
     <!-- date -->
     <span class="changelog_date"><xsl:apply-templates select="date" /></span>
     <xsl:text>&#32;</xsl:text>
     <!-- author's name -->
     <span class="changelog_author"><xsl:apply-templates select="author" /></span>
    </li>
   </xsl:otherwise>
  </xsl:choose>
  <!-- entry -->
  <li class="changelog_change">
   <!-- get revision number -->
   <xsl:variable name="revlink">
    <xsl:choose>
     <xsl:when test="contains($revision-link,'##')">
      <xsl:value-of select="concat(substring-before($revision-link,'##'),@revision,substring-after($revision-link,'##'))" />
     </xsl:when>
     <xsl:otherwise>
      <xsl:value-of select="concat($revision-link,@revision)" />
     </xsl:otherwise>
    </xsl:choose>
   </xsl:variable>
   <span class="changelog_revision">
    <a id="r{@revision}" href="{$revlink}">[r<xsl:value-of select="@revision" />]</a>
   </span>
   <xsl:text>&#32;</xsl:text>
   <!-- get paths string -->
   <span class="changelog_files"><xsl:apply-templates select="paths" /></span>
   <xsl:text>&#32;</xsl:text>
   <!-- get message text -->
   <xsl:variable name="msg">
    <xsl:call-template name="trim-newln">
     <xsl:with-param name="txt" select="msg" />
    </xsl:call-template>
   </xsl:variable>
   <span class="changelog_message">
    <xsl:call-template name="formatmessage">
     <xsl:with-param name="txt" select="$msg" />
    </xsl:call-template>
   </span>
  </li>
 </xsl:template>

 <!-- template to do formatting of log message -->
 <xsl:template name="formatmessage">
  <xsl:param name="txt" />
  <xsl:choose>
   <!-- perform newline-to-br transformation -->
   <xsl:when test="contains($txt,'&#10;')">
    <!-- text contains newlines, do the first line -->
    <xsl:call-template name="formatmessage">
     <xsl:with-param name="txt" select="substring-before($txt,'&#10;')" />
    </xsl:call-template>
    <!-- print new line -->
    <br />
    <!-- do the rest of the text -->
    <xsl:call-template name="formatmessage">
     <xsl:with-param name="txt" select="substring-after($txt,'&#10;')" />
    </xsl:call-template>
   </xsl:when>
   <!-- perform url highlighting -->
   <xsl:when test="contains($txt,'http://')">
    <xsl:call-template name="urlstolinks">
     <xsl:with-param name="txt" select="$txt" />
    </xsl:call-template>
   </xsl:when>
   <!-- perform url highlighting -->
   <xsl:when test="contains($txt,'https://')">
    <xsl:call-template name="urlstolinks">
     <xsl:with-param name="txt" select="$txt" />
    </xsl:call-template>
   </xsl:when>
   <!-- perform ticket highlighting -->
   <xsl:when test="string-length($ticket-link) &gt; 0 and contains($txt,$ticket-prefix)">
    <xsl:call-template name="ticketstolinks">
     <xsl:with-param name="txt" select="$txt" />
    </xsl:call-template>
   </xsl:when>
   <!-- there does not seem to be anything parseable left -->
   <xsl:otherwise>
    <xsl:value-of select="$txt" />
   </xsl:otherwise>
  </xsl:choose>
 </xsl:template>

 <!-- template to replace url-like strings with links -->
 <xsl:template name="urlstolinks">
  <xsl:param name="txt" />
  <!-- see if the string contains something url-like -->
  <xsl:variable name="before">
   <xsl:choose>
    <xsl:when test="contains($txt,'http://')">
     <xsl:value-of select="substring-before($txt,'http://')" />
    </xsl:when>
    <xsl:when test="contains($txt,'https://')">
     <xsl:value-of select="substring-before($txt,'https://')" />
    </xsl:when>
    <xsl:otherwise>
     <xsl:value-of select="$txt" />
    </xsl:otherwise>
   </xsl:choose>
  </xsl:variable>
  <!-- output the first part -->
  <xsl:call-template name="formatmessage">
   <xsl:with-param name="txt" select="$before" />
  </xsl:call-template>
  <!-- get the rest of the text -->
  <xsl:variable name="rest" select="substring($txt,string-length($before)+1)" />
  <!-- if there is a rest it's beginning is a URL -->
  <xsl:if test="string-length($rest) &gt; 0">
   <!-- get the url part -->
   <xsl:variable name="url">
    <xsl:choose>
     <xsl:when test="contains($rest,' ')">
      <xsl:value-of select="substring-before($rest,' ')" />
     </xsl:when>
     <xsl:otherwise>
      <xsl:value-of select="$rest" />
     </xsl:otherwise>
    </xsl:choose>
   </xsl:variable>
   <!-- output the link -->
   <a href="{$url}"><xsl:value-of select="$url" /></a>
   <!-- parse the part after -->
   <xsl:call-template name="formatmessage">
    <xsl:with-param name="txt" select="substring($rest,string-length($url)+1)" />
   </xsl:call-template>
  </xsl:if>
 </xsl:template>

 <!-- template to replace ticket references with links -->
 <xsl:template name="ticketstolinks">
  <xsl:param name="txt" />
  <!-- see if the string contains that looks like a ticket reference -->
  <xsl:variable name="before">
   <xsl:choose>
    <xsl:when test="contains($txt,$ticket-prefix)">
     <xsl:value-of select="substring-before($txt,$ticket-prefix)" />
    </xsl:when>
    <xsl:otherwise>
     <xsl:value-of select="$txt" />
    </xsl:otherwise>
   </xsl:choose>
  </xsl:variable>
  <!-- output the first part -->
  <xsl:call-template name="formatmessage">
   <xsl:with-param name="txt" select="$before" />
  </xsl:call-template>
  <!-- get the rest of the text -->
  <xsl:variable name="rest" select="substring($txt,string-length($before)+1)" />
  <!-- if there is a rest it's beginning is a ticket reference -->
  <xsl:if test="string-length($rest) &gt; 0">
   <!-- get the ticket part -->
   <xsl:variable name="ticket">
    <xsl:choose>
     <xsl:when test="contains($rest,' ')">
      <xsl:value-of select="substring-after(substring-before($rest,' '),$ticket-prefix)" />
     </xsl:when>
     <xsl:otherwise>
      <xsl:value-of select="substring-after($rest,$ticket-prefix)" />
     </xsl:otherwise>
    </xsl:choose>
   </xsl:variable>
   <!-- output the link -->
   <a href="{$ticket-link}{$ticket}"><xsl:value-of select="$ticket-prefix" /><xsl:value-of select="$ticket" /></a>
   <!-- parse the part after -->
   <xsl:call-template name="formatmessage">
    <xsl:with-param name="txt" select="substring($rest,string-length($ticket-prefix)+string-length($ticket)+1)" />
   </xsl:call-template>
  </xsl:if>
 </xsl:template>

</xsl:stylesheet>

Anon7 - 2022
AnonSec Team