~cdparra/gelee/trunk

« back to all changes in this revision

Viewing changes to webui/lime/adapter/prototype/scriptaculous.js

  • Committer: parra
  • Date: 2010-03-15 15:56:56 UTC
  • Revision ID: svn-v4:ac5bba68-f036-4e09-846e-8f32731cc928:trunk/gelee:1448
merged gelee at svn

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Ext JS Library 1.0 Beta 1
 
3
 * Copyright(c) 2006-2007, Ext JS, LLC.
 
4
 * licensing@extjs.com
 
5
 * 
 
6
 * http://www.extjs.com/license
 
7
 */
 
8
 
 
9
// script.aculo.us scriptaculous.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
 
10
 
 
11
// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
 
12
// 
 
13
// Permission is hereby granted, free of charge, to any person obtaining
 
14
// a copy of this software and associated documentation files (the
 
15
// "Software"), to deal in the Software without restriction, including
 
16
// without limitation the rights to use, copy, modify, merge, publish,
 
17
// distribute, sublicense, and/or sell copies of the Software, and to
 
18
// permit persons to whom the Software is furnished to do so, subject to
 
19
// the following conditions:
 
20
// 
 
21
// The above copyright notice and this permission notice shall be
 
22
// included in all copies or substantial portions of the Software.
 
23
//
 
24
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
25
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
26
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
27
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
28
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
29
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
30
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
31
//
 
32
// For details, see the script.aculo.us web site: http://script.aculo.us/
 
33
 
 
34
var Scriptaculous = {
 
35
  Version: '1.7.0',
 
36
  require: function(libraryName) {
 
37
    // inserting via DOM fails in Safari 2.0, so brute force approach
 
38
    document.write('<script type="text/javascript" src="'+libraryName+'"></script>');
 
39
  },
 
40
  load: function() {
 
41
    if((typeof Prototype=='undefined') || 
 
42
       (typeof Element == 'undefined') || 
 
43
       (typeof Element.Methods=='undefined') ||
 
44
       parseFloat(Prototype.Version.split(".")[0] + "." +
 
45
                  Prototype.Version.split(".")[1]) < 1.5)
 
46
       throw("script.aculo.us requires the Prototype JavaScript framework >= 1.5.0");
 
47
    
 
48
    $A(document.getElementsByTagName("script")).findAll( function(s) {
 
49
      return (s.src && s.src.match(/scriptaculous\.js(\?.*)?$/))
 
50
    }).each( function(s) {
 
51
      var path = s.src.replace(/scriptaculous\.js(\?.*)?$/,'');
 
52
      var includes = s.src.match(/\?.*load=([a-z,]*)/);
 
53
      (includes ? includes[1] : 'builder,effects,dragdrop,controls,slider').split(',').each(
 
54
       function(include) { Scriptaculous.require(path+include+'.js') });
 
55
    });
 
56
  }
 
57
}
 
58
 
 
59
Scriptaculous.load();
 
 
b'\\ No newline at end of file'