You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
2.7 KiB
96 lines
2.7 KiB
<?xml version="1.0" encoding="Windows-1251"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
|
|
<xsl:import href="elems\Main.xslt"/>
|
|
<xsl:template name="specific">
|
|
<table width="95%" align="center" cellpadding="1" cellspacing="1" class="tablesurround">
|
|
<tr>
|
|
<td>
|
|
<table cellpadding="0" cellspacing="1" width="100%" class="tableborders">
|
|
<tr class="tdheader">
|
|
<td align="left" width="15%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Ïîëüçîâàòåëü</xsl:text>
|
|
</a>
|
|
</td>
|
|
<td align="left" width="12%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Ñòàòóñ</xsl:text>
|
|
</a>
|
|
</td>
|
|
<td align="left" width="28%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Äîìàøíÿÿ ñòðàíèöà</xsl:text>
|
|
</a>
|
|
</td>
|
|
<td align="left" width="5%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Èòîãî ñîîáùåíèé</xsl:text>
|
|
</a>
|
|
</td>
|
|
<td align="left" width="12%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Íîìåð ICQ</xsl:text>
|
|
</a>
|
|
</td>
|
|
<td align="left" width="5%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Ðåéòèíã</xsl:text>
|
|
</a>
|
|
</td>
|
|
<td align="left" width="18%" nowrap="nowrap">
|
|
<a>
|
|
<xsl:text>Äàòà ðåãèñòðàöèè</xsl:text>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
<xsl:apply-templates select="users/user"/>
|
|
<tr class="tdheader">
|
|
<td colspan="7">
|
|
<table width="100%" cellspacing="1" cellpadding="3" border="0">
|
|
<tr>
|
|
<td>
|
|
<xsl:text>ñòðàíèöû:</xsl:text>
|
|
<xsl:apply-templates select="users/pageOuter" mode="withCurrent">
|
|
<xsl:with-param name="baseLink">/UserList/<xsl:value-of select="currentLocation/thread/id"/>/</xsl:with-param>
|
|
</xsl:apply-templates>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="users/user">
|
|
<tr class="lighttable">
|
|
<td>
|
|
<a>
|
|
<xsl:attribute name="href">/User/<xsl:value-of select="id"/>/</xsl:attribute>
|
|
<xsl:value-of select="name"/>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<xsl:text>Ïîëüçîâàòåëü</xsl:text>
|
|
</td>
|
|
<td>
|
|
<xsl:text>Not implemented</xsl:text>
|
|
</td>
|
|
<td>
|
|
<xsl:value-of select="totalPosts"/>
|
|
</td>
|
|
<td>
|
|
<xsl:text>Not implemented</xsl:text>
|
|
</td>
|
|
<td>
|
|
<xsl:text>Not implemented</xsl:text>
|
|
</td>
|
|
<td>
|
|
<xsl:apply-templates select="regDate" mode="dateTime"/>
|
|
</td>
|
|
</tr>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet> |