|
From: <tre...@us...> - 2007-09-01 20:30:12
|
Revision: 325
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=325&view=rev
Author: trevorolio
Date: 2007-09-01 13:30:08 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
Added a YouTube video to the TV template, because everyone knows that you can't have too many types of media in your shared spaces.
Modified Paths:
--------------
maven/trunk/ogoglio-server/src/main/resources/populate/template-42/TV.js
maven/trunk/ogoglio-server/src/main/resources/siteTemplates/spaceui.js
Modified: maven/trunk/ogoglio-server/src/main/resources/populate/template-42/TV.js
===================================================================
--- maven/trunk/ogoglio-server/src/main/resources/populate/template-42/TV.js 2007-09-01 19:20:33 UTC (rev 324)
+++ maven/trunk/ogoglio-server/src/main/resources/populate/template-42/TV.js 2007-09-01 20:30:08 UTC (rev 325)
@@ -16,8 +16,11 @@
var transmutableHTML = '<html><body><object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?autostart=true&brandname=transmutable&brandlink=http%3A//transmutable.blip.tv/&showplayerpath=http%3A//blip.tv/scripts/flash/showplayer.swf&file=http%3A//transmutable.blip.tv/%3Fskin%3Drss%26sort%3Ddate&user=TrevorFSmith&showguidebutton=true&showfsbutton=true&useCode=1188673893371&fullscreenpage=http%3A//blip.tv/fullscreen.html&fsreturnpage=http%3A//blip.tv/exitfullscreen.html" width="250" height="250" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?autostart=true&brandname=transmutable&brandlink=http%3A//transmutable.blip.tv/&showplayerpath=http%3A//blip.tv/scripts/flash/showplayer.swf&file=http%3A//transmutable.blip.tv/%3Fskin%3Drss%26sort%3Ddate&user=TrevorFSmith&showguidebutton=true&showfsbutton=true&useCode=1188673893371&fullscreenpage=http%3A//blip.tv/fullscreen.html&fsreturnpage=http%3A//blip.tv/exitfullscreen.html" /><param name="quality" value="best" /><param name="allowScriptAccess" value="always" /></object></body></html>';
var transmutableChannel = new Channel("Transmutable", transmutableHTML, "transmutable");
-var channels = new Array(oneMinuteNewsChannel, transmutableChannel);
+var gmailHTML = '<html><body><object width="250" height="250"><param name="movie" value="http://www.youtube.com/v/qKAInP_tmHk"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/qKAInP_tmHk" type="application/x-shockwave-flash" wmode="transparent" width="250" height="250"></embed></object></body></html>';
+var gmailChannel = new Channel("GMail Video", gmailHTML, "gmail");
+var channels = new Array(oneMinuteNewsChannel, transmutableChannel, gmailChannel);
+
function onContextClick(person, shapeName){
var items = new Array();
for(var i=0; i < channels.length; i++){
Modified: maven/trunk/ogoglio-server/src/main/resources/siteTemplates/spaceui.js
===================================================================
--- maven/trunk/ogoglio-server/src/main/resources/siteTemplates/spaceui.js 2007-09-01 19:20:33 UTC (rev 324)
+++ maven/trunk/ogoglio-server/src/main/resources/siteTemplates/spaceui.js 2007-09-01 20:30:08 UTC (rev 325)
@@ -215,7 +215,6 @@
var infoActionDiv = document.createElement("div");
infoActionDiv.style.width = "100%";
infoActionDiv.style.textAlign = "right";
- infoActionDiv.style.backgroundColor = "#F00";
var closeActionAnchor = document.createElement("a");
closeActionAnchor.setAttribute("href", "error.html");
closeActionAnchor.setAttribute("onclick", "removeInfoPanel(" + id + "); return false;");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|