Follow up on current developments for Aulawiki Mod
AulaWiki mod has been updated by pingus to work with Tiki 3.
There a some minor details to solve in order to make it 100% compatible with Tiki3, the current Long Term Support (LTS) version of Tikiwiki, once Tiki4.0 was released and support for Tiki2.x was ceased.
I'll add below in this public forum (nowadays that we have edu.tw.o back up running again), a copy of the current thread that pingus and I were having, so that anyone interested can jion the thread, comments, etc. 😉
Of course you can post it there too.
In fact I'd add that mod-workspace_calendar was a calendar code completely written inside the tpl file, and very hard to take the {php} out of it.
I looked at mod-calendar_new.tpl and it was quite OK for me, so I found a way to use it by passing to it (including it into mod-workspaces_calendar.tpl) the ws-calendars array selected by mod-workspaces_calendar.php
I then tested it also on 2.2 (the only 2.x at hand) and the mod-calendar_new.php of 3.3 works great on 2.2, while the one shipped with 2.2 doesn't.
For what's about clipboard, print, I've never used nor tried them, and it's mostly php-produced javascript stuff... I'd leave them for now.
Same for gradebook, have no idea what it's supposed to do.
./templates/tiki-workspaces_zones.tpl can be removed from the tree
Mer 2/12/09, Xavier de Pedro ha scritto:
Da: Xavier de Pedro
Oggetto: Re: edu.tw.o is back up + AulaWiki for Tiki 3 (LTS)
A: giancarlo
Data: Mercoledì 2 dicembre 2009, 11:00
Btw, since we have a shiny new
edu.tw.o site with tiki 3.3, do you mind
if I copy your message there at the "devel" forum from
edu.tw.o and we
keep the thread there?
So that anyone interested can join the thread of
contribute, etc.
I don't mind copying you post myself there, but I'd like to
have your
confirmation, of course! 😊
Xavi
In fact I'd add that mod-workspace_calendar was a calendar code completely written inside the tpl file, and very hard to take the {php} out of it.
I looked at mod-calendar_new.tpl and it was quite OK for me, so I found a way to use it by passing to it (including it into mod-workspaces_calendar.tpl) the ws-calendars array selected by mod-workspaces_calendar.php
I then tested it also on 2.2 (the only 2.x at hand) and the mod-calendar_new.php of 3.3 works great on 2.2, while the one shipped with 2.2 doesn't.
For what's about clipboard, print, I've never used nor tried them, and it's mostly php-produced javascript stuff... I'd leave them for now.
Same for gradebook, have no idea what it's supposed to do.
./templates/tiki-workspaces_zones.tpl can be removed from the tree
Mer 2/12/09, Xavier de Pedro ha scritto:
Da: Xavier de Pedro
Oggetto: Re: edu.tw.o is back up + AulaWiki for Tiki 3 (LTS)
A: giancarlo
Data: Mercoledì 2 dicembre 2009, 11:00
Btw, since we have a shiny new
edu.tw.o site with tiki 3.3, do you mind
if I copy your message there at the "devel" forum from
edu.tw.o and we
keep the thread there?
So that anyone interested can join the thread of
contribute, etc.
I don't mind copying you post myself there, but I'd like to
have your
confirmation, of course! 😊
Xavi
Xavier de Pedro wrote:
doing a search I found 6 (in descending order of importance/urgency)
./templates/tiki-workspaces_resource_types.tpl
./templates/tiki-workspaces_zones.tpl **** WAS NOT USED
./templates/modules/mod-workspaces_calendar.tpl
./templates/aulawiki-view_gradebook.tpl ** DONE NOTHING
./templates/tiki-workspaces_print_page.tpl *** DONE NOTHING
./templates/tiki-workspaces_copy_to_clipboard.tpl ** DONE NOTHING
Only fixed as of now are:
./templates/tiki-workspaces_resource_types.tpl
./templates/modules/mod-workspaces_calendar.tpl
included the scripts calling them, other included/including tpls etc.
In particular:
-the list of addable resources has been moved as properties of
resourceslib inside
lib/workspaces/resourceslib.php
this brought me to change also a few other scripts and templates
-mod-workspaces_calendar was a complete php rewrite of the already
existing mod_calendar, inside smarty. I saw that mod-calendar_new.php
has all the features, missing only to be passed the correct calendars,
so I decided to call it instead of rewriting it all inside smarty.
It is slightly different (less compact) in view: the standard
mod-calendar.new layout.
In practice it now uses mod_calendar_new.php module, but passing to it
the workspace calendars. Less code to maintain.
Notice that this works only with mod-calendar_new.php provided by tw
3.3. For the one in tw 2.x couldn' be passed a calendar array as
module_params (didn't use these there), and it will not work there
./templates/tiki-workspaces_zones.tpl is not used anywhere, it seems.
I also put back all PHP_SELF to REQUEST_URI, because that was not the
cause of the malfunctioning at ub.edu, rather it was a buggy PHP, but
caused a not found after adding a new ws resource.
this is the list of all modified stuff.
M tiki-workspaces_types_resources.php * smarty+PHP_SELF
M aulawiki-assignments_admin.php * PHP_SELF
M tiki-workspaces_modules.php *PHP_SELF
M templates/tiki-workspaces_copy_to_clipboard.tpl * PHP_SELF
M templates/modules/mod-workspaces_calendar.tpl * REWROTE
M lib/workspaces/resourceslib.php * Added resources list
M modules/mod-aulawiki_view_assignment.php * PHP_SELF
M modules/mod-workspaces_clipboard.php * PHP_SELF
M modules/mod-workspaces_calendar.php * REWrote
M modules/mod-workspaces_resources.php * SMARTY
Committed revision 23594
Tell me if there's something not working
Giancarlo
doing a search I found 6 (in descending order of importance/urgency)
./templates/tiki-workspaces_resource_types.tpl
./templates/tiki-workspaces_zones.tpl **** WAS NOT USED
./templates/modules/mod-workspaces_calendar.tpl
./templates/aulawiki-view_gradebook.tpl ** DONE NOTHING
./templates/tiki-workspaces_print_page.tpl *** DONE NOTHING
./templates/tiki-workspaces_copy_to_clipboard.tpl ** DONE NOTHING
Only fixed as of now are:
./templates/tiki-workspaces_resource_types.tpl
./templates/modules/mod-workspaces_calendar.tpl
included the scripts calling them, other included/including tpls etc.
In particular:
-the list of addable resources has been moved as properties of
resourceslib inside
lib/workspaces/resourceslib.php
this brought me to change also a few other scripts and templates
-mod-workspaces_calendar was a complete php rewrite of the already
existing mod_calendar, inside smarty. I saw that mod-calendar_new.php
has all the features, missing only to be passed the correct calendars,
so I decided to call it instead of rewriting it all inside smarty.
It is slightly different (less compact) in view: the standard
mod-calendar.new layout.
In practice it now uses mod_calendar_new.php module, but passing to it
the workspace calendars. Less code to maintain.
Notice that this works only with mod-calendar_new.php provided by tw
3.3. For the one in tw 2.x couldn' be passed a calendar array as
module_params (didn't use these there), and it will not work there
./templates/tiki-workspaces_zones.tpl is not used anywhere, it seems.
I also put back all PHP_SELF to REQUEST_URI, because that was not the
cause of the malfunctioning at ub.edu, rather it was a buggy PHP, but
caused a not found after adding a new ws resource.
this is the list of all modified stuff.
M tiki-workspaces_types_resources.php * smarty+PHP_SELF
M aulawiki-assignments_admin.php * PHP_SELF
M tiki-workspaces_modules.php *PHP_SELF
M templates/tiki-workspaces_copy_to_clipboard.tpl * PHP_SELF
M templates/modules/mod-workspaces_calendar.tpl * REWROTE
M lib/workspaces/resourceslib.php * Added resources list
M modules/mod-aulawiki_view_assignment.php * PHP_SELF
M modules/mod-workspaces_clipboard.php * PHP_SELF
M modules/mod-workspaces_calendar.php * REWrote
M modules/mod-workspaces_resources.php * SMARTY
Committed revision 23594
Tell me if there's something not working
Giancarlo
Last wiki comments