Index: trunk/extensions/MetavidWiki/RELEASE |
— | — | @@ -1,3 +1,10 @@ |
| 2 | +version beta 02 |
| 3 | +changes in this release: |
| 4 | + |
| 5 | + |
| 6 | +mv_embed |
| 7 | + |
| 8 | + |
2 | 9 | version: beta 01 |
3 | 10 | First Release of the metavidWiki software (nothing too special just gziped the svn) |
4 | 11 | see http://metavid.ucsc.edu/wiki/index.php/MetaVidWiki_Features_Overview |
Index: trunk/extensions/MetavidWiki/includes/MV_GlobalFunctions.php |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | * Switch on Metavid MediaWiki. This function must be called in LocalSettings.php |
15 | 15 | * its separated out to allow for overwriting semantic wiki hooks and functions |
16 | 16 | * if semantic wiki is enabled for this wiki. |
17 | | - */ |
| 17 | + */ |
18 | 18 | |
19 | 19 | //pre setup setup |
20 | 20 | if ( !function_exists( 'extAddSpecialPage' ) ) { |
Index: trunk/extensions/MetavidWiki/includes/specials/MV_SpecialMVAdmin.php |
— | — | @@ -28,8 +28,6 @@ |
29 | 29 | */ |
30 | 30 | |
31 | 31 | |
32 | | - |
33 | | - |
34 | 32 | class MVAdmin extends SpecialPage { |
35 | 33 | |
36 | 34 | /** |
— | — | @@ -42,7 +40,7 @@ |
43 | 41 | } |
44 | 42 | |
45 | 43 | public function execute($par = null) { |
46 | | - global $IP; |
| 44 | + global $IP, $mvgIP; |
47 | 45 | require_once($IP . '/includes/SpecialPage.php' ); |
48 | 46 | require_once($IP . '/includes/Title.php' ); |
49 | 47 | |
Index: trunk/extensions/MetavidWiki/includes/MV_AutoCompleteCache.php |
— | — | @@ -11,5 +11,5 @@ |
12 | 12 | */ |
13 | 13 | //@@todo populate this stub (use to store auto-complete stuff for a bit) |
14 | 14 | class MV_AutoCompleteCache{ |
15 | | - } |
| 15 | + } |
16 | 16 | ?> |
Index: trunk/extensions/MetavidWiki/skins/mv_allpages.js |
— | — | @@ -3,7 +3,7 @@ |
4 | 4 | mv_addLoadEvent(mv_setup_allpage); |
5 | 5 | var mv_setup_allpage_flag=false; |
6 | 6 | var base_roe_url = wgServer + wgScript + '?title=Special:MvExportStream&feed_format=roe&stream_name='; |
7 | | -var gMvd={}; |
| 7 | +var gMvd={}; |
8 | 8 | function mv_setup_allpage(){ |
9 | 9 | js_log("mv embed done loading now setup 'all page'"); |
10 | 10 | //make sure we have jQuery and any base requried libs: |
Index: trunk/extensions/MetavidWiki/skins/mv_common.js |
— | — | @@ -17,9 +17,8 @@ |
18 | 18 | }}); |
19 | 19 | //add onchange js hooks: |
20 | 20 | $j('.mv_adj_hr').change(function(){ |
21 | | - //preserve track duration for nav and seq: |
22 | | - |
23 | | - //ie seems to crash so don't no interface updates for IE for the time being |
| 21 | + //preserve track duration for nav and seq: |
| 22 | + //ie seems to crash so no interface updates for IE for the time being |
24 | 23 | if(!$j.browser.msie){ |
25 | 24 | if(mvd_id=='nav'||mvd_id=='seq'){ |
26 | 25 | add_adjust_hooks(mvd_id, track_dur); |
Index: trunk/extensions/MetavidWiki/skins/mv_embed/mv_embed.js |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | * http://stevenlevithan.com/demo/parseuri/js/ |
16 | 16 | * |
17 | 17 | * config values you can manually set the location of the mv_embed folder here |
18 | | - * (in cases where media will be in a different place than the javascript) |
| 18 | + * (in cases where media will be hosted in a different place than the embbeding page) |
19 | 19 | * |
20 | 20 | */ |
21 | 21 | var mv_embed_path = null; |
— | — | @@ -1956,13 +1956,13 @@ |
1957 | 1957 | * IE and non-firebug debug: |
1958 | 1958 | */ |
1959 | 1959 | var log_elm = document.getElementById('mv_js_log'); |
1960 | | - if(!log_elm){ |
| 1960 | + /*if(!log_elm){ |
1961 | 1961 | document.write('<div style="position:absolute;z-index:50;top:0px;left:0px;right:0px;height:150px;"><textarea id="mv_js_log" cols="80" rows="6"></textarea></div>'); |
1962 | 1962 | var log_elm = document.getElementById('mv_js_log'); |
1963 | 1963 | } |
1964 | 1964 | if(log_elm){ |
1965 | 1965 | log_elm.value+=string+"\n"; |
1966 | | - } |
| 1966 | + }*/ |
1967 | 1967 | } |
1968 | 1968 | } |
1969 | 1969 | //} |
Index: trunk/extensions/MetavidWiki/MV_CongressDynamicData.php |
— | — | @@ -9,9 +9,9 @@ |
10 | 10 | * @email dale@ucsc.edu |
11 | 11 | * @url http://metavid.ucsc.edu |
12 | 12 | * |
13 | | - * This extention has a few hooks for embeding dynamic congress related widges and content |
| 13 | + * This extension has a few hooks for embedding dynamic congress related widges and content |
14 | 14 | * its a normal stand alone extension |
15 | | - * its envoked with #cdd:type:key: |
| 15 | + * its invoked with #cdd:type:key: |
16 | 16 | * for example {{#cdd:bill_status:govtrack_bill_id}} //will pull up the status for bill_id from govtrack |
17 | 17 | */ |
18 | 18 | if ( !defined( 'MEDIAWIKI' ) ) die( 1 ); |
Index: trunk/extensions/MetavidWiki/README |
— | — | @@ -22,7 +22,7 @@ |
23 | 23 | |
24 | 24 | The Search functionality is extended to do basic metadata queries and |
25 | 25 | return media results. (ie a category query can return all mvd chunks |
26 | | -in a given category range). |
| 26 | +in a given category range). Search results export to rss video feeds. |
27 | 27 | |
28 | 28 | Categories are extended to include streams, video segments and sequences. |
29 | 29 | Categories are also extended to support rss video feed export. |
— | — | @@ -38,6 +38,7 @@ |
39 | 39 | * MediaWiki: MetaVid is an extension to MediaWiki (we run off the svn but should work with anything > 1.10 or so.) |
40 | 40 | * SemanticMediaWiki: you can get semantic wiki from http://semantic-mediawiki.org/ we use 1.0.1 release |
41 | 41 | * mod_annodex: you will need a server side ogg segment server we use mod_annodex you can get that at annodex.net |
| 42 | +alternatively you could use oggz-chop instead of mod_annodex |
42 | 43 | |
43 | 44 | |
44 | 45 | ==Install:== |