Difference between revisions of "User:Minooz/OSD600/popcorn"

From CDOT Wiki
Jump to: navigation, search
(Release 0.1)
Line 1: Line 1:
==My works on Popcorn.js==
+
=My works on Popcorn.js=
=== Release 0.1===
+
== Release 0.1==
 
:[http://popcornjs.org/ '''popcorn.js''']
 
:[http://popcornjs.org/ '''popcorn.js''']
 
:Source Control: git
 
:Source Control: git
Line 12: Line 12:
 
:: I created the object with properties: <TT>person, image, href</TT>. Now I have to work on how to keep an array of these objects, to be retrieved at start time and end time.
 
:: I created the object with properties: <TT>person, image, href</TT>. Now I have to work on how to keep an array of these objects, to be retrieved at start time and end time.
 
:: The second option didn't work, just because we couldn't append commas to separate names as they were coming not as a part of the object itself. So I switched back to the old version of code, just added the href link in cases the option had the href src.
 
:: The second option didn't work, just because we couldn't append commas to separate names as they were coming not as a part of the object itself. So I switched back to the old version of code, just added the href link in cases the option had the href src.
 +
 
*'''Blogs'''
 
*'''Blogs'''
 
: [http://minooz.wordpress.com/2011/02/23/popcorn-working-on-tagthisperson-plugin/ 1]
 
: [http://minooz.wordpress.com/2011/02/23/popcorn-working-on-tagthisperson-plugin/ 1]
 +
 
* '''Documentation'''
 
* '''Documentation'''
 
: Add [[User:Minooz/OSD600/popcorn/doc | documentation]] for <TT>tagthisperson</TT> plugin for [http://dev.popcornjs.org popcornjs.org] based on [http://etherpad.mozilla.com:9000/PY40aQY7dV these info]
 
: Add [[User:Minooz/OSD600/popcorn/doc | documentation]] for <TT>tagthisperson</TT> plugin for [http://dev.popcornjs.org popcornjs.org] based on [http://etherpad.mozilla.com:9000/PY40aQY7dV these info]
Line 19: Line 21:
 
* '''Helpful tips'''
 
* '''Helpful tips'''
 
: Problem with XHRHttpRequest on Chrome while running a local file on the browser [http://stackoverflow.com/questions/4819060/use-xmlhttprequest-to-load-url-from-local-file Disable Web Security]
 
: Problem with XHRHttpRequest on Chrome while running a local file on the browser [http://stackoverflow.com/questions/4819060/use-xmlhttprequest-to-load-url-from-local-file Disable Web Security]
 +
------
  
=== Release 0.2===
+
== Release 0.2==
* Bugs
+
* '''Bugs'''
 
: Add overlaying text to the images tagged in the video <TT>image</TT> plugin. Ticket @ [https://webmademovies.lighthouseapp.com/projects/63272/tickets/368-imagemacro-plugin#ticket-368-5 lighthouse]
 
: Add overlaying text to the images tagged in the video <TT>image</TT> plugin. Ticket @ [https://webmademovies.lighthouseapp.com/projects/63272/tickets/368-imagemacro-plugin#ticket-368-5 lighthouse]
 
* Documentation
 
:
 
  
* Helpful tips
+
 
 +
*'''Blogs'''
 +
 
 +
* '''Helpful tips'''
 
: overlay an image with image [http://www.tjkdesign.com/articles/png_overlay_with_no_extra_markup.asp]
 
: overlay an image with image [http://www.tjkdesign.com/articles/png_overlay_with_no_extra_markup.asp]
 
: center an image using javascript [http://stackoverflow.com/questions/689991/center-image-inside-overflow-hidden-parent]
 
: center an image using javascript [http://stackoverflow.com/questions/689991/center-image-inside-overflow-hidden-parent]

Revision as of 16:48, 20 April 2011

My works on Popcorn.js

Release 0.1

popcorn.js
Source Control: git
BugTracker: Lighthouse
Blog: @ wordpress
  • Bugs
Add url to the name of tagged person in tagthisperson plugin. Ticket @ lighthouse
Currently, tagthisperson plugin, adds the name of the person who is tagged in the video along with his/her image. This ticket is for adding url feature to this plugin. So, if the person has url, show the name as a link.
So, I tried to append the <a href></a> syntax to the value of the options._p[ 'options.person' ]. But the problem was that it was appending the linked name to the existing value and I couldn't just replace the name of the person with the linked name. I checked with David Humphrey and he suggested to create an object instead of an array for the people variable.
I created the object with properties: person, image, href. Now I have to work on how to keep an array of these objects, to be retrieved at start time and end time.
The second option didn't work, just because we couldn't append commas to separate names as they were coming not as a part of the object itself. So I switched back to the old version of code, just added the href link in cases the option had the href src.
  • Blogs
1
  • Documentation
Add documentation for tagthisperson plugin for popcornjs.org based on these info
  • Helpful tips
Problem with XHRHttpRequest on Chrome while running a local file on the browser Disable Web Security

Release 0.2

  • Bugs
Add overlaying text to the images tagged in the video image plugin. Ticket @ lighthouse


  • Blogs
  • Helpful tips
overlay an image with image [1]
center an image using javascript [2]