Activity log for bug #1207140

Date Who What changed Old value New value Message
2013-08-01 01:33:15 Kristina Hoeppner bug added bug
2013-08-01 01:33:34 Kristina Hoeppner nominated for series mahara/1.6
2013-08-01 01:33:34 Kristina Hoeppner bug task added mahara/1.6
2013-08-01 01:33:34 Kristina Hoeppner nominated for series mahara/1.7
2013-08-01 01:33:34 Kristina Hoeppner bug task added mahara/1.7
2013-08-01 01:33:34 Kristina Hoeppner nominated for series mahara/1.8
2013-08-01 01:33:34 Kristina Hoeppner bug task added mahara/1.8
2013-08-01 01:33:41 Kristina Hoeppner mahara/1.6: status New Confirmed
2013-08-01 01:33:52 Kristina Hoeppner mahara/1.7: status New Confirmed
2013-08-01 01:33:57 Kristina Hoeppner mahara/1.8: status New Confirmed
2013-08-01 01:34:00 Kristina Hoeppner mahara/1.6: importance Undecided High
2013-08-01 01:34:03 Kristina Hoeppner mahara/1.7: importance Undecided High
2013-08-01 01:34:05 Kristina Hoeppner mahara/1.8: importance Undecided High
2013-08-01 01:34:09 Kristina Hoeppner mahara/1.6: milestone 1.6.7
2013-08-01 01:34:12 Kristina Hoeppner mahara/1.7: milestone 1.7.3
2013-08-01 01:34:14 Kristina Hoeppner mahara/1.8: milestone 1.8.0rc1
2013-08-01 23:17:16 Robert Lyon mahara: assignee Robert Lyon (robertl-9)
2013-08-01 23:17:22 Robert Lyon mahara/1.6: assignee Robert Lyon (robertl-9)
2013-08-01 23:17:42 Robert Lyon mahara/1.7: assignee Robert Lyon (robertl-9)
2013-08-01 23:17:45 Robert Lyon mahara/1.8: assignee Robert Lyon (robertl-9)
2013-08-01 23:18:08 Robert Lyon mahara/1.7: status Confirmed In Progress
2013-08-01 23:18:14 Robert Lyon mahara: status Confirmed In Progress
2013-08-01 23:18:16 Robert Lyon mahara/1.6: status Confirmed In Progress
2013-08-01 23:18:18 Robert Lyon mahara/1.8: status Confirmed In Progress
2013-08-12 21:38:03 Son Nguyen mahara: status In Progress Fix Committed
2013-08-12 21:38:07 Son Nguyen mahara/1.7: status In Progress Fix Committed
2013-08-13 06:55:52 Aaron Wells mahara: status Fix Committed Invalid
2013-08-13 06:55:58 Aaron Wells mahara/1.6: status In Progress Incomplete
2013-08-13 06:56:02 Aaron Wells mahara: status Invalid Incomplete
2013-08-13 06:56:04 Aaron Wells mahara/1.7: status Fix Committed Incomplete
2013-08-13 06:56:07 Aaron Wells mahara/1.8: status In Progress Incomplete
2013-08-13 22:19:31 Aaron Wells mahara: status Incomplete In Progress
2013-08-13 22:19:35 Aaron Wells mahara/1.6: status Incomplete In Progress
2013-08-13 22:19:38 Aaron Wells mahara/1.7: status Incomplete In Progress
2013-08-13 22:19:41 Aaron Wells mahara/1.8: status Incomplete In Progress
2013-08-13 22:20:48 Aaron Wells summary YouTube filter requires updates YouTube iframe filter doesn't support the //youtube.com URLs YouTube now provides in embed code
2013-08-13 22:22:44 Aaron Wells description 1. The iframe embed code for YouTube videos does not have the protocol included anymore thus causing problems when trying to embed the code into a site. The code reads: <iframe width="560" height="315" src="//www.youtube.com/embed/XXXXX?rel=0" frameborder="0" allowfullscreen></iframe> YouTube says: ''Just using //: instead of http:// or https:// means that you would like to use whichever protocol the parent page is using. So a page called http://example.com with include http://youtube.com and a page called https://example.com with include https://youtube.com It's intentional.'' https://groups.google.com/a/googleproductforums.com/d/msgid/youtube/bce484af-b2e6-4f6e-9bc0-6c7617e08406%40googleproductforums.com 2. When someone wants to use the YouTube URL from a mobile device, it is shortened to youtu.be. However, these videos can't be embedded because the filter doesn't understand that URL. In response to FireFox's change in not supporting iframes with a http/https protocol that doesn't match the protocol of the parent page, YouTube's embed code now lists protocol-relative URLs. These start with "//www.youtube.com", no "http://". This is a standard type of relative URL/URI, but our code doesn't support it. Since we already store the allowed iframe domains without a protocol in front of them, we should also support these protocol-relative URLs.
2013-08-13 22:25:09 Aaron Wells description In response to FireFox's change in not supporting iframes with a http/https protocol that doesn't match the protocol of the parent page, YouTube's embed code now lists protocol-relative URLs. These start with "//www.youtube.com", no "http://". This is a standard type of relative URL/URI, but our code doesn't support it. Since we already store the allowed iframe domains without a protocol in front of them, we should also support these protocol-relative URLs. In response to FireFox's change in not supporting iframes with a http/https protocol that doesn't match the protocol of the parent page, YouTube's embed code now lists protocol-relative URLs. These start with "//www.youtube.com", no "http://". This is a standard type of relative URL/URI, but our code doesn't support it. Since we already store the allowed iframe domains without a protocol in front of them, we should also support these protocol-relative URLs. To replicate: 1. Open up a YouTube video 2. Click "Share" and then "Embed" 3. Make sure you have NOT ticked the "Use old embed code" box 4. You should get an iframe embed code, like this: <iframe width="420" height="315" src="//www.youtube.com/embed/NkyEOrQiGMQ" frameborder="0" allowfullscreen></iframe> 5. Paste this into an external media block or a text block in Mahara Expected result: You should be able to view the video once you've saved the block Actual result: The block will not display the video
2013-08-13 22:25:27 Aaron Wells description In response to FireFox's change in not supporting iframes with a http/https protocol that doesn't match the protocol of the parent page, YouTube's embed code now lists protocol-relative URLs. These start with "//www.youtube.com", no "http://". This is a standard type of relative URL/URI, but our code doesn't support it. Since we already store the allowed iframe domains without a protocol in front of them, we should also support these protocol-relative URLs. To replicate: 1. Open up a YouTube video 2. Click "Share" and then "Embed" 3. Make sure you have NOT ticked the "Use old embed code" box 4. You should get an iframe embed code, like this: <iframe width="420" height="315" src="//www.youtube.com/embed/NkyEOrQiGMQ" frameborder="0" allowfullscreen></iframe> 5. Paste this into an external media block or a text block in Mahara Expected result: You should be able to view the video once you've saved the block Actual result: The block will not display the video In response to FireFox's change in not supporting iframes with a http/https protocol that doesn't match the protocol of the parent page, YouTube's embed code now lists protocol-relative URLs. These start with "//www.youtube.com", no "http://". This is a standard type of relative URL/URI, but our code doesn't support it. Since we already store the allowed iframe domains without a protocol in front of them, we should also support these protocol-relative URLs. To replicate: 1. Open up a YouTube video on youtube.com 2. Click "Share" and then "Embed" 3. Make sure you have NOT ticked the "Use old embed code" box 4. You should get an iframe embed code, like this: <iframe width="420" height="315" src="//www.youtube.com/embed/NkyEOrQiGMQ" frameborder="0" allowfullscreen></iframe> 5. Paste this into an external media block or a text block in Mahara Expected result: You should be able to view the video once you've saved the block Actual result: The block will not display the video
2013-08-20 00:17:44 Aaron Wells mahara/1.8: status In Progress Fix Committed
2013-08-21 00:21:49 Robert Lyon mahara: status In Progress Fix Committed
2013-08-21 02:24:34 Robert Lyon mahara/1.6: status In Progress Fix Committed
2013-08-21 02:24:37 Robert Lyon mahara/1.7: status In Progress Fix Committed
2013-09-22 23:35:41 Aaron Wells summary YouTube iframe filter doesn't support the //youtube.com URLs YouTube now provides in embed code The embedded iframe filter doesn't support scheme-relative URLs such as "//youtube.com" (now used in the YouTube and Vimeo embed code)
2013-09-30 06:39:15 Aaron Wells mahara: milestone 1.5.12 1.8.0
2013-10-02 22:47:21 Son Nguyen mahara/1.6: status Fix Committed Fix Released
2013-10-03 01:45:20 Son Nguyen mahara/1.7: status Fix Committed Fix Released
2013-10-24 04:17:42 Aaron Wells mahara/1.8: status Fix Committed Fix Released
2013-10-24 04:17:47 Aaron Wells mahara: status Fix Committed Fix Released