예제 #1
0
 def get_json_autoplay(self):
     return safe_json(self.autoplay)
예제 #2
0
 def get_json_ogg_support(self):
     return safe_json(self.ogg_support())
예제 #3
0
 def get_base_path(self):
     return safe_json(settings.JPLAYER_BASE_PATH)
예제 #4
0
 def get_json_playlist(self):
     if not hasattr(self, '_cached_playlist'):
         self._cached_playlist = safe_json(self.playlist())
     return self._cached_playlist
예제 #5
0
 def get_json_autoplay(self):
     return safe_json(self.autoplay)
예제 #6
0
 def get_base_path(self):
     return safe_json(settings.JPLAYER_BASE_PATH)
예제 #7
0
 def get_json_ogg_support(self):
     return safe_json(self.ogg_support())
예제 #8
0
 def get_json_playlist(self):
     if not hasattr(self, '_cached_playlist'):
         self._cached_playlist = safe_json(self.playlist())
     return self._cached_playlist