<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>General developer forum</title>
    <link>http://moodle.org/mod/forum/view.php?f=33</link>
    <description>&lt;p&gt;This &lt;span class=&quot;nolink&quot;&gt;forum&lt;/span&gt; is for general developer news or issues that don't fit into any of the other &lt;span class=&quot;nolink&quot;&gt;forums&lt;/span&gt;!&lt;/p&gt; 
&lt;p&gt;Before posting, please make sure there is not a more appropriate forum you could be using. In particular, please use the General problems forum if you're having problems with your Moodle site, and the Moodle tracker to report bugs.&lt;/p&gt; 
&lt;p&gt;Please check out the Developer documentation and the Developer FAQ too.&lt;/p&gt;</description>
    <generator>Moodle</generator>
    <copyright>&amp;#169; 2009 Moodle.org</copyright>
    <image>
      <url>http://moodle.org/pix/i/rsssitelogo.gif</url>
      <title>moodle</title>
      <link>http://moodle.org</link>
      <width>140</width>
      <height>35</height>
    </image>
    <item>
      <category>id to full name</category>
      <title>Re: id to full name</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127367&amp;parent=558059</link>
      <pubDate>Sat, 04 Jul 2009 14:47:04 GMT</pubDate>
      <dc:creator>Tim Hunt</dc:creator>
      <description>by Tim Hunt. &amp;nbsp;&lt;p&gt;&lt;p&gt;First, you concatenation won't work very well without spaces (at least in European languages).&lt;br /&gt;
&lt;br /&gt;
Then there is the fact that some institution have rules about who is allowed to see the full names of students, and the fullname function, in combination with some administrator settings, correctly implements the necessary rules.&lt;br /&gt;
&lt;br /&gt;
Finally, a JOIN is always better for performance than get_records_list.&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127367&amp;parent=558059</guid>
    </item>
    <item>
      <category>Add more parameters to Resource Link to a file</category>
      <title>Re: Add more parameters to Resource Link to a file</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=99726&amp;parent=558046</link>

<enclosure url='http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=Moodle+Docs' type='application/x-csh' />
      <pubDate>Sat, 04 Jul 2009 13:08:23 GMT</pubDate>
      <dc:creator>Ben Watson</dc:creator>
      <description>by Ben Watson. &amp;nbsp;&lt;p&gt;I've answered my own question. By deleting the &amp;amp;user=2 and entering $user in the parameters section of advanced options, I was able to show reports for only the current use. &lt;br /&gt;&lt;br /&gt;I had a great deal of difficulty finding/figuring out this information, and don't think it should be so. I don't know how to contribute to &lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: Moodle Docs&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=Moodle+Docs&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=Moodle+Docs', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;Moodledocs&lt;/a&gt; yet, but will keep in mind as I do more.&lt;br /&gt; &lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=99726&amp;parent=558046</guid>
    </item>
    <item>
      <category>Add more parameters to Resource Link to a file</category>
      <title>Re: Add more parameters to Resource Link to a file</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=99726&amp;parent=558045</link>
      <pubDate>Sat, 04 Jul 2009 13:06:40 GMT</pubDate>
      <dc:creator>Subodh Iyengar</dc:creator>
      <description>by Subodh Iyengar. &amp;nbsp;&lt;p&gt;&lt;p&gt;the $USER not $user variable is initialized in the setup.php file. It is just a renamed session variable so it is shared by all files that include config.php which includes setup.php. &lt;br /&gt;
If you need to use $USER outside a function youre good to go, but to use it within a function, you need to declare it as a global variable using &lt;br /&gt;
&lt;br /&gt;
global $USER;&lt;br /&gt;
Then you can access the user id through the $USER-&amp;gt;id field.&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=99726&amp;parent=558045</guid>
    </item>
    <item>
      <category>id to full name</category>
      <title>Re: id to full name</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127367&amp;parent=558043</link>
      <pubDate>Sat, 04 Jul 2009 12:52:57 GMT</pubDate>
      <dc:creator>Subodh Iyengar</dc:creator>
      <description>by Subodh Iyengar. &amp;nbsp;&lt;p&gt;&lt;p&gt;easier way..&lt;br /&gt;
be sure to include config.php&lt;br /&gt;
&lt;br /&gt;
require_once(&quot;relative path to config.php&quot;);&lt;br /&gt;
$userid=id to be selected;&lt;br /&gt;
$userrec=get_record('user','id',$userid);&lt;br /&gt;
echo $userrec-&amp;gt;firstname.$userrec-&amp;gt;lastname; // concatenate firstname and lastname.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you want to do it for a lot of ppl.. use this&lt;br /&gt;
&lt;br /&gt;
$ids is a comma seperated value list of all the ids to be selected. eg &quot;1,2,3&quot;. Im assuming you know how to do that.&lt;br /&gt;
&lt;br /&gt;
$userrec=get_records_list('user','id',$ids);&lt;br /&gt;
foreach($userrec as $key=&amp;gt;$value){&lt;br /&gt;
echo $value-&amp;gt;firstname.$value-&amp;gt;lastname;&lt;br /&gt;
}&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127367&amp;parent=558043</guid>
    </item>
    <item>
      <category>Add more parameters to Resource Link to a file</category>
      <title>Re: Add more parameters to Resource Link to a file</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=99726&amp;parent=558035</link>
      <pubDate>Sat, 04 Jul 2009 12:14:02 GMT</pubDate>
      <dc:creator>Ben Watson</dc:creator>
      <description>by Ben Watson. &amp;nbsp;&lt;p&gt;I'm trying to display the results of a questionnaire for the current user by &amp;quot;Link to a File or Website&amp;quot; and using for my url &lt;br /&gt;&lt;br /&gt;http://trainingweb.org/moodle/mod/questionnaire/myreport.php?instance=4&amp;amp;user=2&amp;amp;byresp=0&amp;amp;action=vresp&lt;br /&gt;&lt;br /&gt;Which brings up the report for user=2&lt;br /&gt;&lt;br /&gt;Is there a way to use a variable to get the current user only? &lt;br /&gt;&lt;br /&gt;From what I can find, $user seems to be available somehow, but I don't know code and don't quite find what I'm searching for. &lt;br /&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=99726&amp;parent=558035</guid>
    </item>
    <item>
      <category>intranet running</category>
      <title>Re: intranet running</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127370&amp;parent=558010</link>
      <pubDate>Sat, 04 Jul 2009 09:26:46 GMT</pubDate>
      <dc:creator>Mary Cooch</dc:creator>
      <description>by Mary Cooch. &amp;nbsp;&lt;p&gt;yes. It doesn't have to be online at all. &lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127370&amp;parent=558010</guid>
    </item>
    <item>
      <category>intranet running</category>
      <title>intranet running</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127370&amp;parent=558007</link>
      <pubDate>Sat, 04 Jul 2009 09:02:32 GMT</pubDate>
      <dc:creator>vishakha kamble</dc:creator>
      <description>by vishakha kamble. &amp;nbsp;&lt;p&gt;can moodle run in intranet&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127370&amp;parent=558007</guid>
    </item>
    <item>
      <category>course schedule by date</category>
      <title>Re: course schedule by date</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=126980&amp;parent=558006</link>
      <pubDate>Sat, 04 Jul 2009 09:02:15 GMT</pubDate>
      <dc:creator>defus defus</dc:creator>
      <description>by defus defus. &amp;nbsp;&lt;p&gt;You can copy this file in directory {moodledata}/1/ and name it enrolments.txt. You can also copy the full path of your file in the config page of flat admin. Dont forget to enable flat enrolment also.&lt;br /&gt;&lt;br /&gt;To execute the file, lanch the &lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: URL&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=URL&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=URL', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;URL&lt;/a&gt; {moodl_base_url}/admin/cron.php in the browser.&lt;br /&gt;&lt;br /&gt;The cron ill automaticaly enrol students for you.&lt;br /&gt;&lt;br /&gt;Here is an example of file with enrolment date :&lt;br /&gt;opération, rôle, ID (utilisateur), ID (cours) , début, fin&lt;br /&gt;add, student, 4, 20, 1246697016, 1247301944&lt;br /&gt;add, teacher, 5, 20, 1246697016, 1247301944&lt;br /&gt;&lt;br /&gt;Note that the ID number course 10 must exist and the users 4 and 5.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=126980&amp;parent=558006</guid>
    </item>
    <item>
      <category>id to full name</category>
      <title>Re: id to full name</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127367&amp;parent=558004</link>
      <pubDate>Sat, 04 Jul 2009 08:59:14 GMT</pubDate>
      <dc:creator>Tim Hunt</dc:creator>
      <description>by Tim Hunt. &amp;nbsp;&lt;p&gt;&lt;p&gt;The fragment of code you need to get one user's name from their id is&lt;br /&gt;
$user = get_record('user', 'id', $userid);&lt;br /&gt;
$name = fullname($user);&lt;br /&gt;
&lt;br /&gt;
However, if you are displaying a report with lots of teachers' names, doing that lots of times is really bad because each separate call to get_record does a separate &lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: database&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=database&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=database', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;database&lt;/a&gt; query, which is quite slow. You should really try to get all the data you need in one database query.&lt;br /&gt;
&lt;br /&gt;
The data you need for the fullname function is firstname and lastname, so your code should look something like&lt;br /&gt;
&lt;br /&gt;
$data = get_records_&lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: SQL&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=SQL&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=SQL', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;sql&lt;/a&gt;(&quot;&lt;br /&gt;
    SELECT c.*, u.firstname, u.lastname&lt;br /&gt;
    FROM {$CFG-&amp;gt;prefix}credit c&lt;br /&gt;
    JOIN {$CFG-&amp;gt;prefix}user u ON u.id = c.giver&lt;br /&gt;
    WHERE ...&lt;br /&gt;
&quot;);&lt;br /&gt;
foreach ($data as $record) {&lt;br /&gt;
$name = fullname($record);&lt;br /&gt;
// do more with $record.&lt;br /&gt;
}&lt;br /&gt;
&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127367&amp;parent=558004</guid>
    </item>
    <item>
      <category>id to full name</category>
      <title>id to full name</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127367&amp;parent=557996</link>

<enclosure url='http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=PHP' type='text/plain' />
      <pubDate>Sat, 04 Jul 2009 08:25:06 GMT</pubDate>
      <dc:creator>Fred Nevers</dc:creator>
      <description>by Fred Nevers. &amp;nbsp;&lt;p&gt;Hi all, &lt;br /&gt;&lt;br /&gt;Is there a way to transform a user id number to their full name?&lt;br /&gt;&lt;br /&gt;I am trying to create a 'report' that will show students which teacher gave them a 'credit'. I have successfully managed to show the teacher's id number but am stuck when transforming this id number to the teacher's real name.&lt;br /&gt;&lt;br /&gt;So far, I have tried to use the fullname() function, that failed. I also tried this:&lt;br /&gt;&lt;br /&gt;$teachername= $credit-&amp;gt;giver; //////this is part of a foreach loop, other DB fields work fine&lt;br /&gt;$teacher= fullname($teachername);&lt;br /&gt;&lt;br /&gt;This failed too.&lt;br /&gt;&lt;br /&gt;I must be overlooking something obvious (I am very new to &lt;a class=&quot;glossary autolink glossaryid27&quot; title=&quot;Links to interesting resources: PHP&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=PHP&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=PHP', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;PHP&lt;/a&gt;). Could anyone please point me to a function that would do what I want?&lt;br /&gt;&lt;br /&gt;Cheers, &lt;br /&gt;Fred&lt;br /&gt; &lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127367&amp;parent=557996</guid>
    </item>
    <item>
      <category>Moodle 1.9 + TinyMCE - clean port</category>
      <title>Re: Moodle 1.9 + TinyMCE - clean port</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=107550&amp;parent=557977</link>
      <pubDate>Sat, 04 Jul 2009 05:32:43 GMT</pubDate>
      <dc:creator>Mauno Korpelainen</dc:creator>
      <description>by Mauno Korpelainen. &amp;nbsp;&lt;p&gt;&lt;p&gt;Well... I have some opinions:&lt;/p&gt;
&lt;p&gt;- Hacks are always hacks and I don't believe that the patch that Bob mentioned could solve the original problem with &amp;quot;moodle modifications&amp;quot; - multilang, translations, administration of settings etc. With theme based integration it has been possible to use not only tinymce or latest CKEditor but also Xinha, FCKEDitor, YUI RTE and in practise any editor because most &lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: Javascript&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=Javascript&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=Javascript', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;javascript&lt;/a&gt; based editors are ment to be used the same way - to render some init (configuration code) and then replace textareas/divs or some other elements with editors. The main problem has been upgrading and modified editor settings hardcoded in core code of moodle&lt;/p&gt;
&lt;p&gt;- theme based integrations work as workarounds because standard code of editor (HTMLArea) of moodle has not been by default pluggable and changable. In moodle 2.0 this will change - Petr Skoda has rewritten editorlib.php and when version 2.0 is stable it will be possible to change both configurations and to create custom editor integrations easier than before.&lt;/p&gt;
&lt;p&gt;- many sites allow students to &lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: upload&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=upload&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=upload', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;upload&lt;/a&gt; files with editor and all students can upload attachments in core moodle as well. I don't think it is a problem if students can't freely upload all types of files and run any scripts they like. Files can include/inject viruses or hidden scripts even if your students don't know it and in some cases students know more about scripts/cracking than teachers but I suppose in 99.9% of cases allowing students to upload files is safe. You have been able to change role settings or override permissions (capabilities) in all versions of moodle since 1.7&lt;/p&gt;
&lt;p&gt;- the clean port that Martin wrote was mostly based on code written by Mathieu and current moodle 2.0 is already using a very different code so I suppose Martin won't write a new version for awhile - maybe never. Many people would be happy to see similar changes in moodle 1.9 when 2.0 is stable but I don't believe it will never happen. Moodle 1.9 will stay the last single-default-editor-moodle forever and moodle 2.0 will be using totally different system.&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=107550&amp;parent=557977</guid>
    </item>
    <item>
      <category>tracker &quot;permission violation&quot; and security patches</category>
      <title>Re: tracker &quot;permission violation&quot; and security patches</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127343&amp;parent=557975</link>
      <pubDate>Sat, 04 Jul 2009 05:25:19 GMT</pubDate>
      <dc:creator>Penny Leach</dc:creator>
      <description>by Penny Leach. &amp;nbsp;&lt;p&gt;&lt;p&gt;I also wrote a perl script, to which you give a bug number, or series of bug numbers and it writes out formatted patches for you:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://docs.moodle.org/en/Development:Git_tips#Backporting_stuff_from_cvshead_to_stable_git_branches&quot; target=&quot;_blank&quot;&gt;http://docs.moodle.org/en/Development:Git_tips#Backporting_stuff_from_cvshead_to_stable_git_branches&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
It says, &quot;backporting stuff from cvshead&quot; but really it's just a general script that searches the logs and writes you out git-format-patch formatted patches &lt;img alt=&quot;smile&quot; width=&quot;15&quot; height=&quot;15&quot; src=&quot;http://moodle.org/pix/s/smiley.gif&quot; /&gt;&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127343&amp;parent=557975</guid>
    </item>
    <item>
      <category>Moodle 1.9 + TinyMCE - clean port</category>
      <title>Re: Moodle 1.9 + TinyMCE - clean port</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=107550&amp;parent=557970</link>
      <pubDate>Sat, 04 Jul 2009 03:02:47 GMT</pubDate>
      <dc:creator>matt greenwolfe</dc:creator>
      <description>by matt greenwolfe. &amp;nbsp;&lt;p&gt; I successfully installed tinymce using this theme-based installation. The other method wasn't working for me, I think because of moodle version issues. I'm using 1.9.4.&lt;br /&gt;&lt;br /&gt;I modified three files to allow student uploading of images into directories moddata/images/$USER-&amp;gt;id. The uploader no longer requires moodle/course:managefiles, but instead checks for has_capability at all the key spots and denies students to: move up to a level in the directory tree, move files, or create new directories. So each student has access only to their own file area. &lt;br /&gt;&lt;br /&gt;I have a few questions if anyone can help.&lt;br /&gt;&lt;br /&gt;Does this method leave me open to &lt;a title=&quot;Auto-link&quot; href=&quot;http://moodle.org/security&quot; style=&quot;color:#444&quot;&gt; security&lt;/a&gt; problems? I'm not overly concerned about this in my situation, but want to be aware of what might happen and how.&lt;br /&gt;&lt;br /&gt;Does the implementation of tinymce for moodle 2.0 include student image file uploads? Does the backport for moodle 1.95 include this feature? I'm trying to figure out whether it will be worth my while to upgrade to 1.95 if/when Bob's backport patch comes out for that version.&lt;br /&gt;&lt;br /&gt;Thanks for everyone's work and the informative discussion here. Tinymce is a very nice upgrade, and I'm glad to have it now and not have to wait.&lt;br /&gt;&lt;br /&gt;Matt&lt;br /&gt; &lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=107550&amp;parent=557970</guid>
    </item>
    <item>
      <category>new $DB-&amp;gt;get_existing_record() DML method</category>
      <title>Re: new $DB-&amp;gt;get_existing_record() DML method</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127131&amp;parent=557953</link>
      <pubDate>Fri, 03 Jul 2009 22:42:56 GMT</pubDate>
      <dc:creator>Petr Škoda (skodak)</dc:creator>
      <description>by Petr Škoda (skodak). &amp;nbsp;&lt;p&gt;&lt;p&gt;I have added new $strictness parameter to get_record() and get_filed() family of methods, adding new methods with different prefix would require at least 6 new methods - thus making the API significantly larger.&lt;br /&gt;
&lt;br /&gt;
The code is in &lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: CVS&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=CVS&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=CVS', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;cvs&lt;/a&gt; &lt;a title=&quot;Auto-link to Moodle Tracker&quot; href=&quot;http://tracker.moodle.org/browse/MDL-19689&quot;&gt;MDL-19689&lt;/a&gt;, unittests included. It is not yet used anywhere, so there is still possibility to revert it or change implementation. Any more thought and ideas are welcome.&lt;br /&gt;
&lt;br /&gt;
Thanks everybody!&lt;br /&gt;
&lt;br /&gt;
PS: please have a look at the code/ in-line docs and test if possible &lt;img alt=&quot;wink&quot; width=&quot;15&quot; height=&quot;15&quot; src=&quot;http://moodle.org/pix/s/wink.gif&quot; /&gt;&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127131&amp;parent=557953</guid>
    </item>
    <item>
      <category>Implications of video-tag in Firefox 3.5</category>
      <title>Re: Implications of video-tag in Firefox 3.5</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127102&amp;parent=557941</link>
      <pubDate>Fri, 03 Jul 2009 21:16:51 GMT</pubDate>
      <dc:creator>Alan Trick</dc:creator>
      <description>by Alan Trick. &amp;nbsp;&lt;p&gt;On top of that, there's legal problems involving transcoding to many formats. Moodle can't ship with codecs that require end-users to pay royalties, it's against our license.&lt;br /&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127102&amp;parent=557941</guid>
    </item>
    <item>
      <category>Implications of video-tag in Firefox 3.5</category>
      <title>Re: Implications of video-tag in Firefox 3.5</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127102&amp;parent=557940</link>

<enclosure url='http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=Java' type='text/plain' />
      <pubDate>Fri, 03 Jul 2009 21:11:20 GMT</pubDate>
      <dc:creator>Alan Trick</dc:creator>
      <description>by Alan Trick. &amp;nbsp;&lt;p&gt;
&lt;p&gt;I think you missed the point. The &lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: Javascript&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=Javascript&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=Javascript', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;javascript&lt;/a&gt; &lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: applet&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=applet&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=applet', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;applet&lt;/a&gt; &lt;span style=&quot;font-style:italic;&quot;&gt;is&lt;/span&gt; the fallback (the thing you would embed inside the video element). It would be ignored by any browser sensible enough to support HTML 5 and theora.&lt;/p&gt;The advantage of using &lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: Java&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=Java&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=Java', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;Java&lt;/a&gt; here is that you can stick the theora codecs into your applet. As such, there's no need to provide two different file formats.&lt;br /&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127102&amp;parent=557940</guid>
    </item>
    <item>
      <category>tracker &quot;permission violation&quot; and security patches</category>
      <title>Re: tracker &quot;permission violation&quot; and security patches</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127343&amp;parent=557933</link>
      <pubDate>Fri, 03 Jul 2009 20:23:02 GMT</pubDate>
      <dc:creator>Hubert Chathi</dc:creator>
      <description>by Hubert Chathi. &amp;nbsp;&lt;p&gt;By the way, you could also use &lt;a href=&quot;http://www.cobite.com/cvsps/&quot;&gt;cvsps&lt;/a&gt;, or something similar, to get something similar to git's log for &lt;a class=&quot;glossary autolink glossaryid5&quot; title=&quot;Glossary of common terms: CVS&quot; href=&quot;http://moodle.org/mod/glossary/showentry.php?courseid=5&amp;amp;concept=CVS&quot; onclick=&quot;return openpopup('/mod/glossary/showentry.php?courseid=5\&amp;amp;concept=CVS', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);&quot;&gt;CVS&lt;/a&gt;. (In fact, git's CVS import uses cvsps.) &lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127343&amp;parent=557933</guid>
    </item>
    <item>
      <category>tracker &quot;permission violation&quot; and security patches</category>
      <title>Re: tracker &quot;permission violation&quot; and security patches</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127343&amp;parent=557930</link>
      <pubDate>Fri, 03 Jul 2009 20:15:19 GMT</pubDate>
      <dc:creator>Hubert Chathi</dc:creator>
      <description>by Hubert Chathi. &amp;nbsp;&lt;p&gt;The search on git.moodle.org doesn't seem to be working very well, but searching through the logs in my local copy yields:&lt;br /&gt;&lt;br /&gt;&lt;a title=&quot;Auto-link to Moodle Tracker&quot; href=&quot;http://tracker.moodle.org/browse/MDL-18058&quot;&gt;MDL-18058&lt;/a&gt;:&lt;br /&gt;
&lt;ul&gt;
  &lt;li&gt;http://git.moodle.org/gw?p=moodle.git;a=commit;h=696018df63e4b682ddcc4e1ec57f81924947b38a&lt;/li&gt;
&lt;/ul&gt;&lt;a title=&quot;Auto-link to Moodle Tracker&quot; href=&quot;http://tracker.moodle.org/browse/MDL-18059&quot;&gt;MDL-18059&lt;/a&gt;:&lt;br /&gt;
&lt;ul&gt;
  &lt;li&gt;http://git.moodle.org/gw?p=moodle.git;a=commit;h=8d73532067fe5f0848d843ea70eefb9e5f7abe24&lt;/li&gt;
&lt;/ul&gt;&lt;a title=&quot;Auto-link to Moodle Tracker&quot; href=&quot;http://tracker.moodle.org/browse/MDL-17365&quot;&gt;MDL-17365&lt;/a&gt;:&lt;br /&gt;
&lt;ul&gt;
  &lt;li&gt;http://git.moodle.org/gw?p=moodle.git;a=commit;h=eada690a18f017eb747ccfd8fb50d502740a2463&lt;/li&gt;
  &lt;li&gt;http://git.moodle.org/gw?p=moodle.git;a=commit;h=cc84c1aba05c254a4ef2a45eb838bdd84f5b635b&lt;/li&gt;
  &lt;li&gt;http://git.moodle.org/gw?p=moodle.git;a=commit;h=62c7a8c799c23c8604b6e045c2ffd23f5dd40e54&lt;/li&gt;
  &lt;li&gt;http://git.moodle.org/gw?p=moodle.git;a=commit;h=0b174abec7d561f77ca14db4dff619776d9f081a&lt;/li&gt;
&lt;/ul&gt; &lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127343&amp;parent=557930</guid>
    </item>
    <item>
      <category>tracker &quot;permission violation&quot; and security patches</category>
      <title>Re: tracker &quot;permission violation&quot; and security patches</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127343&amp;parent=557926</link>
      <pubDate>Fri, 03 Jul 2009 20:05:34 GMT</pubDate>
      <dc:creator>Brian Jorgensen</dc:creator>
      <description>by Brian Jorgensen. &amp;nbsp;&lt;p&gt;Petr responded to the &lt;a href=&quot;http://moodle.org/mod/forum/discuss.php?d=127329&quot; title=&quot;Security and Privacy Forum&quot;&gt;original post&lt;/a&gt; by suggesting that following the point releases really is the best idea, but generating patches should be possible:&lt;br /&gt;&lt;br /&gt;
&lt;div style=&quot;40px;&quot;&gt;&amp;quot;search for MDL-xx numbers in moodle git repository somehow&amp;quot;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Having very little git experience, I would appreciate any advice from git users on how to use git to generate these patch files?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;&lt;br /&gt;Brian&lt;br /&gt; &lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127343&amp;parent=557926</guid>
    </item>
    <item>
      <category>tracker &quot;permission violation&quot; and security patches</category>
      <title>tracker &quot;permission violation&quot; and security patches</title>
      <link>http://moodle.org/mod/forum/discuss.php?d=127343&amp;parent=557913</link>
      <pubDate>Fri, 03 Jul 2009 19:22:13 GMT</pubDate>
      <dc:creator>Brian Jorgensen</dc:creator>
      <description>by Brian Jorgensen. &amp;nbsp;&lt;p&gt; (Sorry for cross-posting from &lt;a title=&quot;Auto-link&quot; href=&quot;http://moodle.org/security&quot; style=&quot;color:#444&quot;&gt; Security&lt;/a&gt; and Privacy, but it's nearly the weekend here and there were no responses over there so I thought I would try in the dev forum).&lt;br /&gt;&lt;br /&gt;I'm curious how everyone grabs &lt;a style=&quot;color:rgb(68, 68, 68);&quot; href=&quot;../../security&quot; title=&quot;Auto-link&quot;&gt; &lt;a title=&quot;Auto-link&quot; href=&quot;http://moodle.org/security&quot; style=&quot;color:#444&quot;&gt; security&lt;/a&gt;&lt;/a&gt; patches if JIRA returns PERMISSION VIOLATION messages for &lt;a style=&quot;color:rgb(68, 68, 68);&quot; href=&quot;../../security&quot; title=&quot;Auto-link&quot;&gt; &lt;a title=&quot;Auto-link&quot; href=&quot;http://moodle.org/security&quot; style=&quot;color:#444&quot;&gt; security&lt;/a&gt;&lt;/a&gt; tickets (which means the handy &amp;quot;version control&amp;quot; tab with links off to viewvc are not available).&lt;br /&gt;&lt;br /&gt;For example, what &lt;a href=&quot;../glossary/showentry.php?courseid=5&amp;concept=CVS&quot; title=&quot;CVS&quot; class=&quot;glossary autolink glossaryid5&quot;&gt;CVS&lt;/a&gt; commands would I use to grab the three distinct patches for MSA-09-011?&lt;br /&gt;&lt;br /&gt;Unfortunately, upgrading to the latest point release is not an option where I work.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;&lt;br /&gt;Brian &lt;/p&gt;</description>
      <guid isPermaLink="true">http://moodle.org/mod/forum/discuss.php?d=127343&amp;parent=557913</guid>
    </item>
  </channel>
</rss>