[Paulscriptsmods-checkin] ajax_shout install.xml, 1.19.2.21, 1.19.2.22 modx.prosilver.en.xsl, 1.1.2
Status: Beta
Brought to you by:
paulsohier
From: Paul S. <pau...@us...> - 2007-08-04 14:29:05
|
Update of /cvsroot/paulscriptsmods/ajax_shout In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26891 Modified Files: Tag: phpbb3_ver install.xml modx.prosilver.en.xsl Log Message: More updates. (MODX 1.0.1) Index: modx.prosilver.en.xsl =================================================================== RCS file: /cvsroot/paulscriptsmods/ajax_shout/Attic/modx.prosilver.en.xsl,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -d -r1.1.2.3 -r1.1.2.4 *** modx.prosilver.en.xsl 28 May 2007 10:20:13 -0000 1.1.2.3 --- modx.prosilver.en.xsl 4 Aug 2007 14:29:04 -0000 1.1.2.4 *************** *** 1,9 **** ! <?xml version="1.0" encoding="UTF-8" ?> ! <!-- MODX by the phpBB MOD Team XSL file v1.0 copyright 2005-2007 the phpBB MOD Team. $Id$ --> <!DOCTYPE xsl:stylesheet[ <!ENTITY nbsp " "> ]> ! <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:mod="http://www.phpbb.com/mods/xml/modx-1.0.xsd"> <xsl:output method="html" omit-xml-declaration="no" indent="yes" /> <xsl:variable name="title" select="mod:mod/mod:header/mod:title" /> --- 1,9 ---- ! <?xml version="1.0" encoding="utf-8" ?> ! <!-- MODX by the phpBB MOD Team XSL file v1.0.1 copyright 2005-2007 the phpBB MOD Team. $Id$ --> <!DOCTYPE xsl:stylesheet[ <!ENTITY nbsp " "> ]> ! <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:mod="http://www.phpbb.com/mods/xml/modx-1.0.1.xsd"> <xsl:output method="html" omit-xml-declaration="no" indent="yes" /> <xsl:variable name="title" select="mod:mod/mod:header/mod:title" /> *************** *** 14,17 **** --- 14,18 ---- </xsl:for-each> </xsl:variable> + <xsl:template match="mod:mod"> <html xmlns="http://www.w3.org/1999/xhtml"> *************** *** 449,452 **** --- 450,454 ---- <script type="text/javascript"> + var i = 0; var box = new Array(); *************** *** 482,485 **** --- 484,488 ---- var opens = 0; var opens_ll = new Array(); + <xsl:for-each select="mod:action-group/mod:open"> opens_ll[opens] = '<xsl:value-of select="generate-id()"/>'; *************** *** 524,527 **** --- 527,531 ---- <xsl:for-each select="mod:action-group/mod:open/mod:edit"> <xsl:for-each select="mod:find"> + finds_ll[finds] = '<xsl:value-of select="generate-id()"/>'; finds++; *************** *** 536,539 **** --- 540,544 ---- </xsl:if> <xsl:for-each select="mod:find|mod:action"> + box[codes] = '<xsl:value-of select="generate-id()"/>'; codes_ll[codes] = '<xsl:value-of select="generate-id()"/>'; *************** *** 549,552 **** --- 554,558 ---- addbefores++; </xsl:if> + <xsl:if test="@type = 'replace-with'"> replacewiths_ll[replacewiths] = '<xsl:value-of select="generate-id()"/>'; *************** *** 560,563 **** --- 566,570 ---- </xsl:for-each> + <xsl:for-each select="mod:inline-edit"> <xsl:for-each select="mod:inline-find"> *************** *** 575,578 **** --- 582,586 ---- <xsl:if test="name() = 'inline-action'"> + <xsl:if test="@type = 'after-add'"> iaddafters_ll[iaddafters] = '<xsl:value-of select="generate-id()"/>'; *************** *** 587,590 **** --- 595,599 ---- ireplacewiths++; </xsl:if> + <xsl:if test="@type = 'operation'"> iincrements_ll[iincrements] = '<xsl:value-of select="generate-id()"/>'; *************** *** 601,604 **** --- 610,614 ---- codes_ll[codes] = '<xsl:value-of select="generate-id()"/>'; codes++; + </xsl:for-each> *************** *** 631,635 **** "ile=Easy\n" + "ili=Intermediate\n" + ! "ilh=Hard\n" + "au=Author\n" + "aus=Authors\n" + --- 641,645 ---- "ile=Easy\n" + "ili=Intermediate\n" + ! "ila=Advanced\n" + "au=Author\n" + "aus=Authors\n" + *************** *** 1016,1038 **** return; } ! var r, s; ! if( document.selection && !SXBB_IsIEMac() ) { ! // Works on: IE5+ ! // To be confirmed: IE4? / IEMac fails? ! r = document.body.createTextRange(); ! r.moveToElementText(o); ! r.select(); } ! else if( document.createRange && (document.getSelection || window.getSelection) ) { ! // Works on: Netscape/Mozilla/Konqueror/Safari ! // To be confirmed: Konqueror/Safari use window.getSelection ? ! r = document.createRange(); r.selectNodeContents(o); - s = window.getSelection ? window.getSelection() : document.getSelection(); s.removeAllRanges(); s.addRange(r); } find_selected(id); --- 1026,1064 ---- return; } ! ! // Not IE ! if (window.getSelection) { ! var s = window.getSelection(); ! // Safari ! if (s.setBaseAndExtent) ! { ! s.setBaseAndExtent(o, 0, o, o.innerText.length - 1); ! } ! // Firefox and Opera ! else ! { ! var r = document.createRange(); ! r.selectNodeContents(o); ! s.removeAllRanges(); ! s.addRange(r); ! } } ! // Some older browsers ! else if (document.getSelection) { ! var s = document.getSelection(); ! var r = document.createRange(); r.selectNodeContents(o); s.removeAllRanges(); s.addRange(r); } + // IE + else if (document.selection) + { + var r = document.body.createTextRange(); + r.moveToElementText(o); + r.select(); + } find_selected(id); *************** *** 1123,1126 **** --- 1149,1153 ---- </script> <title>phpBB MOD » <xsl:value-of select="$title" /></title> + </head> <body class="ltr" onload="startup()"> *************** *** 1130,1133 **** --- 1157,1161 ---- <h1><span id="lang-h1">Installation Instructions for </span>'<xsl:value-of select="$title" />' <span id="lang-V">Version </span><xsl:value-of select="$version" /></h1> <form method="post" action="" id="lang-selector" style="display: none;"> + <fieldset class="nobg"> <label for="language"> *************** *** 1138,1141 **** --- 1166,1170 ---- </select> </fieldset> + </form> </div> *************** *** 1147,1150 **** --- 1176,1180 ---- </span> <div id="content"> + <div id="main"> <fieldset class="permissions" id="perm00"> *************** *** 1156,1159 **** --- 1186,1190 ---- <fieldset class="permissions" id="Fieldset1"> <xsl:for-each select="mod:action-group"> + <xsl:call-template name="give-actions"></xsl:call-template> </xsl:for-each> *************** *** 1173,1176 **** --- 1204,1208 ---- </div> </div> + <div id="page-footer"> <p class="copyright" style="text-align: center; font-size: 10px;" id="lang-foot">MOD UA XSLT File Copyright © 2007 The phpBB Group, this MOD is copyright to the authors listed above.</p> *************** *** 1182,1185 **** --- 1214,1218 ---- <xsl:template name="give-header"> <h2 id="lang-atm">About this MOD</h2> + <dl> <dt id="lang-t">Title:</dt> *************** *** 1190,1193 **** --- 1223,1227 ---- <dl id="title"> <xsl:for-each select="mod:title"> + <dt> <xsl:value-of select="@lang" /> *************** *** 1199,1202 **** --- 1233,1237 ---- </dl> </xsl:if> + <xsl:if test="count(mod:title) = 1"><p lang="{@lang}" style='white-space:pre;'><xsl:value-of select="mod:title" /></p></xsl:if> <span class="corners-bottom"><span></span></span> *************** *** 1207,1219 **** <div class="inner"> <span class="corners-top"><span></span></span> <xsl:if test="count(mod:description) > 1"> <dl id="description"> <xsl:for-each select="mod:description"> <dt><xsl:value-of select="@lang" /></dt> ! <dd style='white-space:pre;' lang="{@lang}"><p> <xsl:call-template name="add-line-breaks"> <xsl:with-param name="string"> <xsl:value-of select="current()" /> </xsl:with-param> </xsl:call-template> </p> --- 1242,1256 ---- <div class="inner"> <span class="corners-top"><span></span></span> + <xsl:if test="count(mod:description) > 1"> <dl id="description"> <xsl:for-each select="mod:description"> <dt><xsl:value-of select="@lang" /></dt> ! <dd lang="{@lang}"><p> <xsl:call-template name="add-line-breaks"> <xsl:with-param name="string"> <xsl:value-of select="current()" /> </xsl:with-param> + </xsl:call-template> </p> *************** *** 1225,1228 **** --- 1262,1266 ---- <p lang="{@lang}" style='white-space:pre;'> <xsl:call-template name="add-line-breaks"> + <xsl:with-param name="string"> <xsl:value-of select="mod:description" /> *************** *** 1234,1237 **** --- 1272,1276 ---- </div> </dd> + <dt id="lang-aV">Version:</dt> <dd class="mod-about"> *************** *** 1242,1245 **** --- 1281,1285 ---- <xsl:call-template name="give-version"></xsl:call-template> </xsl:for-each> + </p> <span class="corners-bottom"><span></span></span> *************** *** 1251,1254 **** --- 1291,1295 ---- </dl> <xsl:for-each select="mod:author-group"> + <xsl:if test="count(mod:author) > 1"><h3 id="lang-aus">Authors</h3></xsl:if> <xsl:if test="count(mod:author) = 1"><h3 id="lang-au">Author</h3></xsl:if> *************** *** 1258,1261 **** --- 1299,1303 ---- <xsl:for-each select="../mod:action-group"> <xsl:call-template name="give-files-to-edit"></xsl:call-template> + </xsl:for-each> <h3 id="lang-icf">Included Files</h3> *************** *** 1266,1269 **** --- 1308,1312 ---- <xsl:call-template name="give-files-included"></xsl:call-template> </xsl:for-each> + <hr /> <div id="modDisclaimer"> *************** *** 1274,1277 **** --- 1317,1321 ---- <span></span> </span> + <p> <span id="lang-dclt">For security purposes, please check: <a href="http://www.phpbb.com/mods/">http://www.phpbb.com/mods/</a> for the latest version of this MOD. Downloading this MOD from other sites could cause malicious code to enter into your phpBB Forum. As such, phpBB will not offer support for MODs not offered in our MODs database, located at: <a href="http://www.phpbb.com/mods/">http://www.phpbb.com/mods/</a></span> *************** *** 1280,1283 **** --- 1324,1328 ---- <span></span> </span> + </div> </div> *************** *** 1288,1291 **** --- 1333,1337 ---- <span class="corners-top"> <span></span> + </span> <xsl:if test="count(mod:author-notes) > 1"> *************** *** 1297,1300 **** --- 1343,1347 ---- <dd lang="{@lang}"> <xsl:call-template name="add-line-breaks"> + <xsl:with-param name="string"> <xsl:value-of select="current()" /> *************** *** 1306,1309 **** --- 1353,1357 ---- </xsl:if> <xsl:if test="count(mod:author-notes) = 1"> + <xsl:call-template name="add-line-breaks"> <xsl:with-param name="string"> *************** *** 1315,1318 **** --- 1363,1367 ---- <span></span> </span> + </div> </div> *************** *** 1323,1326 **** --- 1372,1376 ---- <h3 id="lang-lic">License</h3> <div class="mod-about"> + <div class="inner"> <span class="corners-top"><span></span></span> *************** *** 1331,1334 **** --- 1381,1385 ---- <span class="corners-bottom"><span></span></span> </div> + </div> <h3 id="lang-ont">Other Notes</h3> *************** *** 1339,1347 **** </span> <p><span id="lang-ontt1">Before adding this MOD to your forum, you should back up all files related to this MOD</span></p> <p> <span id="lang-ontt2">This MOD was designed for phpBB</span><xsl:value-of select="mod:installation/mod:target-version/mod:target-primary" /><span id="lang-ontt3"> and may not function as stated on other phpBB versions. MODs for phpBB3.0 will <strong>not</strong> work on phpBB2.0 and vice versa.</span> </p> ! <xsl:if test="./mod:mod-version/mod:minor mod 2 != 0 or ./mod:mod-version/mod:major = 0"> <p> <strong class="red"> <span id="lang-onttq">This MOD is development quality. It is not recommended that you install it on a live forum.</span> --- 1390,1401 ---- </span> <p><span id="lang-ontt1">Before adding this MOD to your forum, you should back up all files related to this MOD</span></p> + <p> <span id="lang-ontt2">This MOD was designed for phpBB</span><xsl:value-of select="mod:installation/mod:target-version/mod:target-primary" /><span id="lang-ontt3"> and may not function as stated on other phpBB versions. MODs for phpBB3.0 will <strong>not</strong> work on phpBB2.0 and vice versa.</span> </p> ! <xsl:for-each select="./mod:mod-version"> ! <xsl:if test="mod:minor mod 2 != 0 or mod:major = 0 or (@stage != '' and @stage != 'stable')"> <p> + <strong class="red"> <span id="lang-onttq">This MOD is development quality. It is not recommended that you install it on a live forum.</span> *************** *** 1349,1354 **** --- 1403,1410 ---- </p> </xsl:if> + </xsl:for-each> <span class="corners-bottom"> <span></span> + </span> </div> *************** *** 1360,1363 **** --- 1416,1420 ---- <div class="mod-about"> <div class="inner"> + <span class="corners-top"> <span></span> *************** *** 1369,1372 **** --- 1426,1430 ---- <span></span> </span> + </div> </div> *************** *** 1378,1381 **** --- 1436,1440 ---- <div class="mod-about"> <div class="inner"> + <span class="corners-top"><span></span></span> <xsl:call-template name="give-author"></xsl:call-template> *************** *** 1387,1390 **** --- 1446,1450 ---- <xsl:template name="give-author"> <dl class="author-info"> + <dt id="lang-a-un[{generate-id()}]">Username:</dt> <dd> *************** *** 1395,1398 **** --- 1455,1459 ---- <xsl:if test="mod:email != 'N/A' and mod:email != 'n/a' and mod:email != ''"> <dt id="lang-a-e[{generate-id()}]">Email:</dt> + <dd> <a href="mailto:{mod:email}"> *************** *** 1403,1406 **** --- 1464,1468 ---- <dt id="lang-a-n[{generate-id()}]">Name:</dt> <dd> + <xsl:value-of select="mod:realname" /> </dd> *************** *** 1411,1414 **** --- 1473,1477 ---- <xsl:value-of select="mod:homepage" /> </a> + </dd> </xsl:if> *************** *** 1416,1420 **** <br /> </xsl:template> ! <xsl:template name="give-version"><xsl:value-of select="concat(mod:major, '.', mod:minor, '.', mod:revision, mod:release)" /></xsl:template> <xsl:template name="give-installation"> <dt id="lang-il">Installation Level:</dt> --- 1479,1500 ---- <br /> </xsl:template> ! <xsl:template name="give-version"> ! <xsl:choose> ! <xsl:when test="@stage = 'beta'"> ! <xsl:value-of select="concat(mod:major, '.', mod:minor, ' ', 'Beta ', mod:revision, mod:release)" /> ! ! </xsl:when> ! <xsl:when test="@stage = 'alpha'"> ! <xsl:value-of select="concat(mod:major, '.', mod:minor, ' ', 'Alpha ', mod:revision, mod:release)" /> ! </xsl:when> ! <xsl:when test="@stage = 'release-candidate'"> ! <xsl:value-of select="concat(mod:major, '.', mod:minor, ' ', 'RC', mod:revision, mod:release)" /> ! </xsl:when> ! <xsl:otherwise> ! <xsl:value-of select="concat(mod:major, '.', mod:minor, '.', mod:revision, mod:release)" /> ! ! </xsl:otherwise> ! </xsl:choose> ! </xsl:template> <xsl:template name="give-installation"> <dt id="lang-il">Installation Level:</dt> *************** *** 1422,1432 **** <div class="inner"> <span class="corners-top"><span></span></span> <xsl:if test="mod:level='easy'"><p id="lang-ile">Easy</p></xsl:if> <xsl:if test="mod:level='intermediate'"><p id="lang-ili">Intermediate</p></xsl:if> ! <xsl:if test="mod:level='hard'"><p id="lang-ilh">Hard</p></xsl:if> <span class="corners-bottom"><span></span></span> </div> </dd> <dt id="lang-it">Installation Time:</dt> <dd class="mod-about"> <div class="inner"> --- 1502,1514 ---- <div class="inner"> <span class="corners-top"><span></span></span> + <xsl:if test="mod:level='easy'"><p id="lang-ile">Easy</p></xsl:if> <xsl:if test="mod:level='intermediate'"><p id="lang-ili">Intermediate</p></xsl:if> ! <xsl:if test="mod:level='advanced'"><p id="lang-ila">Advanced</p></xsl:if> <span class="corners-bottom"><span></span></span> </div> </dd> <dt id="lang-it">Installation Time:</dt> + <dd class="mod-about"> <div class="inner"> *************** *** 1436,1439 **** --- 1518,1522 ---- <span></span> </span> + </div> </dd> *************** *** 1444,1447 **** --- 1527,1531 ---- <dl> <xsl:for-each select="mod:entry"> + <xsl:call-template name="give-history-entry"></xsl:call-template> </xsl:for-each> *************** *** 1453,1456 **** --- 1537,1541 ---- <div class="inner"><span class="corners-top"><span></span></span> <dt><p><strong><xsl:value-of select="substring(mod:date,1,10)" /><span id="lang-mhe-v[{generate-id()}]"> - Version </span><xsl:for-each select="mod:rev-version"><xsl:call-template name="give-version"></xsl:call-template></xsl:for-each></strong></p></dt> + <dd> <xsl:if test="count(mod:changelog) > 1"> *************** *** 1462,1465 **** --- 1547,1551 ---- </xsl:if> <xsl:if test="count(mod:changelog) = 1"> + <xsl:for-each select="mod:changelog"> <xsl:call-template name="give-history-entry-changelog-single"></xsl:call-template> *************** *** 1471,1474 **** --- 1557,1561 ---- </xsl:template> <xsl:template name="give-history-entry-changelog"> + <dt><xsl:value-of select="@lang" /></dt> <dd lang="{@lang}"> *************** *** 1480,1483 **** --- 1567,1571 ---- </dd> </xsl:template> + <xsl:template name="give-history-entry-changelog-single"> <ul> *************** *** 1489,1492 **** --- 1577,1581 ---- <xsl:template name="give-files-to-edit"> <ul> + <xsl:for-each select="mod:open"> <xsl:call-template name="give-file"></xsl:call-template> *************** *** 1498,1501 **** --- 1587,1591 ---- <xsl:for-each select="mod:copy"> <xsl:call-template name="give-file-copy"></xsl:call-template> + </xsl:for-each> </ul> *************** *** 1506,1509 **** --- 1596,1600 ---- <xsl:if test="position()!=last()">,</xsl:if> </li> + </xsl:template> <xsl:template name="give-file-copy"> *************** *** 1514,1517 **** --- 1605,1609 ---- </li> </xsl:for-each> + </xsl:template> <xsl:template name="give-actions"> *************** *** 1522,1525 **** --- 1614,1618 ---- <div class="inner"> <span class="corners-top"><span></span></span> + <xsl:for-each select="mod:sql"> <xsl:call-template name="give-sql"></xsl:call-template> *************** *** 1532,1535 **** --- 1625,1629 ---- <xsl:call-template name="give-filez"></xsl:call-template> </xsl:for-each> + </xsl:if> <h2 id="lang-edts">Edits</h2> *************** *** 1538,1541 **** --- 1632,1636 ---- <p> <span id="lang-edtt">Use your keyboard to navigate the code boxes. You may also hit '<em>s</em>' on your keyboard to go to the first code box.</span> + </p> <div class="mod-about" id="edits"> *************** *** 1547,1550 **** --- 1642,1646 ---- <span class="corners-bottom"><span></span></span> </div> + </div> <xsl:call-template name="give-manual"></xsl:call-template> *************** *** 1555,1558 **** --- 1651,1655 ---- <div class="codeHead"><span id="lang-cde-c[{generate-id()}]">Code:</span><a href="#" onclick="selectCode(this); return false;"><span id="lang-cde-sa[{generate-id()}]">Select All</span></a></div> <div class="codePre"><pre id="{generate-id()}"><xsl:value-of select="current()" /></pre></div> + </div> </div> *************** *** 1564,1567 **** --- 1661,1665 ---- <span class="corners-top"><span></span></span> <h2 id="lang-diy">DIY Instructions</h2> + <p><span id="lang-diyt">These are manual instructions that cannot be performed automatically. You should follow these instructions carefully.</span></p> <div id="diy"> *************** *** 1571,1574 **** --- 1669,1673 ---- <div class="codebox"> <div class="codeHead"><span id="lang-cde-c[{generate-id()}]">Code:</span><a href="#" onclick="selectCode(this); return false;"><span id="lang-cde-sa[{generate-id()}]">Select All</span></a></div> + <div class="codePre"><pre id="{generate-id()}"><xsl:value-of select="current()" /></pre></div> </div> *************** *** 1580,1583 **** --- 1679,1683 ---- <span></span> </span> + </div> </div> *************** *** 1589,1592 **** --- 1689,1693 ---- <xsl:for-each select="mod:edit"> <div class="mod-edit"> + <xsl:if test="count(mod:comment) > 0"> <div class="mod-comment"> *************** *** 1597,1600 **** --- 1698,1702 ---- <span><xsl:if test="count(../mod:comment) > 1"><xsl:value-of select="@lang" /></xsl:if></span> </dt> + <dd lang="{@lang}"><xsl:value-of select="current()" /> </dd> *************** *** 1606,1609 **** --- 1708,1712 ---- <xsl:if test="name() = 'find'"> <h4 id="lang-fnd[{generate-id()}]">Find</h4> + <p><span id="lang-fndt[{generate-id()}]"><strong>Tip:</strong> This may be a partial find and not the whole line.</span> <xsl:if test="@type = 'regex'"> *************** *** 1614,1617 **** --- 1717,1721 ---- <div class="codebox"> <div class="codeHead"><span id="lang-cde-c[{generate-id()}]">Code:</span><a href="#" onclick="selectCode(this); return false;"><span id="lang-cde-sa[{generate-id()}]">Select All</span></a></div> + <div class="codePre"><pre id="{generate-id()}"><xsl:value-of select="current()" /></pre></div> </div> *************** *** 1621,1624 **** --- 1725,1729 ---- <h4 id="lang-aft[{generate-id()}]">Add after</h4> <p><span id="lang-aftt[{generate-id()}]"><strong>Tip:</strong> Add these lines on a new blank line after the preceding line(s) to find.</span></p> + </xsl:if> <xsl:if test="@type = 'before-add'"> *************** *** 1628,1631 **** --- 1733,1737 ---- </p> </xsl:if> + <xsl:if test="@type = 'replace-with'"> <h4 id="lang-rplw[{generate-id()}]">Replace With</h4> *************** *** 1634,1637 **** --- 1740,1744 ---- <xsl:if test="@type = 'operation'"> <h4 id="lang-inc[{generate-id()}]">Increment</h4> + <p> <span id="lang-inct[{generate-id()}]"><strong>Tip:</strong> This allows you to alter integers. For help on what each operator means, click here.</span> *************** *** 1640,1643 **** --- 1747,1751 ---- <div class="codebox"> <div class="codeHead"><span id="lang-cde-c[{generate-id()}]">Code:</span><a href="#" onclick="selectCode(this); return false;"><span id="lang-cde-sa[{generate-id()}]">Select All</span></a></div> + <div class="codePre"><pre id="{generate-id()}"><xsl:value-of select="current()" /></pre></div> </div> *************** *** 1648,1651 **** --- 1756,1760 ---- <xsl:if test="name() = 'inline-find'"> <h5 id="lang-ifnd[{generate-id()}]">In-line Find</h5> + <p> <span id="lang-ifndt[{generate-id()}]"><strong>Tip:</strong> This is a partial match of a line for in-line operations.</span> *************** *** 1656,1659 **** --- 1765,1769 ---- </p> <div class="codebox"> + <div class="codeHead"><span id="lang-cde-c[{generate-id()}]">Code:</span><a href="#" onclick="selectCode(this); return false;"><span id="lang-cde-sa[{generate-id()}]">Select All</span></a></div> <div class="codePre"><pre id="{generate-id()}"><xsl:value-of select="current()" /></pre></div> *************** *** 1663,1666 **** --- 1773,1777 ---- <xsl:if test="@type = 'after-add'"> <h5 id="lang-iaft[{generate-id()}]">In-line Add after</h5> + <p> <span id="lang-iaftt[{generate-id()}]"></span> *************** *** 1671,1674 **** --- 1782,1786 ---- <p> <span id="lang-ibeft[{generate-id()}]"></span> + </p> </xsl:if> *************** *** 1679,1682 **** --- 1791,1795 ---- </p> </xsl:if> + <xsl:if test="@type = 'operation'"> <h5 id="lang-iinc[{generate-id()}]">In-line Increment</h5> *************** *** 1686,1689 **** --- 1799,1803 ---- </xsl:if> <div class="codebox"> + <div class="codeHead"><span id="lang-cde-c[{generate-id()}]">Code:</span><a href="#" onclick="selectCode(this); return false;"><span id="lang-cde-sa[{generate-id()}]">Select All</span></a></div> <div class="codePre"><pre id="{generate-id()}"><xsl:value-of select="current()" /></pre></div> *************** *** 1693,1696 **** --- 1807,1811 ---- <dl id="comment[{generate-id()}]"> <dt><span id="lang-cm-cmt[{generate-id()}]">Comments</span> <span><xsl:value-of select="@lang" /></span></dt> + <dd lang="{@lang}"><xsl:value-of select="current()" /></dd> </dl> *************** *** 1702,1705 **** --- 1817,1821 ---- </div> </xsl:for-each> + </div> </xsl:template> *************** *** 1710,1713 **** --- 1826,1830 ---- <li> <dl> + <dt><span id="lang-c-copy[{generate-id()}]">Copy:</span> <xsl:value-of select="@from" /></dt> <dd><span id="lang-c-to[{generate-id()}]">To:</span> <xsl:value-of select="@to" /></dd> *************** *** 1718,1721 **** --- 1835,1839 ---- </xsl:template> <!-- add-line-breaks borrowed from http://www.stylusstudio.com/xsllist/200103/post40180.html --> + <xsl:template name="add-line-breaks"> <xsl:param name="string" select="." /> *************** *** 1727,1730 **** --- 1845,1849 ---- <xsl:with-param name="string" select="substring-after($string, '
')" /> </xsl:call-template> + </xsl:when> <xsl:otherwise> Index: install.xml =================================================================== RCS file: /cvsroot/paulscriptsmods/ajax_shout/install.xml,v retrieving revision 1.19.2.21 retrieving revision 1.19.2.22 diff -C2 -d -r1.19.2.21 -r1.19.2.22 *** install.xml 4 Aug 2007 14:16:07 -0000 1.19.2.21 --- install.xml 4 Aug 2007 14:29:04 -0000 1.19.2.22 *************** *** 3,7 **** <!--For security purposes, please check: http://www.phpbb.com/mods/ for the latest version of this MOD. Although MODs are checked before being allowed in the MODs Database there is no guarantee that there are no security problems within the MOD. No support will be given for MODs not found within the MODs Database which can be found at http://www.phpbb.com/mods/--> <!-- $Id --> ! <mod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.phpbb.com/mods/xml/modx-1.0.xsd"> <header> <license>http://opensource.org/licenses/gpl-license.php GNU General Public License v2</license> --- 3,7 ---- <!--For security purposes, please check: http://www.phpbb.com/mods/ for the latest version of this MOD. Although MODs are checked before being allowed in the MODs Database there is no guarantee that there are no security problems within the MOD. No support will be given for MODs not found within the MODs Database which can be found at http://www.phpbb.com/mods/--> <!-- $Id --> ! <mod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.phpbb.com/mods/xml/modx-1.0.1.xsd"> <header> <license>http://opensource.org/licenses/gpl-license.php GNU General Public License v2</license> |