alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  
</TR> <TR> <TD WIDTH="10%">Vollständiger Name: <TD WIDTH="40%"> <TD WIDTH="10%">Passwort: <TD WIDTH="40%"> </TR> <TR> <TD>Sprache: <TD> <SELECT NAME="LANGUAGE"> <xsl:for-each select="/USERMODEL/STATEDATA/VAR[@name='language']"> <xsl:choose> <xsl:when test="@value = /USERMODEL/USERDATA/LOCALE"> <OPTION selected="selected"> </xsl:when> <xsl:otherwise> <OPTION> </xsl:otherwise> </xsl:choose> </xsl:for-each> </SELECT> </TD> <TD WIDTH="10%">Passwort (Wdh): <TD WIDTH="40%"> </TR> <TR> <TD>Aussehen: <TD COLSPAN="3"> <SELECT NAME="THEME"> <xsl:for-each select="/USERMODEL/STATEDATA/VAR[@name = $themeset]"> <xsl:choose> <xsl:when test="@value = /USERMODEL/USERDATA/THEME"> <OPTION selected="selected"> </xsl:when> <xsl:otherwise> <OPTION> </xsl:otherwise> </xsl:choose> </xsl:for-each> </SELECT> </TD> </TR> <TR> <TD COLSPAN="4" BGCOLOR="#aaaaaa" ALIGN="CENTER">Anzeigeeinstellungen für Briefkasten </TR> <TR> <TD>Nachrichten pro Seite <TD> <TD>Navigationsbalken Icongröße <TD> </TR> <TR> <TD>Verzierungen anzeigen <TD> <xsl:choose> <xsl:when test="/USERMODEL/USERDATA/BOOLVAR[@name='show fancy']/@value = 'yes'"> <INPUT TYPE="CHECKBOX" NAME="boolvar%show fancy" checked="checked"/> </xsl:when> <xsl:otherwise> <INPUT TYPE="CHECKBOX" NAME="boolvar%show fancy"/> </xsl:otherwise> </xsl:choose> </TD> <TD>Angehängte Bilder anzeigen <TD> <xsl:choose> <xsl:when test="/USERMODEL/USERDATA/BOOLVAR[@name='show images']/@value = 'yes'"> <INPUT TYPE="CHECKBOX" NAME="boolvar%show images" checked="checked"/> </xsl:when> <xsl:otherwise> <INPUT TYPE="CHECKBOX" NAME="boolvar%show images"/> </xsl:otherwise> </xsl:choose> </TD> </TR> <TR> <TD>Ordner automatisch leeren <TD> <xsl:choose> <xsl:when test="/USERMODEL/USERDATA/BOOLVAR[@name='autoexpunge']/@value = 'yes'"> <INPUT TYPE="CHECKBOX" NAME="boolvar%autoexpunge" checked="checked"/> </xsl:when> <xsl:otherwise> <INPUT TYPE="CHECKBOX" NAME="boolvar%autoexpunge"/> </xsl:otherwise> </xsl:choose> </TD> <TD>Schreibmodus auf Ordnern <TD> <xsl:choose> <xsl:when test="/USERMODEL/USERDATA/BOOLVAR[@name='set message flags']/@value = 'yes'"> <INPUT TYPE="CHECKBOX" NAME="boolvar%set message flags" checked="checked"/> </xsl:when> <xsl:otherwise> <INPUT TYPE="CHECKBOX" NAME="boolvar%set message flags"/> </xsl:otherwise> </xsl:choose> </TD> </TR> <TR> <TD>Zeilenumbruch (anzeigen und bearbeiten) <TD> <xsl:choose> <xsl:when test="/USERMODEL/USERDATA/BOOLVAR[@name='break lines']/@value = 'yes'"> <INPUT TYPE="CHECKBOX" NAME="boolvar%break lines" checked="checked"/> </xsl:when> <xsl:otherwise> <INPUT TYPE="CHECKBOX" NAME="boolvar%break lines"/> </xsl:otherwise> </xsl:choose> </TD> <TD>maximale Zeilenlänge <TD> </TR> <TR> <TD COLSPAN="4" BGCOLOR="#aaaaaa" ALIGN="CENTER">Bearbeiten von Nachrichten </TR> <TR> <TD>Gesendete speichern <TD> <xsl:choose> <xsl:when test="/USERMODEL/USERDATA/BOOLVAR[@name='save sent messages']/@value = 'yes'"> <INPUT TYPE="CHECKBOX" NAME="boolvar%save sent messages" checked="checked"/> </xsl:when> <xsl:otherwise> <INPUT TYPE="CHECKBOX" NAME="boolvar%save sent messages"/> </xsl:otherwise> </xsl:choose> </TD> <TD> in Ordner <TD> <SELECT NAME="SENTFOLDER"> <xsl:for-each select="/USERMODEL/MAILHOST_MODEL//FOLDER"> <xsl:choose> <xsl:when test="normalize-space(/USERMODEL/USERDATA/SENT_FOLDER) = @id"> <OPTION value="{@id}" selected="selected"> </xsl:when> <xsl:otherwise> <OPTION value="{@id}"> </xsl:otherwise> </xsl:choose> </xsl:for-each> </SELECT> </TD> </TR> <TR> <TD>Email Addresse: <TD COLSPAN="3"> </TR> <TR> <TD VALIGN="TOP">Unterschrift: <TD COLSPAN="3"> <TEXTAREA ROWS="5" COLS="79" NAME="SIGNATURE"> </TD> </TR> <TR> <TD COLSPAN="2" BGCOLOR="#aaaaaa"> <CENTER> <INPUT TYPE="submit" VALUE="Ändern"/> </CENTER> </TD> <TD COLSPAN="2" BGCOLOR="#aaaaaa"> <CENTER> <INPUT TYPE="reset" VALUE="Zurücksetzen"/> </CENTER> </TD> </TR> </TABLE> </FORM> </BODY> </HTML> </xsl:template> <xsl:template match="/USERMODEL/STATEDATA/VAR"> <xsl:value-of select="@value"/> </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.
-->

<!-- This template is part of the German translation -->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:output method="html" encoding="UTF-8"/>
  
    <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:variable name="themeset" select="/USERMODEL/STATEDATA/VAR[@name='themeset']/@value"/>

 
  <xsl:template match="/">
    
    <HTML>
      <HEAD>
        <TITLE>WebMail Mailbox für : Einstellungen
	<META CONTENT="AUTHOR" VALUE="Sebastian Schaffert"/>
      </HEAD>

      <BODY bgcolor="#ffffff">

	<FORM ACTION="{$base}/setup/submit?session-id={$session-id}" METHOD="POST">
	  <TABLE BGCOLOR="#dddddd" CELLSPACING="0" BORDER="0">
	    <TR>
	      <TD COLSPAN="2" VALIGN="CENTER">
		<IMG SRC="{$imgbase}/images/btn-setup.png"/>
	      </TD>
	      <TD COLSPAN="2" VALIGN="CENTER">
		<FONT SIZE="+2">JWebMail Einstellungen für  (Hilfe)
<EM>Benutzername
<EM>Kennung existiert seit </TD> </TR> <TR> <TD COLSPAN="4" BGCOLOR="#aaaaaa" ALIGN="CENTER">Allgemeine Einstellungen
... 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.