mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-04 02:55:26 +00:00
merge of '4a2acb99fffd2f82c148ae17571304c2d05b9fba'
and '5760290afb4664dbd9f35d35b065435e8de46131' Monotone-Parent: 4a2acb99fffd2f82c148ae17571304c2d05b9fba Monotone-Parent: 5760290afb4664dbd9f35d35b065435e8de46131 Monotone-Revision: 56f2ec58d7c4d13a4fd5d2b2ef3d23ebab1cbd4c Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2011-05-05T18:35:37 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -7,6 +7,9 @@
|
||||
|
||||
2011-05-03 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/UIxMailEditor.js (createAttachment): show
|
||||
the attachment name as the list entry's title.
|
||||
|
||||
* UI/WebServerResources/generic.js (onRowClick): in some cases
|
||||
under ID, the event is trigger on the dragging identifier
|
||||
and must be ignored.
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,10 +1,12 @@
|
||||
1.3-201104XX (1.3.7)
|
||||
1.3-20110503 (1.3.7)
|
||||
---------------------
|
||||
New Features
|
||||
- IMAP namespaces are now translated and the full name of the
|
||||
mailbox owner is extracted under "Other Users"
|
||||
- added the "authenticationFilter" parameter for SQL-based
|
||||
sources to limit who can authenticate to a local SOGo instance
|
||||
- added the "IMAPLoginFieldName" parameter in authentication sources to
|
||||
specify a different value for IMAP authentication
|
||||
- added support for resources like projectors, conference rooms
|
||||
and more which allows SOGo to avoid double-booking of them
|
||||
and also allows SOGo to automatically accept invitations for them
|
||||
@@ -14,6 +16,8 @@ Enhancements
|
||||
- the recipients selection works more like Thunderbird when
|
||||
composing emails
|
||||
- improved the documentation regarding groups in LDAP
|
||||
- minor improvements to the webmail module
|
||||
- minor improvements to the contacts web module
|
||||
|
||||
Bug Fixes
|
||||
- selection problems with Chrome under OS X in the webmail interface
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<var:string label:value="Attachments:" />
|
||||
<ul id="attachments">
|
||||
<var:foreach list="attachmentNames" item="attachmentName"
|
||||
><li><img rsrc:src="attachment.gif"
|
||||
><li var:title="attachmentName"><img rsrc:src="attachment.gif"
|
||||
/><var:string value="attachmentName"
|
||||
/></li></var:foreach>
|
||||
</ul>
|
||||
|
||||
@@ -251,6 +251,7 @@ function createAttachment(node, list) {
|
||||
var fileArray = filename.split(separator);
|
||||
var attachmentName = document.createTextNode(fileArray[fileArray.length-1]);
|
||||
attachment.appendChild(attachmentName);
|
||||
attachment.writeAttribute("title", fileArray[fileArray.length-1]);
|
||||
}
|
||||
|
||||
function clickedEditorSave() {
|
||||
|
||||
Reference in New Issue
Block a user