Tiki18
Tiki 18.0 was released on 2018-01-28
It is a Long Term Support (LTS) version and will be supported for 5 years, thus until January 2023, as per the Tiki lifecycle policy.
Please note: SVN updates (for all versions of Tiki) will stop in January 2023 when Tiki18 reaches end of life
Tiki18 does not support utf8mb4 characters such as emojis.
Alphabetically sorted
- You can see the development page at : https://dev.tiki.org/Tiki18 and all the commits here: https://gitlab.com/tikiwiki/tiki/-/commits/18.x/
1. Additions and enhancements
1.1. Annotations
Annotations are now an optional replacement for Inline Comments.
1.2. Composer
1.2.1. Composer Web Installer
You can install external packages in Tiki, with different copyright license or made optional since they are too big and maybe not intended for all use cases, through a new Control Panel in Tiki:
1.2.2. Composer and Satis
- All libraries were reviewed to fully take advantage of the convenience of Composer
1.3. Console
New actions can be run from the command line through console.php:
- Wiki Plugins can be listed, refreshed and approved
- Installer can be locked
- Files can be copied or moved from a gallery to a regular directory on the filesystem (and inversely)
- Fake Tracker items can be created (for performance testing, for instance) through Faker
See: Console
1.4. Database independence
As per the MariaDB vs MySQL strategy, several fixes were made to continue to support both:
- https://sourceforge.net/p/tikiwiki/code/64280
- https://sourceforge.net/p/tikiwiki/code/64001
- https://sourceforge.net/p/tikiwiki/code/63994/
1.5. Faker
- Faker is a tool to generate fake data
1.6. Fallback for Tiki base URL
The full URL to the Tiki base URL including protocol, domain and path (example: https://example.com/tiki/), used when the current URL can not be determined, example, when executing from the command line.')
1.7. File Checker
1.8. H5P upgrade
- H5P was upgraded from 0.12 to 0.16 (which is a major upgrade with lots of new features, and a database structure upgrade)
1.9. Image Gallery to File Gallery migration tool
Enable admins to run the migration process from from the web and from command line (php console.php gallery:migrate )
1.10. Mcrypt dependency removal
Removing MCrypt as a dependency was done for User Encryption and work continues in upstream libraries. Ex: for SAML support.
1.11. Media Alchemyst
Media Alchemyst support has been added. Only PluginPreview for now, but more features from this library will be progressively added.
1.12. Menus
Menu management has been revamped. Now with drag and drop!
See Menu
1.12.1. Login-Box Module Menu
The login box in popup
mode can now use a custom menu by using the menu_id
parameter (mainly r64388)
1.13. Minification
- Make the filenames of minified JavaScript files be based on the contents of all the files, not just the filenames, so that when anything changes within a file, i.e. after an upgrade or bug fix, browsers will automatically get the new version of the code (following clearing the tiki caches only). The CSS part is done in Tiki19
https://sourceforge.net/p/tikiwiki/code/65937 https://sourceforge.net/p/tikiwiki/code/65967 See Minify CSS
1.14. Multi-resolution images
See below #Plugin_Img
1.15. Path structure
See Path structure
1.16. Permissions
- Major work was undertaken to make it easier for site admins to determine what action can be taken by which group.
- Permissions can now be re-ordered
1.17. Pivot tables with subtotals
Subtotals have been added to pivot tables
1.18. Print
- Advanced PDF settings introducted in control panel, PDF support added for trackers.
- Change any global PDF generation setting for wiki page including cover pages, background images and colors, watermarks, autotoc, auto bookmarks, columns, custom headers, orientation, pages sizes and more. -> PluginPDF
- Override settings for single page within PDF -> PluginPDFPage
1.19. Profiles
- A dry-run option to profiles, to preview what will happen if the profile is applied.
- Profile Rollback was added, including selective rollback
1.19.1. Profile Export: include-files
A new option 'include-files' has been added to Export Profiles from command line, so that Files in the FileGallery can also get exported files (instead of only allow url references). In addition, it also allows local file import.
1.19.2. Profile Export: tracker items
A new option 'tracker-item' has been added to Export Profiles from command line so that tracker items can be also included in the exported local profile.
https://sourceforge.net/p/tikiwiki/code/63668
1.19.3. Profile Export: -all option
Added to 18.2: Add option --all to profile export commands allowing it to export all settings
https://sourceforge.net/p/tikiwiki/code/66243
1.20. Search
1.20.1. Calendars added to Unified Search
- Calendars and Calendar Items will now appear in search results
Added in this commit
1.20.2. Search Engine Friendly URLs
- Display tracker item title in the sefurl
- Enable the definition of Custom Routes based on static values, alias to objects, regex or tracker fields
1.20.3. PDFs are now searchable natively via Tiki
- It's no longer necessary to add a utility on the sever: Search within files
1.21. Sitemap
New: A built-in site map XML generator
- Documentation here Sitemap
- Arrived in https://sourceforge.net/p/tikiwiki/code/63719
1.22. Style Guide tool
- A new Theme Customizer tool was added
1.23. Trackers
1.23.1. Now possible to convert certain tracker fields
- dropdown, dropdown with other, radio buttons, email, text, url TO dropdown, dropdown with other, radio buttons, multiselect, email, text, text area, url
- multiselect TO multiselect, email, text, text area, url
- datetime and jscalendar TO each other
- autoincrement, currency and numeric TO dropdown, dropdown with other, radio buttons, multiselect, text, text area, numeric, auto increment, currency
This was done in this commit
1.23.2. New Calendar Item Field
- Inherits from the Date Picker field and creates a linked calendar item in the specified Calendar
- The main aim is to allow recurring events to have a tracker item linked to it so tyou can add custom fields
- Class name:
Tracker_Field_CalendarItem
This was started in this commit
1.23.3. Minor change to Webservices Field with elasticsearch
- For advanced use with custom smarty templates
- The
fieldname_json
data is now indexed differently for elastic search, because storing json as plain text (with some values) prevents the item from being stored in the index.
N.B. This will require changes to custom templates using these values, i.e. from
{$jsondata = $row.tracker_field_webserviceField_json|json_decode:true}
to
{$jsondata = $row.tracker_field_webserviceField_json|json_encode|json_decode:true}
(the extra encode then decode is to change from objects to associative arrays for use in smarty)
See this commit for details
1.23.4. Formula 'clean' added to the mathematical-calculation field
The new formula clean
(from the Advanced Rating Syntax language ) has been added to the Mathematical Calculation Tracker Field in Tiki 18.2
See Advanced Rating Syntax language
1.24. Translation
1.24.1. Preference are now translatable
1.24.2. Interactive Translation
When using interactive translation, text still not translated will be highlighted in red https://sourceforge.net/p/tikiwiki/code/64541
1.24.3. Upload translations
Let user upload CSV file to provide custom translations. https://sourceforge.net/p/tikiwiki/code/63416
1.24.4. Language selection for admin panel
Permits to have the admin panel in a different language than the rest of the site.
1.25. Unified Search Index reports engine and version
When the unified search index is rebuilt, there unified index engine and version are reported.
See Search and List from Unified Index
1.26. Wiki Pages
301 Redirect on Rename or Remove page. When you rename or delete a Wiki page, access to that page via bookmarks or search engines will fail. To prevent that, it’s possible to indicate a new page, to which an SEO-friendly, automatic redirect from the old page name is created.
1.27. Wiki Plugins
New or enhanced.
1.27.1. Plugin Img
Enhanced plugin. A new option called 'retina' was added. If you have a fixed width image, it will pull up a 2x version of the image for users with retina display (and 1x for users who don't). Note: source needs to be at least 2x the size of the width of the image being displayed.
See Multi-resolution images and PluginImg
1.27.2. Plugin List
Enhanced plugin. It can return only a given set of values, usefull to filter the results or return results in a spefic order.
See PluginList
1.27.3. Plugin PDF
Enhanced plugin. It allows to set a cover page.
See PluginPDF
1.27.4. Plugin PivotTable
Enhanced plugin. New renderers were added to allow displaying subtotal sums for rows in the table, through the addition of subtotal.js to the plugin.
See PluginPivotTable
1.27.5. Plugin TrackerCalendar
Enhanced plugin. It allows the user to set the colormap for the events based on the priority.
1.28. Wiki Syntax and WYSIWYG
1.28.1. Multilevel style numbering for ordered lists
New preference "Multilevel style numbering for ordered lists" was added to "Editing & Plugins" control panel which allows to have Multilevel style numbering on ordered lists set globally (disabled by default).
1.29. Zend Framework
Zend Framwork has been upgraded to 3.x
2. Backwards-incompatible changes
Footnote reuse
The sameas ("Tag to existing footnote") parameter of the FOOTNOTE plugin was lost for Tiki18.0 and Tiki18.1. Sorry for that. It was restored for Tiki18.2. This is for keeping backward-compatibility for people who upgrade their old Tiki versions. New pages should use the parameter sameastag which is much better. (the issue is discussed in report #6584) The recognition of duplicate Footnote was also lost. They now show up twice in the footnotearea.
3. Upgrade
Elasticsearch 2.x to 5.x
If you are upgrading from Elasticseach 2.x to 5.x: Since ES automatically updates 2.x index to 5.x first time it starts - you can see some errors then. First time it rebuilds index might also show errors due to the automatic upgrade problems. However, once it builds the index on 5.x, then further rebuilds must not have errors. So, 2 index rebuilds after upgrade is the safest path to go.
General upgrade notes
Also, see the standard information about Upgrades in Tiki.
Raw changelog
[+]For developers
Below an extraction of SVN log with relevant commits that should be documented on this page. As things get properly documented, remove from log below.
r62033 | jonnybradley | 2017-04-02 13:26:53 -0300 (Dom, 02 Abr 2017) | 1 line [REL] Trunk will now be 18.x one day r62044 | montefuscolo | 2017-04-02 23:45:15 -0300 (Dom, 02 Abr 2017) | 1 line [ENH] forum: Add anchor links to forum headings. r62045 | montefuscolo | 2017-04-03 00:37:50 -0300 (Seg, 03 Abr 2017) | 1 line [FIX] install: Prevent large database username. r62077 | pom2ter | 2017-04-04 19:15:58 -0300 (Ter, 04 Abr 2017) | 1 line [FIX] aligned contact form fields with the antibot r62124 | drsassafras | 2017-04-06 18:05:13 -0300 (Qui, 06 Abr 2017) | 1 line [ENH] setup.sh, New -a option. Use defaults for all. r62125 | drsassafras | 2017-04-07 00:23:44 -0300 (Sex, 07 Abr 2017) | 1 line [rb/r62124][ENH] setup.sh, "-n fix" seems to work just fine. r62136 | jyhem | 2017-04-08 13:09:25 -0300 (Sáb, 08 Abr 2017) | 1 line [NEW] Add option for actually keeping current user and group r62172 | jyhem | 2017-04-09 16:57:07 -0300 (Dom, 09 Abr 2017) | 1 line [bp/r62171] Small indentation fix. Tiki standardises on tab indenting r62182 | drsassafras | 2017-04-10 13:21:18 -0300 (Seg, 10 Abr 2017) | 1 line [NEW] devtools - fix all svn keyword id's r62183 | drsassafras | 2017-04-10 13:22:23 -0300 (Seg, 10 Abr 2017) | 1 line [FIX] fix svn keyword ids r62184 | montefuscolo | 2017-04-10 17:33:51 -0300 (Seg, 10 Abr 2017) | 1 line [ENH] conversejs: Update library to fix icons path. r62185 | montefuscolo | 2017-04-10 17:52:53 -0300 (Seg, 10 Abr 2017) | 1 line [FIX] conversejs: Remove workaround because bundled jQuery and Tiki jQuery don't conflict anymore. r62199 | drsassafras | 2017-04-12 21:16:58 -0300 (Qua, 12 Abr 2017) | 1 line [FIX][ENH] Fix SVN keyword id's - Will no longer overwrite previous keywords & is much faster. r62200 | montefuscolo | 2017-04-13 13:07:34 -0300 (Qui, 13 Abr 2017) | 1 line [ENH] conversejs: replace wikiplugin_xmpp by mod-xmpp r62201 | montefuscolo | 2017-04-13 16:40:25 -0300 (Qui, 13 Abr 2017) | 1 line [FIX] conversejs: change module title and description and also fix svn poperty r62202 | montefuscolo | 2017-04-13 17:05:02 -0300 (Qui, 13 Abr 2017) | 1 line [FIX] conversejs: make module description more understandable, thanks chealer r62203 | chealer | 2017-04-13 17:55:42 -0300 (Qui, 13 Abr 2017) | 1 line [FIX] xmpp plugin was removed in r62200 r62209 | luciash | 2017-04-14 07:59:42 -0300 (Sex, 14 Abr 2017) | 1 line [ENH][UX] Wiki editing: If user has permission to see history and history is enabled show a link to review changes user just made in the success feedback remarks box (thanks marclaporte)/n[FIX] version number in the success feedback after saving the page was always one version less (how come nobody noticed it so far?) r62212 | luciash | 2017-04-14 11:50:46 -0300 (Sex, 14 Abr 2017) | 1 line [ENH][UX] Object Permissions List: objects should be clickable links (thanks marclaporte) & a little [MOD]: if there are object perms AND category perms it should show both, not just the object perms (all object links tested with most of the main features but might missed some - please test and report/fix if you spot something) r62213 | marclaporte | 2017-04-15 02:26:35 -0300 (Sáb, 15 Abr 2017) | 1 line [DOC] Fix the domain name example. As described in RFC 2606 and RFC 6761, a number of domains such as example.com and example.org are maintained for documentation purposes. r62215 | montefuscolo | 2017-04-15 12:20:46 -0300 (Sáb, 15 Abr 2017) | 1 line [FIX] conversejs: let user use whitespace in his password. r62216 | montefuscolo | 2017-04-15 12:25:45 -0300 (Sáb, 15 Abr 2017) | 1 line [FIX] conversejs: prevent html from breaking because of an unescaped password r62217 | montefuscolo | 2017-04-15 12:27:37 -0300 (Sáb, 15 Abr 2017) | 1 line [FIX] converse: fix titles, descriptions and typos r62224 | lindonb | 2017-04-15 22:34:25 -0300 (Sáb, 15 Abr 2017) | 1 line [FIX] ticket system: restore '+' characters used in base64 character set for tickets since php automatically urldecodes $_GET and $_POST, causing '+' characters to be replaced with spaces r62225 | lindonb | 2017-04-15 23:42:41 -0300 (Sáb, 15 Abr 2017) | 1 line [FIX] ticket system: better solution to urlencoding issue - urlencode and then decode if needed since in some cases the ticket is already decoded and decoding again will strip the '+ character' r62254 | yonixxx | 2017-04-18 11:51:17 -0300 (Ter, 18 Abr 2017) | 1 line [FIX]There is no admin report page so the link show an error. r62266 | lindonb | 2017-04-18 22:06:07 -0300 (Ter, 18 Abr 2017) | 1 line [KIL] Delete include_ticket.tpl file as it's function has been replaced by the smarty ticket function r62267 | lindonb | 2017-04-18 22:07:09 -0300 (Ter, 18 Abr 2017) | 1 line [FIX] encoding for url should be urlencode r62270 | chealer | 2017-04-19 10:25:26 -0300 (Qua, 19 Abr 2017) | 2 lines [rb/r62266][KIL] Delete include_ticket.tpl file as it's function has been replaced by the smarty ticket function r62282 | chealer | 2017-04-20 18:21:41 -0300 (Qui, 20 Abr 2017) | 1 line [ENH] Clarify wiki_edit_section r62283 | kroky6 | 2017-04-21 10:40:15 -0300 (Sex, 21 Abr 2017) | 1 line [ENH] allow supported tracker field type changes keeping the relevant options and modify preference to allow unsupported changes as well r62284 | chealer | 2017-04-21 10:47:39 -0300 (Sex, 21 Abr 2017) | 2 lines [ENH] Clarify wiki_edit_section_level r62284 | chealer | 2017-04-21 10:47:39 -0300 (Sex, 21 Abr 2017) | 2 lines [FIX] wiki_edit_section description. Oops r62285 | chealer | 2017-04-21 10:48:09 -0300 (Sex, 21 Abr 2017) | 1 line [TRA r62290 | jyhem | 2017-04-21 13:21:59 -0300 (Sex, 21 Abr 2017) | 1 line [UX][bp/r62289] Make the whole Browser title configuration easier to understand, as discussed during 2017-04-20 roundtable r62293 | jyhem | 2017-04-21 13:46:01 -0300 (Sex, 21 Abr 2017) | 1 line [ENH][bp/r62292] Add missing option for the Browser title position, as discussed during 2017-04-20 roundtable (thanks Bernard) r62296 | chealer | 2017-04-21 14:33:39 -0300 (Sex, 21 Abr 2017) | 1 line [FIX] Clarify wiki_edit_icons_toggle documentation r62297 | lindonb | 2017-04-21 20:50:13 -0300 (Sex, 21 Abr 2017) | 1 line [KIL] Delete include_ticket.tpl file as it's function has been replaced by the smarty ticket function. Redo of r62266 now that all uses have apparently been deleted. r62303 | jonnybradley | 2017-04-23 12:37:42 -0300 (Dom, 23 Abr 2017) | 1 line [FIX] actionlog: Use the page created or modified date for the action log events (should keep tiki-lastchanges up to date for the rescued pages on doc.t.o) r62305 | jyhem | 2017-04-23 13:04:09 -0300 (Dom, 23 Abr 2017) | 1 line [UX][bp/r62304] Warn users of the inevitable logout so they know all is well. r62319 | jonnybradley | 2017-04-24 12:31:15 -0300 (Seg, 24 Abr 2017) | 1 line [FIX] rescue script: Ensure url has a trailing slash (sorry amette ;) r62323 | montefuscolo | 2017-04-24 17:20:13 -0300 (Seg, 24 Abr 2017) | 1 line [ENH] Use tablesorter plugin from maintained repository on packagist. r62324 | patrick-proulx | 2017-04-24 18:38:13 -0300 (Seg, 24 Abr 2017) | 2 lines [ENH] Added functionality to the IMG wikiplugin to allow for responsive images r62334 | kroky6 | 2017-04-25 10:41:57 -0300 (Ter, 25 Abr 2017) | 1 line [ENH] add strtotime php function to Mathematical Calculation field and Math formula tiki supports r62336 | patrick-proulx | 2017-04-25 12:43:31 -0300 (Ter, 25 Abr 2017) | 2 lines [FIX] Fixed an issue with IE 10/11 not being able to submit the form in the ajax confirmation modals r62340 | patrick-proulx | 2017-04-25 17:56:23 -0300 (Ter, 25 Abr 2017) | 5 lines [FIX] Fixed issue with Item Link facet showing url. Also fixed a couple other issues. r62343 | rjsmelo | 2017-04-25 21:06:42 -0300 (Ter, 25 Abr 2017) | 2 lines [NEW] Intrusion Detection System: Enable set custom rules from admin interface, enable block request based on impact r62345 | kroky6 | 2017-04-26 08:11:20 -0300 (Qua, 26 Abr 2017) | 1 line [FIX] code style conventions r62349 | chealer | 2017-04-26 10:00:45 -0300 (Qua, 26 Abr 2017) | 3 lines [FIX] Explain what the "Close" button does since both buttons close the modal r62350 | kroky6 | 2017-04-26 10:36:45 -0300 (Qua, 26 Abr 2017) | 1 line [ENH] expose ItemsList linked item fields and values to Math calculation tracker field; combined with ForEach formula allows usage of aggregation formula with remote tracker item's fields r62365 | chealer | 2017-04-27 15:00:03 -0300 (Qui, 27 Abr 2017) | 1 line [FIX] "Utiliser ce nom en tout cas" => "Utiliser ce nom quand même" r62368 | patrick-proulx | 2017-04-27 17:47:22 -0300 (Qui, 27 Abr 2017) | 2 lines [ENH] Worked on fleshing out accounting feature. Added bootstrap forms, fixed date fields, and made some fixes to journal entries r62369 | kroky6 | 2017-04-28 04:59:58 -0300 (Sex, 28 Abr 2017) | 1 line [ENH] reload search results in plugin ListExecute after actions are executed in order to show fresh data on page load r62375 | montefuscolo | 2017-04-28 11:45:58 -0300 (Sex, 28 Abr 2017) | 1 line [FIX] Prevent create user with wrong host permission on mysql. r62397 | montefuscolo | 2017-05-01 12:46:36 -0300 (Seg, 01 Mai 2017) | 1 line [FIX] Fix string concat in javascript. r62409 | kroky6 | 2017-05-02 04:55:07 -0300 (Ter, 02 Mai 2017) | 1 line [ENH] make itemslist field work when remote field is DynamicItemsList much like it works with ItemLink r62410 | kroky6 | 2017-05-02 04:55:52 -0300 (Ter, 02 Mai 2017) | 1 line [ENH] allow concat math formula to work on arguments containing a list of values besides individual strings r62439 | jonnybradley | 2017-05-03 08:44:58 -0300 (Qua, 03 Mai 2017) | 1 line [ENH] trackers: Add sort order to Files field and fix the existing default order (which should be the order the files were attached to the item) Thanks marclaporte r62441 | chealer | 2017-05-03 12:31:39 -0300 (Qua, 03 Mai 2017) | 1 line [FIX] Fix translations for unified_tokenize_version_numbers to some degree r62444 | lindonb | 2017-05-03 21:39:28 -0300 (Qua, 03 Mai 2017) | 1 line [FIX] revert r62396 and r62398 for now as it breaks things to escape the forward slash r62446 | yonixxx | 2017-05-04 07:13:32 -0300 (Qui, 04 Mai 2017) | 1 line [bp/62445][ENH]Added an option to hide the quantity field so it is possible to create a buy now button (onclick checkout). r62447 | patrick-proulx | 2017-05-04 15:32:41 -0300 (Qui, 04 Mai 2017) | 2 lines [FIX] Fixed issue with confirm popup not working for the icon when the name param is set r62448 | patrick-proulx | 2017-05-04 15:36:23 -0300 (Qui, 04 Mai 2017) | 4 lines [ENH] Made some updates to the accounting feature r62449 | patrick-proulx | 2017-05-04 16:52:52 -0300 (Qui, 04 Mai 2017) | 2 lines [ENH] Added trackeritem facet for tracker_status (o,p,c) r62451 | patrick-proulx | 2017-05-04 19:28:35 -0300 (Qui, 04 Mai 2017) | 2 lines [FIX] Made fixes to the fancyfilter and adjusted the UI to make it clearer. r62458 | drsassafras | 2017-05-06 01:41:45 -0300 (Sáb, 06 Mai 2017) | 1 line [ENH] Fix SVN keyword id's - Match a a few more keywords under rare conditions. r62512 | drsassafras | 2017-05-09 12:42:20 -0300 (Ter, 09 Mai 2017) | 1 line [NEW] SvnUp.php - combining the best of several svn update scripts r62520 | lindonb | 2017-05-09 22:06:38 -0300 (Ter, 09 Mai 2017) | 1 line [UPD] add latest version of tablesorter, 2.28.9 r62521 | kroky6 | 2017-05-10 05:10:56 -0300 (Qua, 10 Mai 2017) | 1 line [ENH] add number_format value formatter to be used in plugin list and related search results r62533 | drsassafras | 2017-05-10 21:11:52 -0300 (Qua, 10 Mai 2017) | 1 line [EHN][FIX] svnup - updated to use symphony, added verbiage paramas, added --no-secdb & --no-reindex r62535 | drsassafras | 2017-05-11 03:20:08 -0300 (Qui, 11 Mai 2017) | 1 line [ENH] Rebuild Index Command - create tiki log upon failure. r62537 | drsassafras | 2017-05-11 03:26:56 -0300 (Qui, 11 Mai 2017) | 1 line [FIX] Adding missing keyword ids r62538 | drsassafras | 2017-05-11 04:39:05 -0300 (Qui, 11 Mai 2017) | 1 line [FIX] svnup.php - can call from tikiroot or doc/devtools now r62545 | drsassafras | 2017-05-11 17:54:15 -0300 (Qui, 11 Mai 2017) | 1 line [FIX] release process - now works on OSX r62546 | rjsmelo | 2017-05-11 18:28:37 -0300 (Qui, 11 Mai 2017) | 2 lines [FIX] Fix missing CSRF token r62550 | rjsmelo | 2017-05-11 19:18:19 -0300 (Qui, 11 Mai 2017) | 2 lines [ENH] Split check of TRIM (https://doc.tiki.org/TRIM) requirements in 2 sections, one for server and another for client r62553 | drsassafras | 2017-05-11 21:06:00 -0300 (Qui, 11 Mai 2017) | 1 line [FIX] release secdb - merged 2 slightly ways of creating secdb, fixed a couple errors in file name, some minor cleanup & slightly better error handling. r62554 | drsassafras | 2017-05-11 21:07:49 -0300 (Qui, 11 Mai 2017) | 1 line [FIX] release tagging - tagging now respects --no-commit option. r62555 | drsassafras | 2017-05-11 21:31:43 -0300 (Qui, 11 Mai 2017) | 1 line [ENH] release secdb - old sedDb files are now removed automatically. r62566 | drsassafras | 2017-05-12 13:01:49 -0300 (Sex, 12 Mai 2017) | 1 line [ENH] svnup - now works in a limited capacity while not using a databse r62567 | drsassafras | 2017-05-12 13:53:24 -0300 (Sex, 12 Mai 2017) | 1 line [FIX] svnup - rebuild index now honours -v r62568 | drsassafras | 2017-05-12 16:55:58 -0300 (Sex, 12 Mai 2017) | 1 line [ENH][REF] svnup - better conflict handling, more debug output r62570 | chibaguy | 2017-05-13 01:38:28 -0300 (Sáb, 13 Mai 2017) | 1 line [ENH] Reinstate using a variable for the mandatory field asterisk but with a better variable to ensure contrast (the idea being that label color/asterisk color difference is common practice and useful) that can be tuned per-theme; also increase asterisk font-size for more prominence. (This Less compile showed a second change - for added .filter .fancyfilter .token properties - not part of my edit but consistent with r62451, so end result appears to be ok.) r62571 | drsassafras | 2017-05-13 01:41:09 -0300 (Sáb, 13 Mai 2017) | 1 line [FIX] svnup no-db mode - better handling of ill-formatted calls & tweak of progress bar r62585 | drsassafras | 2017-05-15 01:53:50 -0300 (Seg, 15 Mai 2017) | 1 line [FIX] svnup - better secdb handling, fix progress bar in some situations. r62588 | kroky6 | 2017-05-15 08:43:43 -0300 (Seg, 15 Mai 2017) | 1 line [ENH] add option for turning off Plotly chart hover bar in pivottable plugin r62606 | luciash | 2017-05-16 09:21:56 -0300 (Ter, 16 Mai 2017) | 1 line [ENH][FIX] wiki page edits: show the link to diff only when page is not initially created (first version of the page, thanks marclaporte) and url encode the page name (thanks chealer) r62607 | luciash | 2017-05-16 11:24:17 -0300 (Ter, 16 Mai 2017) | 1 line [FIX] wiki page edits: better fix for comparing the versions after save - just in case it is empty sometimes? (thanks jonnyb) r62615 | luciash | 2017-05-16 13:24:44 -0300 (Ter, 16 Mai 2017) | 1 line [FIX] wiki page edits: for some strange reason when feature_multilingual is disabled (the default) it reports version minus one so here is a quick fix + removed unnecessary 0 check as it is considered empty as well (thanks chealer and jonnyb) r62620 | drsassafras | 2017-05-16 15:05:56 -0300 (Ter, 16 Mai 2017) | 1 line [FIX] svnup - better error handling in rare conditions r62642 | patrick-proulx | 2017-05-18 12:46:41 -0300 (Qui, 18 Mai 2017) | 2 lines [FIX] Added consistency to the tracker file upload and link viewing to show a preview when the files are images. r62643 | patrick-proulx | 2017-05-18 13:31:30 -0300 (Qui, 18 Mai 2017) | 2 lines [FIX] Added a pref check to tracker_force_fill prefs to ensure that dependent prefs are filled out as well (crashes if dependent prefs are empty) r62644 | patrick-proulx | 2017-05-18 13:39:13 -0300 (Qui, 18 Mai 2017) | 2 lines [FIX] Fix accidental buggy commit (r62643) r62646 | chealer | 2017-05-18 13:57:08 -0300 (Qui, 18 Mai 2017) | 1 line [FIX] Apply profile confirmation strings r62647 | patrick-proulx | 2017-05-18 14:08:16 -0300 (Qui, 18 Mai 2017) | 4 lines [FIX] Fixed issue with pref multiselector returning an array of size 1 (empty string), rather than an empty array if nothing was selected. r62649 | chealer | 2017-05-18 15:07:28 -0300 (Qui, 18 Mai 2017) | 1 line [FIX] "User information": s/Confidentialité/Information utilisateur/ r62653 | drsassafras | 2017-05-19 00:42:59 -0300 (Sex, 19 Mai 2017) | 1 line [ENH][MOD] - tikirelease.sh rewritten in php - better error checking & reporting, full OSX support, faster release process, packages now built on current working copy instead of TAG, slightly better archive compression. r62655 | kroky6 | 2017-05-19 09:06:20 -0300 (Sex, 19 Mai 2017) | 1 line [ENH] check mandatory tracker fields before importing tracker items csv file r62656 | kroky6 | 2017-05-19 09:20:38 -0300 (Sex, 19 Mai 2017) | 1 line [FIX] warning when casting strings to numbers in Number formatter r62660 | drsassafras | 2017-05-19 12:20:36 -0300 (Sex, 19 Mai 2017) | 1 line [DOC] release.php - updated debug-packaging option documentation. r62662 | jyhem | 2017-05-19 15:03:07 -0300 (Sex, 19 Mai 2017) | 1 line [FIX][bp/r62661] Make it obvious which comments were entered by anonymous r62665 | jyhem | 2017-05-19 21:08:30 -0300 (Sex, 19 Mai 2017) | 1 line [FIX][bp/r62664] Get correct permissions for blog posts of categorised blogs r62677 | lindonb | 2017-05-21 01:34:31 -0300 (Dom, 21 Mai 2017) | 1 line [UPD] latest version of tablesorter, 2.28.10 r62680 | montefuscolo | 2017-05-21 18:26:55 -0300 (Dom, 21 Mai 2017) | 1 line [NEW] Create new admin page for big blue button and xmpp configurations. r62685 | montefuscolo | 2017-05-22 12:56:06 -0300 (Seg, 22 Mai 2017) | 1 line [FIX] RTC description for admin page. r62689 | chealer | 2017-05-22 15:34:48 -0300 (Seg, 22 Mai 2017) | 2 lines [FIX] Ratings r62694 | jyhem | 2017-05-22 20:49:59 -0300 (Seg, 22 Mai 2017) | 1 line [FIX] Ooops, option -p was lost r62699 | jyhem | 2017-05-22 21:25:06 -0300 (Seg, 22 Mai 2017) | 1 line [FIX][bpr62695][bp/r62698] Make all these mandatory_star stars consistent so users and theme creators can style them r62704 | kroky6 | 2017-05-23 12:15:40 -0300 (Ter, 23 Mai 2017) | 1 line [ENH] ItemsList ability to list items based on ItemLink/DynamicItemList based in the same tracker r62721 | kroky6 | 2017-05-24 10:22:39 -0300 (Qua, 24 Mai 2017) | 1 line [ENH] add notBefore/notAfter validations to JsCalendar field r62725 | chealer | 2017-05-24 12:49:05 -0300 (Qua, 24 Mai 2017) | 1 line [FIX] Return status code 403 rather than 401 when user lacks permission r62731 | chealer | 2017-05-24 13:22:34 -0300 (Qua, 24 Mai 2017) | 1 line [FIX] Quiet failure when user lacks a certain permission required to move an item r62738 | kroky6 | 2017-05-25 07:46:45 -0300 (Qui, 25 Mai 2017) | 1 line [ENH] allow plugin list number formatter to use empty strings and default values that are not numbers r62739 | kroky6 | 2017-05-25 11:27:27 -0300 (Qui, 25 Mai 2017) | 1 line [MOD] PluginTracker ItemsList field use input rather than output since ItemsList now supports showing the value dynamically in input mode r62763 | drsassafras | 2017-05-26 04:16:43 -0300 (Sex, 26 Mai 2017) | 1 line [ENH] release - remove /bin from root folder r62796 | drsassafras | 2017-05-28 22:27:34 -0300 (Dom, 28 Mai 2017) | 1 line [FIX] ticket filter needs to be updated for trunk usage r62806 | drsassafras | 2017-05-28 23:32:14 -0300 (Dom, 28 Mai 2017) | 1 line [ENH] New Tikifilter, Bool r62816 | rjsmelo | 2017-05-29 18:58:42 -0300 (Seg, 29 Mai 2017) | 4 lines [NEW] Composer Web Install: Allow management of optional composer depdendencies from the admin interface r62818 | rjsmelo | 2017-05-29 20:39:30 -0300 (Seg, 29 Mai 2017) | 3 lines [ENH][REF] Provide different levels of verbosity to the user when execuring scheduler tasks r62829 | rjsmelo | 2017-05-30 19:14:13 -0300 (Ter, 30 Mai 2017) | 2 lines [FIX] Warning when there is no composer.json file r62831 | rjsmelo | 2017-05-30 19:45:29 -0300 (Ter, 30 Mai 2017) | 2 lines [FIX] If HOME or COMPOSER_HOME is not set, then composer execution fails r62832 | kroky6 | 2017-05-31 02:01:43 -0300 (Qua, 31 Mai 2017) | 1 line [ENH] Math calculation Str function ability to use new lines r62833 | kroky6 | 2017-05-31 05:08:30 -0300 (Qua, 31 Mai 2017) | 1 line [ENH] math calculation str_replace php function r62835 | kroky6 | 2017-05-31 07:52:27 -0300 (Qua, 31 Mai 2017) | 1 line [revert] math number formatting as accidentally committed something else, sorry r62834 | kroky6 | 2017-05-31 07:50:29 -0300 (Qua, 31 Mai 2017) | 1 line [ENH] add number formatting capabilities of math calculations as we still need them sometimes when we are not in plugin list context and cannot use the Number value formatter there r62842 | drsassafras | 2017-05-31 09:39:01 -0300 (Qua, 31 Mai 2017) | 1 line [FIX] check_script removed in favour of code snippet, preventing fatal errors r62848 | jyhem | 2017-05-31 13:00:39 -0300 (Qua, 31 Mai 2017) | 1 line [FIX][bp/r62847] Improve r62661 with better label to avoid confusing with well known activists group (thanks Luci) r62853 | jyhem | 2017-05-31 13:39:28 -0300 (Qua, 31 Mai 2017) | 1 line [FIX][bp/r62852] Rolls back r61942 after discussion. In the interest of keeping tags simple r62866 | kroky6 | 2017-06-02 07:51:45 -0300 (Sex, 02 Jun 2017) | 1 line [FIX] raise invalid cron time format only if it is invalid (trunk fix only) r62867 | chealer | 2017-06-02 10:19:43 -0300 (Sex, 02 Jun 2017) | 1 line [FIX] categories_used_in_tpl definition r62868 | chealer | 2017-06-02 11:19:16 -0300 (Sex, 02 Jun 2017) | 2 lines [FIX] Escape HTML special characters in context lines r62869 | chealer | 2017-06-02 12:10:52 -0300 (Sex, 02 Jun 2017) | 2 lines [FIX] _lines(): Escape HTML special characters in added and deleted lines r62871 | amnabilal | 2017-06-03 06:44:11 -0300 (Sáb, 03 Jun 2017) | 3 lines [EHN]PDFPage plugin introduced, to create more powerful pdf documents. The plugin can override master pdf settings including orientation, margins, page size, watermark for single page on fly. r62883 | drsassafras | 2017-06-04 14:03:17 -0300 (Dom, 04 Jun 2017) | 1 line [FIX] EOL and BOM encoding, dos2unix r62899 | lindonb | 2017-06-04 21:04:47 -0300 (Dom, 04 Jun 2017) | 1 line [FIX] remove styling not needed in trunk r62905 | chealer | 2017-06-05 00:44:55 -0300 (Seg, 05 Jun 2017) | 2 lines [FIX] Broken HTML with feature_community_mouseover r62923 | chealer | 2017-06-07 00:36:36 -0300 (Qua, 07 Jun 2017) | 2 lines [FIX] JavaScript error when hovering task if feature_community_mouseover is enabled r62933 | kroky6 | 2017-06-07 06:54:10 -0300 (Qua, 07 Jun 2017) | 1 line [ENH] process all incremental index updates at the end of batch update (e.g. after bulk TrackerItemModify list execute update) r62938 | chealer | 2017-06-07 18:15:34 -0300 (Qua, 07 Jun 2017) | 3 lines [FIX] JavaScript error when attempting to save from source mode r62940 | jyhem | 2017-06-07 19:14:53 -0300 (Qua, 07 Jun 2017) | 1 line [FIX][bp/r62939] Handle situations when composer fails to self-update r62941 | kroky6 | 2017-06-08 05:10:00 -0300 (Qui, 08 Jun 2017) | 1 line [ENH] add option to cache formatted search results and prevent costly reformatting when results are the same r62944 | rjsmelo | 2017-06-08 18:53:48 -0300 (Qui, 08 Jun 2017) | 2 lines [EHN] Improve explanation about intl extension requirement r62950 | chealer | 2017-06-09 18:56:08 -0300 (Sex, 09 Jun 2017) | 2 lines [FIX] parse_data_process_maketoc(): avoid appending extra linefeed r62960 | amnabilal | 2017-06-11 08:18:34 -0300 (Dom, 11 Jun 2017) | 2 lines [EHN]Coverpage option added in pluginPDF and general pdf settings. Options include cover heading, sub heading, coverpage background, borders, text color and full page background image. r62967 | rjsmelo | 2017-06-11 16:34:04 -0300 (Dom, 11 Jun 2017) | 2 lines [FIX] Issues with LDAP to user syncronization, attributes are not updated/deleted as expected r62975 | chibaguy | 2017-06-12 05:24:22 -0300 (Seg, 12 Jun 2017) | 1 line [UX] Replace inline CSS with a class for (IMO unnecessary) italicization of page title, so the styling can be optional. r62977 | kroky6 | 2017-06-12 08:52:51 -0300 (Seg, 12 Jun 2017) | 1 line [ENH] add run timeout option for ShellCommand Scheduler task r62984 | amnabilal | 2017-06-12 13:37:22 -0300 (Seg, 12 Jun 2017) | 1 line [Fix]Reset page number and suppress printing page number on TOC r62985 | amnabilal | 2017-06-12 15:53:49 -0300 (Seg, 12 Jun 2017) | 1 line [Fix]Default values are set to empty. r62987 | kroky6 | 2017-06-13 06:48:11 -0300 (Ter, 13 Jun 2017) | 1 line [ENH] add option to list:execute console command to specify GET/POST parameters for wiki argvariable replacement r62988 | amnabilal | 2017-06-13 06:54:20 -0300 (Ter, 13 Jun 2017) | 1 line [Fix]Cover Page will be generated if text or image is set, also set background to no repeat and position to center. r62999 | chealer | 2017-06-13 13:18:44 -0300 (Ter, 13 Jun 2017) | 2 lines [FIX] Warn when the appropriate CSS file is not used r63002 | rjsmelo | 2017-06-13 20:02:59 -0300 (Ter, 13 Jun 2017) | 2 lines [ENH] Move PHP SAML support to the optional packages r63003 | rjsmelo | 2017-06-13 20:04:29 -0300 (Ter, 13 Jun 2017) | 2 lines [FIX] Composer Cli wrapper failed when errors are mixed with the standard output r63004 | rjsmelo | 2017-06-13 21:01:07 -0300 (Ter, 13 Jun 2017) | 2 lines [ENH] Move the config file for the list of external composer packages to a yaml file to ease the configuration r63007 | kroky6 | 2017-06-15 02:15:07 -0300 (Qui, 15 Jun 2017) | 1 line [DOC] improve doc for ListExecute command r63008 | amnabilal | 2017-06-15 11:25:01 -0300 (Qui, 15 Jun 2017) | 1 line [Fix]table-striped even class added padding r63009 | kroky6 | 2017-06-16 09:32:33 -0300 (Sex, 16 Jun 2017) | 1 line [ENH] add missing packages to satis r63010 | kroky6 | 2017-06-16 10:00:07 -0300 (Sex, 16 Jun 2017) | 1 line [ENH] add subtotal.js from packagist and update wrong paths to composer.tiki.org r63011 | kroky6 | 2017-06-16 10:10:32 -0300 (Sex, 16 Jun 2017) | 1 line [ENH] add subtotal.js extra renderers to pivottable plugin r63012 | amnabilal | 2017-06-16 17:37:57 -0300 (Sex, 16 Jun 2017) | 1 line [Fix]TOC margins fixed, watermark text and image settings disabled for cover page. Plugin fields description improved. r63016 | lindonb | 2017-06-18 09:33:06 -0300 (Dom, 18 Jun 2017) | 1 line [FIX] Restore inadvertently reverted changes with the last semi-automatic merge r63015 r63027 | lindonb | 2017-06-18 13:01:18 -0300 (Dom, 18 Jun 2017) | 1 line [fp/r62670 and r62671][FIX] comments: better filtering and escaping for comment object IDs. Not merged from 17.x for some reason. r63049 | kroky6 | 2017-06-20 17:13:10 -0300 (Ter, 20 Jun 2017) | 1 line [ENH] cache search formatter in getPopulatedList rather than render method and optimize math calculation field for ItemsList reference values r63050 | kroky6 | 2017-06-21 04:24:16 -0300 (Qua, 21 Jun 2017) | 1 line [DOC] update search formatter cache help with info about clearing the cache r63051 | chealer | 2017-06-21 18:12:02 -0300 (Qua, 21 Jun 2017) | 2 lines [FIX] feature_wiki_comments (name and description) r63053 | amnabilal | 2017-06-22 01:59:43 -0300 (Qui, 22 Jun 2017) | 1 line [Fix]Fixed pdf generation for multiprint and structures, previously was printing blank documents. r63054 | kroky6 | 2017-06-22 05:14:01 -0300 (Qui, 22 Jun 2017) | 1 line [FIX] search formatter cache key extended to support different formatting for the same data (e.g. two PluginList outputs on the same page) r63058 | kroky6 | 2017-06-22 05:46:23 -0300 (Qui, 22 Jun 2017) | 1 line [DOC] update search formatter help texts as per chealer recommendations r63059 | kroky6 | 2017-06-22 05:48:52 -0300 (Qui, 22 Jun 2017) | 1 line [DOC] update ListExecuteCommand help text r63061 | chealer | 2017-06-22 11:46:28 -0300 (Qui, 22 Jun 2017) | 1 line [FIX] "Sélectionner quels éléments sont affichés lors dans les listes de pages" r63063 | chealer | 2017-06-22 14:53:11 -0300 (Qui, 22 Jun 2017) | 3 lines [FIX] AJAX feedback r63064 | chealer | 2017-06-22 16:44:23 -0300 (Qui, 22 Jun 2017) | 2 lines [FIX] The parentheses had different size r63065 | rjsmelo | 2017-06-23 19:37:58 -0300 (Sex, 23 Jun 2017) | 2 lines [FIX] Mismatch in the case of the packages in composer.json (package show as not installed due to case mismatch) r63084 | chealer | 2017-06-26 11:03:26 -0300 (Seg, 26 Jun 2017) | 1 line [FIX] "des tels caractères" r63086 | xavidp | 2017-06-26 18:59:00 -0300 (Seg, 26 Jun 2017) | 1 line [FIX]Typos, and Adding page exposing prefs about new and improved features in Tiki17 as well as iframe with doc page about Tiki17 also. To be backported to 17.x at some point (can this kind of fix - missing info - be backported just now before 17.0? - feel free anyone if so) r63088 | kroky6 | 2017-06-27 07:29:51 -0300 (Ter, 27 Jun 2017) | 1 line [ENH] ajax server-side tablesorter filters work with _text formatted display fields for more natural searching r63089 | kroky6 | 2017-06-27 07:32:26 -0300 (Ter, 27 Jun 2017) | 1 line [ENH] make server-side tablesorter date range filtering compare the field in question instead of default modification_date r63090 | kroky6 | 2017-06-27 07:34:07 -0300 (Ter, 27 Jun 2017) | 1 line [ENH] plugin ListExecute updated to allow applying action to all results even when they are not shown (e.g. when using server-side tablesorter rendering with pagination) r63091 | chibaguy | 2017-06-27 07:59:36 -0300 (Ter, 27 Jun 2017) | 1 line [FIX][UX] Improve interface language strings. r63092 | chibaguy | 2017-06-27 08:01:43 -0300 (Ter, 27 Jun 2017) | 1 line [FIX][UX] Improve interface language strings (punctuation consistency). r63093 | chibaguy | 2017-06-27 08:02:57 -0300 (Ter, 27 Jun 2017) | 1 line [FIX][UX] Improve interface language strings (clarify meaning). r63096 | chibaguy | 2017-06-27 08:27:09 -0300 (Ter, 27 Jun 2017) | 1 line [FIX][UX] Adjust spacing, etc. r63099 | rjsmelo | 2017-06-27 19:36:10 -0300 (Ter, 27 Jun 2017) | 2 lines [ENH] Ensure Mysql Backups are consistents, by using lock tables (MyISAM) or single transactions (InnoDB) r63110 | rjsmelo | 2017-06-28 20:05:24 -0300 (Qua, 28 Jun 2017) | 4 lines [ENH] Add Unit tests to the classes related with composer packages r63111 | chibaguy | 2017-06-29 06:41:30 -0300 (Qui, 29 Jun 2017) | 1 line [ENH][UX] Make disabled features icons clickable for navigation to feature activation page (WYSIWYCA rule violation); thanks, Marc and also luci for advice. r63114 | kroky6 | 2017-06-29 12:13:28 -0300 (Qui, 29 Jun 2017) | 1 line [ENH] allow Relations tracker field to define the format to display, input and search related items r63118 | rjsmelo | 2017-06-30 04:19:08 -0300 (Sex, 30 Jun 2017) | 2 lines [FIX] Missing parameter in constructor, when called from the web interface r63123 | rjsmelo | 2017-07-02 06:14:23 -0300 (Dom, 02 Jul 2017) | 2 lines [ENH] Add preference that enable the admin to completly disable the Scheduler functionality r63124 | rjsmelo | 2017-07-02 07:07:13 -0300 (Dom, 02 Jul 2017) | 2 lines [MOD] Replace usage of SSH extension with phpseclib (that is already bundled) reducing the number of external dependencies. r63168 | amnabilal | 2017-07-04 15:31:37 -0300 (Ter, 04 Jul 2017) | 1 line [EHN]New option added in pluginPDF and pdfPage to define hyperlink behavior in PDF document. Off will remove links, footnote will remove links from main content and list at end of page. r63211 | xavidp | 2017-07-09 05:45:50 -0300 (Dom, 09 Jul 2017) | 1 line [FIX]Expose the missing new prefs and info about improved features (thanks Marc for the info in doc.t.o and dev.t.o about Tiki18) in the corresponding new page of the upgrade wizard for Tiki18. Please, add here somewhere also the new prefs that you or others add to trunk before 18.0 is released, if you can (thks). r63212 | xavidp | 2017-07-09 06:03:35 -0300 (Dom, 09 Jul 2017) | 1 line [FIX]Show the corresponding page from doc.t.o for Tiki18 LTS in the upgrade wizard (aggregated info from the last LTS) r63222 | kroky6 | 2017-07-10 07:54:13 -0300 (Seg, 10 Jul 2017) | 1 line [ENH] hide current tracker item in self-related Relation field setup to prevent linking an item to itself r63230 | kroky6 | 2017-07-10 10:50:48 -0300 (Seg, 10 Jul 2017) | 1 line [ENH] add ability for tablesorter filters to search by prefix/initial search rather than content/full-text kind of search for use cases like partial identifier matches; side effect is that this makes the tablesorter server-side filtering similar to on-page JS filtering which works on prefixes/initial matches r63231 | kroky6 | 2017-07-10 12:14:37 -0300 (Seg, 10 Jul 2017) | 1 line [DOC] add documentation for r63230 - initial option for tsfilters text type r63232 | jyhem | 2017-07-10 19:04:12 -0300 (Seg, 10 Jul 2017) | 1 line [ENH] Allow toggling the width of long data tables for cases where usability is temporarily more important than layout r63237 | jyhem | 2017-07-11 15:25:45 -0300 (Ter, 11 Jul 2017) | 1 line [ENH] Minor text improvements on r63232. Thanks Gary & Chealer r63238 | xavidp | 2017-07-11 15:28:17 -0300 (Ter, 11 Jul 2017) | 1 line [FIX]Added missing plugin pivottable in the list of updated plugins (subtotal.js was added) r63239 | chealer | 2017-07-12 09:41:41 -0300 (Qua, 12 Jul 2017) | 2 lines [FIX] Scheduler item r63240 | lfagundes | 2017-07-12 11:26:14 -0300 (Qua, 12 Jul 2017) | 3 lines [FIX] Perms::simpleFilter was being called with wrong parameter type. Page removal (and probably other actions) was breaking in AdoDB, while PDO is tolerant with wrong parameter. r63247 | lfagundes | 2017-07-12 15:31:02 -0300 (Qua, 12 Jul 2017) | 2 lines [FIX] Error when trying to add a spreadsheet from a wiki page r63248 | kroky6 | 2017-07-13 06:08:31 -0300 (Qui, 13 Jul 2017) | 1 line [ENH] csv downloadable table output from List/ListExecute plugins: server-side generated via index result scrolling and formatted into csv; refactor existing formatter templates to fit the new csv formatter plugin r63250 | kroky6 | 2017-07-13 06:24:01 -0300 (Qui, 13 Jul 2017) | 1 line [ENH] csv downloadable file name specification in List/ListExecute plugins r63258 | kroky6 | 2017-07-14 11:37:22 -0300 (Sex, 14 Jul 2017) | 1 line [ENH] trackeritem file field backlinks track of uploaded files + added benefit of observing trackeritem view permissions when downloading attached file and backlinkPerms file gallery option is enabled r63261 | rjsmelo | 2017-07-15 20:29:39 -0300 (Sáb, 15 Jul 2017) | 2 lines [ENH] Remove misleading message while processing scheduled tasks r63262 | rjsmelo | 2017-07-16 07:40:12 -0300 (Dom, 16 Jul 2017) | 2 lines [ENH] Provide "in place" info how PHP configurations can be overridden r63263 | rjsmelo | 2017-07-16 10:14:21 -0300 (Dom, 16 Jul 2017) | 2 lines [ENH] Move the function to write text in image to the image library, expand to be supported also using GD r63264 | kroky6 | 2017-07-17 07:50:45 -0300 (Seg, 17 Jul 2017) | 1 line [ENH] add missing attachment backlinks to their respective items via sql migration script (complements r63258) r63268 | kroky6 | 2017-07-17 12:31:05 -0300 (Seg, 17 Jul 2017) | 4 lines [ENH] a number of trackerlist tablesorter enhancements: r63271 | robertokir | 2017-07-18 18:34:06 -0300 (Ter, 18 Jul 2017) | 2 lines [ENH] In tiki-adminusers.php: new action: switch to this user r63275 | chibaguy | 2017-07-19 04:37:21 -0300 (Qua, 19 Jul 2017) | 1 line [FIX][UI][bp/r63274] In Fixed top navbar 2 layout, body needed more top padding to avoid content being overlapped by fixed navbar. (Fixed top navbar 1 layout has an extra div.topbar that prevents the overlap even when empty.) r63281 | chibaguy | 2017-07-19 05:15:16 -0300 (Qua, 19 Jul 2017) | 1 line [FIX][UI][]bp/r63280] In Fixed top navbar 2 layout, background color of navbar log-in form shouldn't change on hover (exception to dropdown list behavior). r63283 | chibaguy | 2017-07-19 09:19:26 -0300 (Qua, 19 Jul 2017) | 1 line [FIX][UI][bp/r63282] Added specific variables for CKEditor background and text colors so themes not using body background and/or text colors for the editor can override easily. (Most themes use body background and text colors so no change for them. Strasa didn't, so it is fixed.) Also replaced !important with greater selector specificity. r63284 | chealer | 2017-07-19 10:09:26 -0300 (Qua, 19 Jul 2017) | 2 lines [FIX] Missing period r63296 | chealer | 2017-07-20 12:33:21 -0300 (Qui, 20 Jul 2017) | 2 lines [FIX] physical_check_from_content() r63297 | robertokir | 2017-07-20 15:19:16 -0300 (Qui, 20 Jul 2017) | 2 lines [ENH]When removing a Wiki page, user can indicate a page to which a 301 redirect will be created. If the destination page doesn't exist it'll be created. r63299 | robertokir | 2017-07-20 16:04:36 -0300 (Qui, 20 Jul 2017) | 2 lines [UX] Changed help icon in wiki rename page r63300 | rjsmelo | 2017-07-20 19:20:43 -0300 (Qui, 20 Jul 2017) | 3 lines [FIX] When there are 2 tables (ListExecute) in the page, the ids are not generated. r63304 | rjsmelo | 2017-07-20 20:17:53 -0300 (Qui, 20 Jul 2017) | 2 lines [ENH] Move HTTP header settings related to security to the security page, mark prefs as advanced r63305 | amnabilal | 2017-07-21 05:10:03 -0300 (Sex, 21 Jul 2017) | 1 line [EHN]Added options for number of columns, background color and background image in PDF settings, PluginPDF and plugin PDFPage. r63311 | xavidp | 2017-07-21 19:51:10 -0300 (Sex, 21 Jul 2017) | 1 line [FIX]Added missing params (as up to r63305) in the upgrade wizard for Print control panel when mPDF is selected so that new tiki admins upgrading know about them more easily when reviewing the wizards. r63312 | xavidp | 2017-07-21 19:56:11 -0300 (Sex, 21 Jul 2017) | 1 line [FIX]Added info about plugin trackerlist as improved plugin (as of r63268) in the upgrade wizard r63313 | xavidp | 2017-07-21 19:59:48 -0300 (Sex, 21 Jul 2017) | 1 line [FIX]Added info about plugin list and listexecute as improved plugins (as of r63248) in the upgrade wizard r63337 | kroky6 | 2017-07-25 11:28:01 -0300 (Ter, 25 Jul 2017) | 1 line [FIX] complements trunk-only update r63090 to fix selection of all items even when some of them are not checked - due to tablesorter indeterminate state of the select-all checkbox r63339 | robertokir | 2017-07-25 12:23:26 -0300 (Ter, 25 Jul 2017) | 2 lines [DOC] Use standard Smarty syntax for Information icon in rename and delete wiki pages. r63343 | chealer | 2017-07-25 18:32:53 -0300 (Ter, 25 Jul 2017) | 1 line [rb/r62853 "[FIX][bp/r62852] Rolls back r61942 after discussion. In the interest of keeping tags simple" r63345 | rjsmelo | 2017-07-25 20:25:49 -0300 (Ter, 25 Jul 2017) | 2 lines [ENH] Improve notifications when deleting a tracker r63355 | rjsmelo | 2017-07-26 04:39:17 -0300 (Qua, 26 Jul 2017) | 2 lines [NEW] Allow plugin tarcker stat to report also on user fields. r63356 | chibaguy | 2017-07-26 05:08:57 -0300 (Qua, 26 Jul 2017) | 1 line [FIX][UI][bp/r63354] Make Chosen select elements conform to theme style (regarding height, padding, font-size, and line-height). Thanks to Jonny for reporting. (Changes in Less files backported from branch 17 and then CSS compiled.) r63358 | robertokir | 2017-07-26 12:07:33 -0300 (Qua, 26 Jul 2017) | 2 lines [ENH] New console command to lock the Tiki installer: installer:lock r63362 | jyhem | 2017-07-26 13:42:31 -0300 (Qua, 26 Jul 2017) | 1 line [bp/r63361] fix vim-user style typo r63365 | chealer | 2017-07-26 14:46:38 -0300 (Qua, 26 Jul 2017) | 2 lines [DB] Remove tiki_{articles,submissions}.hash r63370 | robertokir | 2017-07-26 16:32:55 -0300 (Qua, 26 Jul 2017) | 2 lines [DOC] Minor adjustments in help text and change in php file name for consistent naming. r63375 | kroky6 | 2017-07-27 05:20:12 -0300 (Qui, 27 Jul 2017) | 4 lines [ENH] several tracker tabular enhancements: r63377 | robertokir | 2017-07-27 10:13:40 -0300 (Qui, 27 Jul 2017) | 2 lines [DOC] Change "Lock the installer" to "Disable the installer" in command description. r63378 | robertokir | 2017-07-27 10:21:33 -0300 (Qui, 27 Jul 2017) | 2 lines [FIX] Cleaned leftovers. r63379 | kroky6 | 2017-07-27 10:44:54 -0300 (Qui, 27 Jul 2017) | 1 line [FIX] trunk-only updates fix: ListExecute actions applied to ajax tablesorter filtered items not always being applied (e.g. second page of pagination or filtered item not present on initial search results); now search query is deliberately different than the action execute query, so both can work on different set of objects r63380 | robertokir | 2017-07-27 10:52:30 -0300 (Qui, 27 Jul 2017) | 1 line [FIX] Cleaned Leftovers r63381 | kroky6 | 2017-07-27 10:57:04 -0300 (Qui, 27 Jul 2017) | 1 line [FIX] complements 63379: make it work with ElasticSearch by ignoring empty or invalid identifiers r63382 | chealer | 2017-07-27 11:26:43 -0300 (Qui, 27 Jul 2017) | 1 line [FIX] art_list_reads: Depend on feature_stats r63394 | kroky6 | 2017-07-28 05:53:17 -0300 (Sex, 28 Jul 2017) | 1 line [ENH] [REF] add tabular config to ignore blanks when import is updating items; change config wording; refactor TrackerWriter to use iterator function and avoid code duplication for item validation r63400 | rjsmelo | 2017-07-29 08:46:24 -0300 (Sáb, 29 Jul 2017) | 2 lines [ENH] Make sure the Named Object references are validated on export and when applying profiles r63416 | montefuscolo | 2017-07-31 01:55:32 -0300 (Seg, 31 Jul 2017) | 1 line [NEW] Let user upload CSV file to provide custom translations. r63422 | rjsmelo | 2017-07-31 19:41:08 -0300 (Seg, 31 Jul 2017) | 2 lines [ENH] Enable setting "Time and Memory Limits" for printing r63423 | rjsmelo | 2017-07-31 21:41:23 -0300 (Seg, 31 Jul 2017) | 2 lines [ENH] Replace the old pear css minifier, with matthiasmullie/minify that was already used for JS r63424 | rjsmelo | 2017-08-01 05:17:33 -0300 (Ter, 01 Ago 2017) | 2 lines [MOD] Rename preference introduced in 63422, the limits apply to print pdf and not only for trackers r63434 | chealer | 2017-08-01 18:26:08 -0300 (Ter, 01 Ago 2017) | 2 lines [FIX] Regressions from r63433 r63436 | robertokir | 2017-08-01 20:01:46 -0300 (Ter, 01 Ago 2017) | 2 lines [FIX] 301 Redirect when Wiki Page is removed now works for removal of multiple pages. r63437 | kroky6 | 2017-08-02 04:31:53 -0300 (Qua, 02 Ago 2017) | 1 line [ENH] add ListExecute EmailAction from paramter to be able to specify email address or a tracker field to take the From/Sender header details - might be UserSelector field with details about the sender email and real name; update to/replyto/cc/bcc fields to work with UserSelector fields containing multiple users r63438 | kroky6 | 2017-08-02 05:47:19 -0300 (Qua, 02 Ago 2017) | 1 line [ENH] add ListExecute EmailAction is_html parameter to be able to use trackerrender with html output in the content of the email r63439 | kroky6 | 2017-08-02 06:13:15 -0300 (Qua, 02 Ago 2017) | 1 line [ENH] put Tiki url processing in external mode when executing ListExecute actions, so email actions don't send out relative urls r63442 | chealer | 2017-08-02 11:58:56 -0300 (Qua, 02 Ago 2017) | 2 lines [FIX] buildPatchList(): Non-portable call to glob() r63444 | lfagundes | 2017-08-02 13:51:55 -0300 (Qua, 02 Ago 2017) | 3 lines [ENH] Extract text contents from PDF file for search indexing using native handler based on PdfToText. r63446 | kroky6 | 2017-08-03 02:26:54 -0300 (Qui, 03 Ago 2017) | 1 line [FIX] ListExecute download function fix to work with proper search query r63450 | jyhem | 2017-08-03 11:50:57 -0300 (Qui, 03 Ago 2017) | 1 line [UX] Make the users import match the users import description. r63451 | robertokir | 2017-08-03 15:00:34 -0300 (Qui, 03 Ago 2017) | 2 lines [FIX] Javascript-escape User variable. Added {ticket} to the Switch to User form. r63452 | pom2ter | 2017-08-03 23:26:28 -0300 (Qui, 03 Ago 2017) | 1 line [NEW] added custom css for the conversejs plugin to adapt it to the current theme r63453 | pom2ter | 2017-08-03 23:31:17 -0300 (Qui, 03 Ago 2017) | 1 line [NEW] forgot missing less file for r63452 r63454 | robertokir | 2017-08-04 11:39:54 -0300 (Sex, 04 Ago 2017) | 2 lines [FIX] Graceful error management when URL is wrong for admin panel. r63455 | chealer | 2017-08-04 16:15:30 -0300 (Sex, 04 Ago 2017) | 3 lines [FIX] Typo "Boostrap" r63456 | robertokir | 2017-08-04 16:23:18 -0300 (Sex, 04 Ago 2017) | 2 lines [FIX] In Admin Users page, Switch to User feature requires tiki_p_admin. r63459 | xavidp | 2017-08-05 09:06:28 -0300 (Sáb, 05 Ago 2017) | 1 line [FIX]Added info about plugin includetpl which seems to have been introduced in Tiki15 r63463 | xavidp | 2017-08-05 13:03:49 -0300 (Sáb, 05 Ago 2017) | 1 line [ENH]Added new profile in the Profiles Wizard - Changes in display mode, to facilitate new site admins get a quicky way to explore the fixed top bar zone on a brand new install while applying hte js magic to thide the top navbar zone on page scroll and display as top stikcky bar the topbar module containing the site horitontal menu. Thanks luci and jonnyb - the authors of the real magic in the profile https://profiles.tiki.org/Hide+Fixed+Top+Nav+Bar+on+Scroll r63464 | xavidp | 2017-08-05 14:01:43 -0300 (Sáb, 05 Ago 2017) | 1 line [FIX]Consistency in the naming of images from profile thumbs r63465 | xavidp | 2017-08-05 14:03:04 -0300 (Sáb, 05 Ago 2017) | 1 line [ENH]Added new profile in the Profiles Wizard to showcase Execute on List. Thanks marclaporte r63466 | xavidp | 2017-08-05 14:07:37 -0300 (Sáb, 05 Ago 2017) | 1 line [FIX]This profile name was made with spaces instead of underscores r63467 | xavidp | 2017-08-05 18:20:01 -0300 (Sáb, 05 Ago 2017) | 1 line [FIX]Minor syntax/grammar fixes. Thanks chealer r63468 | rjsmelo | 2017-08-06 06:20:20 -0300 (Dom, 06 Ago 2017) | 2 lines [ENH] Add return value information to enable autocomplete in IDE r63469 | rjsmelo | 2017-08-06 06:21:26 -0300 (Dom, 06 Ago 2017) | 2 lines [NEW] Enable PluginList to return only a given set of values, usefull to filter the results or return results in a spefic order r63470 | rjsmelo | 2017-08-06 07:28:37 -0300 (Dom, 06 Ago 2017) | 2 lines [NEW] Plugin Tracker Calendar Allow user to set the colormap for the events based on the priority r63471 | rjsmelo | 2017-08-06 09:06:24 -0300 (Dom, 06 Ago 2017) | 2 lines [FIX] Fix wrong string concatenation when do simple reference check introduced in r63400 r63472 | rjsmelo | 2017-08-06 09:09:52 -0300 (Dom, 06 Ago 2017) | 2 lines [NEW] New option 'include-files' that exports FileGallery files when exporting teh gallery from command line, also allow local file import (instead of onaly allow url references) r63473 | robertokir | 2017-08-06 10:33:49 -0300 (Dom, 06 Ago 2017) | 2 lines [ENH] Graceful error management when URL is wrong for admin panel: simplify error message. r63474 | rjsmelo | 2017-08-06 12:56:32 -0300 (Dom, 06 Ago 2017) | 2 lines [NEW] Report unified index engine and version when rebuilding the index r63475 | xavidp | 2017-08-06 14:27:26 -0300 (Dom, 06 Ago 2017) | 1 line [FIX]add info on new plugin improved in Tiki18 r63476 | drsassafras | 2017-08-06 22:03:57 -0300 (Dom, 06 Ago 2017) | 1 line [ENH] lossless image compression, 82kb saved, up to 70% per file r63481 | amnabilal | 2017-08-07 11:58:00 -0300 (Seg, 07 Ago 2017) | 2 lines [Fix]Added css display block for tabs content in print version of tracker items. r63481 | amnabilal | 2017-08-07 11:58:00 -0300 (Seg, 07 Ago 2017) | 2 lines [EHN]Added PDF support for tracker items. r63484 | montefuscolo | 2017-08-07 16:17:47 -0300 (Seg, 07 Ago 2017) | 1 line [FIX] Add doc blocks to TranslationReader public methods r63487 | robertokir | 2017-08-08 09:59:28 -0300 (Ter, 08 Ago 2017) | 2 lines [FIX] Rollback should indicate who did the rollback. r63493 | chealer | 2017-08-08 17:35:46 -0300 (Ter, 08 Ago 2017) | 1 line [FIX] Adapt password labels to context - no "New password" when creating a user r63500 | robertokir | 2017-08-09 11:40:39 -0300 (Qua, 09 Ago 2017) | 2 lines [ENH] Switch to User: once switched, redirect to user's group home page or wikiHomePage. r63504 | chealer | 2017-08-09 14:29:47 -0300 (Qua, 09 Ago 2017) | 2 lines [FIX] Quiet failure when information could not be determined r63507 | chealer | 2017-08-09 16:41:25 -0300 (Qua, 09 Ago 2017) | 2 lines [FIX] JavaScript translation r63511 | chealer | 2017-08-09 17:36:44 -0300 (Qua, 09 Ago 2017) | 1 line [TRA] "Edit" r63515 | chealer | 2017-08-10 14:07:23 -0300 (Qui, 10 Ago 2017) | 2 lines [FIX] Avoid escaping all ampersands at the end, no matter where they appear r63517 | chealer | 2017-08-10 14:47:24 -0300 (Qui, 10 Ago 2017) | 2 lines [FIX] Popups r63520 | chealer | 2017-08-11 11:30:42 -0300 (Sex, 11 Ago 2017) | 2 lines [FIX] TikiAccessLib::redirect() message handling r63522 | chealer | 2017-08-11 12:44:01 -0300 (Sex, 11 Ago 2017) | 3 lines [FIX] Do not always report E_USER_NOTICE r63522 | chealer | 2017-08-11 12:44:01 -0300 (Sex, 11 Ago 2017) | 3 lines [FIX] Do not report E_STRICT when filtering notices r63525 | jyhem | 2017-08-11 12:57:37 -0300 (Sex, 11 Ago 2017) | 1 line [rollback 63519] Ooops, tiki_p_view_trackers controls whether to view both - a tracker in a listing and also any individual opened status tracker items (thanks chealer and luci) r63528 | chealer | 2017-08-11 14:02:30 -0300 (Sex, 11 Ago 2017) | 1 line [FIX] HTML (replace align attribute with CSS rule for class categbar) r63530 | chealer | 2017-08-11 15:21:25 -0300 (Sex, 11 Ago 2017) | 1 line [FIX] Fix "Save & Back to Items list" in French, uniformize English strings r63535 | chibaguy | 2017-08-12 02:41:04 -0300 (Sáb, 12 Ago 2017) | 1 line [bp/r63534][FIX] Error when compiling the Didiem theme due to stray variable name. Thanks to Chealer for spotting. r63536 | rjsmelo | 2017-08-13 20:55:49 -0300 (Dom, 13 Ago 2017) | 2 lines [FIX] Add missing translation tags r63537 | rjsmelo | 2017-08-13 21:10:16 -0300 (Dom, 13 Ago 2017) | 2 lines [ENH] Improve description for colormap in plugin tracker calendar r63538 | chibaguy | 2017-08-14 01:45:31 -0300 (Seg, 14 Ago 2017) | 1 line [FIX][UI]Calendar nav "next" icon tooltip wasn't styled as Bootstrap popover ("tips" class missing). r63539 | chealer | 2017-08-14 15:22:05 -0300 (Seg, 14 Ago 2017) | 3 lines [FIX] Report errors from preg_replace() r63545 | robertokir | 2017-08-15 09:11:08 -0300 (Ter, 15 Ago 2017) | 2 lines [FIX] PluginAlias: fixed bug: deleting an alias deletes them all. r63547 | chealer | 2017-08-15 11:45:04 -0300 (Ter, 15 Ago 2017) | 2 lines [FIX] Output of TRACKER plugin sometimes parsed (breaking HTML) r63548 | chealer | 2017-08-15 13:06:28 -0300 (Ter, 15 Ago 2017) | 1 line [FIX] HTML special characters escaping (field names and descriptions) r63552 | chealer | 2017-08-15 15:59:27 -0300 (Ter, 15 Ago 2017) | 1 line [FIX] "Display Limit (List)" r63555 | jyhem | 2017-08-15 17:30:48 -0300 (Ter, 15 Ago 2017) | 1 line [FIX][bp/r63554] Typo r63556 | chealer | 2017-08-15 17:35:43 -0300 (Ter, 15 Ago 2017) | 1 line [FIX] HTML special characters escaping (field names) r63557 | chealer | 2017-08-15 17:40:57 -0300 (Ter, 15 Ago 2017) | 1 line [FIX] HTML special characters escaping (field descriptions) r63560 | pom2ter | 2017-08-15 19:33:10 -0300 (Ter, 15 Ago 2017) | 1 line [NEW] Added rotate parameter to PluginIcon r63564 | lfagundes | 2017-08-16 13:12:47 -0300 (Qua, 16 Ago 2017) | 5 lines [FIX] Page with many PluginSheet calls now respects their own uses of parameter 'simple=y/n' r63567 | pom2ter | 2017-08-16 19:43:12 -0300 (Qua, 16 Ago 2017) | 1 line [FIX] Blog post title doesn't display in preview mode r63582 | pom2ter | 2017-08-17 19:28:55 -0300 (Qui, 17 Ago 2017) | 1 line [FIX] long file description for file galleries overflows page r63584 | robertokir | 2017-08-17 19:56:33 -0300 (Qui, 17 Ago 2017) | 2 lines [ENH] Switching to User from Admin Users page or from login_box module: use ticketing system. Thanks jonny, chealer and asa. r63591 | pom2ter | 2017-08-18 01:03:25 -0300 (Sex, 18 Ago 2017) | 1 line [FIX] new blog post title doesn't display in preview mode r63600 | jyhem | 2017-08-18 21:26:19 -0300 (Sex, 18 Ago 2017) | 1 line [rb/r63598] We have a devlist for a reason r63604 | rjsmelo | 2017-08-20 10:17:55 -0300 (Dom, 20 Ago 2017) | 6 lines [New] Internal Autoload, enabling lazy load based on preferences (and other custom rules) r63616 | kroky6 | 2017-08-22 10:23:07 -0300 (Ter, 22 Ago 2017) | 1 line [ENH] allow ListExecute tablesorter ajax-filtered table to download only filtered results as CSV file r63617 | kroky6 | 2017-08-22 10:33:25 -0300 (Ter, 22 Ago 2017) | 1 line [ENH] [FIX] filtered download CSV list fixed to work without any actions present in ListExecute plugin r63619 | drsassafras | 2017-08-22 13:27:44 -0300 (Ter, 22 Ago 2017) | 1 line [ENH] get_strings - exclude directories where there are no translatable strings to find (to shave a couple seconds off the execution time) r63628 | drsassafras | 2017-08-23 05:12:40 -0300 (Qua, 23 Ago 2017) | 1 line [rb/62601][MRG] Automatic merge, branches/17.x translations (for new ones coming. probably not needed, but better safe than sorry) r63635 | robertokir | 2017-08-23 18:57:46 -0300 (Qua, 23 Ago 2017) | 2 lines [ENH] Roll back wiki page. New field for describing the reason for roll back. r63636 | pom2ter | 2017-08-23 19:30:48 -0300 (Qua, 23 Ago 2017) | 1 line [FIX] fullscreen toggle icons shouldnt display when the wiki editor is in fullscreen mode r63643 | rjsmelo | 2017-08-24 03:45:30 -0300 (Qui, 24 Ago 2017) | 2 lines [FIX] Revert automatic merge changes to wikiplugin_tracker as part of r63606 r63644 | robertokir | 2017-08-24 09:11:23 -0300 (Qui, 24 Ago 2017) | 2 lines [FIX] Wrong user in wiki page rollback edit comments. r63651 | kroky6 | 2017-08-24 17:29:52 -0300 (Qui, 24 Ago 2017) | 1 line [ENH] trackerlib item search for ItemLink field in numeric context allow searching for data value as well, not only the linked item ID; example use case: user generated numeric IDs linked via ItemLink field should be searchable in tracker items list r63652 | kroky6 | 2017-08-24 17:48:58 -0300 (Qui, 24 Ago 2017) | 1 line [ENH] report duplicate entries when importing and updating existing entries with Tracker Tabular r63653 | drsassafras | 2017-08-24 19:41:39 -0300 (Qui, 24 Ago 2017) | 1 line [REM] Removed pref not connected to anything! r63667 | kroky6 | 2017-08-25 10:47:22 -0300 (Sex, 25 Ago 2017) | 1 line [FIX] trunk-only restores scehduler feature accidentally deleted in commit 63640 which was an automatic merge - I suppose conflict was not properly resolved there r63668 | rjsmelo | 2017-08-25 12:38:19 -0300 (Sex, 25 Ago 2017) | 2 lines [NEW] Profiles: Enable export of tracker items from command line r63674 | rjsmelo | 2017-08-26 16:56:03 -0300 (Sáb, 26 Ago 2017) | 2 lines [NEW] Enable the usage of Faker to generate test data for trackers r63675 | rjsmelo | 2017-08-27 14:57:09 -0300 (Dom, 27 Ago 2017) | 2 lines [FIX] Wrong capitalization on package name r63676 | rjsmelo | 2017-08-27 15:09:05 -0300 (Dom, 27 Ago 2017) | 2 lines [UPD] Change packages constratints and update lock file to include PdfToText package r63690 | nkoth | 2017-08-28 19:24:03 -0300 (Seg, 28 Ago 2017) | 2 lines [FIX] Replace Vimeo API code with new API as old API isn't working anymore r63691 | jyhem | 2017-08-28 20:50:34 -0300 (Seg, 28 Ago 2017) | 1 line [FIX] The doc says it tests against an empty value, which it did not r63699 | rjsmelo | 2017-08-29 20:37:07 -0300 (Ter, 29 Ago 2017) | 2 lines [UPD] Add dependencies to satis in advance of migrate vendor package to composer r63702 | amnabilal | 2017-08-30 03:46:07 -0300 (Qua, 30 Ago 2017) | 1 line [Fix]Formatting and calculations of tiki sheet fixed in PDF. r63705 | kroky6 | 2017-08-30 06:12:42 -0300 (Qua, 30 Ago 2017) | 1 line [ENH] aggregate/group-by functionality for LIST/LISTEXECUTE plugins with ability to sum/total certain columns and apply TrackerItemModify action to the aggregated group r63708 | kroky6 | 2017-08-30 17:38:47 -0300 (Qua, 30 Ago 2017) | 1 line [ENH] [FIX] aggregate item modification fixed to work with null-based value searches in ElasticSearch r63709 | kroky6 | 2017-08-31 06:33:17 -0300 (Qui, 31 Ago 2017) | 1 line [ENH] [FIX] aggregate functionality broke ListExecute action application on more than a page of results, now fixed r63712 | chealer | 2017-09-01 12:03:34 -0300 (Sex, 01 Set 2017) | 1 line [FIX] Label of the field to search by file identifier r63715 | rjsmelo | 2017-09-02 07:15:09 -0300 (Sáb, 02 Set 2017) | 2 lines [FIX] colon should be inside the tr block r63716 | robertokir | 2017-09-02 18:26:39 -0300 (Sáb, 02 Set 2017) | 1 line [ADD] feature: new file added for console.php gallery files copy command r63718 | robertokir | 2017-09-02 18:32:09 -0300 (Sáb, 02 Set 2017) | 1 line [NEW] Console command files:copy to copy files from file galleries to a regular directory on the file system r63719 | rjsmelo | 2017-09-03 11:35:30 -0300 (Dom, 03 Set 2017) | 2 lines [NEW] Allow for site admins to generate XML Sitemaps that can be submitted to most of the Search Engines r63720 | rjsmelo | 2017-09-03 11:50:06 -0300 (Dom, 03 Set 2017) | 2 lines [FIX] Remove extra div tag introduced in r63715 r63722 | amnabilal | 2017-09-04 09:09:44 -0300 (Seg, 04 Set 2017) | 1 line [Fix]Moved PDF related function storeTable out of AutoSave/Controller.php in new PDF/Controller.php r63723 | jyhem | 2017-09-04 14:32:13 -0300 (Seg, 04 Set 2017) | 1 line [FIX] I could not click on it before with FF. Also, now it's consistent with all other buttons in this row. r63726 | rjsmelo | 2017-09-04 20:00:50 -0300 (Seg, 04 Set 2017) | 3 lines [NEW] Enable admins to run the migration process from Image Gallery to File Gallery from the web and from command line. r63727 | rjsmelo | 2017-09-04 20:37:04 -0300 (Seg, 04 Set 2017) | 2 lines [FIX] Review checks for TRIM, fix detection for bzip2 and gzip, add requiremente for nice and mysql command line utils r63728 | amnabilal | 2017-09-05 03:35:27 -0300 (Ter, 05 Set 2017) | 1 line [Fix]Fixed case sensitivity problem in calling PDF controller r63730 | kroky6 | 2017-09-05 09:15:52 -0300 (Ter, 05 Set 2017) | 1 line [ENH] store date-only tracker fields as formatted date strings in search index to prevent items with the same date to have different datetime value (e.g. when editing an item from different timezone and slight time shift results in different datetime value stored in the index) r63731 | kroky6 | 2017-09-05 09:56:43 -0300 (Ter, 05 Set 2017) | 1 line [FIX] enhancement for storing index date-only strings which was incorrectly double parsing unix timestmap values r63732 | kroky6 | 2017-09-05 10:18:49 -0300 (Ter, 05 Set 2017) | 1 line [FIX] another fix for date-only string storage in search index - ensure dates are parsed in Tiki timezone before storing them r63733 | drsassafras | 2017-09-05 11:45:40 -0300 (Ter, 05 Set 2017) | 1 line [FIX] add svn keyword ids r63734 | kroky6 | 2017-09-05 14:13:53 -0300 (Ter, 05 Set 2017) | 1 line [FIX] missing TikiFilter r63735 | kroky6 | 2017-09-05 14:14:32 -0300 (Ter, 05 Set 2017) | 1 line [ENH] better error message for aggregate ListExecute actions r63736 | kroky6 | 2017-09-05 14:16:30 -0300 (Ter, 05 Set 2017) | 1 line [ENH] TrackerItemDelete ListExecute action being able to delete single tracker item or aggregate/group of tracker items - observe permissions, confirm action, allow it to run from the console as well r63737 | kroky6 | 2017-09-05 17:00:11 -0300 (Ter, 05 Set 2017) | 1 line [ENH] ListExecute lack of successful action processing text message now solved r63740 | kroky6 | 2017-09-05 17:53:23 -0300 (Ter, 05 Set 2017) | 1 line [FIX] date-only format fix - use 12UTC rather than current time to prevent date shifts due to timezone differences r63741 | chealer | 2017-09-05 18:08:49 -0300 (Ter, 05 Set 2017) | 2 lines [FIX] find_in r63742 | rjsmelo | 2017-09-05 18:25:04 -0300 (Ter, 05 Set 2017) | 2 lines [FIX] Address recomendations from code review for image gallery migration r63743 | rjsmelo | 2017-09-05 18:43:19 -0300 (Ter, 05 Set 2017) | 2 lines [FIX] Improve implementation of Sitemap protocol, based on feedback r63744 | drsassafras | 2017-09-06 00:10:07 -0300 (Qua, 06 Set 2017) | 1 line [DOC] sitemap protocal pref description r63749 | chealer | 2017-09-06 12:38:56 -0300 (Qua, 06 Set 2017) | 1 line [FIX] name and description r63753 | chealer | 2017-09-06 17:49:20 -0300 (Qua, 06 Set 2017) | 1 line [FIX] "Content Templates" navbar item not available if only feature_file_galleries_templates is active r63760 | chealer | 2017-09-07 12:24:29 -0300 (Qui, 07 Set 2017) | 2 lines [FIX] Template field change handler r63766 | chealer | 2017-09-07 18:10:21 -0300 (Qui, 07 Set 2017) | 2 lines [FIX] Label of link to browse sub-gallery translated to "Ouvert" in French r63767 | rjsmelo | 2017-09-07 18:14:08 -0300 (Qui, 07 Set 2017) | 2 lines [ENH] Move sitemap to storage/public, improve feedback to user, move all static values to constants r63768 | chealer | 2017-09-07 18:15:35 -0300 (Qui, 07 Set 2017) | 1 line [FIX] Less québécois translation for "Pause the Slideshow" r63769 | robertokir | 2017-09-07 18:18:41 -0300 (Qui, 07 Set 2017) | 2 lines [ENH] Now works with fgal_use_db == 'y'. r63771 | rjsmelo | 2017-09-07 18:34:31 -0300 (Qui, 07 Set 2017) | 2 lines [FIX] Fix typo should be since not size r63773 | jyhem | 2017-09-07 22:31:20 -0300 (Qui, 07 Set 2017) | 1 line [bp/r63772][FIX] Restore functionality of dynamically dsplaying appropriate available fields depending on the article type r63779 | chealer | 2017-09-08 13:16:26 -0300 (Sex, 08 Set 2017) | 1 line [FIX] Broken metadata table for files without metadata r63789 | chealer | 2017-09-08 19:49:39 -0300 (Sex, 08 Set 2017) | 1 line [FIX] BMP file handling r63805 | rjsmelo | 2017-09-10 08:34:15 -0300 (Dom, 10 Set 2017) | 2 lines [FIX] When using ZendOpenId::selfUrl the query arguments are removed, so it dont work when we have tiki-index.php?page=XXXX r63806 | amnabilal | 2017-09-11 05:31:23 -0300 (Seg, 11 Set 2017) | 1 line [Fix]Styling of tracker items PDF fixed r63807 | kroky6 | 2017-09-11 10:39:49 -0300 (Seg, 11 Set 2017) | 1 line [ENH] ItemsList option to sort remote items by one or more fields r63808 | chealer | 2017-09-11 10:50:28 -0300 (Seg, 11 Set 2017) | 2 lines [FIX] Remove unified_parse_results r63809 | chealer | 2017-09-11 12:25:14 -0300 (Seg, 11 Set 2017) | 2 lines [FIX] Pagination in page view when fileId is not specified r63812 | kroky6 | 2017-09-12 04:52:21 -0300 (Ter, 12 Set 2017) | 1 line [ENH][FIX] object_selector was using default list size of 25 records when editing tracker fields or plugins resulting in inability to see all tracker fields for larger trackers: e.g. DynamicItemsList field restricting tracker ID resulted in only 25 of its fields to be displayed in Field ID column; any result between the list size (25) and object selector threshold (250) would have been incomplete; fix consists of applying the threshold when filtering tracker fields by tracker id but still having default list size when searching above 250 records r63813 | kroky6 | 2017-09-12 06:48:10 -0300 (Ter, 12 Set 2017) | 1 line [ENH] make coalesce math function work with for-each returning array of values r63815 | chealer | 2017-09-12 12:03:28 -0300 (Ter, 12 Set 2017) | 1 line [FIX] Only pass fileId parameter for Page view, not offset r63821 | chealer | 2017-09-12 13:50:03 -0300 (Ter, 12 Set 2017) | 4 lines [FIX] Multiple issues in page view. Oops r63823 | pom2ter | 2017-09-13 00:07:45 -0300 (Qua, 13 Set 2017) | 1 line [FIX] fix search module buttons not aligning properly on mobile r63824 | luciash | 2017-09-13 08:37:44 -0300 (Qua, 13 Set 2017) | 1 line [NEW][ENH] wiki pages: when we are on a page to be printed open the print dialog auto-magically (thanks marclaporte) r63825 | chealer | 2017-09-13 10:39:19 -0300 (Qua, 13 Set 2017) | 1 line [FIX] "Ces valeurs seront enregistrés" -> "Ces valeurs seront enregistrées" r63826 | chealer | 2017-09-13 10:41:40 -0300 (Qua, 13 Set 2017) | 2 lines [FIX] Untranslated tooltip r63834 | robertokir | 2017-09-13 18:16:09 -0300 (Qua, 13 Set 2017) | 2 lines [NEW] Console commmand to move files from a file gallery to a regular directory on the file system. r63837 | chealer | 2017-09-14 16:22:31 -0300 (Qui, 14 Set 2017) | 1 line [FIX] mail_clrf: Fix and shorten name and description r63839 | montefuscolo | 2017-09-15 12:06:37 -0300 (Sex, 15 Set 2017) | 1 line [NEW] Create an endpoint where openfire can get user information. r63842 | chealer | 2017-09-15 16:14:53 -0300 (Sex, 15 Set 2017) | 1 line [FIX] get_strings fails when called from CLI from elsewhere than root directory r63845 | chealer | 2017-09-15 17:07:57 -0300 (Sex, 15 Set 2017) | 1 line [FIX] Typo "Unstranslated" r63846 | chealer | 2017-09-15 17:14:00 -0300 (Sex, 15 Set 2017) | 1 line [FIX] "Mail notifications" r63848 | jonnybradley | 2017-09-16 14:27:51 -0300 (Sáb, 16 Set 2017) | 1 line [FIX] search: Two implementation of \Search_Type_Factory_Interface::timestamp (elastic and mysql) used a second param for $dateOnly, so add that to the interface definition and the other two uses r63849 | jonnybradley | 2017-09-16 14:29:20 -0300 (Sáb, 16 Set 2017) | 1 line [ENH] search: Add calendars and calendar items to the search index r63850 | jonnybradley | 2017-09-16 14:41:48 -0300 (Sáb, 16 Set 2017) | 2 lines [ENH] trackers: Add a variation of the tracker date field that uses a calendar to store event information, eventually to allow recurring tracker events to be supported. r63851 | jonnybradley | 2017-09-17 10:55:07 -0300 (Dom, 17 Set 2017) | 1 line [UPD] no changes, just ran composer update, several minor updates r63852 | jonnybradley | 2017-09-17 11:45:24 -0300 (Dom, 17 Set 2017) | 1 line [FIX] themes: Flag (checkbox) prefs don't have options and theme_option_includes_main is not "basic" r63854 | jonnybradley | 2017-09-17 14:42:30 -0300 (Dom, 17 Set 2017) | 1 line [UPD] add bootstrap-colorpicker r63855 | jonnybradley | 2017-09-17 14:44:24 -0300 (Dom, 17 Set 2017) | 3 lines [NEW] styleguide: Initial implementation of a style guide tool to replace the theme generator lost since Tiki 13.x and the transition to bootstrap. r63857 | amnabilal | 2017-09-18 01:29:29 -0300 (Seg, 18 Set 2017) | 1 line [NEW]Added Auto Bookmarks option, to generate bookmarks based on h1-h3, in PDF settings and for PluginPDF. New PluginPDFBookmark will allow user to insert bookmark anywhere in PDF. Bookmarks are only visible in Adobe Reader. r63858 | jonnybradley | 2017-09-18 09:19:29 -0300 (Seg, 18 Set 2017) | 1 line [FIX] styleguide: Adapt tpl for basic and other layouts (using .page-header), handle multiple selectors, handle transparent colour better and other minor fixes. r63859 | jonnybradley | 2017-09-18 09:33:37 -0300 (Seg, 18 Set 2017) | 1 line [FIX] styleguide: More relevant demo data r63863 | jonnybradley | 2017-09-18 13:03:40 -0300 (Seg, 18 Set 2017) | 1 line [ENH][FIX] styleguide: Add missing footer to tpl, add svn Id keyword on the Controller.php file (thanks Chealer) and make cookie state saving work mostly (still some odd omissions, more fixes to come...) r63864 | jonnybradley | 2017-09-18 14:23:11 -0300 (Seg, 18 Set 2017) | 1 line [ENH] styleguide: New button to generate just the LESS variables data from the style-guide, and add it to the (as yet unconnected) custom less pref - LESS compile TODO next r63865 | jonnybradley | 2017-09-18 14:25:21 -0300 (Seg, 18 Set 2017) | 1 line [FIX] styleguide: Selection menu is generated dynamically so items were appearing twice r63876 | chealer | 2017-09-19 18:01:56 -0300 (Ter, 19 Set 2017) | 1 line [FIX] Object identifiers and names could be altered r63877 | kroky6 | 2017-09-19 18:44:45 -0300 (Ter, 19 Set 2017) | 1 line [ENH] add ability to specify format for csv download option in Plugin ListExecute that is different than the html output r63885 | chealer | 2017-09-20 13:09:54 -0300 (Qua, 20 Set 2017) | 2 lines [FIX] Clicking "Click here" fails in confirm title r63896 | chealer | 2017-09-20 17:58:52 -0300 (Qua, 20 Set 2017) | 2 lines [FIX] setExcludeDirs(): Stop throwing an exception if directory does not exist r63897 | chealer | 2017-09-20 18:14:42 -0300 (Qua, 20 Set 2017) | 1 line [FIX] Orthography for "original" from some remote rigion's dialect, or typo r63898 | jyhem | 2017-09-20 18:57:34 -0300 (Qua, 20 Set 2017) | 1 line [NEW] Allow column labels to be translatable (thanks Jonny) r63900 | kroky6 | 2017-09-21 06:43:30 -0300 (Qui, 21 Set 2017) | 1 line [UPD] update satis config with missing packages r63901 | kroky6 | 2017-09-21 07:02:49 -0300 (Qui, 21 Set 2017) | 1 line [UPD] make composer.lock use latest packages from composer.tiki.org and minor package updates r63909 | chealer | 2017-09-21 11:59:58 -0300 (Qui, 21 Set 2017) | 2 lines [FIX] "Parse error: syntax error, unexpected ':', expecting ';' or '{' " on PHP 7 r63951 | kroky6 | 2017-09-21 16:02:53 -0300 (Qui, 21 Set 2017) | 1 line [ENH] table output for Files tracker field with file img, link, last modification date and description r63963 | drsassafras | 2017-09-21 17:10:25 -0300 (Qui, 21 Set 2017) | 1 line [FIX] prevent error when whelp dir is not present by including it in translation string search r63977 | pom2ter | 2017-09-21 22:01:59 -0300 (Qui, 21 Set 2017) | 1 line [FIX] styleguide: fixed minor bugs in css and in templates r63978 | chealer | 2017-09-22 12:24:41 -0300 (Sex, 22 Set 2017) | 2 lines [FIX] "ReferenceError: lang is not defined" due to bad test for undefined r63981 | chealer | 2017-09-22 14:50:18 -0300 (Sex, 22 Set 2017) | 2 lines [FIX] "The “align” attribute on the “input” element is obsolete." r63983 | chealer | 2017-09-22 16:34:47 -0300 (Sex, 22 Set 2017) | 3 lines [MOD] This disables the search form. r63983 | chealer | 2017-09-22 16:34:47 -0300 (Sex, 22 Set 2017) | 3 lines [FIX] Broken HTML r63985 | chealer | 2017-09-22 18:06:19 -0300 (Sex, 22 Set 2017) | 2 lines [FIX] Duplicate HTML id "intertrans-close" r63987 | chealer | 2017-09-22 18:20:44 -0300 (Sex, 22 Set 2017) | 1 line [FIX] All action labels associated with "Add a translation" option r63993 | yonixxx | 2017-09-24 04:24:48 -0300 (Dom, 24 Set 2017) | 1 line [FIX] SEFURL route stats changed to statistics to avoid conflict with some hosting setup r63995 | rjsmelo | 2017-09-24 12:49:27 -0300 (Dom, 24 Set 2017) | 2 lines [ENH] Add Unit Tests for Accounting Lib r63996 | rjsmelo | 2017-09-24 12:55:30 -0300 (Dom, 24 Set 2017) | 2 lines [FIX] Revert file (should not have been changed in r63994) r63997 | rjsmelo | 2017-09-24 13:08:16 -0300 (Dom, 24 Set 2017) | 2 lines [FIX] Error if wiki_list_rating is enabled but feature_polls is not (that is a dependency), avoid listing column that is not available r63998 | rjsmelo | 2017-09-24 14:38:59 -0300 (Dom, 24 Set 2017) | 2 lines [FIX] Review the accounting feature, fix obvious bugs r64000 | rjsmelo | 2017-09-24 14:46:15 -0300 (Dom, 24 Set 2017) | 2 lines [FIX] When executed from other folder that the root, can not delete contailer (eg. when executed from the test folder) r63994 | rjsmelo | 2017-09-24 12:44:46 -0300 (Dom, 24 Set 2017) | 2 lines [FIX] Fix issues when SQL MODE includes ONLY_FULL_GROUP_BY (Enabled by default in MySQL 5.7) r64005 | jonnybradley | 2017-09-25 22:58:23 -0300 (Seg, 25 Set 2017) | 1 line [REL] Update version notifier files with new versions r64006 | jonnybradley | 2017-09-26 05:20:18 -0300 (Ter, 26 Set 2017) | 1 line [FIX] calendar: Fix non-all-day calendar event creation r64007 | jonnybradley | 2017-09-26 05:59:11 -0300 (Ter, 26 Set 2017) | 2 lines [ENH] trackers: Allow use of wiki pages as tplwiki resources for tracker notifications so you can use smarty syntax in them. r64008 | jonnybradley | 2017-09-26 06:05:49 -0300 (Ter, 26 Set 2017) | 1 line [DOC] trackers: Update field option description with use of wiki pages as tplwiki resources r64011 | jonnybradley | 2017-09-26 07:31:14 -0300 (Ter, 26 Set 2017) | 1 line [FIX] trackers: Wiki pages as tplwiki resources - the tpl part needs to be optional, oops, broke wiki:pagename mode r64012 | yonixxx | 2017-09-26 07:31:19 -0300 (Ter, 26 Set 2017) | 1 line [FIX] Changing & to & so Facebook is able to display properly Tiki article image topic r64013 | yonixxx | 2017-09-26 07:33:28 -0300 (Ter, 26 Set 2017) | 1 line [FIX] (Oopss - test file sent previously) Changing & to & so Facebook is able to display properly Tiki article image topic r64016 | jonnybradley | 2017-09-26 08:22:09 -0300 (Ter, 26 Set 2017) | 1 line [FIX] calendar: Various JS errors (more fixes still TODO) r64023 | pom2ter | 2017-09-27 22:53:41 -0300 (Qua, 27 Set 2017) | 1 line [FIX] styleguide: fixed some typos in templates and cookie bugs r64029 | chealer | 2017-09-28 14:39:48 -0300 (Qui, 28 Set 2017) | 2 lines [FIX] Untranslatable strings r64031 | amnabilal | 2017-09-29 10:49:12 -0300 (Sex, 29 Set 2017) | 1 line [MOD]Autobookmark option in PluginPDF and Print settings changed to configurable text. Added preferences allocate_memory_print_pdf and allocate_time_print_pdf in print settings. r64032 | jonnybradley | 2017-09-30 01:44:42 -0300 (Sáb, 30 Set 2017) | 1 line [FIX] php7: Arrays must be declared as such r64034 | kroky6 | 2017-09-30 03:58:46 -0300 (Sáb, 30 Set 2017) | 1 line [ENH] show unified index field count in stats after rebuild r64035 | kroky6 | 2017-09-30 04:00:25 -0300 (Sáb, 30 Set 2017) | 1 line [FIX] inline edit multiple ItemLink selectors conflicting by id r64037 | kroky6 | 2017-09-30 04:37:14 -0300 (Sáb, 30 Set 2017) | 1 line [FIX] inline edit Files field trigger change event upon files being added or removed, so it can pick up with saving operation r64039 | kroky6 | 2017-09-30 04:49:43 -0300 (Sáb, 30 Set 2017) | 1 line [FIX] empty Files field did not correctly display the inline edit icon when reloading inline edit r64041 | rjsmelo | 2017-09-30 04:51:52 -0300 (Sáb, 30 Set 2017) | 2 lines [FIX] Missing slash in sitemap url r64042 | kroky6 | 2017-09-30 05:48:06 -0300 (Sáb, 30 Set 2017) | 1 line [FIX] make chosen dropdown appear in hidden overflow container elements; not the best solution but at least usable for now - we should find a workaround for overflow-x:auto and overflow-y:visible - visible is turned into auto with too many scrollbars in there) r64043 | marclaporte | 2017-09-30 08:03:06 -0300 (Sáb, 30 Set 2017) | 1 line [DOC] Updating link to a doc page which is easier to figure out for people that are new to Tiki. r64045 | rjsmelo | 2017-09-30 17:36:53 -0300 (Sáb, 30 Set 2017) | 2 lines [FIX] Fix encoding to UTF-8 r64044 | rjsmelo | 2017-09-30 17:34:05 -0300 (Sáb, 30 Set 2017) | 2 lines [FIX] File encoding to UTF-8 r64047 | rjsmelo | 2017-09-30 17:49:47 -0300 (Sáb, 30 Set 2017) | 2 lines [FIX] Avoid notices if key undefined r64048 | rjsmelo | 2017-09-30 19:57:55 -0300 (Sáb, 30 Set 2017) | 2 lines [ENH] Improve compatibility with PHP7 r64054 | arildb | 2017-10-01 11:25:34 -0300 (Dom, 01 Out 2017) | 1 line [MOD] Migrate User ENcryption to OpenSSL. Existing data are attempted converted at login time r64055 | arildb | 2017-10-01 11:27:30 -0300 (Dom, 01 Out 2017) | 1 line [MOD] Update User Encryption language strings so they use OpenSSL instead of Mcrypt r64056 | arildb | 2017-10-01 11:41:03 -0300 (Dom, 01 Out 2017) | 1 line [FIX] Add check for OpenSSL in tiki-check. Change MCrypt description r64058 | rjsmelo | 2017-10-01 18:35:20 -0300 (Dom, 01 Out 2017) | 2 lines [FIX] Class (re)Declaration when running the full test suite r64059 | arildb | 2017-10-02 01:12:33 -0300 (Seg, 02 Out 2017) | 2 lines [FIX] Remove unused attribute in CryptLib r64060 | arildb | 2017-10-02 01:45:38 -0300 (Seg, 02 Out 2017) | 2 lines [ENH] The User Encryption section in the security panel got larger. Made it into a better visually separated fieldset r64060 | arildb | 2017-10-02 01:45:38 -0300 (Seg, 02 Out 2017) | 2 lines [ENH] Show statistics for existing user encrypted data. Helps admins determine when MCrypt is no longer needed for conversion r64062 | kroky6 | 2017-10-02 06:02:35 -0300 (Seg, 02 Out 2017) | 1 line [FIX] inline edit file files reload files in list most context - observing file sizes for list mode r64064 | kroky6 | 2017-10-02 06:32:45 -0300 (Seg, 02 Out 2017) | 1 line [FIX] increase tiki queue handler field size to make it work with windows/cygwin based php where more_entropy of uniqid is true r64066 | jonnybradley | 2017-10-02 07:01:58 -0300 (Seg, 02 Out 2017) | 1 line [FIX] files: Number of files limit === 0 means no limit r64068 | kroky6 | 2017-10-02 07:43:34 -0300 (Seg, 02 Out 2017) | 1 line [FIX] ItemLink object selector displays the _text index version for DynamicList and ItemLink fields instead of their IDs r64070 | jonnybradley | 2017-10-02 07:56:08 -0300 (Seg, 02 Out 2017) | 1 line [FIX] search: Show correct file path to Search_Indexer log files r64073 | kroky6 | 2017-10-02 09:01:32 -0300 (Seg, 02 Out 2017) | 1 line [FIX] use numeric search value for Elastic search query involving float field types r64080 | chealer | 2017-10-02 13:03:49 -0300 (Seg, 02 Out 2017) | 1 line [FIX] Clarify MCrypt usage r64081 | chealer | 2017-10-02 14:34:46 -0300 (Seg, 02 Out 2017) | 1 line [FIX] "Valider le conteu du fichier envoyé" => "Valider le contenu des fichiers envoyés" r64083 | chealer | 2017-10-02 16:29:54 -0300 (Seg, 02 Out 2017) | 2 lines [FIX] Missing description for E_DEPRECATED and E_USER_DEPRECATED. Thanks to Ricardo Melo r64083 | chealer | 2017-10-02 16:29:54 -0300 (Seg, 02 Out 2017) | 2 lines [rb/r64047] "[FIX] Avoid notices if key undefined" r64084 | pom2ter | 2017-10-02 17:47:24 -0300 (Seg, 02 Out 2017) | 1 line [FIX] replace cookies with localstorage. cookies ended up being larger than browsers size limit r64085 | rjsmelo | 2017-10-02 20:35:07 -0300 (Seg, 02 Out 2017) | 2 lines [FIX] Avoid error if trying to unlink the container if the file do not exists r64086 | rjsmelo | 2017-10-02 20:37:45 -0300 (Seg, 02 Out 2017) | 3 lines [NEW][FIX] Allow execution of the plugin refresh and approval from command line. r64087 | kroky6 | 2017-10-02 23:16:39 -0300 (Seg, 02 Out 2017) | 1 line [FIX] add missing packages to satis r64088 | kroky6 | 2017-10-02 23:23:49 -0300 (Seg, 02 Out 2017) | 1 line [FIX] composer.lock packages to composer.tiki.org r64089 | arildb | 2017-10-02 23:46:33 -0300 (Seg, 02 Out 2017) | 1 line [FIX] Incorrect variable name. Thanks Chealer r64090 | arildb | 2017-10-02 23:49:57 -0300 (Seg, 02 Out 2017) | 1 line [FIX] Missing translation call r64091 | arildb | 2017-10-02 23:59:06 -0300 (Seg, 02 Out 2017) | 1 line [FIX] Use a more descriptive function name. Thanks Chealer r64092 | arildb | 2017-10-03 00:00:36 -0300 (Ter, 03 Out 2017) | 1 line [DOC] Remove potentially misleading phrase in code documentation. Thanks Chealer r64094 | kroky6 | 2017-10-03 01:41:20 -0300 (Ter, 03 Out 2017) | 1 line [FIX] report failing php database upgrade patches with option to auto-register them r64095 | kroky6 | 2017-10-03 01:48:18 -0300 (Ter, 03 Out 2017) | 2 lines [FIX] fix recording of failed patches with auto-register option r64096 | jonnybradley | 2017-10-03 02:07:23 -0300 (Ter, 03 Out 2017) | 1 line [FIX] trackers: Re-remove link making code that was removed in r62340 but then restored accidentally in a semi-automatic merge (by me, oops, thanks kroky6) r64097 | jonnybradley | 2017-10-03 02:09:38 -0300 (Ter, 03 Out 2017) | 1 line [FIX] datepicker: Remove hard coded CSS from jscalendar elements and adjust input width depending on type (if timezone is showing we need a narrower input box) r64098 | jonnybradley | 2017-10-03 03:32:13 -0300 (Ter, 03 Out 2017) | 1 line [FIX] perms: Keep info about object being edited when setting quick permissions r64099 | jonnybradley | 2017-10-03 03:42:28 -0300 (Ter, 03 Out 2017) | 1 line [FIX] themes: Ignore custom files in themes r64102 | jonnybradley | 2017-10-03 06:33:26 -0300 (Ter, 03 Out 2017) | 1 line [FIX] search: Quote values with spaces in selects for custom search (at last) r64104 | jonnybradley | 2017-10-03 09:12:11 -0300 (Ter, 03 Out 2017) | 1 line [FIX] filegals: Prevent fetching the entire contents of the file gallery when only getting one page's worth by checking SQL_CALC_FOUND_ROWS and going back to get the rest if more are there to be had following perms and backlinks checking (thanks Victor) r64105 | jonnybradley | 2017-10-03 09:34:39 -0300 (Ter, 03 Out 2017) | 1 line [FIX][revert r64104 - broke pagination] - attempt to "Prevent fetching the entire contents of the file gallery..." r64107 | kroky6 | 2017-10-03 22:40:59 -0300 (Ter, 03 Out 2017) | 1 line [FIX] trackerfilter handling empty string as string instead of array r64108 | kroky6 | 2017-10-03 22:51:18 -0300 (Ter, 03 Out 2017) | 1 line [FIX] prevent double smarty escaping in tracker filter r64111 | kroky6 | 2017-10-04 01:13:32 -0300 (Qua, 04 Out 2017) | 1 line [ENH] optimize last_update setup script to cache the svn version when using sqlite format; otherwise too slow on windows r64113 | kroky6 | 2017-10-04 01:17:58 -0300 (Qua, 04 Out 2017) | 1 line [FIX] actually return to gain the performance benefits of r64111 r64115 | jonnybradley | 2017-10-04 02:53:11 -0300 (Qua, 04 Out 2017) | 1 line [FIX] ajax: Submit event wasn't getting to the form in IE (when creating or modifying a group for instance) so pass the message on... r64116 | jonnybradley | 2017-10-04 02:54:11 -0300 (Qua, 04 Out 2017) | 1 line [FIX] title: When not in a proper $section use the REQUEST_URI for the title link (to itself) r64120 | arildb | 2017-10-04 03:51:06 -0300 (Qua, 04 Out 2017) | 1 line [FIX] smarty notice in security panel. Thanks Chealer r64121 | arildb | 2017-10-04 03:56:40 -0300 (Qua, 04 Out 2017) | 1 line [FIX] Only attempt to convert user encrypted data, if OpenSSL is available. Thanks Chealer r64122 | kroky6 | 2017-10-04 05:24:15 -0300 (Qua, 04 Out 2017) | 1 line [FIX] php notice in list execute r64123 | kroky6 | 2017-10-04 05:25:09 -0300 (Qua, 04 Out 2017) | 1 line [ENH] spinner and tikiModal for table version of listexecute action while the action is being executed r64124 | kroky6 | 2017-10-04 06:55:41 -0300 (Qua, 04 Out 2017) | 1 line [FIX] make pivottable plugin edits go through services and use proper CSRF ticket r64126 | kroky6 | 2017-10-04 07:09:08 -0300 (Qua, 04 Out 2017) | 1 line [FIX] allow pivottable rows-only selection to not add the first field to the columns config r64128 | jonnybradley | 2017-10-04 07:25:56 -0300 (Qua, 04 Out 2017) | 1 line [FIX] notice: when caches cleared r64129 | jonnybradley | 2017-10-04 09:42:00 -0300 (Qua, 04 Out 2017) | 1 line [FIX] trackers: Use the field's renderOutput method for get_isMain_value for AutoIncrement fields as well as ItemLink so prepend and append strings get added to titles r64132 | pom2ter | 2017-10-04 17:14:20 -0300 (Qua, 04 Out 2017) | 1 line [FIX] styleguide: added the form-control class to forms r64133 | jonnybradley | 2017-10-04 23:34:53 -0300 (Qua, 04 Out 2017) | 1 line [FIX] trackers: Observe the field listing order when picking the (first) isMain/title field and it's type r64136 | jonnybradley | 2017-10-05 00:40:25 -0300 (Qui, 05 Out 2017) | 1 line [FIX] trackers: Fn renderInnerOutput should be protected (my bad in r58703) r64137 | kroky6 | 2017-10-05 00:55:26 -0300 (Qui, 05 Out 2017) | 1 line [ENH] support tracker field update from ItemLink to Relations field with option and data conversion r64138 | jonnybradley | 2017-10-05 01:11:39 -0300 (Qui, 05 Out 2017) | 1 line [FIX] trackers: Fix browser title for tracker and tracker fields list pages r64140 | jonnybradley | 2017-10-05 02:13:09 -0300 (Qui, 05 Out 2017) | 2 lines [ENH] trackers: Add new option to update items missing auto-increment values when you edit the field. r64142 | jonnybradley | 2017-10-05 04:54:42 -0300 (Qui, 05 Out 2017) | 1 line [FIX] trackers: Fix notifications {$mail_item_desc} in mail templates when the title/isMain field is an auto-increment one r64145 | kroky6 | 2017-10-05 05:32:09 -0300 (Qui, 05 Out 2017) | 1 line [FIX][DOC] improve performance on ItemLink->Relation field type change by skipping indexing through the queue; add suggestion to rebuild search index after field type change r64146 | kroky6 | 2017-10-05 06:24:33 -0300 (Qui, 05 Out 2017) | 1 line [ENH] expose pretty tracker fields, field names and changed/old values to tracker changed notification emails r64148 | kroky6 | 2017-10-05 06:45:10 -0300 (Qui, 05 Out 2017) | 1 line [FIX] relation field type change preserve filter to the right tracker r64150 | kroky6 | 2017-10-05 08:19:17 -0300 (Qui, 05 Out 2017) | 1 line [FIX] relation exist checking fix r64152 | amnabilal | 2017-10-05 15:06:41 -0300 (Qui, 05 Out 2017) | 1 line [Fix]Fixed UTF-8 Characters, in PDF for ajax based result retention like PluginCustomSearch. r64154 | jonnybradley | 2017-10-05 22:53:55 -0300 (Qui, 05 Out 2017) | 1 line [FIX] trackers: Add a containing div with class and id around the files table display mode to allow field specific styling r64155 | jonnybradley | 2017-10-05 23:06:47 -0300 (Qui, 05 Out 2017) | 1 line [FIX] trackers: Only show the description column on files table if it contains something r64156 | jonnybradley | 2017-10-05 23:39:50 -0300 (Qui, 05 Out 2017) | 1 line [FIX] trackers: More cosmetic fixes for files fields - make the delete x icon an anchor to prevent it getting lost with long file names, unify the class of both input and output table as files-field, and add field specific id and class to the input list container. r64157 | jonnybradley | 2017-10-06 01:15:00 -0300 (Sex, 06 Out 2017) | 1 line [FIX] trackers: Return false when clicking on a file delete icon, and add new ones as an <a> not a <label> r64161 | jonnybradley | 2017-10-08 03:28:47 -0300 (Dom, 08 Out 2017) | 1 line [MOD] Add a commonly used sql script which mainly disables https for local use, but also removes minify etc to assist with debugging r64162 | jonnybradley | 2017-10-08 05:23:19 -0300 (Dom, 08 Out 2017) | 1 line [MOD] Add mechanism to allow a custom.php file to be included at (more or less) the end of tiki-setup instead of misusing lang custom.php files for special sefurl routing code (for instance) r64075 | kroky6 | 2017-10-02 09:56:56 -0300 (Seg, 02 Out 2017) | 1 line [FIX] prevent ItemLink select labels double escape - all labels should already be escaped by corresponding field renderInnerOutput methods r64166 | jonnybradley | 2017-10-08 06:23:01 -0300 (Dom, 08 Out 2017) | 1 line [UPD] Add leafo/scssphp (compiler for Sass/SCSS written in PHP) to composer.tiki.org r64167 | kroky6 | 2017-10-08 07:19:32 -0300 (Dom, 08 Out 2017) | 1 line [FIX] process search index queue after item status change like it does after normal item update r64169 | jonnybradley | 2017-10-08 07:30:27 -0300 (Dom, 08 Out 2017) | 1 line [UPD] Update composer no real changes, just automatic updates r64186 | kroky6 | 2017-10-09 11:30:45 -0300 (Seg, 09 Out 2017) | 1 line [FIX] duplicate validation email sent out upon registration with attached user tracker r64192 | jonnybradley | 2017-10-10 04:37:16 -0300 (Ter, 10 Out 2017) | 1 line [FIX] sitemap: Use whole path to the tiki, but just the host r64193 | jonnybradley | 2017-10-10 04:52:31 -0300 (Ter, 10 Out 2017) | 1 line [FIX] theme: Fix flatly alert box link colour r64194 | jonnybradley | 2017-10-10 04:54:21 -0300 (Ter, 10 Out 2017) | 1 line [UPD] Update composer using php56 (no real changes, downgrade some require-dev packages) r64197 | jonnybradley | 2017-10-10 05:45:42 -0300 (Ter, 10 Out 2017) | 2 lines [MOD] files-revamp: Move recently the created new lib/setup dir to _custom as these files, along with custom themes etc should not be web writable, unlike the files & dirs in storage which are for tiki generated, mostly regeneratable content (thanks Chealer). r64229 | rjsmelo | 2017-10-10 19:36:03 -0300 (Ter, 10 Out 2017) | 2 lines [FIX] Ensure that sitemap is processed as anonymous user r64231 | luciash | 2017-10-11 02:08:31 -0300 (Qua, 11 Out 2017) | 1 line [FIX] Layout: rollback of some changes which caused regression "Theme Width Option Non-Functional" (see https://dev.tiki.org/item6464, thanks John) r64233 | kroky6 | 2017-10-11 06:44:32 -0300 (Qua, 11 Out 2017) | 1 line [DOC] fix tip about rebuilding the search index r64234 | kroky6 | 2017-10-11 06:50:43 -0300 (Qua, 11 Out 2017) | 1 line [DOC] add comments about caching svn version and last update date r64236 | kroky6 | 2017-10-12 04:52:09 -0300 (Qui, 12 Out 2017) | 1 line [ENH] add a couple of optimizations for mass tracker update or view - mainly ItemsList cache of fields and items that removes tons of repeated sql queries r64237 | kroky6 | 2017-10-12 08:13:55 -0300 (Qui, 12 Out 2017) | 1 line [FIX] date range search from tablesorter filters in elastic resulted in bad elastic query (empty from date) r64241 | chealer | 2017-10-12 14:25:15 -0300 (Qui, 12 Out 2017) | 2 lines [FIX] Dropdown selector with "Other" field: Other field invisible unless there is an "other" option named with the translation of "other" r64243 | chealer | 2017-10-12 14:49:09 -0300 (Qui, 12 Out 2017) | 2 lines [FIX] Allow setting scope of new database translations r64244 | kroky6 | 2017-10-13 09:46:23 -0300 (Sex, 13 Out 2017) | 1 line [ENH] add data migration script for converting 2 ItemLinks to Relation field with inverted relation on the other end r64247 | chealer | 2017-10-13 12:56:37 -0300 (Sex, 13 Out 2017) | 2 lines [FIX] Unescaped English strings r64248 | chealer | 2017-10-13 13:07:56 -0300 (Sex, 13 Out 2017) | 2 lines [FIX] updateTrans(): Read of undefined $general r64249 | chealer | 2017-10-13 13:14:09 -0300 (Sex, 13 Out 2017) | 3 lines [FIX] updateTrans(): Divergence between specification and behavior when translating a string to the translation already defined for it r64251 | kroky6 | 2017-10-13 15:35:29 -0300 (Sex, 13 Out 2017) | 1 line [FIX] update js minifier to fix issue minifying codemirror files r64257 | rjsmelo | 2017-10-14 06:21:31 -0300 (Sáb, 14 Out 2017) | 2 lines [FIX] Avoid warning when the YAML file is broken r64258 | rjsmelo | 2017-10-14 06:22:39 -0300 (Sáb, 14 Out 2017) | 2 lines [FIX] Set the default value for general instead of relying in implicit conversion (and fix warning) r64259 | rjsmelo | 2017-10-14 06:29:12 -0300 (Sáb, 14 Out 2017) | 2 lines [FIX] Fix errors (warning, notices, exceptions) in PHPUnit r64260 | rjsmelo | 2017-10-14 06:30:25 -0300 (Sáb, 14 Out 2017) | 2 lines [ENH] Make the output of running PHPUnit usable, lowering the verbosity level so it do not print all skipped tests r64264 | rjsmelo | 2017-10-14 10:22:27 -0300 (Sáb, 14 Out 2017) | 3 lines [FIX] Revert the behaviour of CollectFiles.php to throw exception if dir is missing (as expected in lib/test/language/CollectFilesTest.php) r64266 | rjsmelo | 2017-10-14 11:10:37 -0300 (Sáb, 14 Out 2017) | 2 lines [FIX] Fix broken PHPUnit tests, update in line with current code, mismatch because extra line return, and wrong/missing pref. r64267 | rjsmelo | 2017-10-14 11:14:04 -0300 (Sáb, 14 Out 2017) | 2 lines [FIX] Fix PHPUnit tests, ensure users exists during tests so watch can work r64268 | rjsmelo | 2017-10-14 11:31:33 -0300 (Sáb, 14 Out 2017) | 2 lines [FIX] Revert change that should not have been committed as part of r64265 r64271 | arildb | 2017-10-14 12:28:04 -0300 (Sáb, 14 Out 2017) | 1 line [FIX] When editing an included wiki page, return to correct URL if it's not a wiki page r64272 | rjsmelo | 2017-10-14 14:43:57 -0300 (Sáb, 14 Out 2017) | 3 lines [NEW] Enable the admin to select the behaviour in ratinglib (multiple votes per user or just one) default to just one r64273 | rjsmelo | 2017-10-14 14:54:08 -0300 (Sáb, 14 Out 2017) | 4 lines [FIX] Fix unit tests for ratinglib, after introducing the preference rating_allow_multi_votes to preserv the old behaviour r64280 | rjsmelo | 2017-10-15 17:56:38 -0200 (Dom, 15 Out 2017) | 2 lines [FIX] Queries with Sum, Max, Min, etc when SQL_MODE includes ONLY_FULL_GROUP_BY r64285 | jonnybradley | 2017-10-16 12:26:29 -0200 (Seg, 16 Out 2017) | 1 line [FIX] groupmail: $access global var not found r64286 | arildb | 2017-10-16 13:34:29 -0200 (Seg, 16 Out 2017) | 1 line [FIX] Use SERVER variable that is valid on all platforms. Thanks Chealer r64287 | jonnybradley | 2017-10-16 13:41:48 -0200 (Seg, 16 Out 2017) | 1 line [FIX] homepages: Add a patch file to rename wiki pages without a name, and also remove prefs with value NULL, which both can contribute to a "No wiki page specified" error on tiki-index.php r64289 | chealer | 2017-10-16 15:52:17 -0200 (Seg, 16 Out 2017) | 2 lines [rb/r62921][FIX] sefurl(): URL special characters escaping r64293 | rjsmelo | 2017-10-16 21:40:16 -0200 (Seg, 16 Out 2017) | 2 lines [MOD] Change default search operation from OR to AND, refrence: https://tiki.org/forumthread65645 r64299 | kroky6 | 2017-10-17 09:20:20 -0200 (Ter, 17 Out 2017) | 1 line [FIX] trackeritem notifications ignoring editor of the item might incorrectly ignore others too if their preferences were loaded by some other code r64304 | kroky6 | 2017-10-18 05:57:56 -0200 (Qua, 18 Out 2017) | 1 line [FIX] multiple-enabled UserSelector field needs multivalue search index field type for proper searching r64309 | jonnybradley | 2017-10-18 08:47:13 -0200 (Qua, 18 Out 2017) | 1 line [FIX] setup: Add correct apache user and group detection for FreeBSD r64311 | jonnybradley | 2017-10-18 10:56:29 -0200 (Qua, 18 Out 2017) | 1 line [UPD] no changes, just minor updates r64312 | jonnybradley | 2017-10-18 10:57:03 -0200 (Qua, 18 Out 2017) | 1 line [UPD] add popper.js to satis (needed for bootstrap4) r64313 | amnabilal | 2017-10-18 13:17:57 -0200 (Qua, 18 Out 2017) | 2 lines [Fix]Fixed PDF not respecting @media print styles, since PDF settings preference print_pdf_mpdf_printfriendly was not being parsed properly. r64314 | jonnybradley | 2017-10-18 13:25:19 -0200 (Qua, 18 Out 2017) | 1 line [FIX] datachannels: Redirect to the instructions page if there is one in the profile, and don't surround converted arrays with square brackets as this fails in most cases (still needs more fixing) r64317 | jonnybradley | 2017-10-18 16:08:30 -0200 (Qua, 18 Out 2017) | 1 line [FIX] groupmail: Don't die, return instead - was breaking service calls in html mode - needs modernising properly soon r64318 | kroky6 | 2017-10-20 07:01:38 -0200 (Sex, 20 Out 2017) | 1 line [FIX] user-selector autocomplete field with username validation was failing r64328 | arildb | 2017-10-21 13:22:32 -0200 (Sáb, 21 Out 2017) | 1 line [FIX] wincache detection r64329 | amnabilal | 2017-10-21 15:35:30 -0200 (Sáb, 21 Out 2017) | 1 line [New]PluginPDF Bookmark, small plugin to include manual bookmark in PDF. r64330 | amnabilal | 2017-10-21 15:50:36 -0200 (Sáb, 21 Out 2017) | 1 line [Fix]Fixed spaces in code, updating wikiplugin_pdfbookmark.php r64331 | jonnybradley | 2017-10-22 10:56:05 -0200 (Dom, 22 Out 2017) | 1 line [FIX] cache: Use the same file perms for the HTMLPurifier cache as for smarty r64332 | jonnybradley | 2017-10-22 12:02:58 -0200 (Dom, 22 Out 2017) | 1 line [FIX] timezones: Fix timezone when detected from the browser - thanks BSfez r64333 | jonnybradley | 2017-10-22 12:26:23 -0200 (Dom, 22 Out 2017) | 1 line [ENH] convene: Add tooltip on dates to show UTC date time r64334 | rjsmelo | 2017-10-22 12:51:51 -0200 (Dom, 22 Out 2017) | 2 lines [FIX] Usage of undefined variable in the events, adding the right variable name r64335 | rjsmelo | 2017-10-22 13:02:10 -0200 (Dom, 22 Out 2017) | 2 lines [NEW] Allow to check file and image gallery health from command line r64336 | jonnybradley | 2017-10-22 14:02:38 -0200 (Dom, 22 Out 2017) | 1 line [FIX] php7: Supplying null instead of an array to Perms::filter fails fatally on php7+ r64337 | jyhem | 2017-10-22 14:21:49 -0200 (Dom, 22 Out 2017) | 1 line [FIX] Lack of a search tool made the whole language editing impossible (reverts r63983) r64338 | jyhem | 2017-10-22 14:23:22 -0200 (Dom, 22 Out 2017) | 1 line [FIX] Typo fixed (thanks chealer) r64339 | rjsmelo | 2017-10-22 15:13:57 -0200 (Dom, 22 Out 2017) | 2 lines [ENH] Depending on the limit of open files, mysql may fail. Instead present a warning to the user. r64340 | jyhem | 2017-10-22 15:55:02 -0200 (Dom, 22 Out 2017) | 1 line [FIX] This syntax does not break the Custom Translation panel (needs to be done for all languages) r64341 | rjsmelo | 2017-10-22 17:38:12 -0200 (Dom, 22 Out 2017) | 2 lines [ENH] Add preference geo_enabled to avoid loading the map if is not used r64347 | chibaguy | 2017-10-23 06:29:08 -0200 (Seg, 23 Out 2017) | 1 line [NEW] Contributed theme "Lighty" by Barbara Lassalle, and new Bootswatch theme "Solar". r64350 | jonnybradley | 2017-10-23 09:55:02 -0200 (Seg, 23 Out 2017) | 1 line [UPD] add twbs/bootstrap so 4.0.0-beta.2 will be available for the bootstrap4 branch r64354 | jonnybradley | 2017-10-23 11:27:41 -0200 (Seg, 23 Out 2017) | 1 line [FIX] webmail: No need to mb_decode_mimeheader on mail subjects any more, they seem to arrive as well formatted utf-8 now and this was causing encoding errors r64356 | jonnybradley | 2017-10-23 12:03:51 -0200 (Seg, 23 Out 2017) | 1 line [FIX] webmail: More mb_decode_mimeheader on mail subjects causing encoding errors r64357 | jonnybradley | 2017-10-23 12:13:41 -0200 (Seg, 23 Out 2017) | 1 line [FIX] webmail: Fix date display on single mail read mode (and show full date, not timeago version) r64358 | kroky6 | 2017-10-23 13:14:56 -0200 (Seg, 23 Out 2017) | 1 line [FIX] attributelib formatting and cache repeated attributes fetch query (e.g. called at least 3 times for each object_link smarty function for the same object) r64360 | luciash | 2017-10-23 14:24:08 -0200 (Seg, 23 Out 2017) | 1 line [rb/r63457] Rename to "Unique identifier" and clarify description (rolled back as majority voted for it in https://tiki.org/forumthread66406) r64364 | chibaguy | 2017-10-24 03:25:13 -0200 (Ter, 24 Out 2017) | 1 line [NEW] Thumbnail images for contributed theme "Lighty" by Barbara Lassalle, and new Bootswatch theme "Solar". Thanks, luci. r64365 | yonixxx | 2017-10-24 07:13:03 -0200 (Ter, 24 Out 2017) | 1 line [FIX] Fixed the Url to google docs, added proper edit links and change Presentation for Slides (modernized name by google). r64369 | jonnybradley | 2017-10-25 14:47:12 -0200 (Qua, 25 Out 2017) | 1 line [FIX] profiles: Obey login_is_email and validateUsers prefs when creating a user from a profile, so the user gets the notification email and doesn't need to know the provisional password, and is forced to change the password on successful validation. r64371 | nkoth | 2017-10-25 15:20:55 -0200 (Qua, 25 Out 2017) | 2 lines [FIX] In some cases when indexing remote tracker fields, specifically e.g. language fields, you might end up replacing the local tracker field indexed value instead which is not a good thing. r64374 | jonnybradley | 2017-10-25 16:15:29 -0200 (Qua, 25 Out 2017) | 1 line [FIX] trackers: Only implode arrays in \Tracker_Field_ItemLink::handleSave otherwise it wipes out the value (e.g. when created from a profile, the value is already a comma separated string value) r64376 | jonnybradley | 2017-10-25 17:02:12 -0200 (Qua, 25 Out 2017) | 1 line [FIX] categories: Odd edge case where category checkboxes on a second tab throws an exception on page load, and this is the only fix i've found for it that works. Shouldn't harm anything else, just that checkboxes trees will be ready 1/10th of a second later than before. r64378 | yonixxx | 2017-10-26 03:33:01 -0200 (Qui, 26 Out 2017) | 1 line [FIX] Removing unclear and apparently unused type. r64384 | jonnybradley | 2017-10-26 16:08:54 -0200 (Qui, 26 Out 2017) | 1 line [UPD] Update composer using php56 (minor updates, thanks luciash) r64387 | jonnybradley | 2017-10-26 17:22:08 -0200 (Qui, 26 Out 2017) | 1 line [ENH] Menus: Add param for menu_class to allow overriding the default bootstrap classes (usage to come) r64388 | jonnybradley | 2017-10-26 17:23:27 -0200 (Qui, 26 Out 2017) | 1 line [ENH] login module: Add a param to set a custom menu for the drop-down on the login box r64397 | kroky6 | 2017-10-27 12:14:05 -0200 (Sex, 27 Out 2017) | 1 line [FIX] invalidate svn info cache at least once an hour in effort to mitigate the case when svn is updated but cache is not cleared r64400 | robertokir | 2017-10-27 16:14:06 -0200 (Sex, 27 Out 2017) | 2 lines [ENH] Incorporate the "Report all occurrences of a string in any table" search tool into the control panel; exclude index tables from results; page results have links on their titles. r64405 | chealer | 2017-10-27 18:58:59 -0200 (Sex, 27 Out 2017) | 1 line [FIX] Somewhat fix error message when PDF generation fails r64412 | arildb | 2017-10-28 09:25:03 -0200 (Sáb, 28 Out 2017) | 1 line [FIX] Support checks wincache 1 and 2 in tiki-check and the admin performance screen r64414 | arildb | 2017-10-28 13:42:54 -0200 (Sáb, 28 Out 2017) | 1 line [FIX] Better check of input parameters and use parameterized query r64415 | jyhem | 2017-10-28 16:15:59 -0200 (Sáb, 28 Out 2017) | 1 line [FIX] Fix warning: undefined offset r64418 | jyhem | 2017-10-28 17:51:23 -0200 (Sáb, 28 Out 2017) | 1 line [FIX] Now it also works in other languages than english r64420 | chibaguy | 2017-10-29 14:17:31 -0200 (Dom, 29 Out 2017) | 1 line [ENH] Facilitate creating pages with full-width content (backgrounds, etc.) Create a "Full_width_content" or "full_width_content" category, activate and configure "Category used in tpl"; then assign any page to the category, to implement full-width layout on the page). r64421 | jonnybradley | 2017-10-29 14:42:21 -0200 (Dom, 29 Out 2017) | 1 line [FIX] trackers: Limit the length of wiki pages created by the Wiki field to 160 (size of the field in the database) r64422 | jonnybradley | 2017-10-29 14:54:29 -0200 (Dom, 29 Out 2017) | 1 line [FIX] wiki: Expose the create_page "page exists" error so it can be seen (why is all this debug "tracer" code still in here?) r64425 | jonnybradley | 2017-10-29 15:21:58 -0200 (Dom, 29 Out 2017) | 1 line [ENH] trackers: Add buttons to get to and from the tracker tabular formats management page r64426 | chealer | 2017-10-29 19:41:10 -0200 (Dom, 29 Out 2017) | 3 lines [FIX] Other option offered for "Dropdown" field type r64427 | chealer | 2017-10-29 21:54:29 -0200 (Dom, 29 Out 2017) | 3 lines [FIX] "PHP Fatal error: Call to undefined method ParserLib::apply_postedit_handlers() [...]" r64429 | yonixxx | 2017-10-30 12:08:19 -0200 (Seg, 30 Out 2017) | 1 line [FIX] For Facebook, blog and article are type article r64430 | kroky6 | 2017-10-30 13:24:36 -0200 (Seg, 30 Out 2017) | 1 line [FIX] fix array passed by reference error in objectlib::get_title r64433 | yonixxx | 2017-10-30 15:05:43 -0200 (Seg, 30 Out 2017) | 1 line [FIX] [TRA] This syntax does not break the Custom Translation panel (According to 64340) r64435 | jonnybradley | 2017-10-30 15:56:20 -0200 (Seg, 30 Out 2017) | 2 lines [FIX] customsearch: Move the "form ready" trigger event to the end of the customsearch initialisation code so the change triggers when set from the url hash values and it populate the form data correctly under all circumstances (thanks Chealer). r64440 | kroky6 | 2017-10-31 05:53:25 -0200 (Ter, 31 Out 2017) | 1 line [FIX] use Relation format option for option labels when rendering Relation input r64441 | kroky6 | 2017-10-31 05:56:56 -0200 (Ter, 31 Out 2017) | 1 line [ENH] self-related tracker Relation fields including inverts automatically handle invert relations in other tracker item in list and edit mode r64442 | amette | 2017-10-31 07:42:33 -0200 (Ter, 31 Out 2017) | 1 line [FIX] Missing part to r64326 r64443 | rjsmelo | 2017-10-31 18:49:47 -0200 (Ter, 31 Out 2017) | 2 lines [ENH] Move the return_only parameter as a option available in teh search system (and not only plugin list) r64444 | rjsmelo | 2017-10-31 20:44:49 -0200 (Ter, 31 Out 2017) | 2 lines [FIX] Packages was not recognized when there was a case mismatch r64445 | rjsmelo | 2017-10-31 21:16:30 -0200 (Ter, 31 Out 2017) | 2 lines [FIX] Use the normalized version of the package name on all lookups r64446 | rjsmelo | 2017-10-31 22:22:05 -0200 (Ter, 31 Out 2017) | 2 lines [ENH] Raise (if smaller) the timeout while running the BOM scanner to avoid timeouts in big tiki installations r64448 | rjsmelo | 2017-11-01 06:45:58 -0200 (Qua, 01 Nov 2017) | 2 lines [FIX] Missing class map for XML_RPC r64450 | jonnybradley | 2017-11-01 09:38:15 -0200 (Qua, 01 Nov 2017) | 1 line [FIX] groupmail: Cannot redeclare wikiplugin_module() error on re-index r64451 | amette | 2017-11-01 11:49:06 -0200 (Qua, 01 Nov 2017) | 1 line [FIX] Clearer wording r64452 | luciash | 2017-11-01 15:26:32 -0200 (Qua, 01 Nov 2017) | 1 line [NEW] Base CSS: Support for automatic unique-numbered ordered lists (for ordered lists wrapped in class="uol" wrapper to generate unique "chapter like" numbering X.Y.Z) r64456 | robertokir | 2017-11-02 11:31:00 -0200 (Qui, 02 Nov 2017) | 3 lines [ENH] "Report all occurrences of a string in any table" search tool: provide links to the specific kind of objects found: r64457 | amette | 2017-11-02 12:54:32 -0200 (Qui, 02 Nov 2017) | 1 line [FIX] Correct information regarding PHP's passthru function r64459 | jonnybradley | 2017-11-02 14:40:06 -0200 (Qui, 02 Nov 2017) | 2 lines [FIX] menus: Change menu_class as introduced in r64387 to bs_menu_class as menu_class already existed in the menu module and was passed on to the menu function inadvertently (and seems to be unused with bootstrap menus) r64462 | jonnybradley | 2017-11-02 20:05:53 -0200 (Qui, 02 Nov 2017) | 1 line [ENH] social: Add a new parameter "featured" to the img plugin, which makes the image appear as the og:image and twitter:image in the html head. Multiple tags are allowed and priority is taken in order they appear in the page. r64464 | rjsmelo | 2017-11-03 06:45:18 -0200 (Sex, 03 Nov 2017) | 2 lines [FIX] When providing a empty value for group name, a SQL error is raised r64467 | rjsmelo | 2017-11-03 07:06:36 -0200 (Sex, 03 Nov 2017) | 2 lines [FIX] Warnings being generated if the keys are not set in the arrays r64471 | jyhem | 2017-11-03 13:16:31 -0200 (Sex, 03 Nov 2017) | 1 line [DOC] Explain what the directory is for (thanks Gary) r64473 | chealer | 2017-11-03 14:12:45 -0200 (Sex, 03 Nov 2017) | 2 lines [FIX] action_replace(): Throw exception when replacement fails r64475 | chealer | 2017-11-04 16:37:08 -0200 (Sáb, 04 Nov 2017) | 2 lines [FIX] action_replace(): s/Plugin edition failed/Plugin edit failed/ r64476 | jyhem | 2017-11-05 00:38:26 -0200 (Dom, 05 Nov 2017) | 1 line [FIX] Restore functionality of creating multiple items r64477 | chibaguy | 2017-11-05 05:11:22 -0200 (Dom, 05 Nov 2017) | 1 line [ENH] Provide CSS class for featured image for special display possibilities (such as making the image full-width at page top, moved in DOM via JavaScript). r64478 | chibaguy | 2017-11-05 05:25:34 -0200 (Dom, 05 Nov 2017) | 1 line [ENH] Improve description of featured image parameter. r64482 | rjsmelo | 2017-11-05 10:42:32 -0200 (Dom, 05 Nov 2017) | 3 lines [FIX] PdfGenerator ignored orientation provided as part of the request. r64484 | rjsmelo | 2017-11-05 10:57:37 -0200 (Dom, 05 Nov 2017) | 3 lines [MOD] Remove Dompdf support to export the slideshow (last usage of dompdf in tiki). Use only mPDF to export to pdf. r64485 | rjsmelo | 2017-11-05 14:56:12 -0200 (Dom, 05 Nov 2017) | 2 lines [MOD] Change the default MySQL engine to InnoDB, for new installations (Reference: https://tiki.org/forumthread65643) r64486 | lindonb | 2017-11-05 15:10:08 -0200 (Dom, 05 Nov 2017) | 1 line [ENH] tablesorter: add sort-to-hash feature so that urls with sort, filter and paging parameters will work on tables using tablesorter. Apply sorts, filters or paginate to see resulting url in browser address bar. r64488 | lindonb | 2017-11-05 21:17:53 -0200 (Dom, 05 Nov 2017) | 1 line [DOC] correct explanation of filter r64489 | chibaguy | 2017-11-06 01:01:22 -0200 (Seg, 06 Nov 2017) | 1 line [FIX] Use "thumbnail" as a noun rather than adjective; avoids word repetition. Thanks, Chealer. r64490 | jonnybradley | 2017-11-06 10:45:19 -0200 (Seg, 06 Nov 2017) | 1 line [FIX] sitemap: Add link to tiki-admin_sitemap.php r64491 | jonnybradley | 2017-11-06 11:01:26 -0200 (Seg, 06 Nov 2017) | 1 line [FIX] svnup: If the info returned by svn is not in English (mine seems to be in Japanese now, why? ;) then we cannot easily detect the from and to revisions, so say so and prevent messy warning notices (it still works ok though) r64492 | jonnybradley | 2017-11-06 11:11:16 -0200 (Seg, 06 Nov 2017) | 1 line [FIX] sitemap: SEFURL fn typo r64495 | jonnybradley | 2017-11-07 10:02:43 -0200 (Ter, 07 Nov 2017) | 1 line [FIX] wysiwyg: Inline edit requires javascript (and if smarty_function_toolbars returns an empty string don't try and use it as an array as it results in a fatal error in php7) r64496 | jonnybradley | 2017-11-07 10:23:15 -0200 (Ter, 07 Nov 2017) | 1 line [FIX] noscript: Make menus and category trees work slightly better without javascript r64498 | amette | 2017-11-07 16:47:39 -0200 (Ter, 07 Nov 2017) | 1 line [FIX] session.save_handler is just a recommendation r64499 | chealer | 2017-11-07 18:16:37 -0200 (Ter, 07 Nov 2017) | 1 line [FIX] s/Activater/Activer/ r64504 | chealer | 2017-11-08 13:58:01 -0200 (Qua, 08 Nov 2017) | 1 line [FIX] Typo "onformations" r64505 | kroky6 | 2017-11-08 15:35:06 -0200 (Qua, 08 Nov 2017) | 1 line [FIX] tikiroot relative path setup when running from CLI r64508 | jyhem | 2017-11-09 02:28:38 -0200 (Qui, 09 Nov 2017) | 1 line [ENH] Move R and RR plugins from mods to Tiki now that they have been fully rewritten in LGPL r64509 | jyhem | 2017-11-09 02:33:03 -0200 (Qui, 09 Nov 2017) | 1 line [FIX] Use dependency injection for to avoid path issues (thanks Jonny) r64511 | chibaguy | 2017-11-09 12:58:11 -0200 (Qui, 09 Nov 2017) | 1 line [UPD] Update form to Bootstrap. r64516 | luciash | 2017-11-10 02:59:14 -0200 (Sex, 10 Nov 2017) | 1 line [FIX] Trackers: multilingual textarea had typo in class name so it was ignored r64517 | amnabilal | 2017-11-10 09:15:10 -0200 (Sex, 10 Nov 2017) | 1 line [Fix]mPDF page headers were not working, turned out to be @page selector when used during addPage, it discards headers. Revamped code a bit to fix issue and make use of watermark image property in case background image is set. r64518 | jonnybradley | 2017-11-10 09:40:05 -0200 (Sex, 10 Nov 2017) | 1 line [FIX] trackers: Check for modify_object_categories perm on the tracker when creating a new item, if the perm on the trackeritem isn't granted r64520 | jonnybradley | 2017-11-10 11:31:53 -0200 (Sex, 10 Nov 2017) | 1 line [FIX] trackers: Record tiki_updated correctly in the webservice data so caching works as expected, and don't run the webservices when rendering the input r64521 | jonnybradley | 2017-11-10 15:20:15 -0200 (Sex, 10 Nov 2017) | 7 lines [FIX] trackers: Store Webservice field json values as a new indexed type for elastic search, because storing json as plain text (with some values) prevents the item from being stored in the index. r64524 | chealer | 2017-11-10 18:26:55 -0200 (Sex, 10 Nov 2017) | 1 line [FIX] "Undefined index: wysiwyg" notice in at least tiki-editpage.php when feature_wysiwyg is disabled r64528 | rjsmelo | 2017-11-11 16:24:39 -0200 (Sáb, 11 Nov 2017) | 3 lines [NEW] Wiki Plugin to preview files from the file gallery. r64529 | rjsmelo | 2017-11-12 11:04:13 -0200 (Dom, 12 Nov 2017) | 2 lines [FIX] is_valid_language is not available in freetaglib, but on lib language r64530 | rjsmelo | 2017-11-12 12:40:04 -0200 (Dom, 12 Nov 2017) | 2 lines [ENH] Enable admin to see permitions fro features that are disabled r64531 | rjsmelo | 2017-11-12 14:24:38 -0200 (Dom, 12 Nov 2017) | 2 lines [FIX] Tagset information was lost when loading translations for freetag r64532 | rjsmelo | 2017-11-12 14:52:59 -0200 (Dom, 12 Nov 2017) | 2 lines [FIX] freetags - button to should delete box didn't work, preventing from delete translations r64533 | rjsmelo | 2017-11-12 15:25:15 -0200 (Dom, 12 Nov 2017) | 2 lines [FIX] Fix error when a group that was deleted is used to limit users from that given group in trackers r64536 | rjsmelo | 2017-11-12 16:13:06 -0200 (Dom, 12 Nov 2017) | 2 lines [ENH] Script to migrate MyISAM to InnoDB, reviwed, tested with latest trunk and updated. r64537 | rjsmelo | 2017-11-12 17:48:29 -0200 (Dom, 12 Nov 2017) | 2 lines [NEW] Allow to run profiles in dry-run mode, from command line and from the web interface r64539 | rjsmelo | 2017-11-12 20:18:56 -0200 (Dom, 12 Nov 2017) | 2 lines [NEW] Enable the admins to revert the changes applied using profiles r64540 | rjsmelo | 2017-11-12 20:50:49 -0200 (Dom, 12 Nov 2017) | 2 lines [ENH] Allow to easily sort the order permissions are shown in the admin interface. r64541 | rjsmelo | 2017-11-12 21:18:02 -0200 (Dom, 12 Nov 2017) | 2 lines [ENH] When using interactive translation, text still not translated will be highlighted in red r64542 | rjsmelo | 2017-11-12 21:52:38 -0200 (Dom, 12 Nov 2017) | 2 lines [ENH] Use the same theme control for the page history as for the page r64544 | jonnybradley | 2017-11-13 10:45:48 -0200 (Seg, 13 Nov 2017) | 2 lines [FIX] tooltips: Set up tooltips on tiki.modal.redraw r64545 | jonnybradley | 2017-11-13 10:47:03 -0200 (Seg, 13 Nov 2017) | 1 line [FIX] profiles: Make getObjectSymbolDetails static as it is only called statically - also refactor to use modern db access r64548 | jonnybradley | 2017-11-13 15:52:07 -0200 (Seg, 13 Nov 2017) | 2 lines [ENH] menus: More menu revamp - Move create/edit menu option to the unused AJAX service (including some refactoring and smarty tidying) r64463 | amette | 2017-11-03 06:23:02 -0200 (Sex, 03 Nov 2017) | 1 line [FIX] Better wording r64550 | amette | 2017-11-13 16:52:45 -0200 (Seg, 13 Nov 2017) | 1 line [FIX] session.save_path doesn't matter much, if save_handler isn't files r64551 | jyhem | 2017-11-13 21:27:18 -0200 (Seg, 13 Nov 2017) | 1 line [FIX] Restore proper ordering of fields when using a template in functionality of creating multiple items r64552 | rjsmelo | 2017-11-14 05:18:29 -0200 (Ter, 14 Nov 2017) | 2 lines [NEW] Enable users to benchmark the server from tiki-check.php (ref: https://github.com/odan/benchmark-php) r64553 | kroky6 | 2017-11-14 05:49:12 -0200 (Ter, 14 Nov 2017) | 1 line [FIX] plugin TrackerList: sort fields in correct order when using popup option r64555 | rjsmelo | 2017-11-14 05:53:53 -0200 (Ter, 14 Nov 2017) | 2 lines [ENH] Improve error message, when the custom search cache expires r64556 | kroky6 | 2017-11-14 06:34:45 -0200 (Ter, 14 Nov 2017) | 1 line [FIX] plugin TrackerList: mixed filtervalue/exactvalue parameter array placement r64558 | chibaguy | 2017-11-14 08:19:18 -0200 (Ter, 14 Nov 2017) | 1 line [ENH] Add cite tags in accordance with https://w3c.github.io/html/textlevel-semantics.html#the-cite-element . Thanks to Marc for bringing it up. r64559 | jonnybradley | 2017-11-14 08:44:55 -0200 (Ter, 14 Nov 2017) | 1 line [ENH] trackers: Add group name autocomplete to group perms fields on edit field form (including multiple options settings even though this also needs fixing) r64560 | jonnybradley | 2017-11-14 08:46:40 -0200 (Ter, 14 Nov 2017) | 1 line [FIX] trackers: Cannot use a JitFilter element as a JitFilter. This was making editing checkbox fields not work as they have no options, causing buildOptions to fail fatally. r64562 | kroky6 | 2017-11-14 10:45:10 -0200 (Ter, 14 Nov 2017) | 1 line [FIX] respect tracker item owner permissions when displaying/modifying comments r64564 | lfagundes | 2017-11-14 11:17:41 -0200 (Ter, 14 Nov 2017) | 3 lines [NEW] When a page is renamed, all references to that page using Include plugin are updated r64566 | lfagundes | 2017-11-14 12:47:22 -0200 (Ter, 14 Nov 2017) | 3 lines [NEW] Warning message on page edition if the page is being included by others r64568 | lfagundes | 2017-11-14 15:07:55 -0200 (Ter, 14 Nov 2017) | 3 lines [ENH] Wiki plugins that are rewriten when saved (ex: sign) now work on comments r64569 | jonnybradley | 2017-11-14 15:41:06 -0200 (Ter, 14 Nov 2017) | 2 lines [ENH] stats: Add support for Google Global Site Tag (the newer version of ga.js) r64574 | rjsmelo | 2017-11-14 20:49:43 -0200 (Ter, 14 Nov 2017) | 2 lines [FIX] Error in plugin report after removal of wlte, fix multiple warnings r64575 | rjsmelo | 2017-11-14 21:13:18 -0200 (Ter, 14 Nov 2017) | 2 lines [ENH] If the admin is trying to enforce https for all session when in http warn the admin to avoid getting lockout of tiki. r64576 | rjsmelo | 2017-11-14 22:31:04 -0200 (Ter, 14 Nov 2017) | 2 lines [FIX] Issue with autoload for Pear package Text_Wiki, fix also composer warnings with duplicated class names r64577 | luciash | 2017-11-15 08:29:43 -0200 (Qua, 15 Nov 2017) | 1 line [NEW] Wiki syntax: new global preference to make ordered list items display unique numbers for its sub-items (thanks marclaporte) r64578 | robertokir | 2017-11-15 10:01:42 -0200 (Qua, 15 Nov 2017) | 2 lines [ENH] Refill the input box at all stages of search. A title on both 1st and 2nd level result pages. r64579 | robertokir | 2017-11-15 18:49:23 -0200 (Qua, 15 Nov 2017) | 2 lines [ENH] Only list a table once on the first level result pages. Instead of View Button, link to the occurrences of searched string on the column names. Truncate the contents of columns on second level result pages. r64584 | kroky6 | 2017-11-16 08:59:46 -0200 (Qui, 16 Nov 2017) | 1 line [FIX] incorrectly ignoring UserSelector notification preferences for multiple-user fields where the editor was one of the users r64586 | jyhem | 2017-11-16 16:40:39 -0200 (Qui, 16 Nov 2017) | 1 line [FIX] Handle correctly radio fields with = sign r64590 | rjsmelo | 2017-11-16 18:41:32 -0200 (Qui, 16 Nov 2017) | 2 lines [FIX] PluginTrackerFilter, handle the case where the field defined in the filter parameter does not exist r64594 | rjsmelo | 2017-11-16 19:28:00 -0200 (Qui, 16 Nov 2017) | 2 lines [ENH] Keep admin sections with non-default values expanded r64619 | jonnybradley | 2017-11-18 14:11:16 -0200 (Sáb, 18 Nov 2017) | 1 line [FIX] check: Various fixes and cosmetic improvements r64620 | jonnybradley | 2017-11-18 14:51:36 -0200 (Sáb, 18 Nov 2017) | 1 line [DOC] less: Add the name of the "base_files" option in the help r64637 | jonnybradley | 2017-11-19 13:55:36 -0200 (Dom, 19 Nov 2017) | 1 line [DOC] typography: Add return type on get_typography_parser r64638 | jonnybradley | 2017-11-19 14:23:32 -0200 (Dom, 19 Nov 2017) | 1 line [FIX] stats: HTML encode account string (thanks chealer) r64643 | chealer | 2017-11-20 13:35:05 -0200 (Seg, 20 Nov 2017) | 4 lines [FIX] Remove "through ViewerJS" parenthesis r64643 | chealer | 2017-11-20 13:35:05 -0200 (Seg, 20 Nov 2017) | 4 lines [FIX] Redundancy "e.g." + "etc." r64645 | jonnybradley | 2017-11-20 14:18:51 -0200 (Seg, 20 Nov 2017) | 1 line [REM] wikilingo: Missed from r61553 (unused function and if needed in the future should be in wikilib anyway i think) r64647 | jonnybradley | 2017-11-21 09:16:05 -0200 (Ter, 21 Nov 2017) | 1 line [ENH] less: Add option to specify caches to be cleared (or none) r64652 | chealer | 2017-11-21 14:10:17 -0200 (Ter, 21 Nov 2017) | 2 lines [FIX] tiki_error_handling(): A PHP notice could be triggered when a notice occured... r64655 | jonnybradley | 2017-11-21 16:09:43 -0200 (Ter, 21 Nov 2017) | 1 line [ENH] menus: Implement drag and drop GUI on tiki-admin_menu_options.php r64660 | jonnybradley | 2017-11-21 18:12:50 -0200 (Ter, 21 Nov 2017) | 1 line [ENH] menus: Fix up preview and use the AJAX service r64662 | jonnybradley | 2017-11-21 19:22:59 -0200 (Ter, 21 Nov 2017) | 1 line [ENH] menus: Add a "deploy" button to the preview form (not quite working FIXME) r64665 | chibaguy | 2017-11-22 12:17:12 -0200 (Qua, 22 Nov 2017) | 1 line [NEW] Added as a variation of FiveAlive and FiveAlive-lite, kind of combining features of those, and maybe to replace one or both, in response to suggestion for "Happy Scroll" type theme look and behavior. See discussion at https://sourceforge.net/p/tikiwiki/mailman/message/36106084/ . r64666 | amnabilal | 2017-11-22 13:13:54 -0200 (Qua, 22 Nov 2017) | 1 line [Fix]Fontsize and pluginPDF was not respected during PDF export of slideshow, appended pluginPDF settings with slides html and removed font sizes, slideshow PDF will use global font settings. r64667 | jonnybradley | 2017-11-22 13:51:11 -0200 (Qua, 22 Nov 2017) | 1 line [FIX] menus: Make dragging the first item on a new menu work properly, and show the area to drag into with a border (thanks BSfez) r64668 | chibaguy | 2017-11-22 13:54:10 -0200 (Qua, 22 Nov 2017) | 1 line [ENH] Add class for differentiated styling. r64669 | chibaguy | 2017-11-22 13:56:39 -0200 (Qua, 22 Nov 2017) | 1 line [NEW] Light text color version for dark backgrounds. r64670 | jonnybradley | 2017-11-22 14:22:47 -0200 (Qua, 22 Nov 2017) | 1 line [FIX] modules: The module assign form needs an absolute link to post to tiki-admin_modules.php so it can be used elsewhere (like menu admin) r64671 | jonnybradley | 2017-11-22 15:04:56 -0200 (Qua, 22 Nov 2017) | 1 line [FIX] modules: Init module drag behaviour only on tiki-admin_modules r64672 | jonnybradley | 2017-11-22 15:08:39 -0200 (Qua, 22 Nov 2017) | 3 lines [FIX] menus: Menu options can exist on the same position to enable filtering by sections or perms, so add a new checkbox for that. r64673 | jonnybradley | 2017-11-22 15:18:02 -0200 (Qua, 22 Nov 2017) | 1 line [UPD] No changes, just composer update r64674 | jonnybradley | 2017-11-22 15:25:58 -0200 (Qua, 22 Nov 2017) | 1 line [UPD] bootstrap tour to v0.12.0 r64675 | jonnybradley | 2017-11-22 16:17:54 -0200 (Qua, 22 Nov 2017) | 1 line [UPD] h5p to 1.16.x (fixes to come) r64676 | jonnybradley | 2017-11-22 16:27:20 -0200 (Qua, 22 Nov 2017) | 1 line [FIX] h5p: Fix main issues with updated H5P libraries - more to come (thanks marclaporte) r64678 | luciash | 2017-11-22 17:50:54 -0200 (Qua, 22 Nov 2017) | 1 line [ENH][REF] partial rollback of 64577 and do it better approach: now the Multilevel numbering style preference applies to all the ordered lists including those created in Wysiwyg mode + added CSS to be able to opt-out some lists using a .nouol class wrapper r64679 | jonnybradley | 2017-11-22 18:18:42 -0200 (Qua, 22 Nov 2017) | 2 lines [FIX] h5p: Fix more issues with updated H5P libraries - new tiki_h5p_libraries_hub_cache table, new pref h5p_hub_is_enabled etc. r64681 | robertokir | 2017-11-22 19:08:24 -0200 (Qua, 22 Nov 2017) | 2 lines [ENH] Better error message if database needs an update and we try to rebuild index. r64682 | rjsmelo | 2017-11-22 21:26:32 -0200 (Qua, 22 Nov 2017) | 2 lines [NEW] Enable the definition of Custom Routes based on static values, alias to objects, regex or tracker fields r64683 | rjsmelo | 2017-11-22 21:53:46 -0200 (Qua, 22 Nov 2017) | 2 lines [NEW] Preference to display tracker item title in the sefurl r64684 | rjsmelo | 2017-11-22 22:44:13 -0200 (Qua, 22 Nov 2017) | 2 lines [ENH] Upgraade mPDF supported version to version 7, update slideshow to use the new version also. r64685 | lfagundes | 2017-11-23 00:23:19 -0200 (Qui, 23 Nov 2017) | 2 lines [FIX] When page is renamed, links to that page in any objects are updated (articles, blog posts, calendar events, tracker description, tracker field description, tracker textarea field) r64686 | rjsmelo | 2017-11-23 00:23:47 -0200 (Qui, 23 Nov 2017) | 2 lines [NEW] Enable tiki admins to define a fallback URL, used when the URL can't be determined, for instance when running from command line / cron r64687 | lfagundes | 2017-11-23 01:33:18 -0200 (Qui, 23 Nov 2017) | 3 lines [FIX] Plugin Include now checks approval version flag and displays only approved content r64688 | amnabilal | 2017-11-23 04:04:14 -0200 (Qui, 23 Nov 2017) | 1 line [DOC]Improved help text for PDF header and footer. r64696 | jonnybradley | 2017-11-23 12:14:32 -0200 (Qui, 23 Nov 2017) | 1 line [REL] missing _tiki on installer patch
Alias names for this page: Tiki 18 | Tiki18 LTS