mplayerplug-in-cvs Mailing List for mplayerplug-in for mozilla (Page 4)
Brought to you by:
kdekorte
You can subscribe to this list here.
2003 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(19) |
Feb
(86) |
Mar
(186) |
Apr
(60) |
May
(12) |
Jun
(30) |
Jul
(16) |
Aug
(19) |
Sep
(33) |
Oct
(17) |
Nov
(26) |
Dec
(32) |
2005 |
Jan
(39) |
Feb
(15) |
Mar
(9) |
Apr
(11) |
May
(14) |
Jun
(24) |
Jul
(79) |
Aug
(69) |
Sep
(22) |
Oct
(76) |
Nov
(40) |
Dec
(15) |
2006 |
Jan
(73) |
Feb
(61) |
Mar
(29) |
Apr
(26) |
May
(19) |
Jun
(30) |
Jul
(16) |
Aug
(38) |
Sep
(32) |
Oct
(29) |
Nov
(23) |
Dec
(20) |
2007 |
Jan
(19) |
Feb
(13) |
Mar
(10) |
Apr
(2) |
May
(9) |
Jun
(7) |
Jul
(4) |
Aug
(18) |
Sep
(5) |
Oct
(6) |
Nov
(10) |
Dec
(21) |
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(10) |
Jun
(7) |
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2009 |
Jan
|
Feb
(3) |
Mar
|
Apr
(3) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kevin D. <kde...@us...> - 2007-10-03 17:54:39
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27698 Modified Files: ChangeLog Log Message: Get rid of GTK size request exception Index: ChangeLog =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/ChangeLog,v retrieving revision 1.552 retrieving revision 1.553 diff -C2 -d -r1.552 -r1.553 *** ChangeLog 20 Sep 2007 23:43:09 -0000 1.552 --- ChangeLog 3 Oct 2007 17:54:35 -0000 1.553 *************** *** 1,3 **** --- 1,4 ---- Developement + Get rid of GTK size request exception Alternate parsing of RAM files Updated Spanish translation by Festor Wailon Dacoba |
From: Kevin D. <kde...@us...> - 2007-09-27 13:40:39
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28514/Source Modified Files: plugin-ui.cpp Log Message: fix int truncation of percent value Index: plugin-ui.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-ui.cpp,v retrieving revision 1.250 retrieving revision 1.251 diff -C2 -d -r1.250 -r1.251 *** plugin-ui.cpp 14 Aug 2007 19:27:13 -0000 1.250 --- plugin-ui.cpp 27 Sep 2007 13:40:25 -0000 1.251 *************** *** 1048,1052 **** gdk_window_get_size(widget->window,&width,&height); #endif ! percent = event->x / width; if (instance->currentnode != NULL) { --- 1048,1052 ---- gdk_window_get_size(widget->window,&width,&height); #endif ! percent = (float)event->x / (float)width; if (instance->currentnode != NULL) { |
From: Kevin D. <kde...@us...> - 2007-09-20 23:43:15
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12534 Modified Files: ChangeLog Log Message: alternate RAM parser Index: ChangeLog =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/ChangeLog,v retrieving revision 1.551 retrieving revision 1.552 diff -C2 -d -r1.551 -r1.552 *** ChangeLog 19 Sep 2007 13:50:58 -0000 1.551 --- ChangeLog 20 Sep 2007 23:43:09 -0000 1.552 *************** *** 1,3 **** --- 1,4 ---- Developement + Alternate parsing of RAM files Updated Spanish translation by Festor Wailon Dacoba Make qtsrc locations work, makes some apple sites work |
From: Kevin D. <kde...@us...> - 2007-09-20 23:43:15
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12534/Source Modified Files: plugin-list.cpp Log Message: alternate RAM parser Index: plugin-list.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-list.cpp,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** plugin-list.cpp 20 Aug 2007 13:51:08 -0000 1.76 --- plugin-list.cpp 20 Sep 2007 23:43:10 -0000 1.77 *************** *** 834,838 **** } // simple playlist usually realmedia file ! if (strncasecmp(buffer, "rtsp", 4) == 0 && found == 0) { if (DEBUG) { printf("Search RTSP File\n"); --- 834,838 ---- } // simple playlist usually realmedia file ! if (memmem(buffer_lower, size, "rtsp://", 7) != NULL && found == 0) { if (DEBUG) { printf("Search RTSP File\n"); *************** *** 867,871 **** } // simple playlist usually realmedia file ! if (strncasecmp(buffer, "pnm", 3) == 0 && found == 0) { if (DEBUG) { printf("Search for PNM url File\n"); --- 867,871 ---- } // simple playlist usually realmedia file ! if (memmem(buffer_lower, size, "pnm://", 6) != NULL && found == 0) { if (DEBUG) { printf("Search for PNM url File\n"); |
From: Kevin D. <kde...@us...> - 2007-09-19 13:51:07
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14850 Modified Files: ChangeLog Log Message: Updated Spanish translation by Festor Wailon Dacoba Index: ChangeLog =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/ChangeLog,v retrieving revision 1.550 retrieving revision 1.551 diff -C2 -d -r1.550 -r1.551 *** ChangeLog 23 Aug 2007 13:05:59 -0000 1.550 --- ChangeLog 19 Sep 2007 13:50:58 -0000 1.551 *************** *** 1,3 **** --- 1,4 ---- Developement + Updated Spanish translation by Festor Wailon Dacoba Make qtsrc locations work, makes some apple sites work Add support for realmedia pnm:// streaming media |
From: Kevin D. <kde...@us...> - 2007-09-19 13:51:07
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/po In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14850/po Modified Files: es.po Log Message: Updated Spanish translation by Festor Wailon Dacoba Index: es.po =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/po/es.po,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** es.po 20 Oct 2006 23:09:36 -0000 1.16 --- es.po 19 Sep 2007 13:50:58 -0000 1.17 *************** *** 2,29 **** # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE ! # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # msgid "" msgstr "" ! "Project-Id-Version: mplayerplug-in 2.7x\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2006-10-20 12:23-0600\n" ! "PO-Revision-Date: 2006-03-17 03:03-0300\n" ! "Last-Translator: Matias Orellana <mo...@gm...>\n" ! "Language-Team: Matias Orellana <mo...@gm...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Spanish\n" ! #: ../Source/plugin.cpp:819 ../Source/plugin-ui.cpp:1179 msgid "Play" msgstr "Reproducir" ! #: ../Source/plugin.cpp:823 ../Source/plugin-ui.cpp:1210 msgid "Pause" msgstr "Pausar" ! #: ../Source/plugin.cpp:827 ../Source/plugin-ui.cpp:1244 msgid "Stop" msgstr "Detener" --- 2,33 ---- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE ! # Festor Wailon Dacoba <fes...@ma...>, 2007. # msgid "" msgstr "" ! "Project-Id-Version: mplayerplug-in 3.45\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2006-10-20 12:23-0600\n" ! "PO-Revision-Date: 2007-09-19 12:29+0100\n" ! "Last-Translator: Festor Wailon Dacoba <fes...@gm...>\n" ! "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Spanish\n" + "X-Poedit-Country: SPAIN\n" ! #: ../Source/plugin.cpp:819 ! #: ../Source/plugin-ui.cpp:1179 msgid "Play" msgstr "Reproducir" ! #: ../Source/plugin.cpp:823 ! #: ../Source/plugin-ui.cpp:1210 msgid "Pause" msgstr "Pausar" ! #: ../Source/plugin.cpp:827 ! #: ../Source/plugin-ui.cpp:1244 msgid "Stop" msgstr "Detener" *************** *** 33,37 **** msgstr "Mostrar Controles" ! #: ../Source/plugin.cpp:848 ../Source/plugin-ui.cpp:1347 msgid "Full Screen" msgstr "Pantalla Completa" --- 37,42 ---- msgstr "Mostrar Controles" ! #: ../Source/plugin.cpp:848 ! #: ../Source/plugin-ui.cpp:1347 msgid "Full Screen" msgstr "Pantalla Completa" *************** *** 41,45 **** msgstr "Copiar URL" ! #: ../Source/plugin.cpp:864 ../Source/plugin-ui.cpp:1702 #, c-format msgid "Save" --- 46,51 ---- msgstr "Copiar URL" ! #: ../Source/plugin.cpp:864 ! #: ../Source/plugin-ui.cpp:1702 #, c-format msgid "Save" *************** *** 54,58 **** msgstr "Iniciando" ! #: ../Source/plugin.cpp:1424 ../Source/plugin.cpp:1428 msgid "Download Complete" msgstr "Descarga Completa" --- 60,65 ---- msgstr "Iniciando" ! #: ../Source/plugin.cpp:1424 ! #: ../Source/plugin.cpp:1428 msgid "Download Complete" msgstr "Descarga Completa" *************** *** 61,70 **** #, c-format msgid "Buffering %li KB" ! msgstr "" #: ../Source/plugin.cpp:1954 #, c-format msgid "Buffering %i%% - %li KB" ! msgstr "" #: ../Source/plugin.cpp:1964 --- 68,77 ---- #, c-format msgid "Buffering %li KB" ! msgstr "Buffering %li KB" #: ../Source/plugin.cpp:1954 #, c-format msgid "Buffering %i%% - %li KB" ! msgstr "Buffering %i%% - %li KB" #: ../Source/plugin.cpp:1964 *************** *** 73,83 **** msgstr "Buffering Completo - %li KB" ! #: ../Source/plugin-threads.cpp:266 ../Source/plugin-threads.cpp:270 ! #: ../Source/plugin-threads.cpp:1630 ../Source/plugin-threads.cpp:1633 #, c-format msgid "Loading Media..." msgstr "Cargando..." ! #: ../Source/plugin-threads.cpp:603 ../Source/plugin-threads.cpp:607 msgid "Getting playlist..." msgstr "Obteniendo lista de reproducción..." --- 80,93 ---- msgstr "Buffering Completo - %li KB" ! #: ../Source/plugin-threads.cpp:266 ! #: ../Source/plugin-threads.cpp:270 ! #: ../Source/plugin-threads.cpp:1630 ! #: ../Source/plugin-threads.cpp:1633 #, c-format msgid "Loading Media..." msgstr "Cargando..." ! #: ../Source/plugin-threads.cpp:603 ! #: ../Source/plugin-threads.cpp:607 msgid "Getting playlist..." msgstr "Obteniendo lista de reproducción..." *************** *** 88,92 **** msgstr "Almacenando %s" ! #: ../Source/plugin-threads.cpp:940 ../Source/plugin-threads.cpp:1854 #, c-format msgid "Playing %s" --- 98,103 ---- msgstr "Almacenando %s" ! #: ../Source/plugin-threads.cpp:940 ! #: ../Source/plugin-threads.cpp:1854 #, c-format msgid "Playing %s" *************** *** 95,101 **** #: ../Source/plugin-threads.cpp:1180 msgid "Stream Title: " ! msgstr "" ! #: ../Source/plugin-threads.cpp:1522 ../Source/plugin-ui.cpp:692 #, c-format msgid "Stopped" --- 106,113 ---- #: ../Source/plugin-threads.cpp:1180 msgid "Stream Title: " ! msgstr "TÃtulo Stream:" ! #: ../Source/plugin-threads.cpp:1522 ! #: ../Source/plugin-ui.cpp:692 #, c-format msgid "Stopped" *************** *** 123,141 **** #, c-format msgid "%2i:%02i / %2i:%02i | %2i%% â¼" ! msgstr "" #: ../Source/plugin-ui.cpp:1796 #, c-format msgid "%i:%02i:%02i / %i:%02i:%02i | %2i%% â¼" ! msgstr "" #: ../Source/plugin-ui.cpp:1828 #, c-format msgid "%2i%% â¼" ! msgstr "" #: ../Source/plugin-ui.cpp:2204 msgid "Save As..." ! msgstr "" #: ../Source/plugin-ui.cpp:2604 --- 135,153 ---- #, c-format msgid "%2i:%02i / %2i:%02i | %2i%% â¼" ! msgstr "%2i:%02i / %2i:%02i | %2i%% â¼" #: ../Source/plugin-ui.cpp:1796 #, c-format msgid "%i:%02i:%02i / %i:%02i:%02i | %2i%% â¼" ! msgstr "%i:%02i:%02i / %i:%02i:%02i | %2i%% â¼" #: ../Source/plugin-ui.cpp:1828 #, c-format msgid "%2i%% â¼" ! msgstr "%2i%% â¼" #: ../Source/plugin-ui.cpp:2204 msgid "Save As..." ! msgstr "Guardar como..." #: ../Source/plugin-ui.cpp:2604 *************** *** 220,226 **** #: ../Source/plugin-ui.cpp:2889 - #, fuzzy msgid "Enable DivX Support" ! msgstr "Habilitar el soporte para MIDI" #: ../Source/plugin-ui.cpp:2901 --- 232,237 ---- #: ../Source/plugin-ui.cpp:2889 msgid "Enable DivX Support" ! msgstr "Habilitar soporte DivX" #: ../Source/plugin-ui.cpp:2901 *************** *** 239,240 **** --- 250,252 ---- msgid "Pause Video when hidden" msgstr "Pausar el VÃdeo cuando se encuentre oculto" + |
From: Kevin D. <kde...@us...> - 2007-08-23 13:06:09
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv8021/Source Modified Files: plugin-setup.cpp Log Message: safer patch Index: plugin-setup.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-setup.cpp,v retrieving revision 1.139 retrieving revision 1.140 diff -C2 -d -r1.139 -r1.140 *** plugin-setup.cpp 23 Aug 2007 12:58:52 -0000 1.139 --- plugin-setup.cpp 23 Aug 2007 13:06:03 -0000 1.140 *************** *** 645,653 **** if (strncasecmp(parameters->argn[i], "qtsrc", 5) == 0) { instance->href = (char *)malloc(1024); ! instance->href = strcpy(instance->href,instance->url); ! tmp = rindex(instance->href,'/') + sizeof(char); ! if (tmp) ! tmp[0] = '\0'; ! instance->href = strncat(instance->href,parameters->argv[i],1024); if (strncasecmp(parameters->argv[i], "file://", 7) == 0) fullyQualifyURL(instance, parameters->argv[i], --- 645,657 ---- if (strncasecmp(parameters->argn[i], "qtsrc", 5) == 0) { instance->href = (char *)malloc(1024); ! tmp = rindex(instance->url,'/'); ! if (tmp) { ! instance->href = strcpy(instance->href,instance->url); ! tmp = rindex(instance->href,'/'); ! tmp[1] = '\0'; ! instance->href = strncat(instance->href,parameters->argv[i],1024); ! } else { ! instance->href = strcpy(instance->href,parameters->argv[i]); ! } if (strncasecmp(parameters->argv[i], "file://", 7) == 0) fullyQualifyURL(instance, parameters->argv[i], |
From: Kevin D. <kde...@us...> - 2007-08-23 13:06:09
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv8021 Modified Files: ChangeLog Log Message: safer patch Index: ChangeLog =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/ChangeLog,v retrieving revision 1.549 retrieving revision 1.550 diff -C2 -d -r1.549 -r1.550 *** ChangeLog 20 Aug 2007 13:51:08 -0000 1.549 --- ChangeLog 23 Aug 2007 13:05:59 -0000 1.550 *************** *** 1,3 **** --- 1,4 ---- Developement + Make qtsrc locations work, makes some apple sites work Add support for realmedia pnm:// streaming media Turn volume down by pressing 9 and up by pressing 0 |
From: Kevin D. <kde...@us...> - 2007-08-23 12:58:59
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1434/Source Modified Files: plugin-setup.cpp Log Message: Make qtsrc locations work, makes some apple sites work Index: plugin-setup.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-setup.cpp,v retrieving revision 1.138 retrieving revision 1.139 diff -C2 -d -r1.138 -r1.139 *** plugin-setup.cpp 14 Jun 2007 03:24:49 -0000 1.138 --- plugin-setup.cpp 23 Aug 2007 12:58:52 -0000 1.139 *************** *** 524,527 **** --- 524,528 ---- char parse[1000]; char *cp; + char *tmp; if (DEBUG) *************** *** 630,635 **** } ! if ((strncasecmp(parameters->argn[i], "href", 4) == 0) ! || (strncasecmp(parameters->argn[i], "qtsrc", 5) == 0)) { instance->href = strdup(parameters->argv[i]); if (strncasecmp(parameters->argv[i], "file://", 7) == 0) --- 631,636 ---- } ! if (strncasecmp(parameters->argn[i], "href", 4) == 0) { ! instance->href = strdup(parameters->argv[i]); if (strncasecmp(parameters->argv[i], "file://", 7) == 0) *************** *** 642,645 **** --- 643,662 ---- } + if (strncasecmp(parameters->argn[i], "qtsrc", 5) == 0) { + instance->href = (char *)malloc(1024); + instance->href = strcpy(instance->href,instance->url); + tmp = rindex(instance->href,'/') + sizeof(char); + if (tmp) + tmp[0] = '\0'; + instance->href = strncat(instance->href,parameters->argv[i],1024); + if (strncasecmp(parameters->argv[i], "file://", 7) == 0) + fullyQualifyURL(instance, parameters->argv[i], + instance->href); + if (strstr(parameters->argv[i], "<") != NULL) + fullyQualifyURL(instance, parameters->argv[i], + instance->href); + instance->state = STATE_HAVEURL; + } + if (strncasecmp(parameters->argn[i], "autohref", 8) == 0) { |
From: Kevin D. <kde...@us...> - 2007-08-22 12:46:02
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/po In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20837 Modified Files: nl.po Log Message: fix line termination in nl.po Index: nl.po =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/po/nl.po,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** nl.po 6 Nov 2006 21:18:33 -0000 1.18 --- nl.po 22 Aug 2007 12:45:51 -0000 1.19 *************** *** 1,238 **** ! # SOME DESCRIPTIVE TITLE. ! # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ! # This file is distributed under the same license as the PACKAGE package. # Luuk Mulder <luu...@gm...> ! # ! msgid "" ! msgstr "" ! "Project-Id-Version: mplayerplug-in\n" ! "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2006-10-20 12:23-0600\n" ! "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" ! "Last-Translator: Luuk Mulder<luu...@gm...>\n" ! "Language-Team: Luuk Mulder<luu...@gm...>\n" ! "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=UTF-8\n" ! "Content-Transfer-Encoding: 8bit\n" ! ! #: ../Source/plugin.cpp:819 ../Source/plugin-ui.cpp:1179 ! msgid "Play" ! msgstr "Afspelen" ! ! #: ../Source/plugin.cpp:823 ../Source/plugin-ui.cpp:1210 ! msgid "Pause" ! msgstr "Pauze" ! ! #: ../Source/plugin.cpp:827 ../Source/plugin-ui.cpp:1244 ! msgid "Stop" ! msgstr "Stop" ! ! #: ../Source/plugin.cpp:840 ! msgid "Show Controls" ! msgstr "Toon knoppen" ! ! #: ../Source/plugin.cpp:848 ../Source/plugin-ui.cpp:1347 ! msgid "Full Screen" ! msgstr "Beeldvullend" ! ! #: ../Source/plugin.cpp:860 ! msgid "Copy URL" ! msgstr "URL kopieren" ! ! #: ../Source/plugin.cpp:864 ../Source/plugin-ui.cpp:1702 ! #, c-format ! msgid "Save" ! msgstr "Opslaan" ! ! #: ../Source/plugin.cpp:874 ! msgid "Configure" ! msgstr "Configureren" ! ! #: ../Source/plugin.cpp:968 ! msgid "Initializing" ! msgstr "Initialiseren" ! ! #: ../Source/plugin.cpp:1424 ../Source/plugin.cpp:1428 ! msgid "Download Complete" ! msgstr "Download compleet" ! ! #: ../Source/plugin.cpp:1948 ! #, c-format ! msgid "Buffering %li KB" ! msgstr "Laden %li KB" ! ! #: ../Source/plugin.cpp:1954 ! #, c-format ! msgid "Buffering %i%% - %li KB" ! msgstr "Laden %i%% - %li KB" ! ! #: ../Source/plugin.cpp:1964 ! #, c-format ! msgid "Buffering Complete - %li KB" ! msgstr "Laden gereed - %li KB" ! ! #: ../Source/plugin-threads.cpp:266 ../Source/plugin-threads.cpp:270 ! #: ../Source/plugin-threads.cpp:1630 ../Source/plugin-threads.cpp:1633 ! #, c-format ! msgid "Loading Media..." ! msgstr "Laden media..." ! ! #: ../Source/plugin-threads.cpp:603 ../Source/plugin-threads.cpp:607 ! msgid "Getting playlist..." ! msgstr "Inlezen afspeellijst..." ! ! #: ../Source/plugin-threads.cpp:915 ! #, c-format ! msgid "Buffering %s" ! msgstr "Laden %s" ! ! #: ../Source/plugin-threads.cpp:940 ../Source/plugin-threads.cpp:1854 ! #, c-format ! msgid "Playing %s" ! msgstr "Afspelen %s" ! ! #: ../Source/plugin-threads.cpp:1180 ! msgid "Stream Title: " ! msgstr "Stream titel: " ! ! #: ../Source/plugin-threads.cpp:1522 ../Source/plugin-ui.cpp:692 ! #, c-format ! msgid "Stopped" ! msgstr "Gestopt" ! ! #: ../Source/plugin-ui.cpp:1145 ! msgid "Rewind" ! msgstr "Terugspoelen" ! ! #: ../Source/plugin-ui.cpp:1277 ! msgid "Fast Forward" ! msgstr "Snel vooruit" ! ! #: ../Source/plugin-ui.cpp:1697 ! #, c-format ! msgid "Save as %s/%s" ! msgstr "Opslaan als %s/%s" ! ! #: ../Source/plugin-ui.cpp:1717 ! #, c-format ! msgid "Append URL to %s/playlist" ! msgstr "Voeg URL toe aan %s/afspeellijst" ! ! #: ../Source/plugin-ui.cpp:1789 ! #, c-format ! msgid "%2i:%02i / %2i:%02i | %2i%% â¼" ! msgstr "%2i:%02i / %2i:%02i | %2i%% â¼" ! ! #: ../Source/plugin-ui.cpp:1796 ! #, c-format ! msgid "%i:%02i:%02i / %i:%02i:%02i | %2i%% â¼" ! msgstr "%i:%02i:%02i / %i:%02i:%02i | %2i%% â¼" ! ! #: ../Source/plugin-ui.cpp:1828 ! #, c-format ! msgid "%2i%% â¼" ! msgstr "%2i%% â¼" ! ! #: ../Source/plugin-ui.cpp:2204 ! msgid "Save As..." ! msgstr "Opslaan als..." ! ! #: ../Source/plugin-ui.cpp:2604 ! msgid "mplayerplug-in configuration" ! msgstr "mplayerplug-in instellingen" ! ! #: ../Source/plugin-ui.cpp:2694 ! msgid "OK" ! msgstr "OK" ! ! #: ../Source/plugin-ui.cpp:2698 ! msgid "Cancel" ! msgstr "Annuleren" ! ! #: ../Source/plugin-ui.cpp:2703 ! msgid "Video Output:" ! msgstr "Video uitvoer:" ! ! #: ../Source/plugin-ui.cpp:2711 ! msgid "Audio Output:" ! msgstr "Audio uitvoer:" ! ! #: ../Source/plugin-ui.cpp:2719 ! msgid "Save to Location:" ! msgstr "Opslaan in:" ! ! #: ../Source/plugin-ui.cpp:2728 ! msgid "Minimum Cache Size:" ! msgstr "Minimum cache grootte:" ! ! #: ../Source/plugin-ui.cpp:2740 ! msgid "Percent of Media to Cache:" ! msgstr "Percentage in cache:" ! ! #: ../Source/plugin-ui.cpp:2754 ! msgid "Show time in progress bar" ! msgstr "Toon afspeeltijd in scherm" ! ! #: ../Source/plugin-ui.cpp:2765 ! msgid "Enable Windows Media Player Support" ! msgstr "Afspelen Windows Media Player formaat" ! ! #: ../Source/plugin-ui.cpp:2776 ! msgid "Enable QuickTime Support" ! msgstr "Afspelen Quicktime formaat" ! ! #: ../Source/plugin-ui.cpp:2787 ! msgid "Enable RealMedia Support" ! msgstr "Afspelen Realmedia formaat" ! #: ../Source/plugin-ui.cpp:2799 ! msgid "Enable SMIL Support (Effects QuickTime and RealMedia)" ! msgstr "SMIL ondersteuning (tbv. Quicktime en RealMedia)" ! ! #: ../Source/plugin-ui.cpp:2810 ! msgid "Enable Helix Emulation" ! msgstr "Afspelen Helix Emulatie formaat" ! ! #: ../Source/plugin-ui.cpp:2822 ! msgid "Enable Google Media Player Support" ! msgstr "Afspelen Google Media Player formaat" ! ! #: ../Source/plugin-ui.cpp:2833 ! msgid "Enable MPEG Support" ! msgstr "Afspelen MPEG formaat" ! ! #: ../Source/plugin-ui.cpp:2845 ! msgid "Enable MP3 Support (Requires MPEG Support)" ! msgstr "Afspelen MP3 formaat (vereist MPEG ondersteuning)" ! ! #: ../Source/plugin-ui.cpp:2856 ! msgid "Enable Ogg Support" ! msgstr "Afspelen Ogg formaat" ! ! #: ../Source/plugin-ui.cpp:2867 ! msgid "Enable MIDI Support" ! msgstr "Afspelen MIDI formaat" ! ! #: ../Source/plugin-ui.cpp:2878 ! msgid "Enable Shoutcast PLS Support" ! msgstr "Afspelen Shoutcast PLS formaat" ! #: ../Source/plugin-ui.cpp:2889 ! msgid "Enable DivX Support" ! msgstr "Afspelen DivX formaat" ! ! #: ../Source/plugin-ui.cpp:2901 ! msgid "Play media directly from site (No Caching)" ! msgstr "Media vanaf de website afspelen (geen caching)" ! ! #: ../Source/plugin-ui.cpp:2913 ! msgid "Connect to RTSP Media over TCP" ! msgstr "Afspelen RTSP bestanden via TCP" ! ! #: ../Source/plugin-ui.cpp:2923 ! msgid "Use HTTP instead of RTSP" ! msgstr "Gebruik HTTP in plaats van RTSP" ! ! #: ../Source/plugin-ui.cpp:2933 ! msgid "Pause Video when hidden" ! msgstr "Onderbreek afspelen bij verborgen scherm" --- 1,238 ---- ! # SOME DESCRIPTIVE TITLE. ! # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ! # This file is distributed under the same license as the PACKAGE package. # Luuk Mulder <luu...@gm...> ! # ! msgid "" ! msgstr "" ! "Project-Id-Version: mplayerplug-in\n" ! "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2006-10-20 12:23-0600\n" ! "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" ! "Last-Translator: Luuk Mulder<luu...@gm...>\n" ! "Language-Team: Luuk Mulder<luu...@gm...>\n" ! "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=UTF-8\n" ! "Content-Transfer-Encoding: 8bit\n" ! ! #: ../Source/plugin.cpp:819 ../Source/plugin-ui.cpp:1179 ! msgid "Play" ! msgstr "Afspelen" ! ! #: ../Source/plugin.cpp:823 ../Source/plugin-ui.cpp:1210 ! msgid "Pause" ! msgstr "Pauze" ! ! #: ../Source/plugin.cpp:827 ../Source/plugin-ui.cpp:1244 ! msgid "Stop" ! msgstr "Stop" ! ! #: ../Source/plugin.cpp:840 ! msgid "Show Controls" ! msgstr "Toon knoppen" ! ! #: ../Source/plugin.cpp:848 ../Source/plugin-ui.cpp:1347 ! msgid "Full Screen" ! msgstr "Beeldvullend" ! ! #: ../Source/plugin.cpp:860 ! msgid "Copy URL" ! msgstr "URL kopieren" ! ! #: ../Source/plugin.cpp:864 ../Source/plugin-ui.cpp:1702 ! #, c-format ! msgid "Save" ! msgstr "Opslaan" ! ! #: ../Source/plugin.cpp:874 ! msgid "Configure" ! msgstr "Configureren" ! ! #: ../Source/plugin.cpp:968 ! msgid "Initializing" ! msgstr "Initialiseren" ! ! #: ../Source/plugin.cpp:1424 ../Source/plugin.cpp:1428 ! msgid "Download Complete" ! msgstr "Download compleet" ! ! #: ../Source/plugin.cpp:1948 ! #, c-format ! msgid "Buffering %li KB" ! msgstr "Laden %li KB" ! ! #: ../Source/plugin.cpp:1954 ! #, c-format ! msgid "Buffering %i%% - %li KB" ! msgstr "Laden %i%% - %li KB" ! ! #: ../Source/plugin.cpp:1964 ! #, c-format ! msgid "Buffering Complete - %li KB" ! msgstr "Laden gereed - %li KB" ! ! #: ../Source/plugin-threads.cpp:266 ../Source/plugin-threads.cpp:270 ! #: ../Source/plugin-threads.cpp:1630 ../Source/plugin-threads.cpp:1633 ! #, c-format ! msgid "Loading Media..." ! msgstr "Laden media..." ! ! #: ../Source/plugin-threads.cpp:603 ../Source/plugin-threads.cpp:607 ! msgid "Getting playlist..." ! msgstr "Inlezen afspeellijst..." ! ! #: ../Source/plugin-threads.cpp:915 ! #, c-format ! msgid "Buffering %s" ! msgstr "Laden %s" ! ! #: ../Source/plugin-threads.cpp:940 ../Source/plugin-threads.cpp:1854 ! #, c-format ! msgid "Playing %s" ! msgstr "Afspelen %s" ! ! #: ../Source/plugin-threads.cpp:1180 ! msgid "Stream Title: " ! msgstr "Stream titel: " ! ! #: ../Source/plugin-threads.cpp:1522 ../Source/plugin-ui.cpp:692 ! #, c-format ! msgid "Stopped" ! msgstr "Gestopt" ! ! #: ../Source/plugin-ui.cpp:1145 ! msgid "Rewind" ! msgstr "Terugspoelen" ! ! #: ../Source/plugin-ui.cpp:1277 ! msgid "Fast Forward" ! msgstr "Snel vooruit" ! ! #: ../Source/plugin-ui.cpp:1697 ! #, c-format ! msgid "Save as %s/%s" ! msgstr "Opslaan als %s/%s" ! ! #: ../Source/plugin-ui.cpp:1717 ! #, c-format ! msgid "Append URL to %s/playlist" ! msgstr "Voeg URL toe aan %s/afspeellijst" ! ! #: ../Source/plugin-ui.cpp:1789 ! #, c-format ! msgid "%2i:%02i / %2i:%02i | %2i%% â¼" ! msgstr "%2i:%02i / %2i:%02i | %2i%% â¼" ! ! #: ../Source/plugin-ui.cpp:1796 ! #, c-format ! msgid "%i:%02i:%02i / %i:%02i:%02i | %2i%% â¼" ! msgstr "%i:%02i:%02i / %i:%02i:%02i | %2i%% â¼" ! ! #: ../Source/plugin-ui.cpp:1828 ! #, c-format ! msgid "%2i%% â¼" ! msgstr "%2i%% â¼" ! ! #: ../Source/plugin-ui.cpp:2204 ! msgid "Save As..." ! msgstr "Opslaan als..." ! ! #: ../Source/plugin-ui.cpp:2604 ! msgid "mplayerplug-in configuration" ! msgstr "mplayerplug-in instellingen" ! ! #: ../Source/plugin-ui.cpp:2694 ! msgid "OK" ! msgstr "OK" ! ! #: ../Source/plugin-ui.cpp:2698 ! msgid "Cancel" ! msgstr "Annuleren" ! ! #: ../Source/plugin-ui.cpp:2703 ! msgid "Video Output:" ! msgstr "Video uitvoer:" ! ! #: ../Source/plugin-ui.cpp:2711 ! msgid "Audio Output:" ! msgstr "Audio uitvoer:" ! ! #: ../Source/plugin-ui.cpp:2719 ! msgid "Save to Location:" ! msgstr "Opslaan in:" ! ! #: ../Source/plugin-ui.cpp:2728 ! msgid "Minimum Cache Size:" ! msgstr "Minimum cache grootte:" ! ! #: ../Source/plugin-ui.cpp:2740 ! msgid "Percent of Media to Cache:" ! msgstr "Percentage in cache:" ! ! #: ../Source/plugin-ui.cpp:2754 ! msgid "Show time in progress bar" ! msgstr "Toon afspeeltijd in scherm" ! ! #: ../Source/plugin-ui.cpp:2765 ! msgid "Enable Windows Media Player Support" ! msgstr "Afspelen Windows Media Player formaat" ! ! #: ../Source/plugin-ui.cpp:2776 ! msgid "Enable QuickTime Support" ! msgstr "Afspelen Quicktime formaat" ! ! #: ../Source/plugin-ui.cpp:2787 ! msgid "Enable RealMedia Support" ! msgstr "Afspelen Realmedia formaat" ! #: ../Source/plugin-ui.cpp:2799 ! msgid "Enable SMIL Support (Effects QuickTime and RealMedia)" ! msgstr "SMIL ondersteuning (tbv. Quicktime en RealMedia)" ! ! #: ../Source/plugin-ui.cpp:2810 ! msgid "Enable Helix Emulation" ! msgstr "Afspelen Helix Emulatie formaat" ! ! #: ../Source/plugin-ui.cpp:2822 ! msgid "Enable Google Media Player Support" ! msgstr "Afspelen Google Media Player formaat" ! ! #: ../Source/plugin-ui.cpp:2833 ! msgid "Enable MPEG Support" ! msgstr "Afspelen MPEG formaat" ! ! #: ../Source/plugin-ui.cpp:2845 ! msgid "Enable MP3 Support (Requires MPEG Support)" ! msgstr "Afspelen MP3 formaat (vereist MPEG ondersteuning)" ! ! #: ../Source/plugin-ui.cpp:2856 ! msgid "Enable Ogg Support" ! msgstr "Afspelen Ogg formaat" ! ! #: ../Source/plugin-ui.cpp:2867 ! msgid "Enable MIDI Support" ! msgstr "Afspelen MIDI formaat" ! ! #: ../Source/plugin-ui.cpp:2878 ! msgid "Enable Shoutcast PLS Support" ! msgstr "Afspelen Shoutcast PLS formaat" ! #: ../Source/plugin-ui.cpp:2889 ! msgid "Enable DivX Support" ! msgstr "Afspelen DivX formaat" ! ! #: ../Source/plugin-ui.cpp:2901 ! msgid "Play media directly from site (No Caching)" ! msgstr "Media vanaf de website afspelen (geen caching)" ! ! #: ../Source/plugin-ui.cpp:2913 ! msgid "Connect to RTSP Media over TCP" ! msgstr "Afspelen RTSP bestanden via TCP" ! ! #: ../Source/plugin-ui.cpp:2923 ! msgid "Use HTTP instead of RTSP" ! msgstr "Gebruik HTTP in plaats van RTSP" ! ! #: ../Source/plugin-ui.cpp:2933 ! msgid "Pause Video when hidden" ! msgstr "Onderbreek afspelen bij verborgen scherm" |
From: Kevin D. <kde...@us...> - 2007-08-20 13:51:14
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27383/Source Modified Files: plugin-list.cpp plugin-support.cpp Log Message: Add support for realmedia pnm:// streaming media Index: plugin-list.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-list.cpp,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** plugin-list.cpp 15 Feb 2007 13:53:00 -0000 1.75 --- plugin-list.cpp 20 Aug 2007 13:51:08 -0000 1.76 *************** *** 866,869 **** --- 866,903 ---- } } + // simple playlist usually realmedia file + if (strncasecmp(buffer, "pnm", 3) == 0 && found == 0) { + if (DEBUG) { + printf("Search for PNM url File\n"); + } + p = buffer_lower; + while (p != NULL) { + i = size - ((long) p - (long) buffer_lower); + p = (char *) memmem(p, i, "pnm://", 6); + if (p == NULL) { + break; + } else { + i = (long) p - (long) buffer_lower; + snprintf(url, 1024, "pnm://%s", buffer + i + 6); + sub = strchr(url, 0xd); // terminate on CR + if (sub != NULL) + sub[0] = '\0'; + sub = strchr(url, 0xa); // terminate on line feed + if (sub != NULL) + sub[0] = '\0'; + //sub = strchr(url, 0x20); // terminate on space + sub = strchr(url, EOF); // terminate on EOF + if (sub != NULL) + sub[0] = '\0'; + if (DEBUG) + printf("URL: %s\n", url); + parent->playlist = 1; + addToList(instance, url, parent, -1, 0, -1,0); + p = p + strlen(url) + 1; + found = 1; + } + } + } + // simple playlist, usually old windows media if ((strncasecmp(buffer, "http://", 7) == 0 Index: plugin-support.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-support.cpp,v retrieving revision 1.103 retrieving revision 1.104 diff -C2 -d -r1.103 -r1.104 *** plugin-support.cpp 4 Jan 2007 13:45:55 -0000 1.103 --- plugin-support.cpp 20 Aug 2007 13:51:09 -0000 1.104 *************** *** 181,184 **** --- 181,185 ---- || (strncasecmp(url, "smb://", 6) == 0) || (strncasecmp(url, "tv://", 5) == 0) + || (strncasecmp(url, "pnm://", 6) == 0) || (strncasecmp(url, "rtsp://", 7) == 0)) { if (DEBUG > 1) |
From: Kevin D. <kde...@us...> - 2007-08-20 13:51:13
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27383 Modified Files: ChangeLog Log Message: Add support for realmedia pnm:// streaming media Index: ChangeLog =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/ChangeLog,v retrieving revision 1.548 retrieving revision 1.549 diff -C2 -d -r1.548 -r1.549 *** ChangeLog 14 Aug 2007 19:27:12 -0000 1.548 --- ChangeLog 20 Aug 2007 13:51:08 -0000 1.549 *************** *** 1,3 **** --- 1,4 ---- Developement + Add support for realmedia pnm:// streaming media Turn volume down by pressing 9 and up by pressing 0 Add the ability to set the onClick callback via a javascript method |
From: Kevin D. <kde...@us...> - 2007-08-16 15:53:31
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20830/Source Modified Files: plugin-threads.cpp Log Message: fix endian issue on Solaris Index: plugin-threads.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-threads.cpp,v retrieving revision 1.272 retrieving revision 1.273 diff -C2 -d -r1.272 -r1.273 *** plugin-threads.cpp 16 Aug 2007 15:50:21 -0000 1.272 --- plugin-threads.cpp 16 Aug 2007 15:53:26 -0000 1.273 *************** *** 824,827 **** --- 824,828 ---- && (local_td->instance->player != NULL)) { // c = fgetc(local_td->instance->player); + // read a char here, otherwise reading int causes endian issue amt = fread(&ch, 1, 1, local_td->instance->player); c = amt == 1 ? ch : EOF; |
From: Kevin D. <kde...@us...> - 2007-08-16 15:50:29
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17291/Source Modified Files: plugin-threads.cpp Log Message: fix endian issue on Solaris Index: plugin-threads.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-threads.cpp,v retrieving revision 1.271 retrieving revision 1.272 diff -C2 -d -r1.271 -r1.272 *** plugin-threads.cpp 1 Aug 2007 16:50:11 -0000 1.271 --- plugin-threads.cpp 16 Aug 2007 15:50:21 -0000 1.272 *************** *** 734,737 **** --- 734,738 ---- char url_copy[1024]; int c; + char ch; int length_request_count = 0; float lastmedialength = -1.0; *************** *** 823,827 **** && (local_td->instance->player != NULL)) { // c = fgetc(local_td->instance->player); ! amt = fread(&c, 1, 1, local_td->instance->player); } else { c = EOF; --- 824,829 ---- && (local_td->instance->player != NULL)) { // c = fgetc(local_td->instance->player); ! amt = fread(&ch, 1, 1, local_td->instance->player); ! c = amt == 1 ? ch : EOF; } else { c = EOF; |
From: Kevin D. <kde...@us...> - 2007-08-16 14:52:32
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15283 Modified Files: Makefile.in Log Message: Make Makefile.in Solaris compatible Index: Makefile.in =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Makefile.in,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** Makefile.in 19 Jan 2007 19:17:53 -0000 1.35 --- Makefile.in 16 Aug 2007 14:52:26 -0000 1.36 *************** *** 136,140 **** clean: $(RM) $(OBJ) $(OBJ_WMP) $(OBJ_QT) $(OBJ_RM) $(OBJ_GMP) $(OBJ_DVX) $(SHAREDTARGET)*.so $(SHAREDTARGET)*.xpt ! make -C po clean distclean: clean --- 136,140 ---- clean: $(RM) $(OBJ) $(OBJ_WMP) $(OBJ_QT) $(OBJ_RM) $(OBJ_GMP) $(OBJ_DVX) $(SHAREDTARGET)*.so $(SHAREDTARGET)*.xpt ! cd po; $(MAKE) clean distclean: clean *************** *** 146,150 **** languages: ! make -C po uninstall: --- 146,150 ---- languages: ! cd po; $(MAKE) uninstall: |
From: Kevin D. <kde...@us...> - 2007-08-14 19:27:16
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7150/Source Modified Files: plugin-ui.cpp Log Message: key 9 vol down, key 0 volume up Index: plugin-ui.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-ui.cpp,v retrieving revision 1.249 retrieving revision 1.250 diff -C2 -d -r1.249 -r1.250 *** plugin-ui.cpp 4 Apr 2007 16:18:05 -0000 1.249 --- plugin-ui.cpp 14 Aug 2007 19:27:13 -0000 1.250 *************** *** 963,966 **** --- 963,974 ---- } + if (event->keyval == GDK_9) { + instance->VolumeDown(); + } + + if (event->keyval == GDK_0) { + instance->VolumeUp(); + } + return FALSE; |
From: Kevin D. <kde...@us...> - 2007-08-14 19:27:16
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7150 Modified Files: ChangeLog Log Message: key 9 vol down, key 0 volume up Index: ChangeLog =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/ChangeLog,v retrieving revision 1.547 retrieving revision 1.548 diff -C2 -d -r1.547 -r1.548 *** ChangeLog 6 Aug 2007 19:30:23 -0000 1.547 --- ChangeLog 14 Aug 2007 19:27:12 -0000 1.548 *************** *** 1,3 **** --- 1,4 ---- Developement + Turn volume down by pressing 9 and up by pressing 0 Add the ability to set the onClick callback via a javascript method 3.45 |
From: Kevin D. <kde...@us...> - 2007-08-06 19:30:31
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7180/Source Modified Files: nsIScriptableMplayerPlugin.h nsIScriptableMplayerPlugin.idl nsIScriptableMplayerPlugin.xpt nsScriptablePeer.cpp plugin.cpp plugin.h Log Message: Add the ability to set the onClick callback via a javascript method Index: nsIScriptableMplayerPlugin.h =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/nsIScriptableMplayerPlugin.h,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** nsIScriptableMplayerPlugin.h 2 Nov 2006 20:54:19 -0000 1.20 --- nsIScriptableMplayerPlugin.h 6 Aug 2007 19:30:23 -0000 1.21 *************** *** 241,244 **** --- 241,247 ---- NS_IMETHOD GetControls(nsIScriptableWMPPlugin * *aControls) = 0; + /* void onClick (in string event); */ + NS_IMETHOD OnClick(const char *event) = 0; + }; *************** *** 286,290 **** NS_IMETHOD SetShowlogo(PRBool aShowlogo); \ NS_IMETHOD GetPlayState(PRInt32 *aPlayState); \ ! NS_IMETHOD GetControls(nsIScriptableWMPPlugin * *aControls); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ --- 289,294 ---- NS_IMETHOD SetShowlogo(PRBool aShowlogo); \ NS_IMETHOD GetPlayState(PRInt32 *aPlayState); \ ! NS_IMETHOD GetControls(nsIScriptableWMPPlugin * *aControls); \ ! NS_IMETHOD OnClick(const char *event); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ *************** *** 331,335 **** NS_IMETHOD SetShowlogo(PRBool aShowlogo) { return _to SetShowlogo(aShowlogo); } \ NS_IMETHOD GetPlayState(PRInt32 *aPlayState) { return _to GetPlayState(aPlayState); } \ ! NS_IMETHOD GetControls(nsIScriptableWMPPlugin * *aControls) { return _to GetControls(aControls); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ --- 335,340 ---- NS_IMETHOD SetShowlogo(PRBool aShowlogo) { return _to SetShowlogo(aShowlogo); } \ NS_IMETHOD GetPlayState(PRInt32 *aPlayState) { return _to GetPlayState(aPlayState); } \ ! NS_IMETHOD GetControls(nsIScriptableWMPPlugin * *aControls) { return _to GetControls(aControls); } \ ! NS_IMETHOD OnClick(const char *event) { return _to OnClick(event); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ *************** *** 376,380 **** NS_IMETHOD SetShowlogo(PRBool aShowlogo) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetShowlogo(aShowlogo); } \ NS_IMETHOD GetPlayState(PRInt32 *aPlayState) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPlayState(aPlayState); } \ ! NS_IMETHOD GetControls(nsIScriptableWMPPlugin * *aControls) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetControls(aControls); } #if 0 --- 381,386 ---- NS_IMETHOD SetShowlogo(PRBool aShowlogo) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetShowlogo(aShowlogo); } \ NS_IMETHOD GetPlayState(PRInt32 *aPlayState) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPlayState(aPlayState); } \ ! NS_IMETHOD GetControls(nsIScriptableWMPPlugin * *aControls) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetControls(aControls); } \ ! NS_IMETHOD OnClick(const char *event) { return !_to ? NS_ERROR_NULL_POINTER : _to->OnClick(event); } #if 0 *************** *** 654,657 **** --- 660,669 ---- } + /* void onClick (in string event); */ + NS_IMETHODIMP nsScriptableMplayerPlugin::OnClick(const char *event) + { + return NS_ERROR_NOT_IMPLEMENTED; + } + /* End of implementation class template. */ #endif Index: plugin.h =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin.h,v retrieving revision 1.111 retrieving revision 1.112 diff -C2 -d -r1.111 -r1.112 *** plugin.h 7 Jun 2007 13:34:39 -0000 1.111 --- plugin.h 6 Aug 2007 19:30:24 -0000 1.112 *************** *** 116,119 **** --- 116,120 ---- void PlaylistAppend(const char *item); void PlaylistClear(PRBool *_retval); + void SetOnClick(const char *event); Index: nsIScriptableMplayerPlugin.idl =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/nsIScriptableMplayerPlugin.idl,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** nsIScriptableMplayerPlugin.idl 2 Nov 2006 20:54:19 -0000 1.18 --- nsIScriptableMplayerPlugin.idl 6 Aug 2007 19:30:23 -0000 1.19 *************** *** 49,51 **** --- 49,52 ---- readonly attribute long playState; readonly attribute nsIScriptableWMPPlugin controls; + void onClick(in string event); }; Index: plugin.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin.cpp,v retrieving revision 1.342 retrieving revision 1.343 diff -C2 -d -r1.342 -r1.343 *** plugin.cpp 6 Aug 2007 14:04:07 -0000 1.342 --- plugin.cpp 6 Aug 2007 19:30:24 -0000 1.343 *************** *** 3228,3231 **** --- 3228,3245 ---- } + void nsPluginInstance::SetOnClick(const char *event) + { + if(mouseClickCallback != NULL) { + NPN_MemFree(mouseClickCallback); + } + mouseClickCallback = (char *)NPN_MemAlloc(strlen(event) + + 12); + if (strncasecmp(event, "javascript:", 11) == 0) { + snprintf(mouseClickCallback, strlen(event),"%s", event); + } else { + snprintf(mouseClickCallback, strlen(event)+12,"javascript:%s", event); + } + } + // ============================== // ! Scriptability related code ! Index: nsIScriptableMplayerPlugin.xpt =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/nsIScriptableMplayerPlugin.xpt,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 Binary files /tmp/cvsv8cNn9 and /tmp/cvs1DkBMw differ Index: nsScriptablePeer.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/nsScriptablePeer.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** nsScriptablePeer.cpp 23 Dec 2006 15:37:36 -0000 1.29 --- nsScriptablePeer.cpp 6 Aug 2007 19:30:24 -0000 1.30 *************** *** 436,439 **** --- 436,445 ---- } + NS_IMETHODIMP nsScriptablePeer::OnClick(const char *event) + { + mPlugin->SetOnClick(event); + return NS_OK; + } + NS_IMETHODIMP nsScriptablePeer::GetControls(nsIScriptableWMPPlugin * |
From: Kevin D. <kde...@us...> - 2007-08-06 19:30:28
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7180 Modified Files: ChangeLog Log Message: Add the ability to set the onClick callback via a javascript method Index: ChangeLog =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/ChangeLog,v retrieving revision 1.546 retrieving revision 1.547 diff -C2 -d -r1.546 -r1.547 *** ChangeLog 6 Aug 2007 14:04:06 -0000 1.546 --- ChangeLog 6 Aug 2007 19:30:23 -0000 1.547 *************** *** 1,2 **** --- 1,4 ---- + Developement + Add the ability to set the onClick callback via a javascript method 3.45 Fix gtk1 compile error |
From: Kevin D. <kde...@us...> - 2007-08-06 14:06:28
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv8099 Modified Files: configure configure.in mplayerplug-in.spec Log Message: 3.45 prep Index: configure =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/configure,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** configure 21 Mar 2007 13:37:23 -0000 1.78 --- configure 6 Aug 2007 14:06:15 -0000 1.79 *************** *** 1,9 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.59 for mplayerplug-in 3.40. # # Report bugs to <mpl...@li...>. # ! # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. --- 1,10 ---- [...16680 lines suppressed...] { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else rm -f $ac_file ! mv "$tmp/config.h" $ac_file fi else ! echo "/* $configure_input */" ! cat "$ac_result" fi ! rm -f "$tmp/out12" ! ;; ! ! ! esac ! ! done # for ac_tag { (exit 0); exit 0; } Index: mplayerplug-in.spec =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/mplayerplug-in.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** mplayerplug-in.spec 21 Mar 2007 13:40:16 -0000 1.49 --- mplayerplug-in.spec 6 Aug 2007 14:06:16 -0000 1.50 *************** *** 1,4 **** %define name mplayerplug-in ! %define ver 3.40 %ifarch x86_64 %define mozilla_dir /usr/lib64/mozilla/ --- 1,4 ---- %define name mplayerplug-in ! %define ver 3.45 %ifarch x86_64 %define mozilla_dir /usr/lib64/mozilla/ Index: configure.in =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/configure.in,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** configure.in 21 Mar 2007 13:37:23 -0000 1.77 --- configure.in 6 Aug 2007 14:06:16 -0000 1.78 *************** *** 3,7 **** AC_PREREQ(2.59) ! AC_INIT(mplayerplug-in, 3.40, mpl...@li...) AC_CONFIG_SRCDIR([config.h.in]) AC_CONFIG_HEADER([config.h]) --- 3,7 ---- AC_PREREQ(2.59) ! AC_INIT(mplayerplug-in, 3.45, mpl...@li...) AC_CONFIG_SRCDIR([config.h.in]) AC_CONFIG_HEADER([config.h]) |
From: Kevin D. <kde...@us...> - 2007-08-06 14:04:13
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6807 Modified Files: ChangeLog Log Message: Fix gtk1 compile error Don't call g_main_* from thread Index: ChangeLog =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/ChangeLog,v retrieving revision 1.545 retrieving revision 1.546 diff -C2 -d -r1.545 -r1.546 *** ChangeLog 19 Jul 2007 16:23:03 -0000 1.545 --- ChangeLog 6 Aug 2007 14:04:06 -0000 1.546 *************** *** 1,3 **** ! Development Updated pt_BR translation Add additional windows mime type --- 1,5 ---- ! 3.45 ! Fix gtk1 compile error ! Don't call g_main_* from thread Updated pt_BR translation Add additional windows mime type |
From: Kevin D. <kde...@us...> - 2007-08-06 14:04:11
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6807/Source Modified Files: plugin.cpp Log Message: Fix gtk1 compile error Don't call g_main_* from thread Index: plugin.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin.cpp,v retrieving revision 1.341 retrieving revision 1.342 diff -C2 -d -r1.341 -r1.342 *** plugin.cpp 7 Jun 2007 13:49:55 -0000 1.341 --- plugin.cpp 6 Aug 2007 14:04:07 -0000 1.342 *************** *** 1231,1238 **** #endif #ifdef GTK1_ENABLED ! if (window_x > 0 && total_height > 0) gtk_widget_set_usize(GTK_WIDGET(status), window_width - 20, window_height - 25); ! gtk_widget_set_usize(GTK_WIDGET(gtkwidget), window_width, window_height); #endif --- 1231,1239 ---- #endif #ifdef GTK1_ENABLED ! if (window_width > 20 && window_height > 25) gtk_widget_set_usize(GTK_WIDGET(status), window_width - 20, window_height - 25); ! if (window_width > 0 && window_height > 0) ! gtk_widget_set_usize(GTK_WIDGET(gtkwidget), window_width, window_height); #endif |
From: Kevin D. <kde...@us...> - 2007-08-01 16:50:16
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13720 Modified Files: install.sh uninstall.sh Log Message: don't call gtk_main_iteration from thread Index: uninstall.sh =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/uninstall.sh,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** uninstall.sh 7 Jun 2007 13:34:38 -0000 1.12 --- uninstall.sh 1 Aug 2007 16:50:10 -0000 1.13 *************** *** 1,4 **** #!/bin/bash ! MOZHOME=/usr/lib/firefox-2.0.0.4 echo "Cleaning up user plugins" --- 1,4 ---- #!/bin/bash ! MOZHOME=/usr/lib/firefox-2.0.0.5 echo "Cleaning up user plugins" Index: install.sh =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/install.sh,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** install.sh 7 Jun 2007 13:34:38 -0000 1.28 --- install.sh 1 Aug 2007 16:50:09 -0000 1.29 *************** *** 10,14 **** LOCALEDIR=${datadir}/locale DESTDIR=$1 ! MOZHOME=/usr/lib/firefox-2.0.0.4/plugins if [ "$DESTDIR" ]; then --- 10,14 ---- LOCALEDIR=${datadir}/locale DESTDIR=$1 ! MOZHOME=/usr/lib/firefox-2.0.0.5/plugins if [ "$DESTDIR" ]; then |
From: Kevin D. <kde...@us...> - 2007-08-01 16:50:16
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13720/Source Modified Files: plugin-threads.cpp Log Message: don't call gtk_main_iteration from thread Index: plugin-threads.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-threads.cpp,v retrieving revision 1.270 retrieving revision 1.271 diff -C2 -d -r1.270 -r1.271 *** plugin-threads.cpp 30 May 2007 14:00:13 -0000 1.270 --- plugin-threads.cpp 1 Aug 2007 16:50:11 -0000 1.271 *************** *** 405,410 **** gtk_widget_show(instance->drawing_area); gtk_widget_set_usize(instance->drawing_area, 1, 1); ! while (gtk_events_pending()) ! gtk_main_iteration(); } --- 405,410 ---- gtk_widget_show(instance->drawing_area); gtk_widget_set_usize(instance->drawing_area, 1, 1); ! // while (gtk_events_pending()) ! // gtk_main_iteration(); } *************** *** 2086,2091 **** #ifdef GTK_ENABLED ! while (gtk_events_pending()) ! gtk_main_iteration(); #endif --- 2086,2091 ---- #ifdef GTK_ENABLED ! // while (gtk_events_pending()) ! // gtk_main_iteration(); #endif |
From: Kevin D. <kde...@us...> - 2007-07-19 16:23:09
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3623 Modified Files: ChangeLog Log Message: Updated pt_BR translation Index: ChangeLog =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/ChangeLog,v retrieving revision 1.544 retrieving revision 1.545 diff -C2 -d -r1.544 -r1.545 *** ChangeLog 14 Jun 2007 03:24:48 -0000 1.544 --- ChangeLog 19 Jul 2007 16:23:03 -0000 1.545 *************** *** 1,3 **** --- 1,4 ---- Development + Updated pt_BR translation Add additional windows mime type Only update the buffering message once per second |