[ Index ] |
|
Code source de eZ Publish 3.9.0 |
1 Changes from 3.2-2 to 3.2-3 2 3 *Kernel: 4 - Fixed wait until date event handler to support dates in the past. 5 If the date is in the past the publishing date is changed to that date. 6 - Added support for controlling whether template override cache is to be used or not. If disabled 7 you don't need to clear the cache for new templates until you enable the cache again. 8 - Added a $cli initialization where a function could be called on a non-object in eZScript::initialize() 9 - Fixed case where the ezsearch_tmp_0 table could be created twice in ezsearchenginge.php 10 - Added support for setting the From, Message-ID, In-Reply-To and References 11 message headers from the notification templates. 12 - Improved the path to show URL aliases if they are enabled and the path contains such aliases. 13 - Fixed the path from content/edit to show the path of main assignment if possible. 14 This should help figuring out where the object goes with custom made edit templates 15 where the path selection is hidden. 16 - Added != (not equal) to the list of possible operators in attribute sorting and filtering. 17 - Added parent_class and parent_class_identifier design keys to content/edit 18 and subtree notification handler. 19 - Improved the standard notification email for subtree matching. 20 The email will contain Message-ID, In-Reply-To, References and From headers. 21 The subject line has also been improved to show the object name first. 22 - Improved the treemenu template operator to accept class_filter, 23 depth_skip, max_level and string_limit as parameters, all optional. 24 25 *Bugfixes: 26 - http://ez.no/developer/ez_publish_3/bug_reports/sum_operator 27 Removed the sum operator from the array operator collection. Implemented support 28 for summarizing arrays put as input value to the operator as well as parameters. 29 The sub operator was also fixed to work with arrays. 30 - Added style sheets to the redirect template to make the buttons appear in Opera. 31 - Made sure session variable RedirectAfterUserRegister is removed after user is registered. 32 - In tipafriend the email address is checked to be empty before the POST variable YourEmail is fetched. 33 - http://ez.no/developer/ez_publish_3/bug_reports/link_in_media_template_of_folder_is_broken 34 Added link to folder_thumbnail template. 35 - http://ez.no/developer/ez_publish_3/bug_reports/xml_fields_do_not_convert_to_a_m_p_correclty_on_display 36 Fixed correct handling of & characters in XML fields, it is now converted into XHTML codes. 37 - http://ez.no/developer/ez_publish_3/bug_reports/online_editor_fails_xhtml_checks 38 Added alt text to embedded images. 39 - Fixed missing semicolon (;) in openfts.php. 40 - Fixed a small bug in class edit. The system tried to fetch all objects of the class each 41 time even if class was not modified. 42 - http://ez.no/developer/ez_publish_3/bug_reports/image_links_do_not_include_target_field 43 Added target to embedded image template. 44 - http://ez.no/developer/ez_publish_3/bug_reports/standard_edit_template_typo 45 Fixed html_class typo. 46 - http://ez.no/developer/ez_publish_3/bug_reports/bookmark_ezuser_not_defined 47 Added missing include to ezuser. 48 - http://ez.no/content/view/full/36869/ (Online editor mailto fails XHTML 1.0 checks) 49 Fixed bug in ezurl where " or ' characters were not included if http: or mailto: type url's 50 where used. 51 - Fixed publishing process to go over all languages of a version not just the main language. 52 - Fixed object deletion to go include all attributes of all languages not just the main language. 53 - Changed the contentObjectAttributes function of eZContentObject to allow it to return unique attribute entries. 54 - Made sure all attributes for new languages in objects are properly initialized (eg. for images) 55 - http://ez.no/developer/ez_publish_3/bug_reports/div_should_be_div_ 56 Fixed typo in HTML. 57 - Fixed problem with proxy slowdown by sending correct header information. 58 - http://ez.no/developer/ez_publish_3/bug_reports/matchorderhosturi_does_not_work 59 The accessType() and changeAccess() functions were rewritten by using the patches 60 from Volker Lenz. 61 - Made sure the form/process module is turned off by default, it is also controlled by 62 a separate setting to avoid it being enabled by a mistake. 63 - http://ez.no/developer/ez_publish_3/bug_reports/new_drafts_saved_with_title_new_classname 64 Fixed updating object name when storing draft, not only when publishing object. 65 - http://ez.no/developer/ez_publish_3/bug_reports/eztemplate_controlflow_operator_cond_bug 66 Fixed correct handling of odd numbers in cond operator. 67 - http://ez.no/developer/ez_publish_3/bug_reports/indefined_variable_objectarray 68 Added initializing of objectArray variable to remove warning when fetching non-existing object. 69 - http://ez.no/developer/ez_publish_3/bug_reports/moving_a_user_to_a_new_user_group_doesnt_update_the_user_roles 70 Fixed expiry of user roles when moving/storing a user object. 71 - http://ez.no/developer/ez_publish_3/bug_reports/related_objects_error 72 Added missing function findMainNodeArray in eZContentObjectTreeNode. 73 - http://ez.no/developer/ez_publish_3/bug_reports/httplocale_etc_get_loaded_with_original_siteini 74 Fixed reading locale settings after site access initializing. 75 - http://ez.no/developer/ez_publish_3/bug_reports/embedded_object_inline_view_bug 76 Fixed correct namespace. 77 - Made sure redirects only use reverse url translation if the translation system is enabled. 78 - http://ez.no/developer/ez_publish_3/bug_reports/orderviwtpl_closed_form_without_open_tag 79 Removed invalid form tag. 80 - http://ez.no/developer/ez_publish_3/bug_reports/eztemplatenl2broperatorphp_missing_comma_line_77_and_class_named_wrongly_line_46 81 Fixed wrong class name. 82 - http://ez.no/developer/ez_publish_3/bug_reports/typo_in_ezcontentobjecttreenodephp 83 Fixed correct section sort field. 84 - http://ez.no/developer/ez_publish_3/bug_reports/iteration_count_advances_even_when_item_is_excluded_with_sectionexclude 85 The maximum value now only applies to used elements, some sanity checks were added to the 86 'max' and 'offset' parameter. 87 88 *Library : 89 90 eZ template: 91 - Fixed missing comma (,) in eztemplatenl2broperator.php (nl2br). 92 93 eZFile: 94 - Made sure eZDir::mkdir returned true when successful and made sure it skips empty dir elements. 95 - New function cleanupEmptyDirectories in eZDir, it will remove empty directories in a path. 96 - Implemented the missing doRename function in eZFileHandler. 97 - Added move function to eZFileHandler, it can move (rename or copy/delete) a file from one place to another. 98 - Added symlink function to eZFileHandler, it can create a symbolic link to a file or directory. 99 - Added linkCopy function to eZFileHandler, it will either do a symlink or copy depending on the OS type. 100 101 eZ soap: 102 - Added support for arrays and boolean in ezsoapresponse return values 103 104 *Translations: 105 - Updated Portuguese translation, thanks to Miguel Angelo Gouveia Saturnino. 106 - Fixed correct HTTP content language to zh-CH for Chinese.
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 10:30:04 2007 | par Balluche grâce à PHPXref 0.7 |