This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
kaltura /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sun Apr 20 01:30:32 -0700 2008 | [bricolage] |
| |
MIT-LICENSE | Mon Apr 14 11:46:39 -0700 2008 | [bricolage] |
| |
README | Tue Jul 15 08:05:26 -0700 2008 | [bricolage] |
| |
Rakefile | Tue Mar 25 01:19:26 -0700 2008 | [bricolage] |
| |
TODO | Tue Mar 25 01:19:26 -0700 2008 | [bricolage] |
| |
examples/ | Tue Jul 15 17:02:01 -0700 2008 | [jdg] |
| |
init.rb | Mon May 19 12:18:26 -0700 2008 | [jdg] |
| |
lib/ | Tue Jun 10 14:19:18 -0700 2008 | [jdg] |
| |
patches/ | Mon May 19 12:18:26 -0700 2008 | [jdg] |
| |
spec/ | Wed Jul 09 10:01:49 -0700 2008 | [jdg] |
| |
templates/ | Tue Jul 15 17:04:08 -0700 2008 | [jdg] |
README
Kaltura API ====================== An ActiveResource-like RESTful interface to the Kaltura API You can copy the templates/kaltura.yml.template file into your Rails app as config/kaltura.yml. Replace the values with your own partner info that you received from Kaltura. Specs are to test the Kaltura API directly, not this library itself. Kaltura Pre-requisites ====================== You will need to signup for a Kaltura partner account so you can setup kaltura.yml in your RAILS_ROOT/config (see templates/kaltura.yml.template). A note about Kaltura "ks" sessions ====================== Kaltura's backend uses its own session system that is completely independent from the Rails session. Kaltura's implementation requires that some requests use a regular session id, and some use an 'admin' session id. We have attempted to completely encapsulate it in the API's lower-level calls so you don't need to worry about which kind to make (see Kshow#admin_session_for to see which ones require admin sessions). When using the SWFs in views you may need to specify a ks. We will be posting some examples shortly displaying Kaltura's views. Code Pre-requisites ====================== * ActiveSupport * ActiveResource Please note that there is a small bug in ActiveResource, where it will not return the response data if the response contains unescaped %'s. See patches/patch_for_activeresource_connection.rb for the fix. Example ====================== # Creating a new Kshow: ks = Kaltura::Kshow.new ks.name = 'Example Kshow' ks.puser_id = 'kaltura_user_id' ks.save Credits ====================== Developed by Eastmedia (http://eastmedia.com) Sponsored by Remix America (http://remixamerica.org) Copyright (c) 2008 Matt Pelletier, Eastmedia (http://eastmedia.com) See MIT-LICENSE in this directory.




