Index: trunk/extensions/MetavidWiki/includes/MV_EditStreamPage.php |
— | — | @@ -174,6 +174,8 @@ |
175 | 175 | $html .= '<option value="url_anx"' . $sel . '>' . wfMsg( 'mv_path_type_url_anx' ) . '</option>' . |
176 | 176 | $sel = ( $sf['path_type'] == 'wiki_title' ) ? ' selected':''; |
177 | 177 | $html .= '<option value="wiki_title"' . $sel . '>' . wfMsg( 'mv_path_type_wiki_title' ) . '</option>' . |
| 178 | + $sel = ( $sf['path_type'] == 'url_file' ) ? ' selected':''; |
| 179 | + $html .= '<option value="url_file"' . $sel . '>' . wfMsg( 'mv_path_type_url_file' ) . '</option>' . |
178 | 180 | '</select></td>'; |
179 | 181 | $html .= '<td><input type="text" name="sf_' . htmlspecialchars( $sf['id'] ) . '[path]" value="' . htmlspecialchars( $sf['path'] ) . '" maxlength="250" size="50" />' . |
180 | 182 | '<input type="hidden" name="sf_' . htmlspecialchars( $sf['id'] ) . '[stream_id]" value="' . htmlspecialchars( $sf['stream_id'] ) . '">' . |
Index: trunk/extensions/MetavidWiki/languages/MV_Messages.php |
— | — | @@ -49,6 +49,7 @@ |
50 | 50 | 'mv_edit_stream_files' => 'Edit stream files', |
51 | 51 | 'mv_path_type_url_anx' => 'full media url', |
52 | 52 | 'mv_path_type_wiki_title' => 'wiki media title', |
| 53 | + 'mv_path_type_url_file' => 'full media url using local seek', |
53 | 54 | 'mv_path_type_label' => 'path type', |
54 | 55 | 'mv_base_offset_label' => 'base offset', |
55 | 56 | 'mv_duration_label' => 'Duration', |