[00:19] sylvieg joined #tikiwiki [00:28] ron__ Hello, I am trying to create a form with a tracker that can 1. be completed 2. give a thank you message 3. have the page reload (automatically or manually) and have the tracker form reappear on the page. [00:28] ron__ I've been fiddling around with the settings, but can't figure it out [00:35] CIA-98 tikiwiki: 03marclaporte * r42915 10/trunk/templates/admin/include_workspace.tpl: add missing pref in admin panel [00:36] CIA-98 tikiwiki: 03marclaporte * r42916 10/trunk/tiki-check.php: More precise warning for Tiki Check [00:36] ron__ If you hit the back button it will reload the page with the form open (previous entry is still present), but it will record the entries [00:36] ron__ I am looking to create a form to sign people up via a tablet and want to make it as easy as possible. [00:46] CIA-98 tikiwiki: 03marclaporte * r42917 10/trunk/templates/admin/include_video.tpl: Permit to set the Kaltura plugin from the Kaltura tab in the admin panel [00:47] goj_killedByISP joined #tikiwiki [01:00] CIA-98 tikiwiki: 03marclaporte * r42918 10/trunk/lib/prefs/ (category.php namespace.php): Making explicit that these two prefs are special and are not to be found in the general admin panel [01:11] CIA-98 tikiwiki: 03marclaporte * r42919 10/trunk/lib/wiki-plugins/wikiplugin_trackerquerytemplate.php: add feature check [01:12] CIA-98 tikiwiki: 03marclaporte * r42920 10/trunk/lib/wiki-plugins/wikiplugin_trackerpasscode.php: add missing description [01:17] CIA-98 tikiwiki: 03marclaporte * r42921 10/trunk/templates/admin/include_trackers.tpl: adding new plugin to admin panel [02:28] ron__ joined #tikiwiki [02:48] ron__ joined #tikiwiki [02:51] ron__ joined #tikiwiki [03:00] rodrigoprimo left #tikiwiki [03:09] goj_killedByISP joined #tikiwiki [04:05] Jyhem_laptop joined #tikiwiki [09:00] Jyhem joined #tikiwiki [09:21] Tiki|bot Recent Bug: Tracker item: #4291 - - Permission on Newsletters using Group Permissions - http://dev.tiki.org/item4291 [09:28] arildb joined #tikiwiki [09:56] fidel hi - sometimes if i click 'edit' of a single section in an article of my tiki 9.0 i end up with an empty content-page - while pressing the article-wide edit button works. Is that a known issue with 9.0? [10:36] arildb joined #tikiwiki [10:57] arildb_ joined #tikiwiki [11:04] arildb__ joined #tikiwiki [11:20] Tiki|bot joined #tikiwiki [11:35] sylvieg joined #tikiwiki [11:41] vmachine joined #tikiwiki [11:41] vmachine left #tikiwiki [12:10] Tiki|bot joined #tikiwiki [12:35] arildb joined #tikiwiki [12:56] sylvieg joined #tikiwiki [13:00] arildb_ joined #tikiwiki [13:03] redflo joined #tikiwiki [14:19] ricks99 joined #tikiwiki [14:48] goj joined #tikiwiki [14:50] Tiki|bot joined #tikiwiki [14:50] ricks99 using tiki 9.x... have a pretty tracker template with [foo?{$f_1} [14:51] ricks99 oopss. [14:51] ricks99 01using tiki 9.x... have a pretty tracker template with [foo?{$f_1}|bar] [14:51] ricks99 but when i use the wiki page as a template, tiki mis-parses the link [14:52] ricks99 the html i get is: ...) but that will break when viewing from a non-phone. [16:55] ricks99 any ideas? [17:00] GillesM joined #tikiwiki [17:09] ricks99 i guess i could wrap it in a class then use browser sniffing to show/hide the class [17:19] dennmans joined #tikiwiki [18:20] rodrigoprimo left #tikiwiki [18:56] RobertPlummer joined #tikiwiki [18:56] RobertPlummer polom all [19:14] fabricius polom all and ricks99|away , whilst wolod to RobertPlummer :-D [19:14] RobertPlummer :) [19:15] fabricius RobertPlummer: you are quite into jQuery, right? [19:15] RobertPlummer I have some experience. [19:16] fabricius1 joined #tikiwiki [19:18] RobertPlummer PHP STORM 5 Guys! - http://www.jetbrains.com/phpstorm/download/ [19:18] RobertPlummer Woohoo! [19:23] fabricius1 would it be hard to "teach" the infinite carousel a fading effect - optional to the slide effect? [19:46] RobertPlummer $(obj).fadeIn(); or $(obj).fadeOut(); [19:46] RobertPlummer You just need to find the right events for them fabricius [19:49] fabricius ok [19:49] fabricius what is an event RobertPlummer ? :-P [19:50] RobertPlummer http://api.jquery.com/category/events/event-object/ [19:52] ricks99 @RobertPlummer: will parser improvements allow for complex wiki syntax within table markup? [19:52] ricks99 will your improvements fix things? [19:52] RobertPlummer ricks99: Yes [19:52] ricks99 +100K [19:52] ricks99 :-) [19:52] * ricks99 can't wait [19:52] RobertPlummer ricks99: Right now the parser is a little buggy with some syntax, but it is just because it isn't handled right. [19:53] * ricks99 hates having to resort to HTML plugin for complex formatting [19:53] RobertPlummer ricks99: The old "parser" is not really a parser, it is mostly regex find and replace. I think the only thing close to a parser pre jison was for the plugins. [19:54] RobertPlummer ricks99: Jison is a full parser with state tracking, so something as simple as __test__ is tracked, open content close. [19:54] RobertPlummer ricks99: There are very few search and replace items in jison. [19:54] * ricks99 needs to start learning more about jison [19:55] RobertPlummer crack open the jison file in lib/core/JisonParser/Wiki.jison and take a look. [19:55] RobertPlummer If you've seen regex, the parser will come naturally. [19:56] ricks99 cool. tx [19:56] ricks99 and tx for ur work! [19:56] RobertPlummer The parser is segregated into the jison file (language definition) Wiki.php (the actual parser and lexer) and Wiki/Handler.php (the handler for the parser's actions) [19:57] RobertPlummer Then we have other things like the Parser Negotiator, which decides how to list a parser on the wiki page. But over all, it is a much needed abstraction of the current code. [19:58] RobertPlummer If you have any questions, or would like to help in testing it, please let me know. [19:58] RobertPlummer Or, better yet, just start testing it. [19:58] ricks99 will do. in trunk only, right? [20:02] RobertPlummer ricks99: Right [20:02] RobertPlummer ricks99: tiki-admin.php search "jison" tick and save. [20:03] ricks99 what are the odds for backportint to 9LTS? [20:03] fabricius RobertPlummer: thx ... reading [20:36] fabricius hmmm not really getting there [20:47] _qP joined #tikiwiki [20:55] Tiki|bot New Forum Posts: Tracker search - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=45153 [21:46] sandroandrade joined #tikiwiki [21:52] qp_ joined #tikiwiki [22:18] jacmoe joined #tikiwiki [23:05] jacmoe joined #tikiwiki [23:12] jacmoe joined #tikiwiki [23:26] fabricius RobertPlummer, ricks99 and all, I need a hand to implement a jquery plugin on a Tiki ... I want to get a principle understanding with an example, which I need anyway [23:26] RobertPlummer What is it for? [23:27] fabricius I downloaded a *slideshow* -> jquery.cycle.all.js [23:28] fabricius -> copied it into lib/jquery [23:28] fabricius -> tried on some wikipages, but am kind of stuck [23:29] RobertPlummer Are you on tiki 9 or 10? [23:29] fabricius in this case on 9 -> customer project [23:29] fabricius but need to know 10 aswell (my own site) [23:29] fabricius is both different in principle? [23:30] fabricius for now I need 9 [23:31] fabricius I got an infinite_carousel running (copied from themes.t.o) but it seems to be a different case here (maybe infinite is somekind of integrated) [23:33] fabricius I think I must call the jquery plugin first and then use my list in a div and then the actual plugin specific call (If I at all use the right wording)