Note: You are currently viewing documentation for Moodle 2.0. Up-to-date documentation for the latest stable version is available here: Frank Ralf/NanoGong/1.9.

User:Frank Ralf/NanoGong/1.9: Difference between revisions

From MoodleDocs
(moved back from the dev docs ;-))
 
(5 intermediate revisions by the same user not shown)
Line 31: Line 31:


== "No sound has been submitted for the message." ==
== "No sound has been submitted for the message." ==
See  
 
=== Error message ===
No sound has been submitted for the message.
Stack trace:
* line 1664 of lib\deprecatedlib.php: call to debugging()
* line 88 of mod\nanogong\view.php: call to error()
 
=== That's how it should look like ===
[[File:NanoGong Test1.png]]
http://gong.ust.hk/moodle/mod/nanogong/view.php?id=32
 
=== POST message ===
 
; correct
POST /moodle/mod/nanogong/view.php?id=32&messageid=&action=new
title=testen&message=
&path=%2F2%2Fmoddata%2Fnanogong%2F4999%2F2011-08-16_030503.spx
&action=submit
http://gong.ust.hk/moodle/mod/nanogong/view.php?id=32
 
; wrong
POST /moodle19_git/moodle/mod/nanogong/view.php?id=61
title=Test3&message=&path=&action=submit
http://localhost/moodle19_git/moodle/mod/nanogong/view.php?id=61
 
=== Resources ===
Plugin page
* http://moodle.org/mod/data/view.php?d=13&rid=1209
 
See the following forum discussions:
* [http://moodle.org/mod/forum/discuss.php?d=92516 Release of NanoGong 2 with Full Moodle Integration]
* [http://moodle.org/mod/forum/discuss.php?d=92516 Release of NanoGong 2 with Full Moodle Integration]
* [http://moodle.org/mod/forum/discuss.php?d=135714 won't start recording]
* [http://moodle.org/mod/forum/discuss.php?d=135714 won't start recording]
* [http://moodle.org/mod/forum/discuss.php?d=136848 Nanogong bug?]


== Github repository ==
== Github repository ==

Latest revision as of 19:40, 15 August 2011

NanoGong for Moodle 1.9 also needs some updating.

build_navigation()

Navigation needs to be updated to use build_navigation()


print_header() was sent a string as 3rd (-> NanoGongs -> NanoGong) parameter. 
This is deprecated in favour of an array built by build_navigation(). Please upgrade your code.

* line 2539 of lib\weblib.php: call to debugging()
* line 61 of mod\nanogong\view.php: call to print_header()
* line 3759 of lib\weblib.php: call to debugging()
* line 37 of theme\standard\header.html: call to print_navigation()
* line 2765 of lib\weblib.php: call to include()
* line 61 of mod\nanogong\view.php: call to print_header()

See lib/weblib.php#function_build_navigation

Moodle 2.0

$cm

The field $cm->modname should be set if you call build_navigation with a $cm parameter. 
If you get $cm  using get_coursemodule_from_instance or get_coursemodule_from_id, 
this will be done automatically.

* line 3894 of lib\weblib.php: call to debugging()
* line 59 of mod\nanogong\view.php: call to build_navigation()

"No sound has been submitted for the message."

Error message

No sound has been submitted for the message.

Stack trace:

* line 1664 of lib\deprecatedlib.php: call to debugging()
* line 88 of mod\nanogong\view.php: call to error()

That's how it should look like

NanoGong Test1.png http://gong.ust.hk/moodle/mod/nanogong/view.php?id=32

POST message

correct
POST /moodle/mod/nanogong/view.php?id=32&messageid=&action=new 
title=testen&message=
&path=%2F2%2Fmoddata%2Fnanogong%2F4999%2F2011-08-16_030503.spx
&action=submit

http://gong.ust.hk/moodle/mod/nanogong/view.php?id=32

wrong
POST /moodle19_git/moodle/mod/nanogong/view.php?id=61 
title=Test3&message=&path=&action=submit

http://localhost/moodle19_git/moodle/mod/nanogong/view.php?id=61

Resources

Plugin page

See the following forum discussions:

Github repository

The current code is available at https://github.com/nakohdo/moodle-mod_nanogong

See also: