diff --git a/docs/api/awl/PdoQuery/PdoDatabase.html b/docs/api/awl/PdoQuery/PdoDatabase.html deleted file mode 100644 index c9208ab5..00000000 --- a/docs/api/awl/PdoQuery/PdoDatabase.html +++ /dev/null @@ -1,575 +0,0 @@ - - - -
- -
PdoDatabaseTypically there will only be a single instance of the database level class in an application.
-- Located in /inc/PdoQuery.php (line 218) -
- - - - -
- PdoDatabase
- __construct
- (string $connection_string, [string $dbuser = null], [string $dbpass = null], [array $options = null])
-
-
- mixed
- $querycount
- = 0 (line 241)
-
- Holds the count of queries executed so far
- - - - - - -
-
- mixed
- $querytime
- = 0 (line 246)
-
- Holds the total duration of queries executed so far
- - - - - - -
-
- mixed
- $txnstate
- = 0 (line 236)
-
- Holds the state of the transaction 0 = not started, 1 = in progress, -1 = error pending rollback/commit
- - - - - - -
- Constructor __construct (line 262)
- The connection string is in the standard PDO format. The database won't actually be connected until the first database query is run against it.
-The database object will also initialise and hold an PdoDialect object which will be used to provide database specific SQL for some queries, as well as translation hooks for instances where it is necessary to modify the SQL in transit to support additional databases.
- -
- Begin (line 303)
- Begin a transaction.
- -
- Commit (line 317)
- Complete a transaction.
- -
- Exec (line 287)
- Construct and execute an SQL statement from the sql_string, replacing the parameters into it.
- - -
- GetFields (line 368)
- Returns an associative array of field types, keyed by field name, for the requested named table. Internally this calls PdoDialect::GetFields to get the required SQL and then processes the query in the normal manner.
- -
- Prepare (line 273)
- Returns a PdoQuery object created using this database, the supplied SQL string, and any parameters given.
- -
- PrepareTranslated (line 376)
- Operates identically to PdoDatabase::Prepare, except that PdoDialect::Translate() will be called on the query before any processing.
- -
- Rollback (line 328)
- Cancel a transaction in progress.
- -
- TotalDuration (line 351)
- Returns the total duration of quries executed so far by this object instance.
- -
- TotalQueries (line 359)
- Returns the total number of quries executed by this object instance.
- -
- TransactionState (line 343)
- Returns the current state of a transaction, indicating if we have begun a transaction, whether the transaction has failed, or if we are not in a transaction.
- -
- TranslateAll (line 384)
- Switches on or off the processing flag controlling whether subsequent calls to PdoDatabase::Prepare are translated as if PrepareTranslated() had been called.
- -- Documentation generated on Tue, 06 Oct 2009 02:03:10 -0700 by phpDocumentor 1.3.2 -
-
PdoDialectThe PdoDialect class handles
-- Located in /inc/PdoQuery.php (line 41) -
- - - - -
- Constructor __construct (line 60)
- Parses the connection string to ascertain the database dialect. Returns true if the dialect is supported and fails if the dialect is not supported. All code to support any given database should be within in an external include.
- -
- GetFields (line 76)
- Returns the SQL for the current database dialect which will return a two-column resultset containing a list of fields and their associated data types.
- -
- Quote (line 114)
- Returns $value escaped in an appropriate way for this database dialect.
- -
- ReplaceParameters (line 167)
- Replaces query parameters with appropriately escaped substitutions.
-The function takes a variable number of arguments, the first is the SQL string, with replaceable '?' characters (a la DBI). The subsequent parameters being the values to replace into the SQL string.
The values passed to the routine are analyzed for type, and quoted if they appear to need quoting. This can go wrong for (e.g.) NULL or other special SQL values which are not straightforwardly identifiable as needing quoting (or not). In such cases the parameter can be forced to be inserted unquoted by passing it as "array( 'plain' => $param )".
- - -
- Translate (line 101)
- Translates the given SQL string into a form that will hopefully work for this database dialect. This hook is expected to be used by developers to provide support for differences in database operation by translating the query string in an arbitrary way, such as through a file or database lookup.
-The actual translation to other SQL dialects will usually be application-specific, so that any routines called by this will usually be external to this library, or will use resources external to this library.
- -- Documentation generated on Tue, 06 Oct 2009 02:03:10 -0700 by phpDocumentor 1.3.2 -
-
PdoQueryA variable of this class is normally constructed through a call to PdoDatabase::Query or PdoDatabase::Prepare, associating it on construction with the database which is to be queried.
-- Located in /inc/PdoQuery.php (line 395) -
- - - - -
- Constructor __construct (line 406)
- Where $db is a PdoDatabase object. This constructs the PdoQuery. If there are further parameters they will be in turn, the sql, and any positional parameters to replace into that, and will be passed to $this->Query() before returning.
- -
- Exec (line 435)
- If there are (some) positional parameters in the prepared query, now is the last chance to supply them...
-before the query is executed. Returns true on success and false on error.
- -
- Fetch (line 449)
- Will fetch the next row from the query into an object with elements named for the fields in the result.
- -
- FetchAll (line 466)
- Will fetch all result rows from the query into an array of objects with elements named for the fields in the result.
- -
- FetchArray (line 458)
- Will fetch the next row from the query into an array with numbered elements and with elements named for the fields in the result.
- -
- MaxDuration (line 483)
- Used to set the maximum duration for this query before it will be logged as a slow query.
- -
- Query (line 421)
- If the sql is supplied then PDO::prepare will be called with that SQL to prepare the query, and if there are positional parameters then they will be replaced into the sql_string (with appropriate escaping) before the call to PDO::prepare. Query preparation time is counted towards total query execution time.
- -
- Rows (line 474)
- An accessor for the number of rows affected when the query was executed.
- -- Documentation generated on Tue, 06 Oct 2009 02:03:11 -0700 by phpDocumentor 1.3.2 -
-
/inc/PdoQuery.phpPDO query class and associated functions
-This subpackage provides some functions that are useful around database activity and a PdoDialect, PdoDatabase and PdoQuery classes to simplify handling of database queries and provide some access for a limited ability to handle varying database dialects.
The class is intended to be a very lightweight wrapper with some features that have proved useful in developing and debugging web-based applications:
If not already connected, PdoQuery will attempt to connect to the database, successively applying connection parameters from the array in $c->pdo_connect.
We will die if the database is not currently connected and we fail to find a working connection.
- - -| Class | -Description | -
|---|---|
-
- PdoDialect
- |
- - The PdoDialect class handles - | -
-
- PdoDatabase
- |
- - Typically there will only be a single instance of the database level class in an application. - | -
-
- PdoQuery
- |
- - A variable of this class is normally constructed through a call to PdoDatabase::Query or PdoDatabase::Prepare, associating it on construction with the database which is to be queried. - | -
- Documentation generated on Tue, 06 Oct 2009 02:03:10 -0700 by phpDocumentor 1.3.2 -
-
CalendarInfoA class for holding basic calendar information
++ Located in /inc/caldav-client-v2.php (line 19) +
+ + + + ++ Documentation generated on Thu, 24 Dec 2009 22:09:49 +1300 by phpDocumentor 1.3.2 +
+
/inc/RSCDSUser.php
/inc/caldav-client-v2.phpUser maintain / view with DAViCal specific associated tables
+A Class for connecting to a caldav server
- RSCDSUser
+ CalendarInfo
+ CalDAVClient
+
-
- require
- ("User.php")
- (line 12)
-
- User maintain / view with DAViCal specific associated tables
- - -
require_once
- ("classBrowser.php")
+ ('XMLDocument.php')
(line 13)
-
- require_once
- ("auth-functions.php")
- (line 14)
-
- - Documentation generated on Mon, 22 Jun 2009 21:46:02 +1200 by phpDocumentor 1.3.2 + Documentation generated on Thu, 24 Dec 2009 22:09:48 +1300 by phpDocumentor 1.3.2
\ No newline at end of file diff --git a/docs/api/davical/RSCDSSession/RSCDSSession.html b/docs/api/davical/RSCDSSession/RSCDSSession.html deleted file mode 100644 index 56abe6e2..00000000 --- a/docs/api/davical/RSCDSSession/RSCDSSession.html +++ /dev/null @@ -1,236 +0,0 @@ - - - - - -
RSCDSSessionA class for creating and holding session information.
-- Located in /inc/RSCDSSession.php (line 50) -
- - -Session - | - --RSCDSSession- -
- Constructor RSCDSSession (line 61)
- Create a new RSCDSSession object.
-We create a Session and extend it with some additional useful RSCDS related information.
- -
- AssignSessionDetails (line 70)
- Internal function used to assign the session details to a user's new session.
- -
- GetRelationships (line 98)
- Method used to get the user's relationships
- -
- GetRoles (line 83)
- Method used to get the user's roles
- -
- LoginRequired (line 120)
- Checks that this user is logged in, and presents a login screen if they aren't.
-The function can optionally confirm whether they are a member of one of a list of roles, and deny access if they are not a member of any of them.
- - -- Documentation generated on Mon, 22 Jun 2009 21:46:01 +1200 by phpDocumentor 1.3.2 -
-
Tools- Located in /htdocs/tools.php (line 36) -
- - - - -
- importFromDirectory (line 97)
-
- render (line 38)
-
- renderImportFromDirectory (line 70)
-
- renderSyncLDAP (line 46)
- - Documentation generated on Mon, 22 Jun 2009 21:46:03 +1200 by phpDocumentor 1.3.2 -
-
/htdocs/tools.phpTools for manipulating calendars
- - -| Class | -Description | -
|---|---|
-
- Tools
- |
- - - | -
-
- include
- (page-header.php)
- (line 32)
-
-
-
- include
- (page-footer.php)
- (line 154)
-
-
-
- require_once
- ("DataEntry.php")
- (line 16)
-
-
-
- require_once
- ("../inc/always.php")
- (line 12)
-
- Tools for manipulating calendars
- - -
-
- require_once
- (interactive-page.php)
- (line 17)
-
-
-
- require_once
- ("classBrowser.php")
- (line 18)
-
-
-
- require_once
- (RSCDSSession.php)
- (line 13)
-
- - Documentation generated on Mon, 22 Jun 2009 21:46:03 +1200 by phpDocumentor 1.3.2 -
-
/inc/RSCDSSession.phpDAViCal extensions to AWL Session handling
- - -| Class | -Description | -
|---|---|
-
- RSCDSSession
- |
- - A class for creating and holding session information. - | -
- Documentation generated on Mon, 22 Jun 2009 21:46:01 +1200 by phpDocumentor 1.3.2 -
-
RSCDSUserA class for viewing and maintaining DAViCal User records
-- Located in /inc/RSCDSUser.php (line 24) -
- - -User - | - --RSCDSUser- -
- Constructor RSCDSUser (line 32)
- Constructor - nothing fancy as yet.
- -
- AllowedTo (line 303)
- Extend parent definition of what the current user is allowed to do
- - -
- HandleAction (line 331)
- Handle any unusual actions we might invent
- -
- Render (line 47)
- Render the form / viewer as HTML to show the user
- - -
- RenderCollections (line 248)
- Render the user's collections
- - -
- RenderImportIcs (line 94)
- Render input file to import ics in calendar user
- - -
- RenderRelationshipsFrom (line 117)
- Render the user's relationships to other users & resources
- - -
- RenderRelationshipsTo (line 166)
- Render the user's relationships to other users & resources
- - -
- Validate (line 293)
- Validate the information the user submitted
- - -
- Write (line 384)
- Write the record to the file
- -- Documentation generated on Mon, 22 Jun 2009 21:46:02 +1200 by phpDocumentor 1.3.2 -
-
/htdocs/davical.php
/htdocs/admin.php- Documentation generated on Tue, 01 Dec 2009 10:37:48 +1300 by phpDocumentor 1.3.2 + Documentation generated on Thu, 24 Dec 2009 22:09:45 +1300 by phpDocumentor 1.3.2
/htdocs/browse.php
-
- include
- (page-footer.php)
- (line 39)
-
- Page elements could be an array of viewers, browsers or something else that supports the Render() method...
- -
-
- include
- (DAViCalSession.php)
- (line 4)
-
-
-
- include
- (page-header.php)
- (line 17)
-
-
-
- include_once
- ("components/$component-browse.php")
- (line 13)
-
-
-
- require_once
- ('../inc/always.php')
- (line 2)
-
-
-
- require_once
- ('classBrowser.php')
- (line 3)
-
-
-
- require_once
- ('interactive_page.php')
- (line 10)
-
- - Documentation generated on Tue, 01 Dec 2009 10:37:46 +1300 by phpDocumentor 1.3.2 -
-
/htdocs/edit.php
-
- include
- (page-footer.php)
- (line 38)
-
- Page elements could be an array of viewers, browsers or something else that supports the Render() method...
- -
-
- include
- (DAViCalSession.php)
- (line 4)
-
-
-
- include
- (page-header.php)
- (line 17)
-
-
-
- include_once
- ("components/$component-edit.php")
- (line 13)
-
-
-
- require_once
- ('../inc/always.php')
- (line 2)
-
-
-
- require_once
- ('classEditor.php')
- (line 3)
-
-
-
- require_once
- ('interactive_page.php')
- (line 10)
-
- - Documentation generated on Tue, 01 Dec 2009 10:37:48 +1300 by phpDocumentor 1.3.2 -
-
/inc/pubsub.php| Class | +Description | +
|---|---|
+
+ xmpp
+ |
+ + ******************************************************************** + | +
+ Documentation generated on Thu, 24 Dec 2009 22:09:56 +1300 by phpDocumentor 1.3.2 +
+
/inc/ui/principal-view.php- Documentation generated on Tue, 01 Dec 2009 10:37:49 +1300 by phpDocumentor 1.3.2 -
-
/inc/caldav-MKCALENDAR.php
/inc/caldav-ACL.phpCalDAV Server - handle MKCALENDAR method
+CalDAV Server - handle ACL method
@@ -39,23 +39,23 @@ Includes
require_once
- ("XMLDocument.php")
- (line 31)
+ ('DAVResource.php')
+ (line 13)
CalDAV Server - handle MKCALENDAR method
+CalDAV Server - handle ACL method
@@ -67,7 +67,7 @@- Documentation generated on Tue, 06 Oct 2009 02:03:06 -0700 by phpDocumentor 1.3.2 + Documentation generated on Thu, 24 Dec 2009 22:09:47 +1300 by phpDocumentor 1.3.2
xmpp********************************************************************
+XMPP PubSub for DAViCal Copyright 2009 Rob Ostensen rob@boxacle.net Licenced http://gnu.org/copyleft/gpl.html GNU GPL v2
*******************************************************************
++ Located in /inc/pubsub.php (line 11) +
+ + + + +
+
+ mixed
+ $idle
+ (line 23)
+
+
+
+ mixed
+ $jid
+ (line 23)
+
+
+
+ mixed
+ $password
+ (line 23)
+
+
+
+ mixed
+ $port
+ (line 23)
+
+
+
+ mixed
+ $pubsubLayout
+ = 'hometree' (line 23)
+
+
+
+ mixed
+ $resource
+ (line 23)
+
+
+
+ mixed
+ $server
+ (line 23)
+
+
+
+ mixed
+ $status
+ (line 23)
+
+
+
+ mixed
+ $tls
+ (line 23)
+
+
+ Constructor __construct (line 26)
+
+ addHandler (line 675)
+
+ close (line 664)
+
+ open (line 647)
+
+ pubsubConfig (line 295)
+
+ pubsubCreate (line 259)
+
+ pubsubDelete (line 312)
+
+ pubsubPublish (line 346)
+
+ pubsubPurge (line 329)
+
+ sendMessage (line 249)
+ + Documentation generated on Thu, 24 Dec 2009 22:09:56 +1300 by phpDocumentor 1.3.2 +
+