| 1 | 601 | doc | <?php
 | 
      
        | 2 |  |  | 
 | 
      
        | 3 |  |  | // $Id$
 | 
      
        | 4 |  |  | 
 | 
      
        | 5 |  |  | // JsAdmin module for Website Baker
 | 
      
        | 6 |  |  | // Copyright (C) 2006, Stepan Riha
 | 
      
        | 7 |  |  | // www.nonplus.net
 | 
      
        | 8 |  |  | 
 | 
      
        | 9 |  |  | /*
 | 
      
        | 10 |  |  | Javascript Admin for Website Baker
 | 
      
        | 11 |  |  | 
 | 
      
        | 12 |  |  | Software License Agreement (BSD License)
 | 
      
        | 13 |  |  | 
 | 
      
        | 14 |  |  | Copyright (c) 2006, Stepan Riha.
 | 
      
        | 15 |  |  | All rights reserved.
 | 
      
        | 16 |  |  | 
 | 
      
        | 17 |  |  | Portions of this software are Copyright Yahoo! Inc.
 | 
      
        | 18 |  |  | 
 | 
      
        | 19 |  |  | Redistribution and use of this software in source and binary forms, with
 | 
      
        | 20 |  |  | or without modification, are permitted provided that the following
 | 
      
        | 21 |  |  | conditions are met:
 | 
      
        | 22 |  |  | 
 | 
      
        | 23 |  |  | * Redistributions of source code must retain the above
 | 
      
        | 24 |  |  |   copyright notice, this list of conditions and the
 | 
      
        | 25 |  |  |   following disclaimer.
 | 
      
        | 26 |  |  | 
 | 
      
        | 27 |  |  | * Redistributions in binary form must reproduce the above
 | 
      
        | 28 |  |  |   copyright notice, this list of conditions and the
 | 
      
        | 29 |  |  |   following disclaimer in the documentation and/or other
 | 
      
        | 30 |  |  |   materials provided with the distribution.
 | 
      
        | 31 |  |  | 
 | 
      
        | 32 |  |  | * Neither the name of Stepan Riha may be used to endorse or
 | 
      
        | 33 |  |  |   promote products derived from this software without specific prior
 | 
      
        | 34 |  |  |   written permission of Stepan Riha.
 | 
      
        | 35 |  |  | 
 | 
      
        | 36 |  |  | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
 | 
      
        | 37 |  |  | IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 | 
      
        | 38 |  |  | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
 | 
      
        | 39 |  |  | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
 | 
      
        | 40 |  |  | OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 | 
      
        | 41 |  |  | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 | 
      
        | 42 |  |  | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 | 
      
        | 43 |  |  | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 | 
      
        | 44 |  |  | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 | 
      
        | 45 |  |  | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 | 
      
        | 46 |  |  | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 | 
      
        | 47 |  |  | */
 | 
      
        | 48 |  |  | 
 | 
      
        | 49 |  |  | /*
 | 
      
        | 50 |  |  |  -----------------------------------------------------------------------------------------------------------
 | 
      
        | 51 |  |  |   Javascript Admin module for Website Baker v2.7
 | 
      
        | 52 |  |  |   Copyright (C) 2006, Stepan Riha
 | 
      
        | 53 |  |  |   Adapted for Website Baker 2.7 by Swen Uth
 | 
      
        | 54 |  |  |  -----------------------------------------------------------------------------------------------------------
 | 
      
        | 55 |  |  | 	v1.2 (swen, Swen Uth; Jan 24, 2008)
 | 
      
        | 56 |  |  | 		+ updated YUI framework to version 2.4.1
 | 
      
        | 57 |  |  |    	+ adapted module to work with Website Baker 2.7
 | 
      
        | 58 |  |  |    	+ added multilingual support and support of the module.css and module.js files
 | 
      
        | 59 |  |  | 
 | 
      
        | 60 |  |  | 	v1.0.2 (nonplus, Stepan Riha; May 5, 2006
 | 
      
        | 61 |  |  | 		initial release by Stepan Riha (all rights reserved)
 | 
      
        | 62 |  |  |  -----------------------------------------------------------------------------------------------------------
 | 
      
        | 63 |  |  | */
 | 
      
        | 64 |  |  | 
 | 
      
        | 65 |  |  | $module_directory 		= 'jsadmin';
 | 
      
        | 66 |  |  | $module_name 				= 'Javascript Admin';
 | 
      
        | 67 |  |  | $module_function 			= 'tool';
 | 
      
        | 68 |  |  | $module_version 			= '1.2';
 | 
      
        | 69 |  |  | $module_platform 			= '2.7';
 | 
      
        | 70 |  |  | $module_author 			= 'Stepan Riha, Swen Uth';
 | 
      
        | 71 |  |  | $module_license 			= 'BSD License';
 | 
      
        | 72 |  |  | $module_description 		= 'This module adds Javascript functionality to the Website Baker Admin to improve some of the UI interactions. Uses the YahooUI library.';
 | 
      
        | 73 |  |  | 
 | 
      
        | 74 |  |  | ?>
 |