mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-11 05:19:43 +00:00
Monotone-Parent: 4f6055656f29743c9da3d3dcce84f449939717bf
Monotone-Revision: 60ad639c204e75de92c1111a09d2ecfe2cbd655b Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-07-11T17:53:09 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -17,13 +17,21 @@
|
||||
<var:string value="title"/>
|
||||
</title>
|
||||
|
||||
<meta name="templatename" content="UIXMailMainFrame.wox"/>
|
||||
<meta name="description" content="SOGo Web Interface"/>
|
||||
<meta name="author" content="SKYRIX Software AG"/>
|
||||
<meta name="robots" content="stop"/>
|
||||
|
||||
<script rsrc:src="generic.js"> <!-- space required --></script>
|
||||
<script rsrc:src="mailer.js" > <!-- space required --></script>
|
||||
|
||||
|
||||
<var:if condition="hasProductSpecificJavaScript">
|
||||
<script var:src="productJavaScriptURL"> <!-- space required --></script>
|
||||
</var:if>
|
||||
<var:if condition="hasPageSpecificJavaScript">
|
||||
<script var:src="pageJavaScriptURL"> <!-- space required --></script>
|
||||
</var:if>
|
||||
|
||||
<link type="text/css" rel="stylesheet" rsrc:href="uix.css"/>
|
||||
<link type="text/css" rel="stylesheet" rsrc:href="mailer.css"/>
|
||||
<link type="text/css" rel="stylesheet" rsrc:href="mailer-toolbar.css"/>
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
<var:string value="title"/>
|
||||
</title>
|
||||
|
||||
<meta name="templatename" content="UIXMailPanelFrame.wox"/>
|
||||
<meta name="description" content="SOGo Web Interface"/>
|
||||
<meta name="author" content="SKYRIX Software AG"/>
|
||||
<meta name="robots" content="stop"/>
|
||||
@@ -27,6 +28,13 @@
|
||||
/>
|
||||
<script rsrc:src="generic.js"> <!-- space required --></script>
|
||||
<script rsrc:src="mailer.js" > <!-- space required --></script>
|
||||
|
||||
<var:if condition="hasProductSpecificJavaScript">
|
||||
<script var:src="productJavaScriptURL"> <!-- space required --></script>
|
||||
</var:if>
|
||||
<var:if condition="hasPageSpecificJavaScript">
|
||||
<script var:src="pageJavaScriptURL"> <!-- space required --></script>
|
||||
</var:if>
|
||||
|
||||
<link type="text/css" rel="stylesheet" rsrc:href="uix.css" />
|
||||
<link type="text/css" rel="stylesheet" rsrc:href="mailer.css" />
|
||||
@@ -36,7 +44,7 @@
|
||||
<link href="mailto:info@skyrix.com" rev="made"/>
|
||||
</head>
|
||||
|
||||
<body style="background-color: #D4D0C8;">
|
||||
<body>
|
||||
<!--
|
||||
Note: the 'href' is required, otherwise an element-id will get created
|
||||
-->
|
||||
@@ -101,14 +109,10 @@
|
||||
</var:if>
|
||||
|
||||
<var:component className="UIxToolbar" />
|
||||
|
||||
<table border="0" width="100%" cellspacing="0" cellpadding="2">
|
||||
<tr class="vertframerow">
|
||||
<td width="100%" valign="top" class="vertframerow" colspan="2">
|
||||
<var:component-content/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="pageContent">
|
||||
<var:component-content/>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<var:string value="errorAlertJavaScript" const:escapeHTML="NO" />
|
||||
|
||||
@@ -9,6 +9,21 @@
|
||||
className="UIxMailPanelFrame"
|
||||
title="panelTitle"
|
||||
>
|
||||
|
||||
<div class="menu" id="addressMenu">
|
||||
<ul id="sourceList">
|
||||
<li id="add_to_addressbook"
|
||||
onmousedown="return false;"
|
||||
onclick="newContactFromEmail(this);"><var:string label:value="Add to Address Book..."/></li>
|
||||
<li id="compose_mailto"
|
||||
onmousedown="return false;"
|
||||
onclick="newEmailTo(this);"><var:string label:value="Compose Mail To"/></li>
|
||||
<li id="create_filter"
|
||||
onmousedown="return false;"
|
||||
onclick="onMenuEntryClick(this, event);"><var:string label:value="Create Filter From Message..."/></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- TODO: refactor address rendering into an own component(/element) -->
|
||||
|
||||
<!-- TODO: can we create own clientObject's for Kolab entities? Probably
|
||||
@@ -36,7 +51,7 @@
|
||||
<td class="mailer_fieldvalue">
|
||||
<var:foreach list="clientObject.fromEnvelopeAddresses"
|
||||
item="currentAddress">
|
||||
<a var:href="currentAddressLink">
|
||||
<a var:href="currentAddressLink" onclick="onMenuClick(this, event, 'addressMenu');" oncontextmenu="onMenuClick(this, event, 'addressMenu');" onmousedown="return false;">
|
||||
<var:string value="currentAddress"
|
||||
formatter="context.mailEnvelopeFullAddressFormatter" /></a>
|
||||
</var:foreach>
|
||||
@@ -59,7 +74,7 @@
|
||||
<td class="mailer_fieldvalue">
|
||||
<var:foreach list="clientObject.toEnvelopeAddresses"
|
||||
item="currentAddress">
|
||||
<a var:href="currentAddressLink">
|
||||
<a var:href="currentAddressLink" onclick="onMenuClick(this, event, 'addressMenu');" oncontextmenu="onMenuClick(this, event, 'addressMenu');" onmousedown="return false;">
|
||||
<var:string value="currentAddress"
|
||||
formatter="context.mailEnvelopeFullAddressFormatter" /></a>
|
||||
</var:foreach>
|
||||
@@ -71,7 +86,7 @@
|
||||
<td class="mailer_fieldvalue">
|
||||
<var:foreach list="clientObject.ccEnvelopeAddresses"
|
||||
item="currentAddress">
|
||||
<a var:href="currentAddressLink">
|
||||
<a var:href="currentAddressLink" onclick="onMenuClick(this, event, 'addressMenu');" oncontextmenu="onMenuClick(this, event, 'addressMenu');" onmousedown="return false;">
|
||||
<var:string value="currentAddress"
|
||||
formatter="context.mailEnvelopeFullAddressFormatter" /></a>
|
||||
<br /> <!-- TODO: better to use li+CSS -->
|
||||
|
||||
Reference in New Issue
Block a user