forked from extern/egroupware
replace the crap
This commit is contained in:
parent
b1ec2ae317
commit
febeab4d8d
@ -1,10 +1,10 @@
|
||||
<?php
|
||||
/*******************************************************************\
|
||||
* phpGroupWare API - Arrayfunctions *
|
||||
* eGroupWare API - Arrayfunctions *
|
||||
* Written by Lars Kneschke <lkneschke@phpgw.de> *
|
||||
* Copyright (C) 2002, 2003 Lars Kneschke *
|
||||
* ----------------------------------------------------------------- *
|
||||
* This library is part of the phpGroupWare API *
|
||||
* This library is part of the eGroupWare API *
|
||||
* ----------------------------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU General Public License as *
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare API - Timed Asynchron Services for eGroupWare *
|
||||
* eGroupWare API - Timed Asynchron Services for eGroupWare *
|
||||
* Written by Ralf Becker <RalfBecker@outdoor-training.de> *
|
||||
* Class for creating cron-job like timed calls of eGroupWare methods *
|
||||
* -------------------------------------------------------------------------*
|
||||
|
@ -2,7 +2,7 @@
|
||||
/**************************************************************************\
|
||||
* eGroupWare API - Auth from PAM *
|
||||
* -------------------------------------------------------------------------*
|
||||
* This library is part of the phpGroupWare API *
|
||||
* This library is part of the eGroupWare API *
|
||||
* http://www.egroupware.org/api *
|
||||
* ------------------------------------------------------------------------ *
|
||||
* This library is free software; you can redistribute it and/or modify it *
|
||||
|
@ -1320,7 +1320,7 @@
|
||||
/**
|
||||
* Returns on(Un)Load attributes from js class
|
||||
*
|
||||
*@author Dave Hall - skwashd at phpgroupware.org
|
||||
*@author Dave Hall - skwashd at egroupware.org
|
||||
*@returns string body attributes
|
||||
*/
|
||||
function get_body_attribs()
|
||||
@ -1810,7 +1810,7 @@
|
||||
*/
|
||||
function phpgw_error($error,$line = '', $file = '')
|
||||
{
|
||||
echo '<p><b>phpGroupWare internal error:</b><p>'.$error;
|
||||
echo '<p><b>eGroupWare internal error:</b><p>'.$error;
|
||||
if ($line)
|
||||
{
|
||||
echo 'Line: '.$line;
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare API - database support via ADOdb *
|
||||
* eGroupWare API - database support via ADOdb *
|
||||
* ------------------------------------------------------------------------ *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU Lesser General Public License as published *
|
||||
|
@ -586,7 +586,7 @@
|
||||
// $this->http_client->addHeader('Keep-Alive','timeout=20, state="Accept,Accept-Language"');
|
||||
$this->http_client->addHeader('Accept-Encoding','chunked');
|
||||
$this->http_client->setProtocolVersion( '1.1' );
|
||||
$this->http_client->addHeader( 'user-agent', 'Mozilla/5.0 (compatible; PHPGroupware dav_client/1; Linux)');
|
||||
$this->http_client->addHeader( 'user-agent', 'Mozilla/5.0 (compatible; eGroupWare dav_client/1; Linux)');
|
||||
return $this->http_client->Connect($dav_host,$dav_port);
|
||||
}
|
||||
function set_debug($debug)
|
||||
|
@ -6,7 +6,7 @@
|
||||
* and Ralf Becker <ralfbecker@outdoor-training.de> *
|
||||
* Copyright (C) 2000, 2001 Dan Kuykendall *
|
||||
* -------------------------------------------------------------------------*
|
||||
* This library is part of the phpGroupWare API *
|
||||
* This library is part of the eGroupWare API *
|
||||
* http://www.egroupware.org/api *
|
||||
* ------------------------------------------------------------------------ *
|
||||
* This library is free software; you can redistribute it and/or modify it *
|
||||
|
@ -138,9 +138,9 @@
|
||||
$this->outgoing_payload = 'POST '
|
||||
. $this->path
|
||||
. " HTTP/1.0\r\n"
|
||||
. 'User-Agent: phpGroupware/' . $cliversion . '(PHP) ' . "\r\n"
|
||||
. 'X-PHPGW-Server: ' . $this->server . "\r\n"
|
||||
. 'X-PHPGW-Version: ' . $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] . "\r\n"
|
||||
. 'User-Agent: eGroupware/' . $cliversion . '(PHP) ' . "\r\n"
|
||||
. 'X-EGW-Server: ' . $this->server . "\r\n"
|
||||
. 'X-EGW-Version: ' . $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] . "\r\n"
|
||||
. 'Host: '.$this->server . "\r\n"
|
||||
. $credentials
|
||||
. "Content-Type: text/xml\r\nContent-Length: " . strlen($soap_data) . "\r\n"
|
||||
@ -189,9 +189,9 @@
|
||||
$this->outgoing_payload = 'POST '
|
||||
. $this->path
|
||||
. " HTTP/1.0\r\n"
|
||||
. 'User-Agent: phpGroupware/' . $cliversion . '(PHP) ' . "\r\n"
|
||||
. 'X-PHPGW-Server: ' . $this->server . "\r\n"
|
||||
. 'X-PHPGW-Version: ' . $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] . "\r\n"
|
||||
. 'User-Agent: eGroupware/' . $cliversion . '(PHP) ' . "\r\n"
|
||||
. 'X-EGW-Server: ' . $this->server . "\r\n"
|
||||
. 'X-EGW-Version: ' . $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] . "\r\n"
|
||||
. 'Host: ' . $this->server . "\r\n"
|
||||
. $credentials
|
||||
. "Content-Type: text/xml\r\nContent-Length: " . strlen($soap_data) . "\r\n"
|
||||
|
@ -549,7 +549,7 @@
|
||||
*
|
||||
* cd - Change current directory. This function is used to store the
|
||||
* current directory in a standard way, so that it may be accessed
|
||||
* throughout phpGroupWare to provide a consistent view for the user.
|
||||
* throughout eGroupWare to provide a consistent view for the user.
|
||||
*
|
||||
* pwd - Return current directory
|
||||
*
|
||||
@ -1086,7 +1086,7 @@
|
||||
* @function cd
|
||||
* @abstract Change current directory. This function is used to store the
|
||||
* current directory in a standard way, so that it may be accessed
|
||||
* throughout phpGroupWare to provide a consistent view for the user.
|
||||
* throughout eGroupWare to provide a consistent view for the user.
|
||||
* @discussion To cd to the root '/', use:
|
||||
* cd (array(
|
||||
* 'string' => '/',
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare API - SOAP functions *
|
||||
* eGroupWare API - SOAP functions *
|
||||
* This file written by dietrich@ganx4.com *
|
||||
* shared functions and vars for use with soap client/server *
|
||||
* -------------------------------------------------------------------------*
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare API - SOAP functions *
|
||||
* eGroupWare API - SOAP functions *
|
||||
* This file written by dietrich@ganx4.com *
|
||||
* shared functions and vars for use with soap client/server *
|
||||
* -------------------------------------------------------------------------*
|
||||
|
@ -687,7 +687,7 @@
|
||||
*/
|
||||
|
||||
$GLOBALS['_xmlrpcs_login_sig'] = array(array(xmlrpcStruct,xmlrpcStruct));
|
||||
$GLOBALS['_xmlrpcs_login_doc'] = 'phpGroupWare client or server login via XML-RPC';
|
||||
$GLOBALS['_xmlrpcs_login_doc'] = 'eGroupWare client or server login via XML-RPC';
|
||||
function _xmlrpcs_login($server,$m)
|
||||
{
|
||||
$rdata = $m->getParam(0);
|
||||
@ -737,7 +737,7 @@
|
||||
}
|
||||
|
||||
$GLOBALS['_xmlrpcs_phpgw_api_version_sig'] = array(array(xmlrpcString,xmlrpcString));
|
||||
$GLOBALS['_xmlrpcs_phpgw_api_version_doc'] = 'Returns the phpGroupWare API version';
|
||||
$GLOBALS['_xmlrpcs_phpgw_api_version_doc'] = 'Returns the eGroupWare API version';
|
||||
function _xmlrpcs_phpgw_api_version($server,$m)
|
||||
{
|
||||
$version = $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'];
|
||||
@ -747,7 +747,7 @@
|
||||
|
||||
|
||||
$GLOBALS['_xmlrpcs_logout_sig'] = array(array(xmlrpcStruct,xmlrpcStruct));
|
||||
$GLOBALS['_xmlrpcs_logout_doc'] = 'phpGroupWare client or server logout via XML-RPC';
|
||||
$GLOBALS['_xmlrpcs_logout_doc'] = 'eGroupWare client or server logout via XML-RPC';
|
||||
function _xmlrpcs_logout($server,$m)
|
||||
{
|
||||
$rdata = $m->getParam(0);
|
||||
|
@ -434,7 +434,7 @@ please wait... common el
|
||||
poland common el ÐÏËÙÍÉÁ
|
||||
portugal common el ÐÏÑÔÏÃÁËÉÁ
|
||||
postal common el Ôá÷õäñïìéêüò
|
||||
powered by egroupware version %1 common el Powered by <a href="http://www.egroupware.org">phpGroupWare</a> Ýêäïóç %1
|
||||
powered by egroupware version %1 common el Powered by <a href="http://www.egroupware.org">eGroupWare</a> Ýêäïóç %1
|
||||
preferences common el ÅðéëïãÝò
|
||||
preferences for the idots template set common el ÅðéëïãÝò óõíüëùí ðñïôýðùí ãéá ôá idots
|
||||
prev. month (hold for menu) jscalendar el Ðñïçãïýìåíïò ìÞíáò (êñáôÞóôå ãéá ìåíïý)
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare - preferences *
|
||||
* http://www.phpgroupware.org *
|
||||
* eGroupWare - preferences *
|
||||
* http://www.egroupware.org *
|
||||
* Written by Joseph Engo <jengo@phpgroupware.org> *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare - preferences *
|
||||
* http://www.phpgroupware.org *
|
||||
* eGroupWare - preferences *
|
||||
* http://www.egroupware.org *
|
||||
* Written by Joseph Engo <jengo@phpgroupware.org> *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
|
Loading…
Reference in New Issue
Block a user