diggy: joined #tikiwiki Tiki-KGB: 03arildb r49843 10branches/12.x/ 10lib/prefslib.php 10templates/tiki-edit_help_plugins.tpl * [FIX] encode & in URL
03arildb r49844 10branches/12.x/templates/admin/ 10include_metrics.tpl 10include_look.tpl * [FIX] Incorrect quotes
03arildb r49845 10branches/12.x/ 10templates/wizard/admin_namespace.tpl 10templates/admin/include_wiki.tpl 10templates/admin/include_general.tpl * [FIX] Encode & arildb: That was a bit of a cleanup session
whoever dares do a merge may find a few conflicts... Tiki-KGB: 03arildb r49846 10branches/12.x/tiki-wizard_user.php
[FIX] html error.
Styling is still missing
03arildb r49847 10trunk/templates/tiki-wiki_topline.tpl * [FIX] remove duplicate class definition wikityler: joined #tikiwiki TomJarvis: Bye
left #tikiwiki changi: joined #tikiwiki
joined #tikiwiki xavi: joined #tikiwiki xavi2: joined #tikiwiki xavi: joined #tikiwiki
joined #tikiwiki arildb: joined #tikiwiki Telesight: joined #tikiwiki Tiki-KGB: 03xavidp r49848 10branches/12.x/lang/ca/language.php * typos Tiki|bot: joined #tikiwiki
New Forum Posts: Tiki12: category recognition problem with articles - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=51192
New Forum Posts: demo.tiki.org - trunk is not updated - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=51191
New Forum Posts: hard-coded 12x profiles - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=51189 Tiki-KGB: 03jonnybradley r49849 10(36 files in 13 dirs)
[MRG] Automatic merge, branches/12.x 49818 to 49848
Only two conflicts (fixed manually) on:
templates/admin/include_look.tpl
templates/tiki-install.tpl arildb: d:
oops...wrong input field Tiki|bot: joined #tikiwiki jonnyb: joined #tikiwiki
afterpolom arildb: jonnyb: hi jonnyb: hi arildb Tiki|bot: Recent Bug: - Alias doesn't work with chinese - http://dev.tiki.org/item5138 xavi: joined #tikiwiki Tiki-KGB: 03xavidp r49850 10branches/12.x/lang/ca/language.php * a few more kstingel: joined #tikiwiki
evening all, long time no see :) Tiki|bot: New Forum Posts: Active Directory with multiple domains - http://tiki.org/tiki-view_forum_thread.php?forumId=17&comments_parentId=51196 kstingel: When setting up a tracker (on a fresh Tiki install) ... is Tiki Tracker compatible with an OpenOffice / OpenLibre Base export?
I have my initial datasets stored locally, but I want to add them as trackers in Tiki so that my team can also use the data for searches and such ...
just wondering the most efficient way to collate the info I have robertplummer: joined #tikiwiki
polom all jonnyb: hi robertplummer and kstingel robertplummer: jonnyb: having fun yet today? jonnyb: kstingel: you can export trackers as csv files, which will import into OO/OL spreadsheet
robertplummer: fighting with OpenLayers z-index weirdness (just seems to be random mostly!) robertplummer: jonnyb: z-index is evil. jonnyb: indeed - extra bad in open layers maps :) robertplummer: jonnyb: *robertplummer throws up a little* jonnyb: ;) ricks99: joined #tikiwiki Tiki-KGB: 03jonnybradley r49851 10branches/12.x/lib/jquery_tiki/tiki-maps.js
[FIX] maps: When layer param was specified in the searchlayer the name was getting lost so layers weren't being created (re-declaring the var "layer" in the loop was causing it to be cleared, so using layerName now). Also an attempt at improving z-index control, still more to do on that... ricks99: cold polom y'all jonnyb: hi ricks99 - still chilly?
bit wet here... -: ricks99 wishes he could hibernate until april Tiki|bot: joined #tikiwiki robertplummer: yo ricks99 ricks99: hiya robertplummer xavi: joined #tikiwiki robertplummer: lphuberdeau, jonnyb : What does the JitFilter do if you request an input that doesn't exist?
Does it return a filter? Do I need to check for existence first?
For example: inside of a Controller, in lib/core/Services/ if I do this:
$input->supercalifragilisticexpialidocious->text();
will it blow up? jonnyb: it just returns and empty string i think
no blowing up robertplummer: woohoo!
thanks jonnyb jonnyb: i think there is a function to test if a key exists if you need it robertplummer: ok.
jonnyb: I added an unsafe method to the JitFilter for pulling out the original value yesterday, so that I could parse back to source from wysiwyg in wikiLingo. I most will know to stay clear of it.
I hope, I mean lphuberdeau: err, the none() filter should pull out the raw value, no need to add extra methofs robertplummer: The method's name is actually called "unsafe". This is in experimental only. lphuberdeau: methods robertplummer: methods?
I only added one, that I know of lphuberdeau: I'm saying you could get the raw value without adding anything robertplummer: lphuberdeau: No I couldn't, raw would still filter.
And I tried ->value, and it was private. lphuberdeau: $input->name->none()
filters with a no-filter robertplummer: rearry? :)
nice
I will use, and remove then.
Where does it inherit those from?
If I could put that into the comments, phpstorm would know. lphuberdeau: lib/core/TikiFilter.php contains the list of named filters Tiki|bot: joined #tikiwiki jonnyb: phpstorm says these things are created using a "magic" method, so doesn't really know about them :)
hi lphuberdeau, by the way lphuberdeau: hello ;)
yes, they are handled through __call()
it does rely on reading code rather than trying to guess what would work ;) -: jonnyb often finds himself in lib/core/TikiFilter.php robertplummer: I don't like magic. Tiki|bot: joined #tikiwiki robertplummer: ha! jonnyb! I just added a description to JitFilter_Element that has all the method types in JitFilter::get, and it now syntax highlights all of them!
woohoo!
ctrl + space baby
lphuberdeau: Are there other methods that are not exposed to the JitFilterElement?
I noticed, for example, I can use
bool
and it seems to work fine. lphuberdeau: those are all registered through TikiFiltered... as I mentioned before robertplummer: lphuberdeau: Yea, bool isn't listed there. lphuberdeau: then it does not work
likely fallsback to the xss filter robertplummer: ok lphuberdeau: you can add more in there if you need them robertplummer: k lphuberdeau: although for booleans, I normally just use int()
casts to 1 or 0, which is file for simple checks Tiki|bot: joined #tikiwiki robertplummer: lphuberdeau: bits are smaller than ints.
I'm just saying lphuberdeau: actually, no
CPUs typically allocate a full int anyway because they handle those faster
PHP uses a zval anyway, which make the theoretical size difference between a bool and and int insignificant robertplummer: lphuberdeau: The force is strong with you. marclaporte: joined #tikiwiki kstingel1: joined #tikiwiki marclaporte: joined #tikiwiki Tiki|bot: joined #tikiwiki luciash_: joined #tikiwiki marclaporte: joined #tikiwiki Tiki|bot: joined #tikiwiki fabricius: joined #tikiwiki Tiki-KGB: 03lphuberdeau r49852 10trunk/ 10(10 files in 7 dirs) * [MOD] Connect stored queries to the notification system Tiki|bot: joined #tikiwiki Tiki-KGB: 03lphuberdeau r49853 10trunk/lib/ 10user/monitorlib.php 10core/Search/Index/QueryAlertDecorator.php * [FIX] Current user check would cause fallback while not required Jyhem: xavi: ever tried pluginRR on a standard Tiki12 ? Tiki-KGB: 03jyhem r49854 10branches/12.x/temp/.htaccess * [FIX] Allow display of images produced by PluginRR
03arildb r49855 10branches/12.x/templates/tiki-editpage.tpl
[FIX] Make hide title on page preference work for regular title display (and not only page name above page)
03jonnybradley r49856 10branches/12.x/ 10templates/wiki-plugins/wikiplugin_addtocart.tpl 10lib/wiki-plugins/wikiplugin_addtocart.php * [FIX] cart: Make button label translatable kstingel: joined #tikiwiki
polom
any "Trackers" techs on?
scratch that ... I meant to ask about Groups jonnyb: hi kstingel - not sure i'm a "group tech" but have a go anyway Tiki|bot: joined #tikiwiki kstingel: thnx jonnyb ... but ricks99 already covered it jonnyb: well done ricks99 :) -: ricks99 faster than jonnyb ricks99: :) kstingel: was after a way to create different lander pages for Groups ricks99: i'll handle the q&a and let jonnyb do the coding :)
everyone wins -: jonnyb likes that plan kstingel: lol, next round will probably be jonnyb's turn then ... when I try something that doesn't work like I think it should lol jonnyb: :P kstingel: once I turn on Group Home Pages ... do I need to do anything special to have non-logged in users see an entirely different Home page? ... Tiki|bot: joined #tikiwiki kstingel: at present I'm using the {GROUP(admin)} my stuff {ELSE} their stuff {GROUP} method for the home page diggy128: joined #tikiwiki ricks99: by default, annoymosu will see the home page, as defined in admin: general jonnyb: kstingel: (where's ricks99?) you set the home page for each group in the group admin kstingel: that's what I meant ... do I need a specific home page for anon, or are they served the default? jonnyb: yes, they get the default kstingel: site I'm working in ---> http://sapphire.kstingel.com/tw/ ... should just show a bare welcome with a register link marclapo1: joined #tikiwiki kstingel: hi marc
since it's an alliance site, I've protected registration by requiring a password ... which I provide in-game
should I also enable access to t.o staff (for debug help)? and how would I do that? ricks99: left #tikiwiki marclaporte: hi kstingel! ricks99_: joined #tikiwiki Tiki|bot: joined #tikiwiki Tiki-KGB: 03jonnybradley r49857 10branches/12.x/lib/jquery_tiki/tiki-jquery.js * [FIX] chosen: Make translatable kstingel: errmm ... what does the spinning wheel where I entered my Group HomePage info mean? jonnyb: kstingel: that would be the busy spinner saying that it's trying to find matching page names to autofill for you - sometimes it refuses to go away marclaporte: joined #tikiwiki Tiki|bot: joined #tikiwiki marclapo1: joined #tikiwiki jonnyb: molop kstingel: jonnyb: ahh ... in that case it was spinning coz I haven't created the page yet Tiki-KGB: 03jonnybradley r49858 10(8 files in 7 dirs)
[MRG] Automatic merge, branches/12.x 49848 to 49857
Conflict templates/tiki-editpage.tpl merged manually (but not tested) kstingel: having a brainfade .... what's the code to insert the Username in the page? TomJarvis: joined #tikiwiki Tiki|bot: joined #tikiwiki robertplummer: all: As of this moment, tiki experimental wikiLingo branch saves in source, wysiwyg, and previews. Tiki-KGB: 03robertplummer r49859 10branches/experimental/ 10(7 files in 6 dirs)
[ENH] Add description on methods to JitFilter_Element, making it less magical, and more practical for use in phpstorm
[NEW] Add the ability to not just preview, but also update and create wiki pages from the edit service
[ENH] Since wikilingo doesn't need to know if the editor is wysiwyg or not, remove that as an option, just keep it null
[MOD] make document "preview" event a bit more descriptive to "previewWysiwygWikiLingo"
[NEW] add document event "saveWysiwygWikiLingo"
[FIX] medium doesn't exist in scope, stick it on element
[FIX] expose wysiwyg to wiki_edit_actions.tpl from tiki-editpage.tpl
[NEW] Added update_output_type, and changed how output_type is set (use ajax service rather than form)
[NEW] link up buttons (preview and save) so they call the events above
[REM] Delete some jison garbage Tiki|bot: joined #tikiwiki
joined #tikiwiki Tiki-KGB: 03robertplummer r49860 10branches/experimental/ 10(8 files in 6 dirs)
[MOD] Change the wysiwyg_wikiLingo edit method to do both wysiwyg and source
[ENH] Move js out of smarty fn and into a proper js file and load it when wikilingo is active
[FIX] Detect if wysiywg is active, and bind one way, if not, bind another
[FIX] expose useWikiLingo to tpl Tiki|bot: Recent Bug: - Plugin Now not working in a module - http://dev.tiki.org/item5139
joined #tikiwiki marclaporte: joined #tikiwiki Tiki-KGB: 03luciash r49861 10branches/12.x/styles/BiDi/BiDi.css
[FIX] Bidi: replace CSS3 text-align: start with text-align: right for RTL as no version of IE supports it yet
03luciash r49862 10trunk 10trunk/styles/BiDi/BiDi.css * [MRG] Automatic merge, branches/12.x 49857 to 49861 _dist: joined #tikiwiki
hey guys, I've been using this wiki for a while now. I just upgraded to 12 lts and after login I get a blank page (nothing appeared to wrong with the upgrade)
Only when I log in, with a sueccesful user (bad pass/user complains) marclaporte: joined #tikiwiki TomJarvis: _dist: Did you use the new _htaccess that came with Tiki 12? Did you uncomment the # php_value memory_limit 256M line? _dist: nope, let me take a look
didn't fix it, I also turned on display php errors, but still blank, well technically the source says "1" TomJarvis: Is you .htaccess a symbolic link to _htaccess? .htaccess -> _htaccess Tiki-KGB: 03robertplummer r49863 10branches/experimental/wikiLingo/templates/wiki_edit_actions.tpl * [FIX] val, not html from input for source edit _dist: tom yes