This repository was archived by the owner on Oct 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added support for Google Video and Metacafe.
* Updated ChangeLog.
- Loading branch information
stefan.istrate
committed
Nov 9, 2009
1 parent
a596daa
commit dd31aba
Showing
7 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -198,8 +198,13 @@ static PurplePluginInfo info = { | |
"Pidgin Embedded Video", | ||
"1.1", | ||
"Watch videos directly into the conversation.", | ||
"This plugin provides you an easy way to watch videos from popular websites (Trilulilu, Vimeo, Youtube) directly into the conversation. Send and receive links and the plugin will insert the video.", | ||
"Stefan Istrate <[email protected]>\nMarius Stroe <[email protected]>", | ||
"This plugin provides you an easy way to watch videos from popular websites" | ||
" (CollegeHumor, Dailymotion, Google Video, Metacafe, MySpace Video," | ||
" Trilulilu, Vimeo, Yahoo! Video and Youtube) directly into the" | ||
" conversation. Send and receive links and the plugin will insert the" | ||
" video.", | ||
"Stefan Istrate <[email protected]>\n" | ||
"Marius Stroe <[email protected]>", | ||
"http://code.google.com/p/pidgin-embeddedvideo/", | ||
|
||
plugin_load, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#include <websites.h> | ||
|
||
WebsiteInfo google_video = { | ||
"google-video", | ||
"^(?i)(http://)?video\\.google\\.com/videoplay\\?docid=(?<video_id>-?\\d+)([&#].*)?$", | ||
"<embed id=VideoPlayback src=http://video.google.com/googleplayer.swf?docid=%VIDEO_ID%&hl=en&fs=true style=width:400px;height:326px allowFullScreen=true allowScriptAccess=always type=application/x-shockwave-flash></embed>", | ||
NULL | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#include <websites.h> | ||
|
||
WebsiteInfo metacafe = { | ||
"metacafe", | ||
"^(?i)(?<http>http://)?(?(<http>)(www\\.)?|(www\\.))metacafe\\.com/watch/(?-i)(?<video_id>\\d+)/(?<misc1>[\\w\\d]+)([/\\?#].*)?$", | ||
"<embed src=\"http://www.metacafe.com/fplayer/%VIDEO_ID%/%MISC1%.swf\" width=\"400\" height=\"345\" wmode=\"transparent\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" allowFullScreen=\"true\" allowScriptAccess=\"always\" name=\"Metacafe_%VIDEO_ID%\"></embed>", | ||
NULL | ||
}; |