Loading...
 
Skip to main content

Category: 16.x

16.x
Show subcategories objects

Name Type
ItemLink: use = operator to have different value and data in drop down - like select tag in HTML
In ItemLink if the setting for "Format for Customising Multiple Field"s has a "=" between two tracker fields (e.g. %0=%1) then one should be treated as value and the other as data.

This will be consistent with the behavior of the "Other" setting in DropDown field type and will simulate the options of the HTML select tag.

The enhanced functionality will enable ItemLink to display one set of data in a drop down but store the corresponding value in the tracker field; for those situations where we wish to store the value and not the data that the user selects in the drop down.

Currently the functionality is:
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>

The enhancement will make this possible:
<select>
<option value="68768">Volvo</option>
<option value="543543">Saab</option>
<option value="678654">Mercedes</option>
<option value="32342">Audi</option>
</select>
tracker item
js and css borked in doc.t.o while testing how to avoid issue in elfinder which prevented to upload any picture: please help
js and css borked in doc.t.o while testing how to avoid issue in elfinder which prevented to upload any picture: please help

Login to https://doc.tiki.org and try to click at any wiki page icon section at the topright corner of the page: nothing is shown.

If you click in control panels to avoid using tabs, nothing happens.
etc.
tracker item
LIST Filter by distance command not working
I'm trying to list wiki pages using the new distance filter. This is the code I am using in the wiki editor:

{CODE()}{LIST()}
{filter distance="50000m" lat="153.601290" lon="-28.645920"}
{LIST}{CODE}

I have posts located within the distance of the specified coordinates but the command throws the following error when I visit the wiki page:

{CODE()}
Error
Expression not supported: Search_Expr_Distance
{CODE}
tracker item
Long File Description Overflows Page
When a long description is entered at "edit properties" for a file, and saved, then when you hover over the "i" icon for information, the flyout dialogue is not responsive. It fly's out of the constrained areas.
tracker item
Make PluginChart optionally reuse some other lib already in Tiki to make js-based charts (raphaeljs, chartjs, d3.js, etc)
Make PluginChart optionally reuse some other lib already in Tiki to make js-based charts (raphaeljs, chartjs, d3.js, etc)

By default PluginChart was able to produce these charts:
https://doc.tiki.org/Spreadsheet+Graphics+and+Charts#Select_the_Graphic_Type_and_Output_Format

But it would make total sense to have the option to produce js-based or svg-based charts, like the ones currently produced by the Spreadsheet js feature ( , reuing raphael.js lib), or the ones in theory available in the ((doc:PluginChartJS)) plugin and lib.

Strategic feature to get Spreadsheets and charts out of them in the game again.

There is another request to have the png & jpg versions of the charts produced again (they are currently not shown), since this implies an easy solution for charts in PDF reports working automagically without requiring complex solutions to get js-based charts incluided in PDF reports.
This request, though, is to have an some optional parameter added to get the chart produced with some JS lib already in Tiki like the ones cited above. And we will see elsewhere how to ensure that they can be included in the printed PDF, etc.
tracker item
Make Tiki escape doublequotes (if any) from Realname field in user preferences
Make Tiki escape doublequotes (if any) from Realname field in user preferences

For instance,

Foo "foobar" Bar

(note the double quotes) breaks some JS functionality (mainly JS buttons and action popups do not work for the user then) - needs some escaping otherwise browser console reports an error

tracker item
Mediawiki import fails
I tried to import XML from MediaWiki (1.27.0) following [https://doc.tiki.org/MediaWiki+Importer|this guide]. Error:
__"MediaWiki XML file version 0.10 is not supported."__

Here´s what i tried so far:
1) Create [https://www.mediawiki.org/wiki/Help:Export|XML-Backup from MediaWiki]
2) Tools->Importer, upload the original file
3) Error: Wrong MIME-Type
4) Edit XML file: add ‹?xml version="1.0" encoding="utf-8"?› to the top of the file (brackets changed for posting).
5) Tools->Importer, upload the modified file
6) Message: MediaWiki XML file version 0.10 is not supported.

Thanks for any suggestion, fix or workaround for this issue!
tracker item
Missing table in mysql 5.7.17
The database table tiki_user_assigned_modules is not created on install. I am using mysql version 5.7.17, but the error may occur on other versions.

The query that creates the table:
DROP TABLE IF EXISTS `tiki_user_assigned_modules`;
CREATE TABLE `tiki_user_assigned_modules` (
`moduleId` int(8) NOT NULL,
`name` varchar(200) NOT NULL default '',
`position` varchar(20) default NULL,
`ord` int(4) default NULL,
`type` char(1) default NULL,
`user` varchar(200) NOT NULL default '',
PRIMARY KEY (`name`(30),`user`,`position`, `ord`),
KEY `id` (moduleId)
) ENGINE=MyISAM;

mysql throws an error of Primary Key cannot have NULL values, and the table fails to be created.

The missing table was first noticed when trying to modify the modules listed in the Assigned Modules area of the tiki-admin_modules.php page.

Suggested fix:
This table seems similar to the tiki_modules table. I would suggest modifying the position and ord columns to have the NOT NULL DEFAULT '' and '0' to match that table. I don't know what affect this will have on the tiki code overall, but it does let the database table be created.

The suggested sql code then becomes:
DROP TABLE IF EXISTS `tiki_user_assigned_modules`;
CREATE TABLE `tiki_user_assigned_modules` (
`moduleId` int(8) NOT NULL,
`name` varchar(200) NOT NULL default '',
`position` varchar(20) NOT NULL default '',
`ord` int(4) NOT NULL default '0',
`type` char(1) default NULL,
`user` varchar(200) NOT NULL default '',
PRIMARY KEY (`name`(30),`user`,`position`, `ord`),
KEY `id` (moduleId)
) ENGINE=MyISAM;
tracker item
Moving a node in structure to another structure does not change structure ID of the moved node's children.
The method
{CODE()}public function move_to_structure($page_ref_id, $structure_id, $begin=true){CODE}
changes the moved node's structure_id, but not the children's structure_id. The target structure will still show the children, but will not allow them to be moved. (Pressing save will have no effect, basically causing a read-only structure, with no warnings or errors ouptut)

---

Here's your fix:

{CODE(wrap="0" colors="php")}public function move_to_structure($page_ref_id, $structure_id, $begin=true)
{
$page_info = $this->s_get_page_info($page_ref_id);
$query = "update `tiki_structures` set `pos`=`pos`-1 where `pos`>? and `parent_id`=?";
$this->query($query, array((int) $page_info["pos"], (int) $page_info["parent_id"]));
if ($begin) {
$query = "update `tiki_structures` set `pos`=`pos`+1 where `parent_id`=?";
$this->query($query, array($structure_id));
$pos = 1;
$query = "update `tiki_structures` set `structure_id`=?, `parent_id`=?, `pos`=? where `page_ref_id`=?";
$this->query($query, array($structure_id, $structure_id, $pos+1, $page_ref_id));
} else {
$query = "select max(`pos`) from `tiki_structures` where `parent_id`=?";
$pos = $this->getOne($query, array($structure_id));
$query = "update `tiki_structures` set `structure_id`=?, `parent_id`=?, `pos`=? where `page_ref_id`=?";
$this->query($query, array($structure_id, $structure_id, $pos+1, $page_ref_id));
}
// get the page_ref_ids of all child pages of the moved page
$child_ref_ids = array();
$result = $this->query("select child.page_ref_id from tiki_structures p inner join tiki_structures child on child.parent_id = p.page_ref_id where p.page_ref_id=" . $page_ref_id);
while ($row = $result->fetchRow()){
array_push($child_ref_ids, $row['page_ref_id']);
}
// update the structure ids of the child pages
$this->query("update tiki_structures set structure_id=" . $structure_id . " where page_ref_id in (" . implode(',',$child_ref_ids) . ")");
}{CODE}
tracker item
Multiple category fields issue when inline editing
If you have two category fields in one tracker and use inline editing to change one of them, the categories set in the other one are lost.

Will try and make a show instance f'when i can (or indeed just fix it!)
tracker item
Navbar overlapping tablesorter heading row (col titles, filter and col select icons)
Navbar overlapping tablesorter heading row (col titles, filter and col select icons)
As reported by Gary in the devel list:
https://tiki.org/tiki-view_forum_thread.php?threadId=60288

See it reproduced here:
(you may need to use Chrome or Firefox to view this .webm (VP8) video in your browser)

{mediaplayer src="https://tiki.org/display1083" style="native" type="video/webm"}
tracker item
New option to include 'Threads with no replies yet' to Daily Reports and to Notification digests
It's not easy to get information in your mail box from all tiki sites where discussions are held in forums, in order to find out which threads didn't receive any reply. Imagine the user forums (many) in t.o.: you need to browse through many forums to see the threads that didn't receive any reply yet, in case you know answers to amny questions, but your time is limited and you want to focus first in the threads that didn't receive any reply yet.

A new option to include '__Threads with no replies yet__' to ((doc:Daily Reports)) and to ((doc:Notification digests)) would be very useful. This idea is borrowed originally from vbulletin, which included this feature many years ago. See example of email received from another software (probably vbulletin, even if I can't tell for sure any more) where that section is included.

In fact, an even better solution could be to create a new module for "__Threads with no replies yet__", and allow some way to let the tiki admin include some modules in ((doc:Daily Reports)) and in ((doc:Notification Digests)).

{CODE()}
userfoo,

We're proud to announce that LQ ISO has now facilitated over 49 MILLION Linux downloads! Visit http://iso.linuxquestions.org/ for all your Linux distribution download needs. With over 2,600 Linux distribution versions available for download, LQ ISO is the place to download Linux.

Would you like the latest Linux and Open Source news? If so, follow us on twitter: https://twitter.com/linuxquestions Also note that we're now regularly posting original news to the Linux - News forum. Visit http://www.linuxquestions.org/questions/linux-news-59/ to discuss the latest Linux and Open Source news.

Did you recently get a new Android device or Chromebook? Visit http://www.androidquestions.org/forum.php for Android related discussion/help and http://www.chromeosquestions.org/forum.php for ChromeOS related discussion/help. Along with LQ, these sites form The Questions Network.

-jeremy
http://jeremy.linuxquestions.org/

***SPONSOR***
Introduction to Linux - A Hands on Guide

This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.

Receive your complimentary guide: http://linuxquestions.tradepub.com/free/w_mach01/
***SPONSOR***
---------------------------------------------------------------------------

Today's Date: 09-02-2014

Activity since: 08-18-2014
---------------------------------------------------------------------------

View all new content here: http://www.linuxquestions.org/questions/
---------------------------------------------------------------------------
LATEST THREADS
---------------------------------------------------------------------------

-- Threads posted most recently --

Title: "Yet more cifs mount issues..." (Date Posted 09-02-2014 by anw)
o 0 Replies, 20 Views, Last Post: 06:23 PM, 09-02-2014 by anw
o http://www.linuxquestions.org/questions/linux-software-2/yet-more-cifs-mount-issues-4175517206/

Title: "How to treat secure boot when Slackware 14.1 is installed" (Date Posted 09-02-2014 by nix84)
o 1 Replies, 67 Views, Last Post: 06:06 PM, 09-02-2014 by Didier Spaier
o http://www.linuxquestions.org/questions/slackware-14/how-to-treat-secure-boot-when-slackware-14-1-is-installed-4175517204/

Title: "libelf error on rhel7 (kernel 3.10.0-123.el7.x86_64)" (Date Posted 09-02-2014 by swarapol)
o 1 Replies, 57 Views, Last Post: 06:34 PM, 09-02-2014 by AlucardZero
o http://www.linuxquestions.org/questions/red-hat-31/libelf-error-on-rhel7-kernel-3-10-0-123-el7-x86_64-a-4175517203/

Title: "Using fdisk to make mem stick bootable" (Date Posted 09-02-2014 by nix84)
o 1 Replies, 60 Views, Last Post: 06:16 PM, 09-02-2014 by Didier Spaier
o http://www.linuxquestions.org/questions/slackware-14/using-fdisk-to-make-mem-stick-bootable-4175517202/

Title: "Bad drive" (Date Posted 09-02-2014 by adadani)
o 1 Replies, 54 Views, Last Post: 06:34 PM, 09-02-2014 by AlucardZero
o http://www.linuxquestions.org/questions/linux-newbie-8/bad-drive-4175517201/

Title: "Cinnamon crashes with Linux Mint 17 live CD - "you are currently in fallback mode"" (Date Posted 09-02-2014 by Gabethebabe)
o 1 Replies, 11 Views, Last Post: 05:32 PM, 09-02-2014 by EDDY1
o http://www.linuxquestions.org/questions/linux-newbie-8/cinnamon-crashes-with-linux-mint-17-live-cd-you-are-currently-in-fallback-mode-4175517199/


-- Threads with no replies yet --

Title: "Alsa doesn't detect HDMI audio on Haswell" (Date Posted 09-02-2014 by adolfoe)
o 73 Views
o http://www.linuxquestions.org/questions/linux-hardware-18/alsa-doesn%27t-detect-hdmi-audio-on-haswell-4175517194/

Title: "Best solution for linux based proxy server in an office" (Date Posted 09-02-2014 by sigint-ninja)
o 66 Views
o http://www.linuxquestions.org/questions/linux-newbie-8/best-solution-for-linux-based-proxy-server-in-an-office-4175517190/

Title: "Erase a partition without losing it's UUID?" (Date Posted 09-02-2014 by Amarildo)
o 91 Views
o http://www.linuxquestions.org/questions/linux-newbie-8/erase-a-partition-without-losing-it%27s-uuid-4175517188/

Title: "need an epub reader that has highlighting" (Date Posted 09-02-2014 by Gregg Bell)
o 64 Views
o http://www.linuxquestions.org/questions/linux-software-2/need-an-epub-reader-that-has-highlighting-4175517186/

Title: "Auto respond to all incoming e-mail messages with a default subject and message" (Date Posted 09-02-2014 by aalger)
o 67 Views
o http://www.linuxquestions.org/questions/linux-newbie-8/auto-respond-to-all-incoming-e-mail-messages-with-a-default-subject-and-message-4175517180/

Title: "Let's test Slackware-current." (Date Posted 09-02-2014 by Didier Spaier)
o 196 Views
o http://www.linuxquestions.org/questions/slackware-14/let%27s-test-slackware-current-4175517175/


---------------------------------------------------------------------------
LATEST POLLS
---------------------------------------------------------------------------

Question: Do you change a brand new PC directly to Linux, buy it with Linux, or something else?
o 'Have bought Windows PCs and converted them straight to Linux ' (26 Votes)
o 'Have only ever converted old PCs to Linux ' (7 Votes)
o 'Have bought PCs which have Linux as their installed OS ' (6 Votes)
o 'Typically build a custom system from the ground up ' (31 Votes)
o 'Something else' (12 Votes)
View Poll Results: http://www.linuxquestions.org/questions/showthread.php?t=4175514666

Question: Do you enable or disable NumLock?
o 'I have NumLock turned on most of the time ' (30 Votes)
o 'I have NumLock turned off most of the time ' (10 Votes)
o 'I constantly turn NumLock on and off, depending on what I'm doing ' (1 Votes)
o 'My keyboard doesn't have a number pad' (3 Votes)
View Poll Results: http://www.linuxquestions.org/questions/showthread.php?t=4175514020


---------------------------------------------------------------------------
FORTHCOMING EVENTS :
to view the calendar, click the link below:
http://www.linuxquestions.org/questions/calendar.php?c=0
---------------------------------------------------------------------------


---------------------------------------------------------------------------
STATISTICS:
We have had the following activity since 08-18-2014
---------------------------------------------------------------------------

o 4,430 New Members
o 1,275 New Threads
o 7,448 New posts


---------------------------------------------------------------------------
USER INFO:
These are your current user details
---------------------------------------------------------------------------

o Your username is: "userfoo"
o You have 2 Posts
o You registered on 01-18-2005
o You were last active on LinuxQuestions.org at 12:52 PM, 10-21-2005


---------------------------------------------------------------------------
To unsubscribe from the community updates, click this link:
http://www.linuxquestions.org/questions/profile.php?do=editoptions
and uncheck "Receive Community Bulletin Newsletters".
Currently, community updates are sent bi-weekly.
---------------------------------------------------------------------------
{CODE}
tracker item
Newsletter sends text and html and no way to choose only one
Newsletter sends text and html and no way to choose only one

Reproduced here:
https://tiki.org/tiki-send_newsletters.php?nlId=7

Wasn't tehre a way to choose that in previous tiki versions? (tiki12 probably or earlier, I used that preference)
---
Show instance created by bchauchat and admin pass changed to adminadmin
See: [https://irc.tiki.org/irclogger_log/tikiwiki?date=2016-11-25,Fri&sel=58#l54]
---
Update:
This is affecting also the newsletter sending from tiki.org, to communicate new releases to the subscribed users, and it provides very bad image of the polishness of newsletters in our own servers. {sign user="xavi" datetime="2017-01-10T09:32:11+00:00"}
tracker item
Newsletters do not show the list of emails being sent to
Newsletters (in Firefox and Chrome) do not show the list of emails being sent to, that page where the list got updated as emails where being sent.

In Chrome they are shown as usual (as in 12.x)

Using Firefox 46 on GNU/Linux 64 bit (Ubuntu 16.04).

Got it while testing this issue:
"Newsletter fails to be sent properly if article clipping is involved"
https://dev.tiki.org/item6040

Throtlling was in use, in case this matters.
Reproduced in tiki.org
https://tiki.org/tiki-send_newsletters.php?nlId=7
---
Update: using 16.x in t.o sites, and Chromium: I can't see the list of emails being sent either. (and unclear if all people receive the newsletter, but that is another story - even if that makes uncertain whether we are communicating properly security releases to all t.o-news-and-releases-newsletters subscribers ) {sign user="xavidp" datetime="2016-12-27T18:44:32+00:00"}
tracker item
no built-in way to prevent realName user pref. duplicates automatically
One can ask for the realName "admin" and get it with no problem. In fact, all the 1000 users of a site could be called admin.
TW51
tracker item
"Other" field from tracker dropdown field invisible unless there is an "other" option named with the translation of "other"
In Tiki 12 at tracker fields there was a field type D where you could select an option or add a value beyond the options.
In Tiki 15.1 I used the tracker field type "Drop Down with Other field" and named the field "choices"
My options were: Wahl1,Wahl2,Wahl3,other
When I want to enter values in the field "choices" I can just select from the above. But I can't type in "Wahl4".
Perhaps I use the field wrongly?
Thanks for your help.
tracker item
Organicgrp install problem
Hello Tiki community, first time posting here.

I`m having an strange bug when trying to install the syn_organicgrp (v0.2) on my project. I installed de tiki_organicgrp without a problem before, but the other one seems not to cooperate...

What happens is the following:

I install it via the command:
sudo php-5.6 console.php addon:install syn/organicgrp
and for some odd reason, happens this:
Profile 007_groupcoreactivities was already applied. Nothing happened. (Even though I had nothing installed before).

Tried also to install the 007 profile with the profile command, and even though it said that the profile has been installed, it continues not to work when I enter in a Group page, saying: This profile for this addon has not yet been installed: syn/organicgrp - 007_groupcoreactivities

Im not a web expert, so I`ve been trying to solve this for more than a month, but no success. Thats why I decided to ask for help here.

Thank you all very much!

There are also some other errors reported in the install
Here is the full log
{code}PHP Notice: Undefined index: tikiorg/organicgrp in /var/www/html/my.site/lib/prefslib.php on line 456

Notice: Undefined index: tikiorg/organicgrp in /var/www/html/my.site/lib/prefslib.php on line 456
Profile 001_preferences applied.
Profile 002_og_categories applied.
PHP Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333
Profile 003_groupfilegallery applied.
Profile 004_og_tracker applied.
PHP Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333
PHP Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333
PHP Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333
PHP Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333
PHP Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333
PHP Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333
PHP Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333
Profile 005_syswikipages applied.
PHP Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333
Profile 006_usrwikipages applied.
Profile 007_groupcoreactivities was already applied. Nothing happened.
PHP Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/my.site/lib/prefslib.php:456) in Unknown on line 0

Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333

Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333

Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333

Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333

Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333

Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333

Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333

Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333

Warning: Missing argument 1 for ScoreLib::table(), called in /var/www/html/my.site/lib/score/scorelib.php on line 272 and defined in /var/www/html/my.site/lib/score/scorelib.php on line 333

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/my.site/lib/prefslib.php:456) in Unknown on line 0 {code}
tracker item
Page with many PluginSheet calls should respect their own uses of parameter 'simple=y/n'
Page with many PluginSheet calls should respect their own uses of parameter 'simple=y/n'

How to reproduce:
Apply profile ((pr:Spreadsheet demo)), and at the instructions page, many sheet plugin calls have -+simple=y+-, and only one has -+simple=n+-. However, all of the sheet plugin calls in the page inherit the -+simple=n+-

----
See it reproduced here:
Compare the page produced by the profile:
http://xavi-9794-6265.show.tikiwiki.org/tiki-index.php?page=Spreadsheet-demo-instructions
u: admin
p: 12345

with an equivalent page where all sheet plugins where set to simple=y:

http://xavi-9794-6265.show.tikiwiki.org/tiki-index.php?page=Spreadsheet-simple-only

http://xavi-9794-6265.show.tikiwiki.org/tiki-pagehistory.php?page=Spreadsheet+simple+only&newver=0&oldver=2

Please note the different UI surrounding all sheets in the earlier version (the one also coming from the profile: all simple=y but one simple=n )
tracker item
Plug-in Quote
There is no chance for linebreaks in body of plugin quote. %%% also is not parsed.
tracker item
Plugin Carousel Will Not Constrain to Body
The PluginCarousel seems to be behave quite poorly with any combination of parameters applied, I have tried to add a carousel to the top of a wiki page, I have tried to constrain the Carousel within a Bootstrap grid fluid container and regular container and it seems no matter what I do, the Carousel fly's out of the containers, and main body area and into the rest of the page. Using basic syntax as:
{CODE(theme="default")}{carousel fgalId="6"}{CODE}
I would think it should work out of the box, but I can't seem to get the correct combination of commands to make the carousel work.
Please see show instance.
tracker item
Plugin Convene should display table with options just after the user adds the first user an date
Plugin Convene should display table with options just after the user adds the first user an date

You can reproduce when you create a new page in t.o for a new trm:
https://tiki.org/trm

add
{CODE()}
{convene}
{CODE}

add your name, and select a first date, and you will see the issue.
tracker item
Plugin ListExecute with email sending garbage if tracker field type is file
It is not possible to use the plugin ListExecute to send an email that contain a tracker field type file. If you do so it will send different kind of un-useable code.

There is a debate about inserting a file in an email and maybe this will be fixed/changed one day. In the meantime it will be cleaner to display proper error or warning something like "it is not possible..."
tracker item
Plugin Tracker doesn't return feedback any more after inserting item if url param is provided
Plugin Tracker doesn't return feedback any more after inserting item if url param is provided

According to the documentation of Plugin Tracker ( https://doc.tiki.org/PluginTracker#Examples ), this should be working:
{CODE()}
{TRACKER(trackerId="1" fields="1:3:4" action="Send")}
!!! Thanks!
Thank for your contribution!
{TRACKER}
{CODE}

But if we send the user to a new page, the "thanks for your contribution" is not shown any more. And we could have some way to get the user see that feedack even when the user is sent to another page after inserting the item. Something could be added reusing the function that lindon added recently (months) to trunk to have a common way to display feedback to users after their actions.

Some discussion in the devel list can help elucidate how to handle this implementation.

Isse reproduced here in a 15.x instance as a reference:
http://xavi-9794-6059.show.tikiwiki.org/tiki-index.php?page=Bug_Tracker
u: admin
p: 12345
tracker item
Plugin tracker send emails with the wrong template for some of the emails defined in the params
Plugin tracker send emails with the wrong template for some of the emails defined in the params
https://doc.tiki.org/PluginTracker#Advanced_plugin_usage_2_multiple_recipients_multiple_templates_

I defined this type of plugin call:
{CODE(colors="tiki")}
{TRACKER(trackerId="1" action="Submit" fields="1:2:3:4:5" email="noreply@example.com|5,cc1@example.com,cc2@example.com|wiki:tpl_report_own_request,wiki:tpl_report_new_request,wiki:tpl_report_new_request")} some text {TRACKER}
{CODE}

The issue is that the emails sent to cc1@example.com and cc2@example.com contain the first template (wiki:tpl_report_own_request), and not the next one corresponding to them (wiki:tpl_report_new_request).

Reproduced at:
http://xavi-9794-6051.show.tikiwiki.org/tiki-index.php?page=Bug_Tracker
First http auth:
u: show
p: show

tiki credentials:
u: admin
p: 12345

Change the emails set as recipients in that email param of the plugin Tracker of that "Bug_Tracker" page. And add a new bug report as anonymous for instance. The 2 emails set hardcoded in the plugin tracker param email should get their emails with template "new" (tpl_report_new_request) but they get them also with template "own" (tpl_report_own_request )
tracker item
Changing (modernizing) Tiki smileys (we should support Emoji)
Tiki smileys are so 90s... It look very bad.

:)
;)
(:santa:)
(:twisted:)

Really ?

--drsassafras begin--
This seems related to : https://dev.tiki.org/item6191 and https://dev.tiki.org/item6189

I looked into the issue not so long ago. Almost all browsers now support emoji. Desktop and mobile. If we enable the saving of emoji in our database, they will all show nicely, and will always be kept up to date with the OS/Browser.

A little emoji selector could be made for users who dont have a emoji keyboard set up, and the existing similes used here could be integrated.

Although, it might be easier to replace the emoticons with new ones in the mean time.
--drsassafras end--
tracker item
Show PHP error messages