←Prev date Next date→ Show only urls(Click on time to select a line by its url)

WhoWhatWhen
***chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki
[00:07]
....... (idle for 32mn)
redflo has quit IRC (Quit: Leaving.)
rodrigoprimo has quit IRC (Ping timeout: 260 seconds)
[00:39]
................. (idle for 1h20mn)
goj has quit IRC (Disconnected by services)
goj_killedByISP has joined #tikiwiki
goj_killedByISP is now known as goj
Caarrie|away is now known as Caarrie|sleeping
[02:02]
.......... (idle for 45mn)
chealer_ has joined #tikiwiki
chealer has quit IRC (Ping timeout: 248 seconds)
[02:49]
marclaporte has quit IRC (Read error: Connection reset by peer) [02:59]
chealer_ has quit IRC (Quit: Konversation terminated!)
chealer has joined #tikiwiki
changi|f1a has quit IRC (Ping timeout: 260 seconds)
[03:06]
changi|ffa has joined #tikiwiki [03:21]
Tiki|botNew Forum Posts: Mobile Profile - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=42610 [03:30]
CIA-46tikiwiki: 03nkoth * r38755 10/branches/8.x/lib/ (2 files in 2 dirs): [FIX] After creating new tracker item in linked tracker via ajax, the setting of the value of the selected item on the Item Link field was not working. [03:32]
.... (idle for 15mn)
***lphuberdeau has quit IRC (Remote host closed the connection) [03:47]
.... (idle for 16mn)
chealer has quit IRC (Quit: Konversation terminated!) [04:03]
....... (idle for 32mn)
chealer has joined #tikiwiki [04:35]
................................ (idle for 2h35mn)
arildb has joined #tikiwiki [07:10]
chealer has quit IRC (Quit: Konversation terminated!) [07:24]
.... (idle for 17mn)
changi|ffa has quit IRC (Ping timeout: 256 seconds) [07:41]
........ (idle for 38mn)
SJ-Jay has joined #tikiwiki
Wilkins has joined #tikiwiki
[08:19]
CIA-46tikiwiki: 03xavidp * r38756 10/branches/8.x/styles/layout/design.css: [FIX]Add missing basic default design for QUOTE plugin [08:20]
***JoernOtt has quit IRC (Quit: Leaving.)
Bernard1 has joined #tikiwiki
changi|ffa has joined #tikiwiki
[08:22]
changi|ffa has quit IRC (Ping timeout: 252 seconds) [08:32]
JoernOtt has joined #tikiwiki
changi|ffa has joined #tikiwiki
[08:44]
......... (idle for 40mn)
changi|ffa has quit IRC (Ping timeout: 258 seconds)
changi|ffa has joined #tikiwiki
[09:28]
Bernard1 has quit IRC (Quit: Leaving.) [09:39]
Bernard1 has joined #tikiwiki [09:44]
changi|ffa has quit IRC (Ping timeout: 240 seconds) [09:49]
Merbster has joined #tikiwiki
rodrigoprimo has joined #tikiwiki
Bernard1 has quit IRC (Read error: Connection reset by peer)
Bernard1 has joined #tikiwiki
[10:00]
jme_ has joined #tikiwiki
jme_ has quit IRC (Client Quit)
Merbster has quit IRC (Ping timeout: 276 seconds)
changi|ffa has joined #tikiwiki
[10:13]
............... (idle for 1h13mn)
Bernard1 has quit IRC (Quit: Leaving.)
Caarrie|sleeping is now known as Caarrie|away
[11:30]
Merbster has joined #tikiwiki [11:41]
Bernard1 has joined #tikiwiki [11:49]
marclaporte has joined #tikiwiki
ChanServ sets mode: +o marclaporte
[12:01]
Bernard1 has quit IRC (Quit: Leaving.) [12:09]
.... (idle for 15mn)
Bernard1 has joined #tikiwiki [12:24]
...... (idle for 28mn)
arildb_ has joined #tikiwiki
arildb has quit IRC (Read error: Connection reset by peer)
arildb_ is now known as arildb
[12:52]
rodrigoprimo has quit IRC (Quit: Leaving.)
rodrigoprimo has joined #tikiwiki
[13:01]
.... (idle for 16mn)
MerbsterI noticed a php file called ajaxservices
can I use it to delete a tracker item if I have the trackerId and itemId ?
[13:21]
.... (idle for 16mn)
***marclaporte has quit IRC (Quit: Leaving.) [13:37]
.... (idle for 19mn)
radek82 has joined #tikiwiki [13:56]
arildb_ has joined #tikiwiki
arildb has quit IRC (Ping timeout: 260 seconds)
[14:07]
lphuberdeau has joined #tikiwiki [14:19]
Merbsterlphuberdeau, can you explain to me, or refer me to a place, where I can read about what "ajax services" tiki exposes? - I need to delete a tracker item with js/jquery [14:24]
lphuberdeauno service for that right now, but you can add one [14:24]
MerbsterOk. Cool. Where would it belong? [14:24]
lphuberdeauall the services are in controllers under lib/core/Services/ [14:24]
Merbsterbrilliant. [14:25]
SJ-Jaylphuberdeau to the rescue [14:25]
Merbsterlphuberdeau, ok. so the (in my case tracker) controller. Is meant to be called from PHP. That makes me think I need to write some kind of wrapper code that makes me able to call the controller via. http posts/gets is this a correct assumption? [14:30]
lphuberdeauno
that is already done for you
controllers are invoked by Services_Broker, which is set-up in tiki-ajax_services.php
and there are rewrite rules to shorted the url ie: tiki-controller-action
in your case it could look like tiki-tracker-remove_item
which would end up calling Services_Tracker_Controller::action_remove_item()
[14:38]
Merbsterlphuberdeau, Are you sure those re-write rules are automatically active on IIS?
lphuberdeau, I am familiar with MVC pattern. But there's alot of different implementations, do you have a link that describes the one Tiki uses? (this will probably make it easier for me to understand)
[14:40]
Tiki|botRecent Bug: Tracker item: #4042 - - Bug - http://dev.tiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=4042 [14:46]
***GillesM has joined #tikiwiki [14:50]
.... (idle for 16mn)
lphuberdeauMerbster: it's in the micro-mvc family, no routing or anything too fancy, just read the code in Services_Broker, that's all there is to it [15:06]
Merbsterlphuberdeau, I can find Broker under services. But no file directly named Services_Broker
I looked manually. So I might ahve overlooked it
[15:07]
lphuberdeaureturned values from the action methods are sent as JSON, or rendered with a template based on controller/action.tpl when html is requested
merbster, that's the one, it's the class/file convention in php
[15:08]
Merbsterlphuberdeau, what about the rewrite rules. are they accounted for on IIS? [15:16]
lphuberdeauI have no idea, I never use IIS [15:16]
MerbsterWho would know then?
or where can I find out.
[15:18]
lphuberdeauno idea
try it
[15:19]
Merbsterlphuberdeau, Can I use this if I choose not to use rewrite rules
I see no use since this is intranet. so no SEO to think of.
[15:21]
lphuberdeauyes
tiki-ajax_services.php?controller=X&action=Y
those controllers are used by tiki itself
so they are supposed to work in all situations
[15:22]
Merbsterlphuberdeau, thanks. I have noted down this conversation I will see if I can squeeze in time to document this on dev.t.o somewhere [15:23]
lphuberdeauthanks [15:23]
MerbsterAny suggestion to where it might fit? or should I just create a page and label it accordingly [15:24]
lphuberdeaunot too sure
been meaning to document these things for a while but I have not figured out a suitable location and format just yet
[15:25]
Merbsterlphuberdeau, I will write up what I understood and I'll poke you so you can review it. I might have misunderstood something ;) [15:27]
***chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki
arildb__ has joined #tikiwiki
arildb_ has quit IRC (Ping timeout: 240 seconds)
[15:30]
arildb__ is now known as arildb [15:45]
.... (idle for 15mn)
CIA-46tikiwiki: 03lphuberdeau * r38757 10/trunk/lib/wiki-plugins/wikiplugin_exercise.php: [MOD] Display corrections for each question in the exercise with the justification [16:00]
.... (idle for 16mn)
***Merbster has quit IRC (Read error: Connection reset by peer)
SJ-Jay has quit IRC (Read error: Connection reset by peer)
[16:16]
nkoth|nelson has joined #tikiwiki [16:21]
Bernard1 has quit IRC (Quit: Leaving.)
arildb_ has joined #tikiwiki
arildb has quit IRC (Ping timeout: 240 seconds)
[16:32]
chealer has quit IRC (Read error: Connection reset by peer)
chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki
[16:48]
mark_doe has joined #tikiwiki [17:01]
mark_doewer can I put individual header tag like <link href="https://plus.google.com/1030xxxxxxxxxx/" rel="publisher" />
couldn't find it in the META-TAGS menu
[17:01]
lphuberdeauI think there is a general field for additional headers [17:08]
***chealer has quit IRC (Quit: Konversation terminated!)
Wilkins has quit IRC (Ping timeout: 240 seconds)
chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki
[17:12]
mark_doe has quit IRC (Ping timeout: 240 seconds)
mark_doe has joined #tikiwiki
[17:28]
mark_doe has quit IRC (Ping timeout: 240 seconds)
mark_doe has joined #tikiwiki
[17:41]
arildb_ is now known as arildb [17:55]
.... (idle for 18mn)
arildb_ has joined #tikiwiki
arildb has quit IRC (Read error: Connection reset by peer)
arildb_ is now known as arildb
[18:13]
Bernard1 has joined #tikiwiki [18:23]
arildb has quit IRC (Quit: Leaving) [18:33]
............ (idle for 59mn)
CIA-46tikiwiki: 03sampaioprimo * r38758 10/trunk/lang/he/language.php: merging hebrew translations from branches/proposals/6.x at Bernard's request [19:32]
tikiwiki: 03yonixxx * r38759 10/branches/proposals/6.x/tiki-edit_css.php: [MOD] modification to edit most of the CSS files including BiDi themes options etc and keep the code left aligned in any case
tikiwiki: 03yonixxx * r38760 10/branches/proposals/6.x/lib/csslib.php: [MOD] modification to edit most of the CSS files including BiDi themes options etc and keep the code left aligned in any case
tikiwiki: 03yonixxx * r38761 10/branches/proposals/6.x/templates/tiki-edit_css.tpl: [MOD] modification to edit most of the CSS files including BiDi themes options etc and keep the code left aligned in any case
tikiwiki: 03yonixxx * r38762 10/trunk/templates/tiki-edit_css.tpl: [MOD] modification to edit most of the CSS files including BiDi themes options etc and keep the code left aligned in any case
[19:45]
..... (idle for 22mn)
***chealer has quit IRC (Quit: Konversation terminated!) [20:13]
............. (idle for 1h0mn)
CIA-46tikiwiki: 03yonixxx * r38763 10/branches/proposals/6.x/lang/he/language.php: [TRA] minor text translation in hebrew [21:13]
Tiki|botNew Forum Posts: Blank intsallation page - http://tiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=42614 [21:15]
CIA-46tikiwiki: 03sampaioprimo * r38764 10/trunk/lang/he/language.php: merging hebrew translations from branches/proposals/6.x at Bernard's request [21:18]
***rodrigoprimo has quit IRC (Quit: Leaving.)
Bernard1 has quit IRC (Quit: Leaving.)
[21:21]
..... (idle for 23mn)
CIA-46tikiwiki: 03nkoth * r38765 10/branches/8.x/templates/poll.tpl: [FIX] poll voting not working because clicking on button(s) causes redirect to home page [21:46]
tikiwiki: 03nkoth * r38766 10/branches/8.x/templates/poll.tpl: [FIX] Clean up following previous commit since fixing this at the same time, may not matter but removing javascript: part in front of onclick in case it matters for certain browsers.
tikiwiki: 03nkoth * r38767 10/branches/proposals/6.x/templates/poll.tpl: [bp/r38765][bp/r38766][FIX] poll voting not working because clicking on button(s) causes redirect to home page
[21:52]
***chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki
chealer has quit IRC (Client Quit)
[22:01]
...... (idle for 26mn)
chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki
redflo has joined #tikiwiki
[22:29]
....... (idle for 32mn)
radek82 has quit IRC (Quit: Leaving) [23:05]
..... (idle for 22mn)
luciashpolom
mark_doe: did u figure out ?
[23:27]
mark_doeluciash: no [23:29]
luciashmark_doe: what is your Tiki version ? [23:29]
mark_doe7.2 [23:29]
luciashmark_doe: ok, let me check ...
mark_doe: ok, go to Admin > Look & Feel > Customization and put it in the Custom HTML head Content
[23:29]
mark_doeluciash: oh... [23:32]
luciashanything is possible with Tiki :) [23:32]
mark_doenice
Thank you!!
[23:33]
***DarkCalf has quit IRC (Quit: Leaving) [23:39]

←Prev date Next date→ Show only urls(Click on time to select a line by its url)