--- /dev/null
+Copyright (c) 2005-2009, Alkaloid Networks LLC
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ * Neither the name of the Alkaloid Networks LLC nor the names of its
+ contributors may be used to endorse or promote products derived from this
+ software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
<?xml version="1.0"?>
-<!-- $Id$ -->
+<!--
+ * conf.xml defines the configuration parameters for Shout.
+ *
+ * Copyright 2005-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
+ *
+ * See the enclosed file COPYING for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
+ *
+ * @author Ben Klang <ben@alkaloid.net>
+ * @since Shout 0.1
+ * @package Shout
+-->
<configuration>
<configtab name="storage" desc="Storage">
<configsection name="storage">
<?php
/**
- * Copyright 2009 Ben Klang <ben@alkaloid.net>
+ * Copyright 2009-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
*
- * See the enclosed file COPYING for license information (GPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
+ * See the enclosed file COPYING for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
+ *
+ * @author Ben Klang <ben@alkaloid.net>
*/
@define('SHOUT_BASE', dirname(__FILE__));
require_once SHOUT_BASE . '/lib/base.php';
<?php
/**
- * $Id$
+ * Copyright 2005-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
*
- * Copyright 2005-2009 Ben Klang <ben@alkaloid.net>
+ * See the enclosed file COPYING for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
*
- * See the enclosed file COPYING for license information (GPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
+ * @author Ben Klang <ben@alkaloid.net>
*/
@define('SHOUT_BASE', dirname(__FILE__));
require_once SHOUT_BASE . '/lib/base.php';
<?php
/**
- * $Id$
+ * Copyright 2005-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
*
- * Copyright 2005-2006 Ben Klang <ben@alkaloid.net>
+ * See the enclosed file COPYING for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
*
- * See the enclosed file COPYING for license information (GPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
- *
- * @package shout
+ * @author Ben Klang <ben@alkaloid.net>
*/
-
@define('SHOUT_BASE', dirname(__FILE__));
$shout_configured = (is_readable(SHOUT_BASE . '/config/conf.php'));
<?php
/**
- * Vilma application interface.
+ * Shout application interface.
*
- * This file defines Vilma's application interface.
+ * This file defines Shout's application interface.
*
- * Copyright 2006-2010 Alkaloid Networks <http://www.alkaloid.net/>
+ * Copyright 2006-2010 Alkaloid Networks (http://projects.alkaloid.net/)
*
* See the enclosed file LICENSE for license information (BSD). If you did not
- * did not receive this file, see http://cvs.horde.org/co.php/vilma/LICENSE.
- *
- * See the enclosed file COPYING for license information (GPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
- *
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.html.
+ *
* @author Ben Klang <ben@alkaloid.net>
- * @package Vilma
+ * @package Shout
*/
define('SHOUT_BASE', dirname(__FILE__) . '/..');
/**
* Shout_Driver:: defines an API for implementing storage backends for Shout.
*
- * $Id$
+ * Copyright 2005-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
*
- * Copyright 2005-2009 Ben Klang <ben@alkaloid.net>
- *
- * See the enclosed file COPYING for license information (GPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
+ * See the enclosed file COPYING for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
*
* @author Ben Klang <ben@alkaloid.net>
- * @version $Revision: 76 $
* @since Shout 0.1
* @package Shout
*/
<?php
+/**
+ * Provides the LDAP backend driver for the Shout application.
+ *
+ * Copyright 2005-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
+ *
+ * See the enclosed file COPYING for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
+ *
+ * @author Ben Klang <ben@alkaloid.net>
+ * @since Shout 0.1
+ * @package Shout
+ */
class Shout_Driver_Ldap extends Shout_Driver
{
<?php
+/**
+ * Provides the SQL backend driver for the Shout application.
+ *
+ * Copyright 2009-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
+ *
+ * See the enclosed file COPYING for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
+ *
+ * @author Ben Klang <ben@alkaloid.net>
+ * @since Shout 0.1
+ * @package Shout
+ */
+
class Shout_Driver_Sql extends Shout_Driver
{
/**
* $Id: ExtensionForm.php 502 2009-12-21 04:01:12Z bklang $
*
- * Copyright 2005-2009 Ben Klang <ben@alkaloid.net>
+ * Copyright 2005-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
*
- * See the enclosed file LICENSE for license information (GPL). If you
- * did not receive this file, see http://www.horde.org/licenses/gpl.php.
+ * See the enclosed file LICENSE for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
*
* @package Shout
*/
/**
* $Id$
*
- * Copyright 2005-2009 Ben Klang <ben@alkaloid.net>
+ * Copyright 2005-2009 Alkaloid Networks LLC (http://projects.alkaloid.net)
*
- * See the enclosed file LICENSE for license information (GPL). If you
- * did not receive this file, see http://www.horde.org/licenses/gpl.php.
+ * See the enclosed file LICENSE for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
*
+ * @author Ben Klang <ben@alkaloid.net>
* @package Shout
*/
<?php
/**
- * Shout:: defines an set of classes for the Shout application.
+ * Shout:: defines an set of utility methods for the Shout application.
*
- * $Id$
+ * Copyright 2005-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
*
- * Copyright 2005 Ben Klang <ben@alkaloid.net>
- *
- * See the enclosed file COPYING for license information (GPL). If you
- * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
+ * See the enclosed file COPYING for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
*
* @author Ben Klang <ben@alkaloid.net>
- * @version $Revision: 94 $
* @since Shout 0.1
* @package Shout
*/
-
class Shout
{
var $applist = array();
/**
* Shout base inclusion file.
*
- * $Id$
+ * Copyright 2005-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
*
- * This file brings in all of the dependencies that every Shout
- * script will need and sets up objects that all scripts use.
+ * See the enclosed file COPYING for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
+ *
+ * @author Ben Klang <ben@alkaloid.net>
+ * @since Shout 0.1
+ * @package Shout
*/
if (!defined('SHOUT_BASE')) {
+/**
+ * screen.css defines the styles needed by Shout.
+ *
+ * Copyright 2005-2010 Alkaloid Networks LLC (http://projects.alkaloid.net)
+ *
+ * See the enclosed file COPYING for license information (BSD). If you
+ * did not receive this file, see
+ * http://www.opensource.org/licenses/bsd-license.php.
+ *
+ * @author Ben Klang <ben@alkaloid.net>
+ * @since Shout 0.1
+ * @package Shout
+ */
+
+
+
table {
width: 100%;
}
left: 24px;
}
+a.addDest
+{
+ font-style: italic;
+}
+
#extensionDetail {
left: 200px;
position: absolute;