tikiwiki: 03sept_7 * r29898 10/trunk/get_strings.php: [FIX] fix quiet pb on command line, thanx changi67 for reporting tikiwiki: 03sept_7 * r29899 10/branches/6.x/get_strings.php: tikiwiki: [FIX/bp29898] Fix get_string pb on command lien with quiet mode, thanx changi67 tikiwiki: for reporting this. tikiwiki: 03lindonb * r29900 10/branches/6.x/templates/tiki-export_tracker.tpl: Use "item" for singular and "items" for plural. tikiwiki: 03nkoth * r29901 10/branches/6.x/templates/header.tpl: [FIX] Obscure email or show real name where possible or set polom I hope everybody is well I come forward step by step withe the perspectives and I am nearby to setup my first workspaces beautiful beautiful these features A big hug to the developers but, as to be assumed, I have a question: Welcome to the official Tikiwiki English Irc channel, Please just ask your question, dont ask to ask, someone will reply if and when they know the answer. Welcome again and please stay awhile Welcome to the official Tikiwiki English Irc channel, Please just ask your question, dont ask to ask, someone will reply if and when they know the answer. Welcome again and please stay awhile how can I assign a module to a category? I know, that might be a little backwards, as I perhabs should have learned that already ;-) hah - did not find it, but parameter "perspective=1" would do it I think, I got it now! Kind of understood the Workspaces. Hurra! Next would be the Data-Channels (and profiles) ... who might explain me that? :-D Recent Bug: Tracker item: #3571 - - Installer in Tiki6 is not ensuring utf-8 in new db and tables (only on upgrade) - http://dev.tiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3571 hi ricks99 , I need some more smarty advice :-) good morning xavi :-) g'morning rick what's your coffee level this morning already? lol i'm only 3 sips in so far :-) ok, we'll see if this is enough :-) I need to identify when the url is like tiki-index.php?page=foo&itemId={{itemId}} but everytime that I write {{itemId}} in the url, the smarty logic that I wrote doesn't return anything... plus, I didn't manage to use {php} {/php} tags within a smarty template I wonder if this is also allowed or disallowed at server side you're doing this in a smarty template? or are you writing php? smarty template (used from plugintrackerlist ) the itemId is a smarty variable. you can simply use $itemId mmm, see what I mean: image that this is the url: tiki-index.php?page=foo&itemId={ this bit of smarty should detect it: {if $smarty.get.itemId eq '$smarty.ldelim'} fooo {/if} but it does not $smarty.get.itemId is the content of the itemId, that works fine with numbers but I don't know how to check for strings also containing angle brackets what is Idelim ? :-) some internal variable? hold on... http://www.smarty.net/manual/en/language.variables.smarty.php#language.variables.smarty.ldelim and/or http://www.smarty.net/manual/en/language.function.ldelim.php example: this: {$smarty.ldelim}foo{$smarty.rdelim} will prduce: {foo} are you just trying to test the if the URL contains a specific string? yes, a specific string like "itemId" or "{{itemId}}" I mean: itemId={{itemId}} i always use strstr( ) so I need to check, as far as I understand, the contents of $smarty.get.itemId ok, but strstr( ) is php function, isn't it? y but you can use php functions in smarty yes, that's my other question: I couldn't make {php} {/php} calls to work inside smarty any small example to debug in my server? {if strst($string, 'contains this')}do this {else} do that {/if} hoy, how r u guys? don't need {php} ... {/php} smarty automatically can use php functions ah, no need for {php} ... {/php}! that's good news (as you see, ricks99 , I'm very very newbie in this smarty world also) hi fabricius hi xavi - back from NY? fabricius: I was not in NY (never been there, btw). I have teaching duties these months, not easy to avoid plus working at university in a research team (mornings) uh, I though you have been there marc did explain me the perpectives great stuff now fabricius: we need you to learn how to use them easily sadly I have to build them up on one server and transfer them by database export/import ricks99: Fatal error: Call to undefined function strst() in /... this is in a regular .tpl file? i use it all the time :( ricks99: nope, it's a wiki page used as template maybe that's why :-/ ohhhhhhh strstr with a r at the end hi sylvieg! nice to see you around I'll try yay, it works this basic trick with simple strings thanks sylvieg for noticing the typo (= I didn't have enough coffee today - none at all, in fact) I'll try with angle brackets {php} can be reativated in the tiki code somwhere .. it was in setup_smarty ... but somebody moved the file mmmm, it's not working for me this syntax to identify angle brackets: {if strstr($smarty.get.itemId, '$smarty.ldelim')}{wiki}using {$smarty.ldelim} in the content of itemId{/wiki}{/if} this smarty code ^ doesn't detect a url like: tiki-index.php?page=foo&itemId={ can not pour ; around $smarty.ldelim s/pour/put s/;/' ah, ok, I'll try without brb no change sylvieg and the single quotes worked with a similar example with a number instead ok, forget it, I'll try a workaround mmm, I may avoid that by searching for 'itemId' as string inside $smarty.get.itemId that might do the trick I think lph desactivated the {{}} values after replacement ok, no way, url as: tiki-index.php?page=foo&itemId={{itemId}} and {if strstr($smarty.get.itemId, 'itemId')}{wiki}using itemId in the content of itemId{/wiki}{/if} dynamic something.... sylvieg: got it: "Wiki argument variables", in "Admin > textarea" perhaps try with $smarty.request.itemId ok, there I go no change. the solution might be understanding what it Tiki doing with a {{itemId}} in the url if/when there is no value for that... I am not sure why you are trying to do the {{itemId}} is not in the url it is in the wiki page are you trying to display the itemId of the url? ok, sylvieg: I have a menupage on a side column listing many sections of a form to be filled. for isntance if I have in my pretty {if strstr($smarty.request.xxx, 'itemId')}AAAA{else}BBB{/if} and an url like avocat&xxx=itemId it will work the menu page has links like tiki-index.php?page=Section01&itemId={{itemId}} back ping changi when the user has selected an item in a list in the central column of tiki (with a plugintrackerlist listing them, and the itemId in the url associated with thelinks), then links from the menu get populated properly wb ricks99 and I wanted to check when that happens, and give some warning to the user that he needs to select some item first, etc. {if empty($smarty.request.itemId)}ERROR{/if} but I'm not able to identify that case tiki-index.php?page=foo&itemId={{itemId}} using smarty syntax empty? ok, easy (didn't I try that days ago? maybe not...) the value of the itemId can come either from the url or the param itemId in plugin in your case it is always from the url .. so if no value of itemId .. nothing will happens hapen ... dammit without the typos... mmmm, something is bloking response: {if empty($smarty.request.itemId)}{wiki}ERROR{/wiki}{/if} ^this doesn't work. and without wiki tags, either every time I add a single angle bracket, I get nothing from the smarty template when url contains: itemId={{itemId}} ok, I'll try some jquery way, since smarty is not digesting very well that "food": tiki-index.php?page=foo&itemId={{itemId}} thanks for feedback, anyway. it seems too complicated with smarty is the 6.0 beta1 good to annouce? (im downloading now) sorry I can't test today anyone install/test it yet? np xavi I did set up a couple of perspectives now and started already setting up the workspaces ... but in the default perspective the TopBar disappears for the anonymous users does anybody know the problem? perm? you mean the bar with the search? ricks99: I will mostlikely test the 6.0 beta this weekend ricks99: the TopBar with the menu items the 43 maybe something wih the perspective? im installig now... how csan I access the default perspective? is that tiki-admin.php? not sure. i havent used perspectves much kk perspectives are fine - I´d say quite easy to use, once explained I´d say, I soon will be able to write a tutorial - docs have been improved recentl recently .. I´ve just seen yesterday so in docs itself I would not have too much work left, but it must be made visual ... so a bunch of screenshots an some szenario I am really lucky, that marc did give me so much help Info: Tiki 6.0 Beta Now Available - http://info.tiki.org/article115-Tiki-6-0-Beta-Now-Available btw.: I switched the menü in tiki-admin.php/look to 43 and it works .... in perspectives I have different ones oh thank you Tikiwiki|bot - I actually did not need help for Tiki 6 right now, nor I had a question. But probably soon will come back to you bye bye all, thanks for feedback, ricks99 and sylvieg. I couldn't find how to identify that, not even with jquery. I?ll try to avoid the problem in some other way next week. cheers hah and not the 43 it is ... just all perms and groups out, then it works with 58 ... hm .... not 42? and have a nice weekend cheers xavi same for fabricius , of course, and other irc-inhabitants :-) :-) I might have an issue with perspectives in Tiki5 -> -> gave Anonymous permission to view perspectives and get white (blank) pages ... only solution in firefox is clearing the cache in IE needed restart haio, generally speaking - would it not be possible for anonymous users to switch perspectives? -> link in TopBar: ...tiki-switch_perspective.php?perspective=1, ...tiki-switch_perspective.php?perspective=2, etc. click on that link leads to a white page when not loged in anybody an idea? tikiwiki: 03sampaioprimo * r29902 10/trunk/templates/tiki-admin_menu_options.tpl: [ENH] keep maxRecords when editing, deleting or moving menu options tikiwiki: 03Jyhem * r29903 10/branches/6.x/lang/fr/language.php: +ENH+ Improve french translations tikiwiki: 03sampaioprimo * r29904 10/trunk/ (4 files in 2 dirs): [ENH] check if required class DOMDocument is available for Mediawiki and Wordpress importers chealer: the modif in admin users is strange - I get stuck in confirm screen when I change user password hi sylvieg. yes, I've seen something like that too yesterday, I need to re-check that sylvieg: nice to see you here, I have a few questions and the password does nto change :-( sylvieg: to conclude our discussion on admin users import, do you mind if I remove the option "Overwrite but keep the previous login if the login exists in another case"? tikiwiki: 03Jyhem * r29905 10/branches/6.x/ (5 files in 5 dirs): [FIX] Handle and display comments with titles in last blog post comments module yes I think it is too old as you can not register now with 2 login case diferent sylvieg: OK, I'll do that and fix the rest of admin users hi devs sylvieg: regarding LDAP authentication, is there a way to use a user for authenticating instead of anonymous, in TIki 5? hi rodrigo_sampaio! only the user name ($user) is globally available? the user_id is not? hi chealer anonymous was not working in 4 - but not anonymopus was working since xxx so far I know sylvieg: but how is it configured? I'll be back in a minute chealer: the check_authenticity when only user=xxx is a little too much no?? it should be dopne only if edit? sylvieg: yes, it must be something like that, I didn't test all cases. if you don't do it I should in the coming days sylvieg: where do you put the LDAP user to use for authentication? tikiwiki: 03chealer * r29906 10/trunk/lib/pear/Net/ (10 files in 2 dirs): update NET_LDAP2 from 2.0.0 to 2.0.10 tikiwiki: 03sampaioprimo * r29907 10/trunk/ (3 files in 3 dirs): [ENH] log which user translated each string for interactive translation and tiki-edit_languages.php tikiwiki: 03sampaioprimo * r29908 10/branches/6.x/lib/language/Language.php: [FIX] make sure language array is always initialized to avoid inserting to the database unchanged strings when using interactive translation yo, anyone an idea, how I can put some marker into a google-map? save as object location doesn't seem to do much... http://wikifestbln.org/c-base or actually... even better... any possibility to embed a google map? one that is saved on google with locations and such? http://maps.google.de/maps/ms?ie=UTF8&hl=de&msa=0&msid=111744242977867405411.00048f0de8a16c422a1d8&t=h&z=15 y. can easily embed: http://stc-carolina.org/tekelec but that's only an image that links to the map something more interactive I though :) o yeah. thats right thought even can put it i an iframe instead yeah, that sounds like the quickest hack but I thought that I could geo-tag the wiki-page and it would be shown on the embedded google map not sure. my regular user gmaps broke after upgrading to 5 :( hmm :( locateitemtype="wiki page" <- that's in the plugin... so I think it basically worked once :) does anyone have LDAP working with group membership importation? not yet hello is file upload size determined by PHP or tikiwiki? php hi po0dle see the faq: http://doc.tiki.org/tiki-view_faq.php?faqId=8#q27 good one :) GODDAMNIT 8 Mb's how pathetic err? max upload size = 8 Mb For the rest Tiki Wiki seems to be everything I'm looking for :p Just saw the 6 beta announcement on FB -- congratulations on the milestone, everyone! Well, congratulations on that, too :) tx rehi ... is there any log from today already? so from 15:300 - I got lost for a while ... anybody did face a similar problem (white pages for anonymous users) when working with perspectives? Is there an easy way of creating menu items with subcontent like in the default menu? yes easy from my point of view did you ever export and imported menus and such stuff as csv-text files? export a menu and have a look at the structure of the textfile - open it in an texteditor (not in word or oprn office!!) if you just change settings, leave the ID numbers as it is. to import in a new menu, change all Item ID to 0 I didn´t play around with that too much, but for setting up a hole new, butsimilar menu it´s much quicker that in the system - and to change a hole bunch of usergroups or such, it is handy to user copy and paste in a single file have to go - dinner is ready ;-) ah ... subcontent is with the section. section 0 is mother of section1 is mother of section2 and so on Any Apache gurus care to go private to help me with a virutal host configuration problem? tikiwiki: 03sampaioprimo * r29909 10/trunk/ (3 files in 3 dirs): tikiwiki: [ENH] interface improvements to tiki-edit_languages.php: tikiwiki: - translate all button tikiwiki: - change modes (add, edit and edit untranslated) just by selecting the respective radio button polom some connection problems actually did anybody response tomy white-pages / perspectives problem? I guess I solved it I need an insiration guys and ladies: I have a module (start/home) in the default perspective (~no perspective) and I would need a setting, that it shouws up ONLY if there is no perspective active in this stage the start menu (left top) shows up aswell, when I move to the next perspectives (like news or activities), where I find the two menus left hand side (start+news, start+acticities, ...) instead of one (news, activities, ...) I´d need some parameter like "noperspective=y" - any idea? param for the module I mean