head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.4 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.2 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.1.0.10 pkgsrc-2011Q4-base:1.1 pkgsrc-2011Q3:1.1.0.8 pkgsrc-2011Q3-base:1.1 pkgsrc-2011Q2:1.1.0.6 pkgsrc-2011Q2-base:1.1 pkgsrc-2011Q1:1.1.0.4 pkgsrc-2011Q1-base:1.1 pkgsrc-2010Q4:1.1.0.2 pkgsrc-2010Q4-base:1.1; locks; strict; comment @# @; 1.2 date 2012.03.22.13.28.11; author taca; state dead; branches; next 1.1; 1.1 date 2010.12.28.15.34.38; author taca; state Exp; branches; next ; desc @@ 1.2 log @Update fengoffice to 2.0.0. Since 2.0 RC 1 ---------------- bugfix: Uploading files fom CKEditor. bugfix: Some data was not save creating a company. bugfix: Error produced from documents tab - New Presentation. bugfix: Problems with task dates in some views. bugfix: Fatal error when you post a comment on a task page. bugfix: Generation of task repetitions in new tasks. bugfix: Do not let assign tasks (via drag & drop) to users that doesn't have permissions. usability: Interface localization improvements. system: Performance improvements. Since 2.0 Beta 4 ---------------- bugfix: Extracted files categorization bugfix: When adding workspaces bugfix: Breadcrumbs were not working fine all the time bugfix: Being able to zip/unzip files security: JS Injection Slimey Fix system: .pdf and .docx files contents search system: Improvement when creating a new user system: Plugin update engine system: Plugin manager console mode system: Search in file revisions system: Import/Export contacts available again system: Import/Export events available again system: Google Calendar Sync system: Improvement on repeating events and tasks system: Cache compatibility (i.e.: with APC) usability: Completing a task closes its timeslots usability: Task progress bar working along the timeslots usability: Being able to change permissions in workspaces when editing Since 2.0 Beta 3 ---------------- bugfix: Several changes in the permissions system bugfix: Invalid sql queries fixed bugfix: Issues with archived and trashed objects solved bugfix: Issues with sharing table solved bugfix: Improved IE7 and IE9 compatibility bugfix: Several timeslots issues solved bugfix: IMAP issue solved at Emails module bugfix: Solved issue with templates bugfix: Added missing tooltips at calendar bugfix: Issue when completing repetitive task solved bugfix: Solved some issues with the Search engine bugfix: Solved issue with timezone autodetection buffix: Solved 'dimension dnx' error creating a workspace usability: Permission control in member forms usability: Disabling a user feature usability: Resfresh overview panel after quick add usability: Langs update/improvement usability: Drag & Drop feature added usability: Quick add task added, and improved usability: Slight improvement with notifications usability: Avoid double click at Search button (which caused performance issues) usability: Permissions by group feature added usability: Simple billing feature added system: Security Fixes system: Mail compatibility improved for different email clients system: Feng 2 API updated system: General code cleanup system: Widget Engine system: Performance improvements in custom reports system: Print calendar system: Custom Properties Since 2.0 Beta 2 ---------------- bugfix: Fixed problem uncompressing files bugfix: Loading indicator hidden bugfix: Search in mail contents bugfix: Mail reply js error bugfix: Filter members associated with deleted objects bugfix: Fixed permission error creating a contact usability: Contact View Improvements usability: Navigation Improvements system: Permission system fixes system: Performance issues solved. Using permission cache 'sharing table' for listing system: Weblinks module migrated Since 2.0 Beta 1 ---------------- bugfix: Fixed problem with context trees when editing content objects bugfix: Fixed template listing bugfix: Fixed issues when instantiating templates with milestones bugfix: Fixed issue deleting users from 'people' and 'users' dimension. bugfix: Fixed 'core_dimensions' installer bugfix: Z-Index fixed in object-picker and header usability: Selected rows style in object picker system: General code cleanup Since 1.7 ----------- system: Plugin Support system: Search Engine performance improved system: Multiple Dimensions - 'Workspaces' and 'Tags' generalization system: Database and Models structure changes - Each Content object identified by unique id system: Email removed from core (Available as a plugin) system: User Profile System feature: PDF Quick View - View uploaded PDF's usability: Default Theme improved usability: Customizable User Interface @ text @$NetBSD: patch-ad,v 1.1 2010/12/28 15:34:38 taca Exp $ * Fix variable mistakes to prevent garbled characters. Still needs to fix essential problem when a header contains multiple encoded strings with diffreent charset. --- environment/classes/mail/MailUtilities.class.php.orig 2010-12-01 12:33:32.000000000 +0000 +++ environment/classes/mail/MailUtilities.class.php @@@@ -249,7 +249,7 @@@@ class MailUtilities { if ($from_name == ''){ $from_name = $from; } else if (strtoupper($encoding) =='KOI8-R' || strtoupper($encoding) =='CP866' || $from_encoding != 'UTF-8' || !$enc_conv->isUtf8RegExp($from_name)){ //KOI8-R and CP866 are Russian encodings which PHP does not detect - $utf8_from = $enc_conv->convert($encoding, 'UTF-8', $from_name); + $utf8_from = $enc_conv->convert($from_encoding, 'UTF-8', $from_name); if ($enc_conv->hasError()) { $utf8_from = utf8_encode($from_name); @@@@ -264,7 +264,7 @@@@ class MailUtilities { $subject_encoding = detect_encoding($subject_aux); if (strtoupper($encoding) =='KOI8-R' || strtoupper($encoding) =='CP866' || $subject_encoding != 'UTF-8' || !$enc_conv->isUtf8RegExp($subject_aux)){ //KOI8-R and CP866 are Russian encodings which PHP does not detect - $utf8_subject = $enc_conv->convert($encoding, 'UTF-8', $subject_aux); + $utf8_subject = $enc_conv->convert($subject_encoding, 'UTF-8', $subject_aux); if ($enc_conv->hasError()) { $utf8_subject = utf8_encode($subject_aux); @ 1.1 log @* Fix variable mistakes to prevent garbled characters. Still needs to fix essential problem when a header contains multiple encoded strings with diffreent charset. * Suprress some error of undefined variables. * pkgsrc change: change ${FD_DIR}/tmp from SPECIAL_PERMS to OWN_DIRS_PERMS. Bump PKGREVISION. @ text @d1 1 a1 1 $NetBSD$ @