Updated jquery-ui to 1.8.25
[mailer.git] / js / install-data.js
1 /**
2  * JavaScript for installation menu data
3  * --------------------------------------------------------------------
4  * $Revision::                                                        $
5  * $Date::                                                            $
6  * $Tag:: 0.2.1-FINAL                                                 $
7  * $Author::                                                          $
8  * --------------------------------------------------------------------
9  * Copyright (c) 2003 - 2009 by Roland Haeder
10  * Copyright (c) 2009 - 2012 by Mailer Developer Team
11  * For more information visit: http://mxchange.org
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
26  * MA  02110-1301  USA
27  */
28 // Init index->page translation array
29 var indexTranslation = new Array();
30
31 // Add all index->page translations:
32 indexTranslation[0] = 'welcome';
33 indexTranslation[1] = 'base_data';
34 indexTranslation[2] = 'database_config';
35 indexTranslation[3] = 'smtp_config';
36 indexTranslation[4] = 'other_config';
37 indexTranslation[5] = 'overview';
38 indexTranslation[6] = 'finish';
39
40 // 'next page' linking, key is current page, value is the next page
41 var nextPage = new Array();
42
43 // Add all 'next page' entries
44 nextPage['welcome']         = 'base_data';
45 nextPage['base_data']       = 'database_config';
46 nextPage['database_config'] = 'smtp_config';
47 nextPage['smtp_config']     = 'other_config';
48 nextPage['other_config']    = 'overview';
49 nextPage['overview']        = 'finish';
50
51 // 'previous page' linking, key is current page, value is the previous page
52 var previousPage = new Array();
53
54 // Add all 'previous page' entries
55 previousPage['base_data']       = 'welcome';
56 previousPage['database_config'] = 'base_data';
57 previousPage['smtp_config']     = 'database_config';
58 previousPage['other_config']    = 'smtp_config';
59 previousPage['overview']        = 'other_config';
60 previousPage['finish']          = 'overview';