Closed
Bug 446558
Opened 15 years ago
Closed 15 years ago
Show tooltips in summary dialog
Categories
(Calendar :: Calendar Frontend, defect)
Calendar
Calendar Frontend
Tracking
(Not tracked)
VERIFIED
FIXED
0.9
People
(Reporter: Fallen, Assigned: Fallen)
Details
Attachments
(1 file, 1 obsolete file)
8.17 KB,
patch
|
Fallen
:
review+
Fallen
:
ui-review+
|
Details | Diff | Splinter Review |
The current attendee/organizer fields show only the name if it is specified by the server. This patch adds a tooltip with name and email and also fixes the focus rectangle to not extend over the whole row.
Attachment #330733 -
Flags: ui-review?(christian.jansen)
Attachment #330733 -
Flags: review?(Berend.Cornelius)
Comment 1•15 years ago
|
||
Comment on attachment 330733 [details] [diff] [review] Fix - v1 Patch works fine. I noticed already that there is a lot of common logic of the task view and the calendar-summary-dialog and therefor I decided to apply all my summary dialog fixes also to the task-view (see Bug 396819 β Event Summary Dialog doesn't show important information to user). I think this should be done in this case too. As you told me this patch is a by-product of another patch and therefor I think it is fine for the time being. >+ if (organizer && organizer.id) { >+ var email = organizer.id; >+ var re = new RegExp("^mailto:(.*)", "i"); >+ var matches = re.exec(email); >+ if (matches) { >+ email = matches[1]; >+ } We have this logic also in many places in our project. I think we should some day think about consolidating this, too.
Attachment #330733 -
Flags: review?(Berend.Cornelius) → review+
Updated•15 years ago
|
Attachment #330733 -
Flags: ui-review?(christian.jansen) → ui-review+
Comment 2•15 years ago
|
||
ui=christian
Assignee | ||
Comment 3•15 years ago
|
||
calAttendee has a toString() method that takes care of composing the email string, I've used that. I also tried to create a binding that works for both the organizer label and the listitem labels, but that failed due to other XUL issues. There is a XUL issue with this patch (and v1) too, but see the comments in the patch.
Attachment #330733 -
Attachment is obsolete: true
Attachment #331475 -
Flags: ui-review+
Attachment #331475 -
Flags: review+
Assignee | ||
Comment 4•15 years ago
|
||
Checked in on HEAD and MOZILLA_1_8_BRANCH -> FIXED
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Target Milestone: --- → 0.9
You need to log in
before you can comment on or make changes to this bug.
Description
•