Tiki Draw is coming along nicely. /me cheers Robert! and /me cheers SVG-edit community tikiwiki: 03chealer * r35101 10/trunk/ (3 files in 3 dirs): [FIX] French: "Dessiner - (SVG - modifier)" => "Dessiner - (SVG-edit)". "SVG-edit" is a proper noun. tikiwiki: 03marclaporte * r35102 10/branches/7.x/lib/wiki-plugins/wikiplugin_draw.php: [MOD] changing image to drawing to make it clear that it's not the same thing tikiwiki: 03lindonb * r35103 10/branches/7.x/lib/setup/prefs.php: [FIX] Set default status upon setup for new plugins to avoid preferences from setting unexpectedly tikiwiki: 03chibaguy * r35104 10/branches/7.x/lang/ (48 files in 48 dirs): [FIX] Keep language files consistent with case change in r35075 (Admin DSN). tikiwiki: 03marclaporte * r35105 10/trunk/lib/userslib.php: [MOD] starting to re-order permissions so we can put most used permissions at the top tikiwiki: 03chibaguy * r35106 10/branches/proposals/6.x/lang/ (47 files in 47 dirs): bp/r[35104][FIX] Keep language files consistent with case change in r35076 (Admin DSN). tikiwiki: 03marclaporte * r35107 10/branches/7.x/templates/tiki-upload_file.tpl: [MOD] Making file upload interface clearer because as of now, it's confusing which button is to add a new file to upload and which button is to start the upload. Feedback please tikiwiki: 03marclaporte * r35108 10/branches/7.x/templates/tiki-admin_menu_options.tpl: [MOD] Moving more-often used menu options towars the top. TODO in Tiki8: hide the lesser used ones like sections and permissions to an advanced section. Feedback please. tikiwiki: 03marclaporte * r35109 10/branches/7.x/lib/setup/prefs.php: [MOD] turn off search within the file gallery on a fresh install, to make a leaner first experience. marclaporte: r35107-8 look good, thank you there is no need to tag these commits [MOD] though (maybe more appropriate for 35109). all commits modify something... yes, but they change behavior so people should know no? marclaporte: well indeed [MOD] is for behavior changes, and in one sense all changes change behavior, but I don't see a label change as a "behavior change". it's not something that could confuse much, there is at most a reaction the first time "oh, they changed how it's called"... ok chealer : I think merge could have conflicts. can you help me with this? could be if someone could be lost in the new interface but I don't see a significant risk of that here marclaporte: you want me to do the merge to trunk or what? that would be nice :-) (my brain is in improve UI mode now) marclaporte: sorry but I've never done merges (unless a long time ago) and am not particularly thrilled to start doing those, in particular at this time oh, ok :-) tikiwiki: 03marclaporte * r35110 10/branches/7.x/lib/wiki-plugins/wikiplugin_draw.php: fix perm check tikiwiki: 03marclaporte * r35111 10/branches/7.x/templates/modules/mod-search.tpl: (log message trimmed) tikiwiki: [FIX] If I search for a string and click title, it will only give me that exact tikiwiki: result instead of all page names which contain that string. User is confused tikiwiki: into thinking no page exists containing that string. Since AJAX auto-complete of tikiwiki: pages names is offered, users wanting exact result can easily do so. Module tikiwiki: could perhaps have an additional param to determine if exact match should be tikiwiki: checked but I wonder if it's of any use. I wonder if exact_match on tikiwiki: 03marclaporte * r35112 10/branches/7.x/lib/setup/prefs.php: [MOD] http://doc.tiki.org/PluginList is a rising star so activating by default Good morning Tikilovers :) hi! sounds like a name for a Pizza :-) or rehab facility! marclaporte, I see no reason to be rehabilitated from TikiWiki :P if I want to create a tpl file for the PlugniWebservice plugin, how do I reference the variables that the webservice will return? the global variable $page is it just a string or an object? apparantly it's null... I need to get a reference to the current wikipage. And check the category of this page. how come marclaporte ? he wrote that aah. I am trying to figure out where the code is placed, then I can read the functionality myself (I hope :P) what boggles my mind is that according to the docs I can reference $page from tiki syntax. (I guess you guys are making this possible with some smarty magic) But when I var_dump it, it's null, but I have the $user variable set correctly (by including tiki-setup.php and then declaring the $user and $page variable as globals. tikiwiki: 03jonnybradley * r35113 10/branches/7.x/tiki-objectpermissions.php: tikiwiki: [FIX] perms: Simpler fix and partial revert of 35060 - jQuery 1.6 seems to now interpret an empty string as being true for boolean attributes tikiwiki: Restores previous behaviour (shows perms set) polom y'all hey ricks99 ricks99, do you per chance now how to get a reference to the current page? (in code that is) the full url? or just page name (for wiki pages?) I need to "inspect" the current page, to know which category it is in. so you want to display the category of a given page/object? Yes actually I want to resolve the category's database id. but if I can get the page I can use the get_page_id_from_name() function in tikilib on admin: cateogry, enable the "show category path" and tiki will display the category of the given page I want a reference to it, in code {$page} I tried, $page variable is empty when I check it's content from my plugin but the $user variable works. {$page} is valid only for wiki pages can you futher explain what you're trying to do? We're trying to modify tikiwiki so it can handle our project work-flow. I work for a building engineering company so there's alot of documentation to go to the different projects, and we're sharing knowledge through tikiwiki about these projects and the projects current state. We are using the categories so that we can categorize the different wiki pages into their appropriate projects i.e. each project number will equal a category in TikiWiki building a tracker for this, right? several ok. we have custom modules that interface with webservices also. But the whole idea is that if we have the category of the page we can identify which project the page correlates to So that for example we can use the "categories" plugin that lists last items in a specific category (i.e. for a specific case) But since the actual work on the project can spread over several wiki pages, we need to mark the "Current working project" So our idea is to create a plugin that sets up some global variables etc. så that we can include the reference to our needed variables, wherever it's needed. so that we can use for example, the category id as a paraemter to the categories plugin iirc, {$categId} is the id you're using function get_object_categories, i assume? you need the object id -- not necessarily a page name ricks99, exactly I just looked trhough tikilib and found these helper functions ricks99, so everytime for example {$categId} does not work on a page, it's because that "page" is nto categorizable? (I don't know if this word even exists) you need {$page_id} which will return the unique id of the page -- not the page name ok. then, iirc, get_object_categories uses the *id* -- not the page name you're only dealing with wiki pages? not other objects (files, galleries, articles, etc?) I might be dealing with articles i believe you need to feed the *type* also (ie.., articles) to the function The plugin I am making will mostly be included from articles, wiki pages and sometimes blogs. Allthough if TikiWiki has some limitations about what can be accessed from the blogs (i.e. page id) then they wil lhave to live with that. :P only wiki pages have pageId what about articles? articles have {$articleId}, blogs have a blogId and postId wikis are the only things that are "pages" ok. out of those mentioned blog is the only thing that is not categorizable? blogs can be categorized. just about all tiki objects are categorizable ah yes, the blog can, but all blogs posts in that blog, will inherit the category from the blog itself? (i.e. each blog post inside same blog cannot have diff. categories) correct ricks99, you have been a huge help, if you drop by Denmark sometime, let me know, I'll buy you a beer ;) glad to help. New Forum Posts: blank page after edit forum post - http://tiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=41678 ricks99, tbh there's alot of other beers that's better... it's a beer for the mainstream, made to please all, thus not excelling at anything :P yeah, its the 'budweiser' of denmark ive heard Yup. We have some micro breweries who does beer way better... but I guess it is more for the "conneseurs" tikiwiki: 03lphuberdeau * r35114 10/trunk/ (2 files in 2 dirs): [MOD] Treetable should not re-sort the list which is now provided in a predictable order hey guys anyone knows if i can use the module frame in a plugin? you could also use the iframe plugin I guess think u are misunderstanding the question, or else i didn't explain myself correct :) if you use {MODULE} there is a frame around the module, but not if you use plugin use nobox parameter i WANT the frame :D but with a plugin if you're using the MODULE plugin, you can use decorations=y or nobox=n just tried but didn't work :S the plugin i'm using is articles use one of the article modules yeah but the article module only shows heading you just want the frame/border around the articles plugin, is that all? yeah exactly! :) you can simply surround the plugin with the necessary DIV elements to make it "look" like a module