OLD | NEW |
1 /* | 1 /* |
2 This file is part of the Juju GUI, which lets users view and manage Juju | 2 This file is part of the Juju GUI, which lets users view and manage Juju |
3 environments within a graphical interface (https://launchpad.net/juju-gui). | 3 environments within a graphical interface (https://launchpad.net/juju-gui). |
4 Copyright (C) 2012-2013 Canonical Ltd. | 4 Copyright (C) 2012-2013 Canonical Ltd. |
5 | 5 |
6 This program is free software: you can redistribute it and/or modify it under | 6 This program is free software: you can redistribute it and/or modify it under |
7 the terms of the GNU Affero General Public License version 3, as published by | 7 the terms of the GNU Affero General Public License version 3, as published by |
8 the Free Software Foundation. | 8 the Free Software Foundation. |
9 | 9 |
10 This program is distributed in the hope that it will be useful, but WITHOUT | 10 This program is distributed in the hope that it will be useful, but WITHOUT |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 // When in sandbox mode should we create events to simulate a live env. | 46 // When in sandbox mode should we create events to simulate a live env. |
47 // You can also use the :flags:/simulateEvents feature flag. | 47 // You can also use the :flags:/simulateEvents feature flag. |
48 simulateEvents: false, | 48 simulateEvents: false, |
49 readOnly: false, | 49 readOnly: false, |
50 // Enable Google Analytics usage and calls. Also implies using cookies. | 50 // Enable Google Analytics usage and calls. Also implies using cookies. |
51 // XXX: BradCrittenden 2013-06-10 bug=1189502: set to 'true' by default | 51 // XXX: BradCrittenden 2013-06-10 bug=1189502: set to 'true' by default |
52 // only after this bug is resolved, exposing the setting in the charm. | 52 // only after this bug is resolved, exposing the setting in the charm. |
53 useAnalytics: false, | 53 useAnalytics: false, |
54 login_help: ( | 54 login_help: ( |
55 'The password is the admin-secret from the Juju environment. This can ' + | 55 'The password is the admin-secret from the Juju environment. This can ' + |
56 'often be found by looking in ~/.juju/environments.yaml.') | 56 'often be found by looking in ~/.juju/environments.yaml.'), |
| 57 isJujucharms: false, |
| 58 defaultViewmode: 'sidebar' |
57 }; | 59 }; |
OLD | NEW |