2013-02-20 20:33:05 -05:00
|
|
|
|
var MediaPlayer = {
|
|
|
|
|
|
2013-03-23 00:04:36 -04:00
|
|
|
|
testableAudioElement: document.createElement('audio'),
|
|
|
|
|
testableVideoElement: document.createElement('video'),
|
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
|
canPlay: function (item) {
|
|
|
|
|
|
|
|
|
|
if (item.MediaType === "Video") {
|
|
|
|
|
|
2013-03-23 00:04:36 -04:00
|
|
|
|
var media = MediaPlayer.testableVideoElement;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
|
|
|
|
if (media.canPlayType) {
|
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
return media.canPlayType('video/mp4').replace(/no/, '') || media.canPlayType('video/webm').replace(/no/, '') || media.canPlayType('video/ogv').replace(/no/, '');
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (item.MediaType === "Audio") {
|
|
|
|
|
|
2013-03-23 00:04:36 -04:00
|
|
|
|
var media = MediaPlayer.testableAudioElement;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
|
|
|
|
if (media.canPlayType) {
|
|
|
|
|
return media.canPlayType('audio/mpeg').replace(/no/, '') || media.canPlayType('audio/aac').replace(/no/, '');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
|
2013-03-25 21:44:12 -07:00
|
|
|
|
play: function (items, startPosition) {
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
|
|
|
|
if (MediaPlayer.isPlaying()) {
|
|
|
|
|
MediaPlayer.stop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var item = items[0];
|
|
|
|
|
|
|
|
|
|
var mediaElement;
|
2013-02-27 12:53:42 -05:00
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
|
if (item.MediaType === "Video") {
|
|
|
|
|
|
2013-03-25 21:44:12 -07:00
|
|
|
|
mediaElement = MediaPlayer.playVideo(items, startPosition);
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (item.MediaType === "Audio") {
|
|
|
|
|
|
|
|
|
|
mediaElement = MediaPlayer.playAudio(items);
|
|
|
|
|
}
|
2013-02-27 12:53:42 -05:00
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
|
if (!mediaElement) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MediaPlayer.mediaElement = mediaElement;
|
|
|
|
|
|
|
|
|
|
var nowPlayingBar = $('#nowPlayingBar').show();
|
|
|
|
|
|
|
|
|
|
if (items.length > 1) {
|
|
|
|
|
$('#previousTrackButton', nowPlayingBar)[0].disabled = false;
|
|
|
|
|
$('#nextTrackButton', nowPlayingBar)[0].disabled = false;
|
|
|
|
|
} else {
|
|
|
|
|
$('#previousTrackButton', nowPlayingBar)[0].disabled = true;
|
|
|
|
|
$('#nextTrackButton', nowPlayingBar)[0].disabled = true;
|
|
|
|
|
}
|
2013-03-27 19:01:26 -07:00
|
|
|
|
|
|
|
|
|
//display image and title
|
|
|
|
|
var imageTags = item.ImageTags || {};
|
|
|
|
|
var html = '';
|
|
|
|
|
|
2013-03-28 01:19:58 -04:00
|
|
|
|
var url = "";
|
|
|
|
|
|
2013-03-27 19:01:26 -07:00
|
|
|
|
if (item.BackdropImageTags && item.BackdropImageTags.length) {
|
|
|
|
|
|
|
|
|
|
url = ApiClient.getImageUrl(item.Id, {
|
|
|
|
|
type: "Backdrop",
|
2013-03-28 01:19:58 -04:00
|
|
|
|
height: 36,
|
2013-03-27 19:01:26 -07:00
|
|
|
|
tag: item.BackdropImageTags[0]
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
else if (imageTags.Thumb) {
|
|
|
|
|
|
|
|
|
|
url = ApiClient.getImageUrl(item.Id, {
|
|
|
|
|
type: "Thumb",
|
2013-03-28 01:19:58 -04:00
|
|
|
|
height: 36,
|
2013-03-27 19:01:26 -07:00
|
|
|
|
tag: item.ImageTags.Thumb
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
else if (imageTags.Primary) {
|
|
|
|
|
|
|
|
|
|
url = ApiClient.getImageUrl(item.Id, {
|
|
|
|
|
type: "Primary",
|
2013-03-28 01:19:58 -04:00
|
|
|
|
height: 36,
|
2013-03-27 19:01:26 -07:00
|
|
|
|
tag: item.ImageTags.Primary
|
|
|
|
|
});
|
|
|
|
|
}else {
|
|
|
|
|
url = "css/images/items/detail/video.png";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var name = item.Name;
|
2013-03-27 22:05:26 -07:00
|
|
|
|
var series_name = '';
|
2013-03-27 19:01:26 -07:00
|
|
|
|
|
|
|
|
|
if (item.IndexNumber != null) {
|
|
|
|
|
name = item.IndexNumber + " - " + name;
|
|
|
|
|
}
|
|
|
|
|
if (item.ParentIndexNumber != null) {
|
|
|
|
|
name = item.ParentIndexNumber + "." + name;
|
|
|
|
|
}
|
|
|
|
|
if (item.SeriesName || item.Album || item.ProductionYear) {
|
2013-03-27 22:05:26 -07:00
|
|
|
|
series_name = item.SeriesName || item.Album || item.ProductionYear;
|
2013-03-27 19:01:26 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-28 01:19:58 -04:00
|
|
|
|
html += "<div><img class='nowPlayingBarImage ' alt='' title='' src='" + url + "' style='height:36px;display:inline-block;' /></div>";
|
2013-03-27 22:05:26 -07:00
|
|
|
|
html += '<div>'+name+'<br/>'+series_name+'</div>';
|
2013-03-27 19:01:26 -07:00
|
|
|
|
|
|
|
|
|
$('#mediaInfo', nowPlayingBar).html(html);
|
2013-02-20 20:33:05 -05:00
|
|
|
|
},
|
|
|
|
|
|
2013-03-25 12:46:39 -07:00
|
|
|
|
playAudio: function (items, params) {
|
2013-02-20 20:33:05 -05:00
|
|
|
|
var item = items[0];
|
|
|
|
|
|
|
|
|
|
var baseParams = {
|
|
|
|
|
audioChannels: 2,
|
|
|
|
|
audioBitrate: 128000
|
|
|
|
|
};
|
|
|
|
|
|
2013-03-25 12:46:39 -07:00
|
|
|
|
$.extend(baseParams, params);
|
|
|
|
|
|
2013-02-27 12:53:42 -05:00
|
|
|
|
var mp3Url = ApiClient.getUrl('Audio/' + item.Id + '/stream.mp3', $.extend({}, baseParams, {
|
2013-02-20 20:33:05 -05:00
|
|
|
|
audioCodec: 'mp3'
|
|
|
|
|
}));
|
|
|
|
|
|
2013-02-27 12:53:42 -05:00
|
|
|
|
var aacUrl = ApiClient.getUrl('Audio/' + item.Id + '/stream.aac', $.extend({}, baseParams, {
|
2013-02-20 20:33:05 -05:00
|
|
|
|
audioCodec: 'aac'
|
|
|
|
|
}));
|
|
|
|
|
|
2013-02-27 12:53:42 -05:00
|
|
|
|
var webmUrl = ApiClient.getUrl('Audio/' + item.Id + '/stream.webma', $.extend({}, baseParams, {
|
2013-02-20 20:33:05 -05:00
|
|
|
|
audioCodec: 'Vorbis'
|
|
|
|
|
}));
|
|
|
|
|
|
2013-02-27 12:53:42 -05:00
|
|
|
|
var oggUrl = ApiClient.getUrl('Audio/' + item.Id + '/stream.oga', $.extend({}, baseParams, {
|
2013-02-20 20:33:05 -05:00
|
|
|
|
audioCodec: 'Vorbis'
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
var html = '';
|
|
|
|
|
html += '<audio class="itemAudio" preload="none" controls autoplay>';
|
2013-03-12 18:03:48 -04:00
|
|
|
|
html += '<source type="audio/mpeg" src="' + mp3Url + '" />';
|
|
|
|
|
html += '<source type="audio/aac" src="' + aacUrl + '" />';
|
|
|
|
|
html += '<source type="audio/webm" src="' + webmUrl + '" />';
|
|
|
|
|
html += '<source type="audio/ogg" src="' + oggUrl + '" />';
|
2013-02-20 20:33:05 -05:00
|
|
|
|
html += '</audio';
|
|
|
|
|
|
|
|
|
|
var nowPlayingBar = $('#nowPlayingBar').show();
|
|
|
|
|
|
|
|
|
|
$('#mediaElement', nowPlayingBar).html(html);
|
|
|
|
|
|
|
|
|
|
return $('audio', nowPlayingBar)[0];
|
|
|
|
|
},
|
|
|
|
|
|
2013-03-25 21:44:12 -07:00
|
|
|
|
playVideo: function (items, startPosition) {
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
|
|
|
|
var item = items[0];
|
|
|
|
|
|
2013-03-12 23:57:54 -04:00
|
|
|
|
// Account for screen rotation. Use the larger dimension as the width.
|
2013-02-20 20:33:05 -05:00
|
|
|
|
var screenWidth = Math.max(screen.height, screen.width);
|
|
|
|
|
var screenHeight = Math.min(screen.height, screen.width);
|
|
|
|
|
|
2013-03-27 18:02:34 -07:00
|
|
|
|
var volume = localStorage.getItem("volume") || 0.5;
|
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
//need to store current play position (reset to 0 on new video load)
|
|
|
|
|
MediaPlayer.playingTime = 0;
|
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
|
var baseParams = {
|
|
|
|
|
audioChannels: 2,
|
|
|
|
|
audioBitrate: 128000,
|
2013-03-27 22:05:26 -07:00
|
|
|
|
videoBitrate: 1500000,
|
2013-02-20 20:33:05 -05:00
|
|
|
|
maxWidth: screenWidth,
|
2013-03-25 21:44:12 -07:00
|
|
|
|
maxHeight: screenHeight,
|
|
|
|
|
StartTimeTicks: 0
|
2013-02-20 20:33:05 -05:00
|
|
|
|
};
|
|
|
|
|
|
2013-03-25 21:44:12 -07:00
|
|
|
|
if (typeof(startPosition) != "undefined") {
|
|
|
|
|
baseParams['StartTimeTicks'] = startPosition;
|
|
|
|
|
}
|
2013-03-12 23:07:04 -04:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var mp4VideoUrl = ApiClient.getUrl('Videos/' + item.Id + '/stream.mp4', $.extend({}, baseParams, {
|
|
|
|
|
videoCodec: 'h264',
|
|
|
|
|
audioCodec: 'aac'
|
|
|
|
|
}));
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var webmVideoUrl = ApiClient.getUrl('Videos/' + item.Id + '/stream.webm', $.extend({}, baseParams, {
|
|
|
|
|
videoCodec: 'vpx',
|
|
|
|
|
audioCodec: 'Vorbis'
|
|
|
|
|
}));
|
2013-03-25 16:56:58 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var ogvVideoUrl = ApiClient.getUrl('Videos/' + item.Id + '/stream.ogv', $.extend({}, baseParams, {
|
|
|
|
|
videoCodec: 'theora',
|
|
|
|
|
audioCodec: 'Vorbis'
|
|
|
|
|
}));
|
2013-03-26 14:32:01 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
$("#media_player").jPlayer({
|
|
|
|
|
ready: function () {
|
|
|
|
|
$(this).jPlayer("setMedia", {
|
|
|
|
|
m4v: mp4VideoUrl,
|
|
|
|
|
ogv: ogvVideoUrl,
|
|
|
|
|
webm: webmVideoUrl
|
|
|
|
|
}).jPlayer("play");
|
|
|
|
|
|
|
|
|
|
$('.jp_duration').html(ticks_to_human(item.RunTimeTicks));
|
|
|
|
|
|
|
|
|
|
$(this).bind($.jPlayer.event.timeupdate,function(event){
|
|
|
|
|
MediaPlayer.playingTime = event.jPlayer.status.currentTime;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$(this).bind($.jPlayer.event.volumechange,function(event){
|
|
|
|
|
localStorage.setItem("volume", event.jPlayer.options.volume );
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//add quality selector
|
|
|
|
|
var available_res = ['high','medium','low'];
|
|
|
|
|
$('.jp_quality').html('');
|
|
|
|
|
$.each(available_res, function(i, value) {
|
|
|
|
|
var html = '<li><a href="javascript:;" onclick="MediaPlayer.setResolution(\''+value+'\');">'+value+'</a></li>';
|
|
|
|
|
$('.jp_quality').append(html);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.jp_chapters').html('');
|
|
|
|
|
if (item.Chapters && item.Chapters.length) {
|
|
|
|
|
// Put together the available chapter list
|
|
|
|
|
$.each( item.Chapters, function( i, chapter ) {
|
|
|
|
|
var chapter_name = chapter.Name + " (" + ticks_to_human(chapter.StartPositionTicks) + ")";
|
|
|
|
|
var html = '<li><a href="javascript:;" onclick="MediaPlayer.setChapter(\''+i+'\',\''+chapter.StartPositionTicks+'\');">'+chapter_name+'</a></li>';
|
|
|
|
|
$('.jp_chapters').append(html);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MediaPlayer.updateProgress();
|
|
|
|
|
ApiClient.reportPlaybackStart(Dashboard.getCurrentUserId(), item.Id);
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
volume: volume,
|
|
|
|
|
supplied: "m4v, ogv, webm",
|
|
|
|
|
cssSelectorAncestor: "#media_container",
|
|
|
|
|
emulateHtml: true
|
|
|
|
|
});
|
2013-03-27 18:02:34 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var nowPlayingBar = $('#nowPlayingBar');
|
2013-03-26 14:32:01 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
$('#mediaElement', nowPlayingBar).show();
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
|
|
|
|
return $('video', nowPlayingBar)[0];
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
stop: function () {
|
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var startTimeTicks = $("#media_player video").attr("src").match(new RegExp("StartTimeTicks=[0-9]+","g"));
|
|
|
|
|
var start_time = startTimeTicks[0].replace("StartTimeTicks=","");
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var item_string = $("#media_player video").attr("src").match(new RegExp("Videos/[0-9a-z\-]+","g"));
|
|
|
|
|
var item_id = item_string[0].replace("Videos/","");
|
2013-03-25 17:56:31 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var current_time = MediaPlayer.playingTime;
|
|
|
|
|
var positionTicks = parseInt(start_time) + Math.floor(10000000*current_time);
|
2013-03-26 14:32:01 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
ApiClient.reportPlaybackStopped(Dashboard.getCurrentUserId(), item_id, positionTicks);
|
2013-03-26 14:32:01 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
clearTimeout(MediaPlayer.progressInterval);
|
2013-03-26 14:32:01 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
$("#media_player").jPlayer("destroy");
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
|
|
|
|
$('#nowPlayingBar').hide();
|
|
|
|
|
|
|
|
|
|
MediaPlayer.mediaElement = null;
|
|
|
|
|
},
|
2013-02-27 12:53:42 -05:00
|
|
|
|
|
|
|
|
|
isPlaying: function () {
|
2013-02-20 20:33:05 -05:00
|
|
|
|
return MediaPlayer.mediaElement;
|
2013-03-26 14:32:01 -07:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
updateProgress: function () {
|
2013-03-31 15:44:50 -07:00
|
|
|
|
MediaPlayer.progressInterval = setInterval(function(){
|
|
|
|
|
var current_time = MediaPlayer.playingTime;
|
2013-03-26 14:32:01 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var startTimeTicks = $("#media_player video").attr("src").match(new RegExp("StartTimeTicks=[0-9]+","g"));
|
2013-03-26 14:32:01 -07:00
|
|
|
|
var start_time = startTimeTicks[0].replace("StartTimeTicks=","");
|
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var item_string = $("#media_player video").attr("src").match(new RegExp("Videos/[0-9a-z\-]+","g"));
|
2013-03-26 14:32:01 -07:00
|
|
|
|
var item_id = item_string[0].replace("Videos/","");
|
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var positionTicks = parseInt(start_time) + Math.floor(10000000*current_time);
|
2013-03-26 14:32:01 -07:00
|
|
|
|
|
|
|
|
|
ApiClient.reportPlaybackProgress(Dashboard.getCurrentUserId(), item_id, positionTicks);
|
|
|
|
|
},30000);
|
2013-03-31 15:44:50 -07:00
|
|
|
|
},
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
setResolution: function (new_res) {
|
|
|
|
|
var resolutions = new Array();
|
|
|
|
|
resolutions['high'] = new Array(1500000, 128000, 1920, 1080);
|
|
|
|
|
resolutions['medium'] = new Array(750000, 128000, 1280, 720);
|
|
|
|
|
resolutions['low'] = new Array(200000, 128000, 720, 480);
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var current_time = MediaPlayer.playingTime;
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
// Set the button text to the newly chosen quality
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
// Change the source and make sure we don't start the video over
|
|
|
|
|
var currentSrc = $("#media_player video").attr("src");
|
|
|
|
|
var src = parse_src_url(currentSrc);
|
|
|
|
|
var newSrc = "/mediabrowser/"+src.Type+"/"+src.item_id+"/stream."+src.stream+"?audioChannels="+src.audioChannels+"&audioBitrate="+resolutions[new_res][1]+
|
|
|
|
|
"&videoBitrate="+resolutions[new_res][0]+"&maxWidth="+resolutions[new_res][2]+"&maxHeight="+resolutions[new_res][3]+
|
|
|
|
|
"&videoCodec="+src.videoCodec+"&audioCodec="+src.audioCodec;
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
if (currentSrc.indexOf("StartTimeTicks") >= 0) {
|
|
|
|
|
var startTimeTicks = currentSrc.match(new RegExp("StartTimeTicks=[0-9]+","g"));
|
|
|
|
|
var start_time = startTimeTicks[0].replace("StartTimeTicks=","");
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
newSrc += "&StartTimeTicks="+Math.floor(parseInt(start_time)+(10000000*current_time));
|
|
|
|
|
}else {
|
|
|
|
|
newSrc += "&StartTimeTicks="+Math.floor(10000000*current_time);
|
|
|
|
|
}
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
//need to store current play position (reset to 0 on new video load)
|
|
|
|
|
MediaPlayer.playingTime = 0;
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
$("#media_player").jPlayer("setMedia",{
|
|
|
|
|
m4v: newSrc,
|
|
|
|
|
ogv: newSrc,
|
|
|
|
|
webm: newSrc
|
|
|
|
|
}).jPlayer("play");
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
},
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
setChapter: function (chapter_id, new_time) {
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
var currentSrc = $("#media_player video").attr("src");
|
2013-03-25 12:46:39 -07:00
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
if (currentSrc.indexOf("StartTimeTicks") >= 0) {
|
|
|
|
|
var newSrc = currentSrc.replace(new RegExp("StartTimeTicks=[0-9]+","g"),"StartTimeTicks="+new_time);
|
|
|
|
|
}else {
|
|
|
|
|
var newSrc = currentSrc += "&StartTimeTicks="+new_time;
|
2013-03-25 12:46:39 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-31 15:44:50 -07:00
|
|
|
|
$("#media_player").jPlayer("setMedia",{
|
|
|
|
|
m4v: newSrc,
|
|
|
|
|
ogv: newSrc,
|
|
|
|
|
webm: newSrc
|
|
|
|
|
}).jPlayer("play");
|
2013-03-25 12:46:39 -07:00
|
|
|
|
}
|
2013-03-31 15:44:50 -07:00
|
|
|
|
|
|
|
|
|
};
|