[otrs-cvs] CVS: doc-admin/de themes.xml,NONE,1.1

cvs-log at otrs.org cvs-log at otrs.org
Wed Jun 21 22:23:50 CEST 2006


Update of /home/cvs/doc-admin/de
In directory lancelot:/tmp/cvs-serv23077

Added Files:
	themes.xml 
Log Message:
A chapter about adding own themes - initial insert


--- NEW FILE ---
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<!-- $Id: themes.xml,v 1.1 2006/06/21 19:23:48 cs Exp $ -->

<chapter id="themes">
<title>Erstellung eigener Themes</title>

<para>
F?r OTRS k?nnen verschiedene Themes angelegt werden, also verschiedene
Layouts zur Gestaltung der Web-Oberfl?che. Dazu m?ssen Sie die vorhandenen
Templates ?ndern und Ihren W?nschen entsprechend anpassen.
</para>

<para>
Mehr Informationen ?ber die Syntax und den Aufbau von Templates finden Sie
im Entwickler-Handbuch auf

<ulink url="http://doc.otrs.org">
<citetitle>http://doc.otrs.org</citetitle>
</ulink>

innerhalb des Kapitels zu den

<ulink url="http://doc.otrs.org/developer/2.0/en/html/c494.html">
<citetitle>Templates</citetitle>
</ulink>

.
</para>

<para>
Um ein neues Theme namens "Company" anzulegen, gehen sie bitte nach
folgendem Schema vor:
</para>

<para>
<orderedlist numeration="arabic">
    <listitem>
    <para>
    Kopieren Sie das Verzeichnis
    <filename>Kernel/Output/HTML/Standard</filename> nach
    <filename>Kernel/Output/HTML/Company</filename>.
    </para>
</listitem>
<listitem>
    <para>
    Passen Sie die Dateien im Verzeichnis
    <filename>Kernel/Output/HTML/Company</filename> Ihren W?nschen
    entsprechend an.
    </para>
</listitem>
<listitem>
    <para>
    Um das neue Theme OTRS bekannt zu machen, m?ssen Sie die Datenbank
    h?ndisch ?ndern. Gehen Sie hier zu mit MySQL folgenderma?en vor:
    </para>

    <para>
    <screen>
linux:~# mysql -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 26 to server version: 5.0.22-Debian_2-log

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql&gt; use otrs;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql&gt; INSERT INTO theme
    -&gt;     (theme, valid_id, create_time, create_by, change_time, change_by)
    -&gt;     VALUES
    -&gt;     ('Company', 1, current_timestamp, 1, current_timestamp, 1);
mysql&gt;
    </screen>
    </para>
</listitem>
</orderedlist>
</para>

<para>
Ab nun sollten sie das neue Theme nutzen und ?ber Ihre

<link linkend="user-preferences">
pers?nlichen Einstellungen
</link>

aktivieren k?nnen.
</para>

</chapter>




More information about the cvs-log mailing list