Assistance
----------
-If you encounter problems with Agora, help is available!
+If you encounter problems with Agora, help is available!
The Horde Frequently Asked Questions List (FAQ), available on the Web
at
-
+
http://www.horde.org/faq/
The Horde Project runs a number of mailing lists, for individual
Thanks,
The Agora team
-
-$Horde: agora/README,v 1.2 2007/04/22 04:51:51 chuck Exp $
*
* Copyright 2006-2010 The Horde Project (http://www.horde.org/)
*
- * $Horde: agora/ban.php,v 1.15 2009-12-01 12:52:38 jan Exp $
- *
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*/
<?xml version="1.0"?>
-<!-- $Horde: agora/config/conf.xml,v 1.21 2006/12/28 18:03:57 duck Exp $ -->
+<!-- $Id$ -->
<configuration>
<configsection name="forums">
a thread (settable in preferences) has been reached the thread will be marked
as HOT.">true</configboolean>
<configheader>Thread Settings</configheader>
- <configboolean name="split" desc="Store messages in scope dedicated tables.
+ <configboolean name="split" desc="Store messages in scope dedicated tables.
NOTE that for this you must create a table named agora_messages_SCOPE,
for every scope you would use.">false</configboolean>
</configsection>
<?php
/**
- * $Horde: agora/config/menu.php.dist,v 1.3 2004/11/06 18:47:14 jan Exp $
- *
* This file lets you extend Agora's menu with your own items.
*
* To add a new menu item, simply add a new entry to the $_menu array.
*
* Here's an example entry:
*
- * $_menu[] = array(
+ * $_menu[] = array(
* 'url' => 'http://www.example.com/',
* 'text' => 'Example, Inc.',
* 'icon' => 'example.png',
* 'separator'. It should look like this:
*
* $_menu[] = 'separator';
+ *
+ * $Id$
*/
$_menu = array();
<?php
/**
- * $Horde: agora/config/prefs.php.dist,v 1.33 2008/02/14 16:25:40 jan Exp $
- *
* See horde/config/prefs.php for documentation on the structure of this file.
+ *
+ * $Id$
*/
if ($GLOBALS['conf']['avatar']['allow_avatars']) {
'type' => 'enum',
'enum' => array(5 => 5, 10 => 10, 15 => 15, 20 => 20, 25 => 25),
'desc' => _("Number of messages to display on each page")
-);
\ No newline at end of file
+);
/**
* The Agora script to delete a forum.
*
- * $Horde: agora/deleteforum.php,v 1.49 2009-12-01 12:52:38 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
-======================
- Installing Agora 0.1
-======================
+==================
+ Installing Agora
+==================
-:Last update: $Date: 2007/06/19 09:56:35 $
-:Revision: $Revision: 1.15 $
-:Contact: dev@lists.horde.org
+:Contact: dev@lists.horde.org
.. contents:: Contents
.. section-numbering::
Agora Development TODO List
=============================
-:Last update: $Date: 2007/12/17 11:49:15 $
-:Revision: $Revision: 1.20 $
-:Contact: dev@lists.horde.org
+:Contact: dev@lists.horde.org
- Add per-forum custom templates.
- Reduce number of loops in for thread display
-- AJAX reply submission
\ No newline at end of file
+- AJAX reply submission
/**
* The Agora script to create or edit a forum.
*
- * $Horde: agora/editforum.php,v 1.58 2009/07/08 18:28:38 slusarz Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* The Agora script to display a list of forums.
*
- * $Horde: agora/forums.php,v 1.71 2009-12-10 17:42:30 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?php
-/**
- * $Horde: agora/index.php,v 1.13 2008/01/05 11:37:12 duck Exp $
- */
require dirname(__FILE__) . '/forums.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.
*
- * $Horde: agora/lib/Agora.php,v 1.121 2009-12-01 12:52:38 jan Exp $
- *
* @author Marko Djukic <marko@oblo.com>
* @package Agora
*/
* This file defines Agora's external API interface. Other
* applications can interact with Agora through this API.
*
- * $Horde: agora/lib/Api.php,v 1.4 2009-12-01 12:52:38 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
return require AGORA_BASE . '/moderate.php';
}
-}
\ No newline at end of file
+}
* This file defines Agora's external API interface. Other
* applications can interact with Agora through this API.
*
- * $Horde: agora/lib/Application.php,v 1.2 2009/09/29 13:53:27 duck Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* This file provides a list of Agora forums through the Horde_Blocks, by
* extending the Horde_Blocks class.
*
- * $Horde: agora/lib/Block/forums.php,v 1.47 2009/07/08 18:28:39 slusarz Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
return $view->render('block/forums.html.php');
}
-}
\ No newline at end of file
+}
* This file provides an api to include an Agora forum's thread into any other
* Horde app through the Horde_Blocks, by extending the Horde_Blocks class.
*
- * $Horde: agora/lib/Block/thread.php,v 1.37 2009/01/06 17:48:46 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
return $view->render('block/thread.html.php');
}
-}
\ No newline at end of file
+}
* This file provides an api to include an Agora forum's thread into any other
* Horde app through the Horde_Blocks, by extending the Horde_Blocks class.
*
- * $Horde: agora/lib/Block/threads.php,v 1.74 2009/07/08 18:28:39 slusarz Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
return $view->render('block/threads.html.php');
}
-}
\ No newline at end of file
+}
/**
* Comments display script
*
- * $Horde: agora/lib/Comments.php,v 1.16 2009-12-10 17:42:30 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* Forum management class.
*
- * $Horde: agora/lib/Forms/Forum.php,v 1.8 2009/01/06 17:48:46 jan Exp $
- *
* Copyright 2005-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* Message form class.
*
- * $Horde: agora/lib/Forms/Message.php,v 1.11 2009/07/08 18:28:40 slusarz Exp $
- *
* Copyright 2005-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* Agora_Search:: class provides the functions & forms for search.
*
- * $Horde: agora/lib/Forms/Search.php,v 1.15 2009/01/06 17:48:46 jan Exp $
- *
* Copyright 2005-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
}
}
}
-}
\ No newline at end of file
+}
* Agora_Messages:: provides the functions to access both threads and
* individual messages.
*
- * $Horde: agora/lib/Messages.php,v 1.322 2009-12-10 19:24:08 mrubinsk Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* Agora_Messages_split_sql:: provides the functions to access both threads
* sotred in a scope dedicated tables
*
- * $Horde: agora/lib/Messages/split_sql.php,v 1.19 2009/01/06 17:48:46 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* Agora_Messages_sql:: provides the functions to access both threads and
* individual messages in one table for all scopes
*
- * $Horde: agora/lib/Messages/sql.php,v 1.17 2009/01/06 17:48:46 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
return array($sql, $params);
}
-}
\ No newline at end of file
+}
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
- * $Horde: agora/lib/Tree/flat.php,v 1.11 2009/01/06 17:48:47 jan Exp $
- *
* @author Ben Chavet <ben@horde.org>
* @author Duck <duck@obala.net>
*/
return $output;
}
-}
\ No newline at end of file
+}
/**
* Video General View Class
*
- * $Horde: agora/lib/View.php,v 1.15 2009/07/09 08:17:47 slusarz Exp $
- *
* Copyright 2007-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* The Agora base inclusion library.
*
- * $Horde: agora/lib/base.php,v 1.64 2009/10/20 09:17:26 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?php
/**
- * $Horde: agora/lib/prefs.php,v 1.5 2009/06/10 00:33:11 mrubinsk Exp $
- *
* Copyright 2005-2007 Andrew Hosie <ahosie@gmail.com>
*
* See the enclosed file COPYING for license information (GPL). If you
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
- *
- * $Horde: agora/messages/abuse.php,v 1.24 2009/09/07 07:38:36 duck Exp $
*/
define('AGORA_BASE', dirname(__FILE__) . '/..');
/**
* The Agora script to delete a message.
*
- * $Horde: agora/messages/delete.php,v 1.61 2009-12-01 12:52:38 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* The Agora script to post a new message, edit an existing message, or reply
* to a message.
*
- * $Horde: agora/messages/edit.php,v 1.90 2009-12-01 12:52:38 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* Thread display script
*
- * $Horde: agora/messages/index.php,v 1.67 2009-12-10 17:42:30 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* The Agora script to lock a message and prevent further posts to this thread.
*
- * $Horde: agora/messages/lock.php,v 1.30 2009-12-01 12:52:38 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
- *
- * $Horde: agora/messages/merge.php,v 1.22 2009-12-01 12:52:38 jan Exp $
*/
define('AGORA_BASE', dirname(__FILE__) . '/..');
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
- *
- * $Horde: agora/messages/move.php,v 1.23 2009-12-01 12:52:38 jan Exp $
*/
define('AGORA_BASE', dirname(__FILE__) . '/..');
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
- *
- * $Horde: agora/messages/split.php,v 1.20 2009-12-01 12:52:38 jan Exp $
*/
define('AGORA_BASE', dirname(__FILE__) . '/..');
*
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
- * $Horde: agora/moderate.php,v 1.32 2009-12-10 17:42:30 jan Exp $
- *
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*/
*
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
- * $Horde: agora/moderators.php,v 1.17 2009/07/08 18:28:38 slusarz Exp $
- *
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
/**
* The Agora script to display a list of forums.
*
- * $Horde: agora/owner.php,v 1.7 2009/09/29 13:43:15 duck Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?php
/**
- * $Horde: agora/rss/index.php,v 1.7 2009/07/09 08:17:48 slusarz Exp $
- *
* Copyright 2007-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?php
/**
- * $Horde: agora/rss/messages.php,v 1.5 2009/07/09 08:17:48 slusarz Exp $
- *
* Copyright 2007-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?php
/**
- * $Horde: agora/rss/threads.php,v 1.14 2009/07/09 08:17:48 slusarz Exp $
- *
* Copyright 2007-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* done
*
* TODO: Moderation, attachments, ID swaping
- *
- * $Horde: agora/scripts/phorum2agora.php,v 1.10 2009/06/10 19:57:51 slusarz Exp $
- *
*/
// No need for auth.
--- $Horde: agora/scripts/sql/agora.mysql.sql,v 1.16 2009/10/20 21:28:30 jan Exp $
-
CREATE TABLE agora_files (
file_id INT(11) UNSIGNED NOT NULL,
file_name VARCHAR(255) NOT NULL,
--- $Horde: agora/scripts/sql/agora.sql,v 1.16 2009/10/20 21:28:30 jan Exp $
-
CREATE TABLE agora_files (
file_id INT NOT NULL,
file_name VARCHAR(255) NOT NULL,
#!/usr/bin/php
<?php
/**
- * $Horde: agora/scripts/upgrades/2006-10-26_forums_table.php,v 1.6 2009/06/10 19:57:52 slusarz Exp $
- *
* Script to migrate forums from datatree agora_forms table
*/
#!/usr/bin/php
<?php
/**
- * $Horde: agora/scripts/upgrades/2006-10-26_messages_table.php,v 1.5 2009/06/10 19:57:52 slusarz Exp $
- *
* TODO: Attachments
*
* Script to migrate forums from datatree agora_forms table
* Upgrades counters
*
* TODO Get rid of moderation
- *
- * $Horde: agora/scripts/upgrades/2006-10-28_update_counts.php,v 1.10 2009/06/10 19:57:52 slusarz Exp $
- *
*/
// No need for auth.
<?php
/**
* Upgrades last messages
- *
- * $Horde: agora/scripts/upgrades/2007-09-23_last_message.php,v 1.6 2009/06/10 19:57:52 slusarz Exp $
- *
*/
// No need for auth.
---
--- $Horde: agora/scripts/upgrades/2008-10-26_add_distribution_address.sql,v 1.2 2009/10/20 21:28:31 jan Exp $
---
ALTER TABLE agora_forums ADD COLUMN forum_distribution_address VARCHAR(255) DEFAULT '' NOT NULL
*
* Copyright 2005-2010 The Horde Project (http://www.horde.org/)
*
- * $Horde: agora/search.php,v 1.27 2009-12-10 17:42:30 jan Exp $
- *
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
-/**
- * $Horde: agora/themes/bluewhite/screen.css,v 1.2 2006/10/29 18:18:46 chuck Exp $
- */
-
.messageContainer {
background: #fff;
width: auto;
-/**
- * $Horde: agora/themes/screen.css,v 1.4 2007/05/07 18:58:35 chuck Exp $
- */
-
.messageContainer {
width: 100%;
padding: 2px;
*
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
- * $Horde: agora/threads.php,v 1.65 2009-12-10 17:42:30 jan Exp $
- *
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
/**
* Script to download attachments.
*
- * $Horde: agora/view.php,v 1.14 2009/07/21 06:58:38 duck Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?php
/**
- * $Horde$
- *
* Copyright 2008-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?php
/**
- * $Horde$
- *
* Copyright 2008-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* Crumb Base Class.
*
- * $Horde$
- *
* Copyright 2008-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* Crumb_Driver:: defines an API for implementing storage backends for
* Crumb.
*
- * $Horde$
- *
* Copyright 2008-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?php
/**
- * $Horde$
- *
* Copyright 2008-2010 The Horde Project <http://www.horde.org/>
*
* See the enclosed file LICENSE for license information (GPL). If you
<?php
/**
- * $Horde$
- *
* Copyright 2008-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
---
--- $Horde$
---
CREATE TABLE crumb_clients (
client_id INT NOT NULL,
turba_uid VARCHAR(255),
FIRST=$1
SECOND=$2
shift 2
-diff -r -I "\$Horde" -I "\$Revision" -I "\$Date" -I "\$Id" --exclude version.php --exclude CHANGES --exclude CREDITS --exclude '*.po' --exclude '*.pot' --exclude locale --exclude CVS --exclude '.#*' --exclude '*~' --exclude '*.bak' --exclude '*.orig' --exclude '*.rej' "$@" $FIRST $SECOND | grep -v "config/.*\.php "
+diff -r -I "\$Id" --exclude CHANGES --exclude CREDITS --exclude '*.po' --exclude '*.pot' --exclude locale --exclude '.#*' --exclude '*~' --exclude '*.bak' --exclude '*.orig' --exclude '*.rej' "$@" $FIRST $SECOND | grep -v "config/.*\.php "
#!/usr/bin/php
<?php
/**
- * $Horde: framework/iCalendar/docs/examples/parser.php,v 1.5 2009/06/10 19:57:56 slusarz Exp $
- *
* Takes a filename on the command line and parses it, displaying what it
* finds. Intended for use in debugging the iCalendar parser's behavior with
* problem files or for adding new features.
/**
* Class representing iCalendar files.
*
- * $Horde: framework/iCalendar/iCalendar.php,v 1.163 2009/07/09 08:18:05 slusarz Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
/**
* Class representing vAlarms.
*
- * $Horde: framework/iCalendar/iCalendar/valarm.php,v 1.17 2009/01/06 17:50:03 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Mike Cochrane <mike@graftonhall.co.nz>
- * @since Horde 3.0
* @package Horde_iCalendar
*/
-class Horde_iCalendar_valarm extends Horde_iCalendar {
-
+class Horde_iCalendar_valarm extends Horde_iCalendar
+{
/**
* The component type of this class.
*
/**
* Class representing vCard entries.
*
- * $Horde: framework/iCalendar/iCalendar/vcard.php,v 1.22 2009/06/07 18:13:46 mrubinsk Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
/**
* Class representing vEvents.
*
- * $Horde: framework/iCalendar/iCalendar/vevent.php,v 1.50 2009/01/06 17:50:03 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Mike Cochrane <mike@graftonhall.co.nz>
- * @since Horde 3.0
* @package Horde_iCalendar
*/
class Horde_iCalendar_vevent extends Horde_iCalendar {
/**
* Class representing vFreebusy components.
*
- * $Horde: framework/iCalendar/iCalendar/vfreebusy.php,v 1.37 2009/01/06 17:50:03 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
/**
* Class representing vJournals.
*
- * $Horde: framework/iCalendar/iCalendar/vjournal.php,v 1.17 2009/01/06 17:50:03 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
/**
* Class representing vNotes.
*
- * $Horde: framework/iCalendar/iCalendar/vnote.php,v 1.14 2009/06/07 18:13:46 mrubinsk Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
/**
* Class representing vTimezones.
*
- * $Horde: framework/iCalendar/iCalendar/vtimezone.php,v 1.18 2009/01/06 17:50:03 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
/**
* Class representing vTodos.
*
- * $Horde: framework/iCalendar/iCalendar/vtodo.php,v 1.22 2009/01/06 17:50:03 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
<?xml version="1.0"?>
-<!-- $Horde: horde/config/conf.xml,v 1.286 2009-12-10 16:28:48 jan Exp $ -->
+<!-- $Id$ -->
<configuration>
<configtab name="general" desc="General">
<configheader>General Horde Settings</configheader>
* The App_Bar class contains all functions related to handling
* bars in App.
*
- * $Horde
- *
* Copyright 2009-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
===================
- Translation Guide
+ Translation Guide
===================
-:Date: $Date: 2009/06/10 06:07:38 $
-:Revision: $Revision: 1.39 $
:Authors: Jan Schneider
:Contact: i18n@lists.horde.org
Horde Database Installation Guide
===================================
-:Last update: $Date: 2008/05/31 08:43:31 $
-:Revision: $Revision: 1.9 $
:Contact: horde@lists.horde.org
/**
* The Hylax script to compose a new fax.
*
- * $Horde: incubator/hylax/compose.php,v 1.12 2009/06/10 17:33:26 slusarz Exp $
- *
* Copyright 2005-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?xml version="1.0"?>
-<!-- $Horde: incubator/hylax/config/conf.xml,v 1.5 2005/06/18 01:38:51 jvandal Exp $ -->
+<!-- $Id$ -->
<configuration>
<configtab name="fax" desc="Fax Driver Settings">
<configsection name="fax">
<?php
/**
- * $Horde: incubator/hylax/config/covers.php.dist,v 1.1 2005/07/09 20:56:18 jvandal Exp $
- *
* This file defines the templates used to generate Cover Page.
- *
*/
$_covers['default'] = array(
<?php
/**
- * $Horde: incubator/hylax/config/prefs.php.dist,v 1.1 2005/07/09 20:56:18 jvandal Exp $
- *
* See horde/config/prefs.php for documentation on the structure of this file.
+ *
+ * $Id$
*/
$prefGroups['display'] = array(
-$Horde: incubator/hylax/docs/TODO,v 1.1 2005/06/14 03:58:28 jvandal Exp $
-
- Integrate SpanDSP fax driver with Asterisk
- Ability to create new covers and faxes
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
- *
- * $Horde: incubator/hylax/folder.php,v 1.7 2009/06/10 05:24:17 slusarz Exp $
*/
+
require_once dirname(__FILE__) . '/lib/Application.php';
$hylax = new Hylax_Application(array('init' => true));
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
- *
- * $Horde: incubator/hylax/img.php,v 1.4 2009/06/10 05:24:17 slusarz Exp $
*/
// FIXME: Do we need AUTH_HANDLER here?
<?php
/**
- * $Horde: incubator/hylax/index.php,v 1.12 2009/01/06 17:50:48 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* Hylax_Driver Class
*
- * $Horde: incubator/hylax/lib/Driver.php,v 1.13 2009/01/06 17:50:48 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* Hylax_Driver_hylafax Class
*
- * $Horde: incubator/hylax/lib/Driver/hylafax.php,v 1.17 2009/01/06 17:50:48 jan Exp $
- *
* Copyright 2003-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* Hylax_Driver_spandsp Class
*
- * $Horde: incubator/hylax/lib/Driver/spandsp.php,v 1.14 2009/01/06 17:50:48 jan Exp $
- *
* Copyright 2005-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
- * $Horde: incubator/hylax/lib/Hylax.php,v 1.17 2009/06/10 06:07:33 slusarz Exp $
- *
* @author Marko Djukic <marko@oblo.com>
* @package Hylax
*/
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
- * $Horde: incubator/hylax/lib/Image.php,v 1.14 2009/06/10 05:24:18 slusarz Exp $
- *
* @author Marko Djukic <marko@oblo.com>
* @package Hylax
*/
/**
* This class provides attributes methods for any existing SQL class.
*
- * $Horde: incubator/hylax/lib/SQL/Attributes.php,v 1.5 2009/01/06 17:50:49 jan Exp $
- *
* Copyright 1999-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
- * $Horde: incubator/hylax/lib/Storage.php,v 1.16 2009/01/06 17:50:48 jan Exp $
- *
* @author Marko Djukic <marko@oblo.com>
* @package Hylax
*/
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
- * $Horde: incubator/hylax/lib/Storage/sql.php,v 1.21 2009/07/08 18:29:13 slusarz Exp $
- *
* @author Marko Djukic <marko@oblo.com>
* @package Hylax
*/
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
- *
- * $Horde: incubator/hylax/print.php,v 1.5 2009/06/10 05:24:17 slusarz Exp $
*/
require_once dirname(__FILE__) . '/lib/Application.php';
#!/usr/bin/php
<?php
-/**
- * $Horde: incubator/hylax/scripts/fax_create.php,v 1.4 2009/06/10 19:57:57 slusarz Exp $
- */
// No need for auth.
@define('AUTH_HANDLER', true);
#!/usr/bin/php
<?php
-/**
- * $Horde: incubator/hylax/scripts/fax_create_recv.php,v 1.4 2009/06/10 19:57:57 slusarz Exp $
- */
// No need for auth.
@define('AUTH_HANDLER', true);
#!/usr/bin/php
<?php
-/**
- * $Horde: incubator/hylax/scripts/fax_save_data.php,v 1.4 2009/06/10 19:57:57 slusarz Exp $
- */
// No need for auth.
@define('AUTH_HANDLER', true);
#!/usr/bin/php
<?php
-/**
- * $Horde: incubator/hylax/scripts/fax_save_recv_data.php,v 1.4 2009/06/10 19:57:57 slusarz Exp $
- */
// No need for auth.
@define('AUTH_HANDLER', true);
#!/usr/bin/php
<?php
-/**
- * $Horde: incubator/hylax/scripts/install_cups_drivers.php,v 1.3 2009/06/10 19:57:57 slusarz Exp $
- */
// No need for auth.
@define('AUTH_HANDLER', true);
--- $Horde: incubator/hylax/scripts/sql/fax.mssql.sql,v 1.1 2006/12/13 04:30:49 chuck Exp $
-
CREATE TABLE hylax_faxes (
fax_id INT NOT NULL DEFAULT 0,
job_id INT DEFAULT NULL,
--- $Horde: incubator/hylax/scripts/sql/fax.sql,v 1.1 2006/12/13 04:30:49 chuck Exp $
-
CREATE TABLE hylax_faxes (
fax_id INT NOT NULL DEFAULT 0,
job_id INT DEFAULT NULL,
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
- *
- * $Horde: incubator/hylax/send.php,v 1.8 2009/06/10 17:33:26 slusarz Exp $
*/
require_once dirname(__FILE__) . '/lib/Application.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.
- *
- * $Horde: incubator/hylax/summary.php,v 1.6 2009/06/10 05:24:17 slusarz Exp $
*/
require_once dirname(__FILE__) . '/lib/Application.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.
- *
- * $Horde: incubator/hylax/view.php,v 1.7 2009/06/10 05:24:18 slusarz Exp $
*/
require_once dirname(__FILE__) . '/lib/Application.php';
What is Operator?
=================
-:Last update: $Date: 2008/04/19 01:26:06 $
-:Revision: $Revision: 1.1 $
-
.. contents:: Contents
.. section-numbering::
<?php
/**
- * $Horde: incubator/operator/config/prefs.php.dist,v 1.2 2008/07/03 14:29:15 bklang Exp $
- *
* See horde/config/prefs.php for documentation on the structure of this file.
+ *
+ * $Id$
*/
$prefGroups['display'] = array(
-=========================
- Installing Skeleton 1.0
-=========================
-
-:Last update: $Date: 2008/04/19 01:26:06 $
-:Revision: $Revision: 1.1 $
+====================
+ Installing Skeleton
+====================
.. contents:: Contents
.. section-numbering::
Skeleton Development TODO List
================================
-:Last update: $Date: 2008/04/19 01:26:06 $
-:Revision: $Revision: 1.1 $
-
- Example todo
* Operator_Driver:: defines an API for implementing storage backends for
* Operator.
*
- * $Horde: incubator/operator/lib/Driver.php,v 1.8 2009/12/01 12:52:49 jan Exp $
- *
* Copyright 2007-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* The table structure can be created by the scripts/sql/operator_foo.sql
* script.
*
- * $Horde: incubator/operator/lib/Driver/asterisksql.php,v 1.12 2009/05/31 17:14:08 bklang Exp $
- *
* Copyright 2008-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
/**
* SearchCDRForm Class
*
- * $Horde: incubator/operator/lib/Form/SearchCDR.php,v 1.7 2009/06/02 14:53:20 chuck Exp $
- *
* Copyright 2008 Alkaloid Networks LLC <http://projects.alkaloid.net>
*
* See the enclosed file LICENSE for license information (BSD). If you
* This file defines Operator's external API interface. Other applications
* can interact with Operator through this API.
*
- * $Horde: incubator/operator/lib/api.php,v 1.3 2009/01/06 17:51:06 jan Exp $
- *
* Copyright 2008-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?xml version='1.0'?>
-<!-- $Horde: incubator/operator/locale/en_US/help.xml,v 1.1 2008/04/19 01:26:06 bklang Exp $ -->
+<!-- $Id$ -->
<help>
<entry id="skeleton-overview">
<?php
/**
- * $Horde: incubator/operator/search.php,v 1.11 2009/06/10 17:33:30 slusarz Exp $
- *
* Copyright 2008-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
<?php
/**
- * $Horde: incubator/operator/viewgraph.php,v 1.11 2009/06/10 17:33:30 slusarz Exp $
- *
* Copyright 2008-2010 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
try {
$start = new Horde_Date($vars->get('startdate'));
$end = new Horde_Date($vars->get('enddate'));
-
+
if (($end->month - $start->month) == 0 &&
($end->year - $start->year) == 0) {
// FIXME: This should not cause an error but is due to a bug in
What is Whups?
==============
-:Last update: $Date: 2008/09/02 16:13:13 $
-:Revision: $Revision: 1.10 $
:Contact: horde@lists.horde.org
.. contents:: Contents
Whups Development TODO List
=============================
-:Last update: $Date: 2007/04/22 04:51:55 $
-:Revision: $Revision: 1.16 $
:Contact: dev@lists.horde.org
- Ability to take/steal tickets from other users in the list UI.
- Ability to merge a ticket with another ticket (instead of marking as
duplicate). Histories of two tickets should be merged.
-
+
- Better permissions integration.
- Possible integration with other Horde queues (nag/turba/hermes), including
| > What if we had a "clone" feature? When editing states/priorities, just
| > being able to clone the states/priorities from another type into this
| > type?
- |
+ |
| I now think that this would be a good idea. It's almost the same as
| Gary's template patch, but it should work in a slightly different way
| to better fit the workflow direction.
- |
+ |
| When we have state transitions, it's more important that a type
| doesn't change as tickets flow through it because that could cause
| tickets to become inconsistent. However, it's very likely that as the
| copy the existing type into a new one. You can then modify the new
| type however you see fit then 'publish' the type and start creating
| tickets in it. Published types can't be altered.
- |
+ |
| With the type templates, you could only copy particular types into new
| ones, instead of any type that you need to.
- |
+ |
| However, with the templates, type were created as 'just a template',
| ie. one that shouldn't have tickets created. This can be quite
| useful, but instead of using an underscore prefix to identify it, I'd
Upgrading Whups
=================
-:Last update: $Date: 2009/09/07 09:56:43 $
-:Revision: $Revision: 1.1 $
-:Contact: horde@lists.horde.org
+:Contact: horde@lists.horde.org
These are instructions to upgrade from earlier Whups versions. Please backup