alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  
<TD class="testo"> <TD class="testo">有附加檔案的信件 <TD class="testo"> <TD class="testo">新信件 <TD class="testo"> <TD class="testo">已閱讀的信件 <TD class="testo"> <TD class="testo">已回信的信件 <TD class="testo"> <TD class="testo">已刪除的信件 </TR> </TABLE> </TD> </TR> <xsl:call-template name="navigation"/> </xsl:template> <xsl:template match="MESSAGELIST"> <TR> <TD width="5%" height="22" class="testoNero" align="center" bgcolor="#A6B1C0">&nbsp; <TD width="5%" class="testoGrande" bgcolor="#A6B1C0">編號 <TD width="7%" class="testoGrande" bgcolor="#A6B1C0">狀態 <TD width="28%" class="testoGrande" bgcolor="#A6B1C0">主題 <TD width="25%" class="testoGrande" bgcolor="#A6B1C0">寄件人 <TD width="25%" class="testoGrande" bgcolor="#A6B1C0">日期 <TD width="5%" class="testoGrande" bgcolor="#A6B1C0">大小 </TR> <xsl:for-each select="MESSAGE[number(@msgnr) >= number(/USERMODEL/CURRENT[@type='folder']/@first_msg) and number(@msgnr) <= number(/USERMODEL/CURRENT[@type='folder']/@last_msg)]"> <xsl:sort select="@msgnr" data-type="number" order="descending"/> <!-- <xsl:variable name="bgcolor" select="##E2E6F0"/> --> <xsl:choose> <xsl:when test="@msgnr mod 2 = 1"> <TR bgcolor="#E2E6F0"> <xsl:call-template name="headerrow"/> </TR> </xsl:when> <xsl:otherwise> <TR bgcolor="#D1D7E7"> <xsl:call-template name="headerrow"/> </TR> </xsl:otherwise> </xsl:choose> </xsl:for-each> <TR> <TD colspan="4" width="45%" align="center" class="testoNero" bgcolor="#D1D7E7"> <SELECT NAME="MARK" class="testoNero"> <OPTION VALUE="MARK">設定 <OPTION VALUE="UNMARK">移除 </SELECT> 信件旗標 <SELECT NAME="MESSAGE FLAG" class="testoNero"> <OPTION VALUE="DELETED">已刪除 <OPTION VALUE="SEEN">已閱讀 <OPTION VALUE="ANSWERED">已回信 <OPTION VALUE="RECENT">新信件 <OPTION VALUE="DRAFT">草稿 </SELECT> <INPUT TYPE="SUBMIT" NAME="flagmsgs" VALUE="執行!" class="testoNero"/> </TD> <TD colspan="3" width="55%" align="center" class="testoNero" bgcolor="#D1D7E7"> <SELECT NAME="COPYMOVE" class="testoNero"> <OPTION VALUE="COPY">拷貝 <OPTION VALUE="MOVE">移動 </SELECT> 信件至收信匣 <SELECT NAME="TO" class="testoNero"> <xsl:for-each select="/USERMODEL/MAILHOST_MODEL//FOLDER"> <OPTION value="{@id}"> </xsl:for-each> </SELECT> <INPUT TYPE="SUBMIT" NAME="copymovemsgs" VALUE="執行!" class="testoNero"/> </TD> </TR> </xsl:template> <xsl:template name="navigation"> <TR> <TD colspan="7" width="100%" height="22" class="testoNero" align="center"> <TABLE width="100%" border="0" cellspacing="0" cellpadding="0"> <TR> <xsl:choose> <xsl:when test="number(/USERMODEL/CURRENT[@type='folder']/@first_msg) > number(1)"> <TD class="testoBianco" width="3%" bgcolor="#697791" valign="middle" align="center"> <A HREF="{$base}/folder/list?session-id={$session-id}&folder-id={@id}&part={/USERMODEL/CURRENT[@type='folder']/@list_part + 1}"> <IMG SRC="{$imgbase}/images/back.gif" BORDER="0"/> </TD> <TD class="testoBianco" width="47%" bgcolor="#697791" valign="middle"> Previous messages </TD> </xsl:when> <xsl:otherwise> <TD class="testoBianco" width="3%" bgcolor="#697791" valign="middle" align="center" height="22">   </TD> <TD class="testoBianco" width="47%" bgcolor="#697791" valign="middle" height="22">   </TD> </xsl:otherwise> </xsl:choose> <xsl:choose> <xsl:when test="number(/USERMODEL/CURRENT[@type='folder']/@list_part) > number(1)"> <TD class="testoBianco" width="47%" bgcolor="#697791" valign="middle" align="right"> <A HREF="{$base}/folder/list?session-id={$session-id}&folder-id={@id}&part={/USERMODEL/CURRENT[@type='folder']/@list_part - 1}"> Next messages </TD> <TD class="testoBianco" width="3%" bgcolor="#697791" valign="middle" align="center"> <A HREF="{$base}/folder/list?session-id={$session-id}&folder-id={@id}&part={/USERMODEL/CURRENT[@type='folder']/@list_part - 1}"> <IMG SRC="{$imgbase}/images/next.gif" BORDER="0"/> </xsl:when> <xsl:otherwise> <TD class="testoBianco" width="47%" bgcolor="#697791" valign="middle" align="right" height="22">   </TD> <TD class="testoBianco" width="3%" bgcolor="#697791" valign="middle" align="center">   </TD> </xsl:otherwise> </xsl:choose> </TR> </TABLE> </TD> </TR> </xsl:template> <xsl:template name="headerrow"> <TD width="5%" align="center" class="testoNero"> <TD width="5%" class="testoNero"> <TD width="7%"> <xsl:if test="@attachment='true'"> <IMG SRC="{$imgbase}/images/attach.gif" BORDER="0" hspace="2"/> </xsl:if> <xsl:if test="@recent='true'"> <IMG SRC="{$imgbase}/images/new.gif" BORDER="0" hspace="2"/> </xsl:if> <xsl:if test="@seen='true'"> <IMG SRC="{$imgbase}/images/seen.gif" BORDER="0" hspace="2"/> </xsl:if> <xsl:if test="@answered='true'"> <IMG SRC="{$imgbase}/images/reply.gif" BORDER="0" hspace="2"/> </xsl:if> <xsl:if test="@deleted='true'"> <IMG SRC="{$imgbase}/images/delete.gif" BORDER="0" hspace="2"/> </xsl:if> </TD> <TD width="28%" class="testoNero"> <xsl:choose> <xsl:when test="@seen='true'"> <A HREF="{$base}/folder/showmsg?session-id={$session-id}&folder-id={/USERMODEL/CURRENT[@type='folder']/@id}&message-nr={@msgnr}" class="seen"> </xsl:when> <xsl:otherwise> <A HREF="{$base}/folder/showmsg?session-id={$session-id}&folder-id={/USERMODEL/CURRENT[@type='folder']/@id}&message-nr={@msgnr}" class="unseen"> <xsl:apply-templates select="HEADER/SUBJECT"/> </A> </xsl:otherwise> </xsl:choose> </TD> <TD width="25%" class="testoNero"> <xsl:apply-templates select="HEADER/FROM"/> </TD> <TD width="25%" class="testoNero"> <xsl:apply-templates select="HEADER/DATE"/> </TD> <TD width="5%" class="testoNero"> <xsl:value-of select="@size"/> </TD> </xsl:template> <xsl:template match="DATE"> <xsl:value-of select="."/> </xsl:template> <xsl:template match="SUBJECT"> <xsl:value-of select="."/> </xsl:template> <xsl:template match="FROM"> <xsl:choose> <xsl:when test="contains(.,'<')"> <xsl:value-of select="substring-before(.,'<')"/>
<SPAN class="bold">EMail: </xsl:when> <xsl:otherwise> <BR/> <SPAN class="bold">EMail: </xsl:otherwise> </xsl:choose> </xsl:template> </xsl:stylesheet>

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

<?xml version="1.0" encoding="UTF-8"?>
<!--
 * Copyright (C) 2000 Sebastian Schaffert
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:output method="html" indent="yes"/>
  
    <xsl:variable name="imgbase" select="/USERMODEL/STATEDATA/VAR[@name='img base uri']/@value"/>
    <xsl:variable name="base" select="/USERMODEL/STATEDATA/VAR[@name='base uri']/@value"/>
    <xsl:variable name="session-id" select="/USERMODEL/STATEDATA/VAR[@name='session id']/@value"/>

    <xsl:template match="/">

    <HTML>
      <HEAD>
        <TITLE>  的 WebMail 信箱:信件清單(收信匣 )
	<META CONTENT="AUTHOR" VALUE="Sebastian Schaffert"/>
	<link rel="stylesheet" href="{$base}/passthrough/webmail.css"/>
      </HEAD>
      
      <BODY bgcolor="#B5C1CF" topmargin="5" leftmargin="0" marginwidth="0" marginheight="5">
        <TABLE width="100%" border="0" cellspacing="2" cellpadding="2">
	<xsl:variable name="current" select="/USERMODEL/CURRENT[@type='folder']/@id"/>
            <FORM ACTION="{$base}/folder/list?flag=1&session-id={$session-id}&folder-id={$current}&part={/USERMODEL/CURRENT[@type='folder']/@list_part}" METHOD="POST">
	<xsl:apply-templates select="/USERMODEL/MAILHOST_MODEL//FOLDER[@id=$current]"/>
		   </FORM>
		</TABLE>
      </BODY>
    </HTML>
  </xsl:template>


  <xsl:template match="FOLDER">
    <TR>
      <TD width="100%" colspan="7" height="22" class="testoNero">    
      顯示信件 <xsl:value-of select="/USERMODEL/CURRENT[@type='folder']/@first_msg"/> 
      至 <xsl:value-of select="/USERMODEL/CURRENT[@type='folder']/@last_msg"/> 
      ,信箱是: <xsl:value-of select="@name"/> (求救).
     </TD>
    </TR>
    <xsl:call-template name="navigation"/>

    <xsl:apply-templates select="MESSAGELIST"/>

    <TR>
      <TD width="100%" colspan="7" align="center" class="testoNero" bgcolor="#A6B1C0">
	<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
	  <TR>
	    <TD class="testo">信件旗號:
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.