Category: Dogfood on a *.tiki.org site
Bug or RFE for this site's Tiki
Show subcategories objects
| Name | Type |
|---|---|
| Forums should have adapted Search tools | tracker item |
|
Forums, UI; The selectors and element placement or size comments need to be improved (mobile and desktop)
I used https://tiki.org/forumthread78791-New-Wiki-pages-wont-take-the-Groups-default-Category and https://tiki.org/forumthread77665-What-is-the-Markdown-syntax-for-LaTeX-equations on Firefox. It is about the first comment header and the last message elements. Better separation between "section" is required (especially on mobile). {img fileId="1868" thumb="box"} {img fileId="1869" thumb="box"} {img fileId="1870" thumb="box"} {img fileId="1871" thumb="box"} {img fileId="1872" thumb="box"} {img fileId="1873" thumb="box"} |
tracker item |
|
Freetag search results should be placed in a way user see them
{syntax type="tiki" editor="plain"} At https://doc.tiki.org/tiki-browse_freetags.php you can click on any tag and it will initiate the search (after it as been fixed with https://dev.tiki.org/item7924) However the results are "hidden" from the user eyes down at the bottom of the page. If the user doesn't catch the quick refresh of the page he will have the impression noting happened (no search) as it will see the same list of tags in front of his eyes. True on Desktop, super-true on mobile. The results should be visible right away after a search is done for a better UX. |
tracker item |
|
Frequent "no tracker indicated" warnings from d.t.o
For over a year (or even longer?) I have seen many times that I got, when I edited a bug report, I got both (!) success and failure indicated ''__at the same time__''. Now this happened when I edited the "Illogical sorting of the Wishlist" report, see screenshot. Something in the inner workings of trackers is wrong. How can it be, that a tracker got successfully updated and it's ID is missing in one and the same request? See screenshot... Thanks hman |
tracker item |
|
Full screen mode: Error on first click on dev.tw.o and doc.tw.o
To reproduce: #Go to a tracker item. Ex.: http://dev.tikiwiki.org/tiki-view_tracker_item.php?itemId=2441 #Click full screen mode You are sent to http://dev.tikiwiki.org/tiki-view_tracker_item.php?itemId%3D2441&fullscreen=y After, that initial error, full screen mode works well It has been suggested this has a link with ShortURLs {QUOTE(replyto="Gary")}When using the short url, then clicking the fullscreen icon, and then clicking it again to leave fullscreen view, the url gets mangled and I end up at the home page. (Example: http://zukakakina.com/tw3/absE (external link) -> http://zukakakina.com/tw3/tiki-index.php?page%3DabsE&fullscreen=y (external link) -> http://zukakakina.com/tw3/tiki-index.php?page%253DabsE&fullscreen=n. (external link) The first = becomes encoded so the url breaks. chibaguy - r17975) {QUOTE} |
tracker item |
|
Fullscreen Edit : Wiki & Plugins Help are missing
"Fullscreen Edit" is a new cool feature of 2.x Quicktags are kept, but Wiki & Plugins Help are missing so it makes editing less enjoyable. "Edit Summary" is missing as well. Maybe it's intentional? |
tracker item |
|
fullscreen=y hides all info from top navigation bars in dev.t.o, doc.t.o and themes.to
fullscreen=y hides all info from top navigation bars in dev.t.o, doc.t.o and themes.to To reproduce, compare this: https://dev.tiki.org/tiki-index.php?fullscreen=y with https://dev.tiki.org/tiki-index.php?fullscreen=n |
tracker item |
|
Galaxia demo from wf.tw.o broken
I tested a demo in http://workflow.tikiwiki.org/ , as anonymous user, for the "university exam": http://workflow.tikiwiki.org/tiki-g-user_activities.php?filter_process=6 Clicked on the arrow icon ({img src=http://workflow.tikiwiki.org/lib/Galaxia/img/icons/next.gif}; btw, too small to be intuitive, I was not sure if this was the way to start. Some more explicit info on top of the screen would be welcome for new users of workflow) Typed the name of the activity: Called "trial1" (without quotes), and name of the user: "xavi" (without quotes) http://workflow.tikiwiki.org/tiki-g-run_activity.php?activityId=70&name=trial1 Then I only see those fields: || Process | University Admission Exam 1.0 Activity | Start Comment| Subject: | ^bla^ ^bla bla some text^|| Then I click on save, and I get this error message: ^ Error A start activity requires a name for the instance ^ --- From kerrnel22: I can recreate this. This will eventually get fixed, but in the meantime, it is merely a nuisance. What you entered still got added to the database, you just have to go back and pull up open instances. |
tracker item |
|
Generate valid RSS feeds from wiki pages, useful for ad serving and remote management of content, like a site footer
This is an RSS feed: http://sourceforge.net/export/rss2_projsummary.php?group_id=64258 It's not the traditional way of using RSS but it can be very useful :-) It permits us to get up to date info (Ex.: number of devs, number of downloads, etc.) from SourceForge, using RSS. We can then publish on http://info.tikiwiki.org/ This idea could be used for serving ads. http://en.wikipedia.org/wiki/Ad_serving This is also in the same idea as: http://dev.tikiwiki.org/Connect http://tikiwiki.org/Viral+Tiki Two immediate uses # Manage the footer of all *.tikiwiki.org sites from one place # Permit to push news & calls to action (Current version of Tiki, vote for Tiki in an Award, new release, etc) Tiki5 as of now: http://tikiwiki.org/tiki-index_raw.php?page=rsstest Tiki4 as of now: http://info.tikiwiki.org/tiki-index_raw.php?page=DeployWikiPageContentAsRSS Related {wish id=1396} |
tracker item |
|
GeSHi - Generic Syntax Highlighter for PluginCode should be in mods (and activated on *.tw.o sites)
((doc:PluginCode)) doesn't show colors for php code, as it should according to doc page: [http://doc.tikiwiki.org/PluginCode] Tried with param colors=>php or colors=>phpcode: {CODE()} {CODE(colors=>php)} /** Return system defined temporary directory. * In Unix, this is usually /tmp * In Windows, this is usually c:\windows\temp or c:\winnt\temp * \static */ function tempdir() { static $tempdir; <b>$tempdir = '../tmp';</b> <b>/*</b> if (!$tempdir) { $tempfile = tempnam(false,''); $tempdir = dirname($tempfile); @unlink($tempfile); } <b>*/</b> return $tempdir; } } {CODE} {CODE} And it returned: {CODE(colors=>php)} /** Return system defined temporary directory. * In Unix, this is usually /tmp * In Windows, this is usually c:\windows\temp or c:\winnt\temp * \static */ function tempdir() { static $tempdir; $tempdir = '../tmp'; /* if (!$tempdir) { $tempfile = tempnam(false,''); $tempdir = dirname($tempfile); @unlink($tempfile); } */ return $tempdir; } } {CODE} --- Update: RFE for plugincode: Why not using "wrap=>1" as default param instead as "wrap=>0"? |
tracker item |
|
Get nextthemes.tiki.org working (PHP 5.5 is required)
http://nextthemes.tiki.org is needed * Compare trunk & 13.x code base output * Start testing for Tiki 14 Low priority but also in need of PHP 5.5: http://nexttv.tiki.org http://stats.tiki.org |
tracker item |
|
get_user_by_cookie failed in tiki logs
Testing something I checked https://next.tiki.org/tiki-syslog.php where I can see a failed to get user by cookie several time (every 5 minutes) for a user "1974" (seems to be me). {img fileId="1620" thumb="box"} |
tracker item |
|
gif images not properly handled in dev.t.o
Uploading an animaged gif image file that shows a bug reproduced is not an easy task tin dev.t.o. I had to do that because the record rtc feature is not usable yet, and I wanted to reproduce the issue visually. I did that in an animated gif. I edited the corresponding [item7795|bug report], and uploaded the gif file throught the toolbar icon to "Choose or upload images". I got the image uploaded (to the default location, I didn't change it, expecting "happy path"), but the wiki syntax automatically inserted seems to not be adapted to displaying gif images. I recall that any plugin img param that attempts to resize the image converts it to png (or Tiki used to do so years ago), so that I removed the param to make a zoombox, I just left the param to indicate the fileId. But nothing was displayed in the parsed textarea of the tracker item once saved. Similarly, going to the view file (icon shown from the since last visit module) showed nothing, which might trigger the falsse sensation that the file upload failed. https://dev.tiki.org/file1?fileId=1562&view=page But it didn't fail. If you use the oldish syntax to display the image as an image, then it displays properly, as it can be reproduced here: https://dev.tiki.org/item7795-Cannot-use-Record-RTC-page-self-refreshed-before-accepting-perm-to-record Couldn't we get that plugin img when using fileId param to automati8cally display the gif image as image when the plugin notices that it's a gif image indeed? Somehow... HTH |
tracker item |
|
Git-SVN (SubGit): In the commit message add a link to the original Merge Request (MR)
As an example, here is a Merge Request (MR): https://gitlab.com/tikiwiki/tiki/merge_requests/53 When it arrived in Tiki SVN: https://sourceforge.net/p/tikiwiki/code/69454 As you see, a lot of important context is missing. Could we automate adding of the MR URL? Presumably tweak the code here? https://gitlab.com/tikiwiki/systools |
tracker item |
|
Google shouldn't returns edit page link to create a new page
I was searching for "tiki Show Category Path" using Google. The second result is : https://doc.tiki.org/tiki-editpage.php?page=Show+Category+Path Obviously this is wrong... {CODE()} https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwjT6tiLm_TzAhW6iP0HHc6vD8gQFnoECAoQAQ&url=https%3A%2F%2Fdoc.tiki.org%2Ftiki-editpage.php%3Fpage%3DShow%2BCategory%2BPath&usg=AOvVaw3jBGKxwUEoDWAyBGqffbcI {CODE} {img fileId="1622" thumb="box"} |
tracker item |
|
Green background on uploaded video to tv.tiki.org (Kaltura)
On this page, two videos were uploaded, one is fine and the other, not. But both are fine if you play them locally. https://tv.tiki.org/Profile+Export {img fileId="253"} |
tracker item |
|
hash param missing at the url in notification email messages
FYI: Notification messages with hashes in the url appear to miss that has param... Reproduced also on dev.tw.o with current svn code. Xavi En/na tikiwiki-devel (a) lists.sourceforge.net ha escrit: > Wiki page renamed by marclaporte. > > Date: 19 Apr. 09 23:53 UTC > > Old name: Mind Mapping > New name: MindMap > > If you don't want to receive these notifications follow this link: > http://dev.tikiwiki.org/tiki-user_watches.php?hash= > |
tracker item |
|
Headings in a fade block shouldn't be displayed in the table of contents (TOC set to off)
Headings in a fade block are displayed in the table of contents even with the page properties, TOC set to off. {img fileId="1532" thumb="box"} |
tracker item |
|
Hiding edit icon for included plugins
On the page: https://tiki.org/TikiFest-Virtual-2021 I can edit the tracker calendar plugin from the included page... but it failed. Seems it is not possible to edit a plugin from an included page directly. The edit plugin button should be hidden as a quick workaround. {img fileId="1538" thumb="box"} |
tracker item |
|
http://dev.tiki.org/tiki-tracker_rss.php?trackerId=5 has show related content
{syntax type="tiki" editor="plain"} This is low priority because it doesn't affect most sites. However, hopefully, there is an easy way to exclude some fields from the RSS view (this could come in handy for other field types as well) {CODE()}Show.tiki.org snapshot creation is in progress Show.tiki.org snapshot creation is in progress... Please monitor http:///snapshots/ for progress. Note that if you get a popup asking for a username/password, please just enter "show" and "show".{CODE} |
tracker item |
|
http://dev.tiki.org/wish2000 used to work, but no longer, maybe because of changes in tiki-route.php
or maybe because it used to be because .htaccess was modified to support this? Maybe "Rewrite tiki-view_tracker.php?itemId=yyy to Prefixyyy page" from https://dev.tiki.org/tiki-admin.php?page=sefurl could help? I think others used to work as well, like bug or rfe? |
tracker item |
|
http://i18n.tiki.org/Status shows fatal error
http://i18n.tiki.org/Status shows fatal error {CODE()} Fatal error: Class 'Table_Plugin' not found in /www/htdocs/w00ec2fb/lib/wiki-plugins/wikiplugin_fancytable.php on line 11 {CODE} |
tracker item |
|
http://tiki.org/tiki-admin.php?page=performance OpCache has run out of memory
{img fileId="864"} Amette contributed a way for Tiki to report its health: http://sourceforge.net/p/tikiwiki/code/HEAD/tree/trunk/tiki-monitor.php http://sourceforge.net/p/tikiwiki/code/HEAD/tree/trunk/doc/devtools/check_tiki.php http://sourceforge.net/p/tikiwiki/code/HEAD/tree/trunk/doc/devtools/check_tiki-new.php This could help 1- Alert quickly the right people to get the site back up 2- Provide data to understand what went wrong Related: * {wish id=4836} * {wish id=4678} |
tracker item |
|
http://tikiwiki.svn.sourceforge.net/viewvc/tikiwiki/branches/4.x/changelog.txt contains link to http://tikiwiki.org/ReleaseNotes42 which does not exis
http://tikiwiki.svn.sourceforge.net/viewvc/tikiwiki/branches/4.x/changelog.txt (got link to that from -german- http://doc.tikiwiki.org/Tiki4) contains link to http://tikiwiki.org/ReleaseNotes42 which does not exist |
tracker item |
|
https://tiki.org/Demo (links broken for demos)
At https://tiki.org/Demo The Demo instances for 16x and 9x are no longer available. 16x shows Internal Error 500 9x shows url no longer available. |
tracker item |
One at the top (look to me like the website general search)
One inside the forums "boundaries", above the forum title.
When I use the second Search form I redirected to the Tiki search page which doesn't allow me to search by forums, author, etc.
Basic tools a forum should have.
It should be possible to have dedicated tools (or at least how they look like) to search with Forums object fields.
We have everything needed in the unified index
parent_object_type
parent_object_id
lastpost_modification_date
object_typecontents
post_author
score
Etc...