cis notified web server of a job completion; upload form interface and validation...
[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 | Autoload Stylesheets
18 |--------------------------------------------------------------------------
19 |
20 | Sets the default CSSs that are 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! 'css/' is going to be used.
25 |
26 | Use "array()" for no default stylesheet.
27 |
28 */
29 $config['autoload_css'] = array('default.css',
30                                                                 'jquery-ui.css');
31
32 /*
33 |--------------------------------------------------------------------------
34 | Autoload Javascript
35 |--------------------------------------------------------------------------
36 |
37 | Sets the default Javascripts that are going to be automatically added in any
38 | HTML page generated with 'application/views/html_begin.php' view and
39 | HTML_head_params library.
40 |
41 | Do not include any path to the file! 'js/' is going to be used.
42 |
43 | Use "array()" for no default javascript.
44 |
45 */
46 $config['autoload_js'] = array('jquery.js',
47                                                                 'jquery-ui.js',
48                                                                 'jquery.ui.nsinstall.js');
49
50 /*
51 |--------------------------------------------------------------------------
52 | Default Video File Extension (OBSOLETE)
53 |--------------------------------------------------------------------------
54 |
55 | Sets the default video file extension, which must be set without '.' prefix. 
56 | This extension is going to be added to the `name` field from the DB in
57 | order to deduce the video file name if not stated otherwise in the format.
58 | Possible values:
59 |
60 |       ogv
61 |       ogg
62 |
63 */
64 $config['default_video_ext'] = 'ogv';
65
66 /*
67 |--------------------------------------------------------------------------
68 | Default Torrent File Extension
69 |--------------------------------------------------------------------------
70 |
71 | Sets the default torrent file extension, which must be set without '.' prefix. 
72 | This extension is going to be added to the video file name in order to deduce
73 | the torrent file name if not stated otherwise. Possible values:
74 |
75 |       tstream
76 |       torrent
77 |
78 */
79 $config['default_torrent_ext'] = 'tstream';
80
81 /*
82 |--------------------------------------------------------------------------
83 | Categories
84 |--------------------------------------------------------------------------
85 |
86 | An associative list with the video categories of the site. IDs are used
87 | in DB (for example in `videos` table), and values are string identifiers
88 | for categories. Category names localization can be made by concatenating
89 | 'ui_categ_' with the value in order to obtain a language key.
90 | IDs must be numeric and must preferably start from 1.
91 |
92 */
93 $config['categories'] = array(1 => 'movies', 2 => 'tech-talks', 3 => 'events', 4 => 'karaoke');
94
95 /*
96 |--------------------------------------------------------------------------
97 | Videos per Page
98 |--------------------------------------------------------------------------
99 |
100 | The number of video icons shown per page (as in catalog/category).
101 |
102 */
103 $config['videos_per_page'] = 20;
104
105 /*
106 |--------------------------------------------------------------------------
107 | Videos per Row
108 |--------------------------------------------------------------------------
109 |
110 | The number of video icons shown on a single line (as in home page).
111 |
112 */
113 $config['videos_per_row'] = 5;
114
115 /*
116 |--------------------------------------------------------------------------
117 | Search Results per Page
118 |--------------------------------------------------------------------------
119 |
120 | The number of search results shown per page (as in catalog/search).
121 |
122 */
123 $config['search_results_per_page'] = 20;
124
125 /*
126 |--------------------------------------------------------------------------
127 | Video Comments per Page
128 |--------------------------------------------------------------------------
129 |
130 | The number of video comments shown per page (as in video/watch).
131 |
132 */
133 $config['video_comments_per_page'] = 20;
134
135 /*
136 |--------------------------------------------------------------------------
137 | A list with all available languages in which the site is translated
138 |--------------------------------------------------------------------------
139 |
140 | Keys are language codes and values are language names as they appear in
141 | languages folder.
142 |
143 */
144 $config['available_languages_list'] = array(
145         'en'=>'english',
146         'ro'=>'romanian'
147 );
148
149 /*
150 |--------------------------------------------------------------------------
151 | No-Reply E-mail address
152 |--------------------------------------------------------------------------
153 |
154 | The e-mail address from which the users receive e-mail notifications
155 | like account activation e-mail or password recovery.
156 |
157 */
158 $config['noreply_email'] = 'no-reply@p2p-next.cs.pub.ro';