author | Giulio Cesare Solaroli <giulio.cesare@solaroli.it> | 2011-10-03 16:04:12 (UTC) |
---|---|---|
committer | Giulio Cesare Solaroli <giulio.cesare@solaroli.it> | 2011-10-03 16:04:12 (UTC) |
commit | 541bb378ddece2eab135a8066a16994e94436dea (patch) (unidiff) | |
tree | ff160ea3e26f7fe07fcfd401387c5a0232ca715e /frontend/gamma/js/main.js | |
parent | 1bf431fd3d45cbdf4afa3e12afefe5d24f4d3bc7 (diff) | |
parent | ecad5e895831337216544e81f1a467e0c68c4a6a (diff) | |
download | clipperz-541bb378ddece2eab135a8066a16994e94436dea.zip clipperz-541bb378ddece2eab135a8066a16994e94436dea.tar.gz clipperz-541bb378ddece2eab135a8066a16994e94436dea.tar.bz2 |
Merge pull request #1 from gcsolaroli/master
First version of the restructured repository
-rw-r--r-- | frontend/gamma/js/main.js | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/frontend/gamma/js/main.js b/frontend/gamma/js/main.js new file mode 100644 index 0000000..abb178f --- a/dev/null +++ b/frontend/gamma/js/main.js | |||
@@ -0,0 +1,109 @@ | |||
1 | /* | ||
2 | |||
3 | Copyright 2008-2011 Clipperz Srl | ||
4 | |||
5 | This file is part of Clipperz's Javascript Crypto Library. | ||
6 | Javascript Crypto Library provides web developers with an extensive | ||
7 | and efficient set of cryptographic functions. The library aims to | ||
8 | obtain maximum execution speed while preserving modularity and | ||
9 | reusability. | ||
10 | For further information about its features and functionalities please | ||
11 | refer to http://www.clipperz.com | ||
12 | |||
13 | * Javascript Crypto Library is free software: you can redistribute | ||
14 | it and/or modify it under the terms of the GNU Affero General Public | ||
15 | License as published by the Free Software Foundation, either version | ||
16 | 3 of the License, or (at your option) any later version. | ||
17 | |||
18 | * Javascript Crypto Library is distributed in the hope that it will | ||
19 | be useful, but WITHOUT ANY WARRANTY; without even the implied | ||
20 | warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
21 | See the GNU Affero General Public License for more details. | ||
22 | |||
23 | * You should have received a copy of the GNU Affero General Public | ||
24 | License along with Javascript Crypto Library. If not, see | ||
25 | <http://www.gnu.org/licenses/>. | ||
26 | |||
27 | */ | ||
28 | |||
29 | function _pm_logEvent(anEvent) { | ||
30 | //console.log("####", anEvent); | ||
31 | |||
32 | anEvent.preventDefault(); | ||
33 | } | ||
34 | |||
35 | function handleGenericDeferredError(anError) { | ||
36 | var result; | ||
37 | |||
38 | if (anError instanceof MochiKit.Async.CancelledError) { | ||
39 | result = anError; | ||
40 | } else { | ||
41 | MochiKit.Logging.logError("## MainController - GENERIC ERROR" + "\n" + "==>> " + anError + " <<==\n" + anError.stack); | ||
42 | //console.log(anError); | ||
43 | result = new MochiKit.Async.CancelledError(anError); | ||
44 | } | ||
45 | |||
46 | return result; | ||
47 | } | ||
48 | |||
49 | |||
50 | Clipperz.PM.RunTime = {}; | ||
51 | |||
52 | |||
53 | function run() { | ||
54 | var shouldShowRegistrationForm; | ||
55 | var useCompactDesign; | ||
56 | var controllerParameters; | ||
57 | //var iPhoneDesign; | ||
58 | |||
59 | //MochiKit.Signal.connect(document.body, 'onkeydown', _pm_logEvent); | ||
60 | //MochiKit.Signal.connect(document.body, 'onkeypress', _pm_logEvent); | ||
61 | //MochiKit.Signal.connect(document.body, 'onclick', _pm_logEvent); | ||
62 | |||
63 | controllerParameters = {}; | ||
64 | |||
65 | MochiKit.DOM.removeElement('javaScriptAlert'); | ||
66 | Clipperz.PM.Strings.Languages.initSetup(); | ||
67 | |||
68 | if (window.location.search.indexOf('registration') != -1) { | ||
69 | shouldShowRegistrationForm = true; | ||
70 | } else { | ||
71 | shouldShowRegistrationForm = false; | ||
72 | } | ||
73 | |||
74 | if (window.location.search.indexOf('autocomplete') != -1) { | ||
75 | controllerParameters['autocomplete'] = 'on' | ||
76 | } | ||
77 | |||
78 | //if ((window.location.search.indexOf('iPhone') != -1) || (navigator.userAgent.match('iPhone'))) { | ||
79 | // iPhoneDesign = true; | ||
80 | //} else { | ||
81 | // iPhoneDesign = false; | ||
82 | //} | ||
83 | |||
84 | if (window.location.search.indexOf('compact') != -1) { | ||
85 | useCompactDesign = true; | ||
86 | } else { | ||
87 | useCompactDesign = false; | ||
88 | } | ||
89 | |||
90 | if (useCompactDesign == true) { | ||
91 | Clipperz.PM.RunTime.mainController = new Clipperz.PM.UI.Compact.Controllers.MainController(controllerParameters); | ||
92 | //} else if (iPhoneDesign == true) { | ||
93 | // Clipperz.PM.RunTime.mainController = new Clipperz.PM.UI.iPhone.Controllers.MainController(); | ||
94 | } else { | ||
95 | Clipperz.PM.RunTime.mainController = new Clipperz.PM.UI.Web.Controllers.MainController(controllerParameters); | ||
96 | } | ||
97 | |||
98 | Clipperz.PM.RunTime.mainController.run(shouldShowRegistrationForm); | ||
99 | |||
100 | //Clipperz.log("HASH: " + window.location.hash); | ||
101 | if (window.location.hash != "") { | ||
102 | window.location.hash = "" | ||
103 | } | ||
104 | //Clipperz.log("HASH cleaned"); | ||
105 | //#credentials=base64encoded({username:'joe', passphrase:'clipperz'}) | ||
106 | //MochiKit.Signal.signal(Clipperz.Signal.NotificationCenter, 'doLogin', {username:'joe', passphrase:'clipperz'}); | ||
107 | } | ||
108 | |||
109 | MochiKit.DOM.addLoadEvent(run); | ||