simple interface ready: index page which lists all video assets and watch page to...
[living-lab-site.git] / application / config / p2p-tube.php
1 <?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2
3 // P2P-Tube specific configuration files
4
5 /*
6 |--------------------------------------------------------------------------
7 | Site Name
8 |--------------------------------------------------------------------------
9 |
10 | Sets the name of the site. It can be used for example in pages title.
11 |
12 */
13 $config['site_name'] = 'P2P-Next UPB LivingLab';
14
15 /*
16 |--------------------------------------------------------------------------
17 | Default Stylesheet
18 |--------------------------------------------------------------------------
19 |
20 | Sets the default CSS that is going to be automatically added on any HTML
21 | page generated with 'application/views/html_begin.php' view and
22 | HTML_head_params library.
23 |
24 | Do not include any path to the file! 'stylesheets/' is going to be used.
25 |
26 | Leave blank for no default stylesheet.
27 |
28 */
29 $config['default_stylesheet'] = 'default.css';
30
31 /*
32 |--------------------------------------------------------------------------
33 | Default Javascript
34 |--------------------------------------------------------------------------
35 |
36 | Sets the default Javascript that is going to be automatically added in any
37 | HTML page generated with 'application/views/html_begin.php' view and
38 | HTML_head_params library.
39 |
40 | Do not include any path to the file! 'javascripts/' is going to be used.
41 |
42 | Leave blank for no default javascript.
43 |
44 */
45 $config['default_javascript'] = '';
46
47 /*
48 |--------------------------------------------------------------------------
49 | Default Video File Extension
50 |--------------------------------------------------------------------------
51 |
52 | Sets the default video file extension, which must be set without '.' prefix. 
53 | This extension is going to be added to the `name` field from the DB in
54 | order to deduce the video file name if not stated otherwise. Possible values:
55 |
56 |       ogv
57 |       ogg
58 |
59 */
60 $config['default_video_ext'] = 'ogg';   // TODO: Change to 'ogv'!
61
62 /*
63 |--------------------------------------------------------------------------
64 | Default Torrent File Extension
65 |--------------------------------------------------------------------------
66 |
67 | Sets the default torrent file extension, which must be set without '.' prefix. 
68 | This extension is going to be added to the video file name in order to deduce
69 | the torrent file name if not stated otherwise. Possible values:
70 |
71 |       tstream
72 |       torrent
73 |
74 */
75 $config['default_torrent_ext'] = 'tstream';
76