Changeset 456295
- Timestamp:
- 10/27/2011 10:18:13 AM (14 years ago)
- Location:
- mediaembedder
- Files:
-
- 43 added
- 3 edited
-
tags/0.0.2 (added)
-
tags/0.0.2/list.php (added)
-
tags/0.0.2/mediaembedder.php (added)
-
tags/0.0.2/module (added)
-
tags/0.0.2/module/bliptv.php (added)
-
tags/0.0.2/module/collegehumor.php (added)
-
tags/0.0.2/module/dailymotion.php (added)
-
tags/0.0.2/module/flickr.php (added)
-
tags/0.0.2/module/funnyordie.php (added)
-
tags/0.0.2/module/gametrailers.php (added)
-
tags/0.0.2/module/hulu.php (added)
-
tags/0.0.2/module/metacafe.php (added)
-
tags/0.0.2/module/photobucket.php (added)
-
tags/0.0.2/module/revision3.php (added)
-
tags/0.0.2/module/scribd.php (added)
-
tags/0.0.2/module/smugmug.php (added)
-
tags/0.0.2/module/viddler.php (added)
-
tags/0.0.2/module/vimeo.php (added)
-
tags/0.0.2/module/youtube.php (added)
-
tags/0.0.2/readme.txt (added)
-
tags/0.0.2/settings.php (added)
-
tags/0.0.2/sql (added)
-
tags/0.0.2/sql/main.sql (added)
-
tags/0.0.2/template (added)
-
tags/0.0.2/template/bliptv.php (added)
-
tags/0.0.2/template/collegehumor.php (added)
-
tags/0.0.2/template/dailymotion.php (added)
-
tags/0.0.2/template/flickr.php (added)
-
tags/0.0.2/template/flickr_video.php (added)
-
tags/0.0.2/template/funnyordie.php (added)
-
tags/0.0.2/template/gametrailers.php (added)
-
tags/0.0.2/template/hulu.php (added)
-
tags/0.0.2/template/metacafe.php (added)
-
tags/0.0.2/template/photobucket.php (added)
-
tags/0.0.2/template/revision3.php (added)
-
tags/0.0.2/template/scribd.php (added)
-
tags/0.0.2/template/smugmug.php (added)
-
tags/0.0.2/template/viddler.php (added)
-
tags/0.0.2/template/vimeo.php (added)
-
tags/0.0.2/template/youtube.php (added)
-
tags/0.0.2/template/youtube_playlist.php (added)
-
trunk/list.php (modified) (3 diffs)
-
trunk/mediaembedder.php (modified) (1 diff)
-
trunk/module/collegehumor.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/template/collegehumor.php (added)
Legend:
- Unmodified
- Added
- Removed
-
mediaembedder/trunk/list.php
r456084 r456295 20 20 ), 21 21 array( 22 're' => '^http(s?)://www.metacafe.com/watch/(?P<metacafe_id>\d+)/(?P<metacafe_name>[a-zA-Z0-9_-]+)(/?)', 23 'module' => 'metacafe' 22 're' => '^http(s?)://blip.tv/(?P<bliptv_group>[a-zA-Z0-9-_]+)/(?P<bliptv_name>[a-zA-Z0-9-_]+)-(?P<bliptv_id>\d+)', 23 'module' => 'bliptv' 24 ), 25 array( 26 're' => '^http(s?)://(.*)collegehumor.com/video/(?P<collegehumor_id>\d+)/(?P<collegehumor_name>[a-zA-Z0-9-_]+)', 27 'module' => 'collegehumor' 24 28 ), 25 29 array( … … 28 32 ), 29 33 array( 34 're' => '^http(s?)://www.flickr.com/photos/(?P<flickr_username>[a-zA-Z0-9-_@]+)/(?P<flickr_id>\d+)(/?)', 35 'module' => 'flickr' 36 ), 37 array( 38 're' => '^http(s?)://(.*)funnyordie.com/videos/(?P<funnyordie_id>[a-zA-Z0-9]+)/(?P<funnyordie_name>[a-zA-Z0-9-_]+)(/?)', 39 'module' => 'funnyordie' 40 ), 41 array( 30 42 're' => '^http(s?)://www.gametrailers.com/video/(?P<gametrailers_name>[a-zA-Z0-9-]+)/(?P<gametrailers_id>\d+)(/?)', 31 43 'module' => 'gametrailers' 32 44 ), 33 45 array( 34 're' => '^http(s?):// vimeo.com/(?P<vimeo_id>\d+)',35 'module' => ' vimeo'46 're' => '^http(s?)://(.*)hulu.com/watch/(?P<hulu_id>\d+)/(?P<hulu_name>[a-zA-Z0-9-_]+)(/?)', 47 'module' => 'hulu' 36 48 ), 37 49 array( 38 're' => '^http(s?):// blip.tv/(?P<bliptv_group>[a-zA-Z0-9-_]+)/(?P<bliptv_name>[a-zA-Z0-9-_]+)-(?P<bliptv_id>\d+)',39 'module' => ' bliptv'50 're' => '^http(s?)://www.metacafe.com/watch/(?P<metacafe_id>\d+)/(?P<metacafe_name>[a-zA-Z0-9_-]+)(/?)', 51 'module' => 'metacafe' 40 52 ), 41 53 array( 42 're' => '^http(s?)://(.*)viddler.com/explore/(?P<viddler_group>[a-zA-Z0-9-_]+)/videos/(?P<viddler_id>\d+)(/?)', 43 'module' => 'viddler' 44 ), 45 array( 46 're' => '^http(s?)://www.flickr.com/photos/(?P<flickr_username>[a-zA-Z0-9-_@]+)/(?P<flickr_id>\d+)(/?)', 47 'module' => 'flickr' 48 ), 49 array( 50 're' => '^http(s?)://(.*)hulu.com/watch/(?P<hulu_id>\d+)/(?P<hulu_name>[a-zA-Z0-9-_]+)(/?)', 51 'module' => 'hulu' 54 're' => '^http(s?)://(?P<photobucket_hash_1>.*)photobucket.com/(?P<photobucket_hash_2>.+)(/?)', 55 'module' => 'photobucket' 52 56 ), 53 57 array( … … 60 64 ), 61 65 array( 62 're' => '^http(s?)://(?P<photobucket_hash_1>.*)photobucket.com/(?P<photobucket_hash_2>.+)(/?)',63 'module' => 'photobucket'64 ),65 array(66 're' => '^http(s?)://(.*)funnyordie.com/videos/(?P<funnyordie_id>[a-zA-Z0-9]+)/(?P<funnyordie_name>[a-zA-Z0-9-_]+)(/?)',67 'module' => 'funnyordie'68 ),69 array(70 66 're' => '^http(s?)://(.*)smugmug.com/(?P<smugmug_hash_1>.+)', 71 67 'module' => 'smugmug' 72 68 ), 69 array( 70 're' => '^http(s?)://(.*)viddler.com/explore/(?P<viddler_group>[a-zA-Z0-9-_]+)/videos/(?P<viddler_id>\d+)(/?)', 71 'module' => 'viddler' 72 ), 73 array( 74 're' => '^http(s?)://vimeo.com/(?P<vimeo_id>\d+)', 75 'module' => 'vimeo' 76 ), 73 77 ); -
mediaembedder/trunk/mediaembedder.php
r456084 r456295 5 5 Plugin URI: http://cj-jackson.com/ 6 6 Description: An efficient, flexible multimedia embedder 7 Version: 0.0. 17 Version: 0.0.2 8 8 Author: Christopher John Jackson 9 9 Author URI: http://cj-jackson.com/ -
mediaembedder/trunk/readme.txt
r456084 r456295 5 5 Requires at least: 3.2.0 6 6 Tested up to: 3.2.1 7 Stable tag: 0.0. 17 Stable tag: 0.0.2 8 8 9 9 Multimedia Embedder that relies on template, unlike oEmbed, therefore allowing … … 24 24 database for maximum speed and efficiency. 25 25 26 This plugin extends on Wordpress Embed, so therefore it embedded the same way as 27 oEmbed. 28 29 Currently sites support are: 30 31 * [Blip.tv](http://blip.tv/) 32 * [CollegeHumor](http://www.collegehumor.com/) 33 * [DailyMotion](http://www.dailymotion.com/) 34 * [Flickr](http://www.flickr.com/) (Photo and Video) 35 * [FunnyOrDie](http://www.funnyordie.com/) 36 * [GameTrailers](http://www.gametrailers.com/) 37 * [Hulu](http://www.hulu.com/) 38 * [MetaCafe](http://www.metacafe.com/) 39 * [PhotoBucket](http://photobucket.com/) 40 * [Revision3](http://revision3.com/) 41 * [Scribd](http://www.scribd.com/) 42 * [SmugMug](http://www.smugmug.com/) 43 * [Viddler](http://viddler.com/) 44 * [YouTube](http://www.youtube.com/) (including Playlists) 45 * And more coming soon... 46 26 47 Further Instructions are in the admin panel. 27 48 … … 34 55 == Changelog == 35 56 57 = 0.0.2 = 58 * Added CollegeHumor. 59 * Have YouTube on top of list, then the rest in alphabetical order. 60 36 61 = 0.0.1 = 37 62 * First Release.
Note: See TracChangeset
for help on using the changeset viewer.