package.xml0000664000175000017500000010366712227214443011315 0ustar janjan Horde_Rpc pear.horde.org Horde RPC API A common abstracted interface to various remote methods of accessing Horde functionality. Jan Schneider jan jan@horde.org yes Chuck Hagenbuch chuck chuck@horde.org yes Michael J Rubinsky mrubinsk mrubinsk@horde.org yes 2013-10-15 2.1.1 1.0.0 stable stable LGPL-2.1 * [mjr] Correctly catch HTTP client exceptions. 5.3.0 1.7.0 Horde_Core pear.horde.org 2.5.0 3.0.0alpha1 3.0.0alpha1 Horde_Dav pear.horde.org 1.0.0 2.0.0alpha1 2.0.0alpha1 Horde_Exception pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Perms pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Serialize pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Support pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Translation pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Util pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Xml_Element pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_ActiveSync pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Http pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Lock pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_SyncMl pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 soap xmlrpc 0.0.2 0.0.2 beta beta 2010-10-22 LGPL-2.1 Converted to package.xml 2.0 for pear.horde.org 1.0.0beta1 1.0.0 beta beta 2011-03-16 LGPL-2.1 * First beta release for Horde 4. 1.0.0RC1 1.0.0 beta beta 2011-03-22 LGPL-2.1 * First release candidate for Horde 4. 1.0.0RC2 1.0.0 beta beta 2011-03-29 LGPL-2.1 * Second release candidate for Horde 4. 1.0.0 1.0.0 stable stable 2011-04-06 LGPL-2.1 * First stable release for Horde 4. * [mjr] Fix for broken Nokia MfE clients (Bug #9757). 1.0.1 1.0.0 stable stable 2011-07-05 LGPL-2.1 * [jan] Update Lithuanian translation. * [jan] Update Brazilian Portuguese translation. * [jan] Update Spanish translation. 1.0.2 1.0.0 stable stable 2011-07-27 LGPL-2.1 * [jan] Update Latvian translation. 1.0.3 1.0.0 stable stable 2012-01-31 LGPL-2.1 * [jan] Fix WebDAV access to application resources. 1.0.4 1.0.0 stable stable 2012-05-29 LGPL-2.1 * [jan] Support authentication via CGI. 2.0.0alpha1 1.0.0 alpha stable 2012-07-05 LGPL-2.1 * First alpha release for Horde 5. 2.0.0beta1 1.0.0 beta stable 2012-07-19 LGPL-2.1 * First beta release for Horde 5. 2.0.0RC1 1.0.0 beta stable 2012-10-26 LGPL-2.1 * [jan] Use Horde's temporary directory for SyncML logs. * [mjr] Allow autodiscover requests sent as OPTIONS requests. 2.0.0 1.0.0 stable stable 2012-10-30 LGPL-2.1 * First stable release for Horde 5. 2.0.1 1.0.0 stable stable 2012-11-06 LGPL-2.1 * [mjr] Workaround for broken iOS ActiveSync AUTODISCOVER requests (Bug #11624). * [jan] Update Dutch translation (Arjen de Korte <build+horde@de-korte.org>). 2.0.2 1.0.0 stable stable 2012-12-25 LGPL-2.1 * [jan] Update Basque translation (Ibon Igartua <ibon.igartua@ehu.es>). 2.0.3 1.0.0 stable stable 2013-01-29 LGPL-2.1 * [jan] Update French translation (Paul De Vlieger <paul.de_vlieger@moniut.univ-bpclermont.fr>). 2.0.4 1.0.0 stable stable 2013-05-06 LGPL-2.1 * [jan] Use Horde_Dav for DAV RPC backends. 2.0.5 1.0.0 stable stable 2013-05-13 LGPL-2.1 * [jan] Don't require an unstable package from a stable version. 2.1.0beta1 1.0.0 beta stable 2013-05-13 LGPL-2.1 * [jan] Use Horde_Dav for DAV RPC backends. 2.1.0 1.0.0 stable stable 2013-06-04 LGPL-2.1 * Final release. 2.1.1 1.0.0 stable stable 2013-10-15 LGPL-2.1 * [mjr] Correctly catch HTTP client exceptions. Horde_Rpc-2.1.1/doc/Horde/Rpc/examples/soap.php0000664000175000017500000000140012227214442017302 0ustar janjan '', 'password' => '', 'namespace' => 'urn:horde', 'timeout' => 5, 'allowRedirects' => true, 'maxRedirects' => 3, 'location' => $rpc_endpoint, 'uri' => 'urn:horde', 'exceptions' => true, 'trace' => true, ); $soap = new SoapClient(null, $rpc_options); $result = Horde_Rpc::request( 'soap', $GLOBALS['rpc_endpoint'], $GLOBALS['rpc_method'], $soap, array()); var_dump($result); Horde_Rpc-2.1.1/doc/Horde/Rpc/examples/soap.pl0000664000175000017500000000054712227214442017141 0ustar janjan#!/usr/bin/perl -w die("Please configure the URL, username, and password, and then remove this line.\n"); use SOAP::Lite; use Data::Dumper; my $proxy = 'http://username:password@example.com/horde/rpc.php'; my $slite = SOAP::Lite -> proxy($proxy) -> call('calendar.listCalendars'); my $status = $slite->result; print Data::Dumper->Dump($status); Horde_Rpc-2.1.1/doc/Horde/Rpc/examples/xmlrpc.php0000664000175000017500000000114412227214442017652 0ustar janjan '', 'request.password' => '', ); $http_client = new Horde_Http_Client($rpc_options); $result = Horde_Rpc::request( 'xmlrpc', $GLOBALS['rpc_endpoint'], $GLOBALS['rpc_method'], $GLOBALS['http_client'], array()); var_dump($result); Horde_Rpc-2.1.1/doc/Horde/Rpc/examples/xmlrpc.pl0000664000175000017500000000055312227214442017501 0ustar janjan#!/usr/bin/perl -w die("Please configure the URL, username, and password, and then remove this line.\n"); use XMLRPC::Lite; use Data::Dumper; my $proxy = 'http://username:password@example.com/horde/rpc.php'; my $xlite = XMLRPC::Lite -> proxy($proxy) -> call('calendar.listCalendars'); my $status = $xlite->result; print Data::Dumper->Dump($status); Horde_Rpc-2.1.1/doc/Horde/Rpc/COPYING0000664000175000017500000005764612227214442015073 0ustar janjan GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Horde_Rpc-2.1.1/lib/Horde/Rpc/Syncml/Wbxml.php0000664000175000017500000000135212227214442017067 0ustar janjan * @author Anthony Mills * @package Rpc */ class Horde_Rpc_Syncml_Wbxml extends Horde_Rpc_Syncml { /** * Returns the Content-Type of the response. * * @return string The MIME Content-Type of the RPC response. */ function getResponseContentType() { return 'application/vnd.syncml+wbxml'; } } Horde_Rpc-2.1.1/lib/Horde/Rpc/ActiveSync.php0000664000175000017500000002015512227214442016603 0ustar janjan * * @category Horde * @package Rpc */ class Horde_Rpc_ActiveSync extends Horde_Rpc { /** * Holds the request's GET variables * * @var array */ protected $_get = array(); /** * The ActiveSync server object * * @var Horde_ActiveSync */ protected $_server; /** * Content type header to send in response. * * @var string */ protected $_contentType = 'application/vnd.ms-sync.wbxml'; /** * Constructor. * * @param Horde_Controller_Request_Http The request object. * * @param array $params A hash containing configuration parameters: * - server: (Horde_ActiveSync) The ActiveSync server object. * DEFAULT: none, REQUIRED */ public function __construct(Horde_Controller_Request_Http $request, array $params = array()) { parent::__construct($request, $params); // Use the server's getGetVars() method since they might be transmitted // as base64 encoded binary data. $serverVars = $request->getServerVars(); $this->_get = $params['server']->getGetVars(); if ($request->getMethod() == 'POST' && (((empty($this->_get['Cmd']) || empty($this->_get['DeviceId']) || empty($this->_get['DeviceType'])) && empty($serverVars['QUERY_STRING'])) && stripos($serverVars['REQUEST_URI'], 'autodiscover/autodiscover.xml') === false)) { $this->_logger->err('Missing required parameters.'); throw new Horde_Rpc_Exception('Your device requested the ActiveSync URL wihtout required parameters.'); } $this->_server = $params['server']; } /** * Returns the Content-Type of the response. * * @return string The MIME Content-Type of the RPC response. */ public function getResponseContentType() { return $this->_contentType; } /** * Horde_ActiveSync will read the input stream directly, do not access * it here. * * @see framework/Rpc/lib/Horde/Horde_Rpc#getInput() */ public function getInput() { return null; } /** * Sends an RPC request to the server and returns the result. * * @param string $request PHP input stream (ignored). */ public function getResponse($request) { ob_start(null, 1048576); $serverVars = $this->_request->getServerVars(); switch ($serverVars['REQUEST_METHOD']) { case 'OPTIONS': case 'GET': if ($serverVars['REQUEST_METHOD'] == 'GET' && $this->_get['Cmd'] != 'OPTIONS' && stripos($serverVars['REQUEST_URI'], 'autodiscover/autodiscover.xml') === false) { $this->_logger->debug('Accessing ActiveSync endpoing from browser or missing required data.'); throw new Horde_Rpc_Exception( Horde_Rpc_Translation::t('Trying to access the ActiveSync endpoint from a browser. Not Supported.')); } if (stripos($serverVars['REQUEST_URI'], 'autodiscover/autodiscover.xml') !== false) { try { if (!$this->_server->handleRequest('Autodiscover', null)) { $this->_logger->err('Unknown error during Autodiscover.'); throw new Horde_Exception('Unknown Error'); } } catch (Horde_Exception_AuthenticationFailure $e) { $this->_sendAuthenticationFailedHeaders(); exit; } catch (Horde_Exception $e) { $this->_handleError($e); } break; } $this->_logger->debug('Horde_Rpc_ActiveSync::getResponse() starting for OPTIONS'); try { if (!$this->_server->handleRequest('Options', null)) { throw new Horde_Exception('Unknown Error'); } } catch (Horde_Exception_AuthenticationFailure $e) { $this->_sendAuthenticationFailedHeaders(); exit; } catch (Horde_Exception $e) { $this->_handleError($e); } break; case 'POST': // Autodiscover Request if (stripos($serverVars['REQUEST_URI'], 'autodiscover/autodiscover.xml') !== false) { $this->_get['Cmd'] = 'Autodiscover'; $this->_get['DeviceId'] = null; } $this->_logger->debug('Horde_Rpc_ActiveSync::getResponse() starting for ' . $this->_get['Cmd']); try { $ret = $this->_server->handleRequest($this->_get['Cmd'], $this->_get['DeviceId']); if ($ret === false) { throw new Horde_ActiveSync_Exception(sprintf( 'Received FALSE while handling %s command.', $this->_get['Cmd'])); } elseif ($ret !== true) { $this->_contentType = $ret; } } catch (Horde_ActiveSync_Exception_InvalidRequest $e) { $this->_logger->err(sprintf( 'Returning HTTP 400 while handling %s command', $this->_get['Cmd'])); $this->_handleError($e); header('HTTP/1.1 400 Invalid Request ' . $e->getMessage()); exit; } catch (Horde_Exception_AuthenticationFailure $e) { $this->_sendAuthenticationFailedHeaders(); exit; } catch (Horde_Exception $e) { $this->_logger->err(sprintf( 'Returning HTTP 500 while handling %s command.', $this->_get['Cmd'])); $this->_handleError($e); header('HTTP/1.1 500 ' . $e->getMessage()); exit; } break; } } /** * Override the authorize method and always return true. The ActiveSync * server classes handld authentication directly since we need complete * control over what responses are sent. * * @return boolean */ public function authorize() { return true; } /** * * @see framework/Rpc/lib/Horde/Horde_Rpc#sendOutput($output) */ public function sendOutput($output) { // Unfortunately, even though we can stream the data to the client // with a chunked encoding, using chunked encoding also breaks the // progress bar on the PDA. So we de-chunk here and just output a // content-length header and send it as a 'normal' packet. If the output // packet exceeds 1MB (see ob_start) then it will be sent as a chunked // packet anyway because PHP will have to flush the buffer. $len = ob_get_length(); $data = ob_get_contents(); ob_end_clean(); if (!headers_sent()) { header('Content-Length: ' . $len); header('Content-Type: ' . $this->_contentType); flush(); echo $data; } else { flush(); sleep(2); $this->_logger->debug('Output ' . $len . ' Bytes of data found in content buffer since output started'); echo $data; } } /** * Output exception information to the logger. * * @param Exception $e The exception * * @throws Horde_Rpc_Exception $e */ protected function _handleError($e) { $trace = $e->getTraceAsString(); $m = $e->getMessage(); $buffer = ob_get_clean(); $this->_logger->err('Error in communicating with ActiveSync server: ' . $m); $this->_logger->err($trace); $this->_logger->err('Buffer contents: ' . $buffer); } /** * Send 401 Unauthorized headers. */ protected function _sendAuthenticationFailedHeaders() { header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: Basic realm="Horde ActiveSync"'); } } Horde_Rpc-2.1.1/lib/Horde/Rpc/Exception.php0000664000175000017500000000063512227214442016472 0ustar janjan * @category Horde * @package Rpc */ class Horde_Rpc_Exception extends Horde_Exception_Wrapped { } Horde_Rpc-2.1.1/lib/Horde/Rpc/Jsonrpc.php0000664000175000017500000001553712227214442016161 0ustar janjan * @author Jan Schneider * @category Horde * @package Rpc */ /** * The Horde_RPC_json-rpc class provides a JSON-RPC 1.1 implementation of the * Horde RPC system. * * - Only POST requests are supported. * - Named and positional parameters are accepted but the Horde registry only * works with positional parameters. * - Service Descriptions are not supported yet. * * @link http://json-rpc.org * @category Horde */ class Horde_Rpc_Jsonrpc extends Horde_Rpc { /** * Returns the Content-Type of the response. * * @return string The MIME Content-Type of the RPC response. */ function getResponseContentType() { return 'application/json'; } /** * Sends an RPC request to the server and returns the result. * * @param string The raw request string. * * @return string The JSON encoded response from the server. */ function getResponse($request) { $request = Horde_Serialize::unserialize($request, Horde_Serialize::JSON); if (!is_object($request)) { return $this->_raiseError('Request must be a JSON object', $request); } // Validate the request. if (empty($request->method)) { return $this->_raiseError('Request didn\'t specify a method name.', $request); } // Convert objects to associative arrays. if (empty($request->params)) { $params = array(); } else { $params = $this->_objectsToArrays($request->params); if (!is_array($params)) { return $this->_raiseError('Parameters must be JSON objects or arrays.', $request); } } // Check the method name. $method = str_replace('.', '/', $request->method); if (!$GLOBALS['registry']->hasMethod($method)) { return $this->_raiseError('Method "' . $request->method . '" is not defined', $request); } // Call the method. try { $result = $GLOBALS['registry']->call($method, $params); } catch (Horde_Exception $e) { return $this->_raiseError($e, $request); } // Return result. $response = array('version' => '1.1', 'result' => $result); if (isset($request->id)) { $response['id'] = $request->id; } return Horde_Serialize::serialize($response, Horde_Serialize::JSON); } /** * Returns a specially crafted PEAR_Error object containing a JSON-RPC * response in the error message. * * @param string|PEAR_Error $error The error message or object. * @param stdClass $request The original request object. * * @return PEAR_Error An error object suitable for a JSON-RPC 1.1 * conform error result. */ function _raiseError($error, $request) { $code = $userinfo = null; if (is_a($error, 'PEAR_Error')) { $code = $error->getCode(); $userinfo = $error->getUserInfo(); $error = $error->getMessage(); } $error = array('name' => 'JSONRPCError', 'code' => $code ? $code : 999, 'message' => $error); if ($userinfo) { $error['error'] = $userinfo; } $response = array('version' => '1.1', 'error' => $error); if (isset($request->id)) { $response['id'] = $request->id; } return PEAR::raiseError(Horde_Serialize::serialize($response, Horde_Serialize::JSON)); } /** * Builds an JSON-RPC request and sends it to the server. * * This statically called method is actually the JSON-RPC client. * * @param string|Horde_Url $url The path to the JSON-RPC server on the * called host. * @param string $method The method to call. * @param Horde_Http_Client $client * @param array $params A hash containing any necessary parameters * for the method call. * * @return mixed The returned result from the method. * @throws Horde_Rpc_Exception */ public static function request($url, $method, $client, $params = null) { $headers = array( 'User-Agent' => 'Horde RPC client', 'Accept' => 'application/json', 'Content-Type' => 'application/json'); $data = array('version' => '1.1', 'method' => $method); if (!empty($params)) { $data['params'] = $params; } $data = Horde_Serialize::serialize($data, Horde_Serialize::JSON); try { $result = $client->post($url, $data, $headers); } catch (Horde_Http_Exception $e) { throw new Horde_Rpc_Exception($e->getMessage()); } if ($result->code == 500) { $response = Horde_Serialize::unserialize($result->getBody(), Horde_Serialize::JSON); if (is_a($response, 'stdClass') && isset($response->error) && is_a($response->error, 'stdClass') && isset($response->error->name) && $response->error->name == 'JSONRPCError') { throw new Horde_Rpc_Exception($response->error->message); /* @todo: Include more information if we have an Exception that can handle this. return PEAR::raiseError($response->error->message, $response->error->code, null, null, isset($response->error->error) ? $response->error->error : null); */ } throw new Horde_Rpc_Exception($http->getResponseBody()); } elseif ($result->code != 200) { throw new Horde_Rpc_Exception('Request couldn\'t be answered. Returned errorcode: "' . $result->code); } return Horde_Serialize::unserialize($result->getBody(), Horde_Serialize::JSON); } /** * Converts stdClass object to associative arrays. * * @param $data mixed Any stdClass object, array, or scalar. * * @return mixed stdClass objects are returned as asscociative arrays, * scalars as-is, and arrays with their elements converted. */ function _objectsToArrays($data) { if (is_a($data, 'stdClass')) { $data = get_object_vars($data); } if (is_array($data)) { foreach ($data as $key => $value) { $data[$key] = $this->_objectsToArrays($value); } } return $data; } } Horde_Rpc-2.1.1/lib/Horde/Rpc/Phpgw.php0000664000175000017500000001247412227214442015625 0ustar janjan * @category Horde * @package Rpc */ class Horde_Rpc_Phpgw extends Horde_Rpc { /** * Resource handler for the XML-RPC server. * * @var resource */ var $_server; /** * XMLRPC server constructor. */ function __construct($request, $params = array()) { parent::__construct($request, $params); $this->_server = xmlrpc_server_create(); // Register only phpgw services. foreach ($GLOBALS['registry']->listMethods('phpgw') as $method) { $methods = explode('/', $method); array_shift($methods); $method = implode('.', $methods); xmlrpc_server_register_method($this->_server, $method, array('Horde_Rpc_Phpgw', '_dispatcher')); } } /** * Authorization is done by xmlrpc method system.login. */ function authorize() { return true; } /** * Sends an RPC request to the server and returns the result. * * @param string The raw request string. * * @return string The XML encoded response from the server. */ function getResponse($request) { $response = null; return xmlrpc_server_call_method($this->_server, $request, $response); } /** * Will be registered as the handler for all available methods * and will call the appropriate function through the registry. * * @access private * * @param string $method The name of the method called by the RPC request. * @param array $params The passed parameters. * @param mixed $data Unknown. * * @return mixed The result of the called registry method. */ function _dispatcher($method, $params, $data) { global $registry; $method = str_replace('.', '/', 'phpgw.' . $method); if (!$registry->hasMethod($method)) { Horde::logMessage(sprintf(Horde_Rpc_Translation::t("Method \"%s\" is not defined"), $method), 'NOTICE'); return sprintf(Horde_Rpc_Translation::t("Method \"%s\" is not defined"), $method); } // Try to resume a session if (isset($params[0]['kp3']) && $params[0]["kp3"] == session_name() && session_id() != $params[0]["sessionid"]) { Horde::logMessage("manually reload session ".$params[0]["sessionid"], 'NOTICE'); session_regenerate_id(); session_unset(); session_id($params[0]["sessionid"]); } // Be authenticated or call system.login. $authenticated = $registry->isAuthenticated() || $method== "phpgw/system/login"; if ($authenticated) { Horde::logMessage("rpc call $method allowed", 'NOTICE'); return $registry->call($method, $params); } else { return PEAR::raiseError(Horde_Rpc_Translation::t("You did not authenticate."), 'horde.error'); // return parent::authorize(); // error 9 "access denied" } } /** * Builds an XMLRPC request and sends it to the XMLRPC server. * * This statically called method is actually the XMLRPC client. * * @param string|Horde_Url $url The path to the XMLRPC server on the * called host. * @param string $method The method to call. * @param Horde_Http_Client $client The transport client * @param array $params A hash containing any necessary * parameters for the method call. * * @return mixed The returned result from the method. * @throws Horde_Rpc_Exception */ public static function request($url, $method, $client, $params = null) { $options['method'] = 'POST'; $headers = array( 'User-Agent' => 'Horde RPC client', 'Content-Type', 'text/xml'); try { $result = $client->post($url, xmlrpc_encode_request($method, $params), $headers); } catch (Horde_Http_Exception $e) { throw new Horde_Rpc_Exception($result); } if ($result->code != 200) { throw new Horde_Rpc_Exception(Horde_Rpc_Translation::t("Request couldn't be answered. Returned errorcode: ") . $result->code); } elseif (strpos($result->getBody(), 'getBody()); } else { $response = @xmlrpc_decode(substr($result->getBody(), strpos($result->getBody(), ' * @package Rpc */ class Horde_Rpc_Soap extends Horde_Rpc { /** * Resource handler for the SOAP server. * * @var object */ var $_server; /** * List of types to emit in the WSDL. * * @var array */ var $_allowedTypes = array(); /** * List of method names to allow. * * @var array */ var $_allowedMethods = array(); /** * Name of the SOAP service to use in the WSDL. * * @var string */ var $_serviceName = null; /** * SOAP server constructor * * @access private */ public function __construct($request, $params = array()) { parent::__construct($request, $params); if (!empty($params['allowedTypes'])) { $this->_allowedTypes = $params['allowedTypes']; } if (!empty($params['allowedMethods'])) { $this->_allowedMethods = $params['allowedMethods']; } if (!empty($params['serviceName'])) { $this->_serviceName = $params['serviceName']; } $this->_server = new SoapServer(null, array('uri' => (string)Horde::url($GLOBALS['registry']->get('webroot', 'horde') . '/rpc.php', true, -1))); $this->_server->addFunction(SOAP_FUNCTIONS_ALL); $this->_server->setClass('Horde_Rpc_Soap_Caller', $params); } /** * Takes a SOAP request and returns the result. * * @param string The raw request string. * * @return string The XML encoded response from the server. */ function getResponse($request) { if ($request == 'disco' || $request == 'wsdl') { /*@TODO Replace with subcalls for disco and wsdl generation from the old SOAP driver. */ //$handler = new Horde_Rpc_Soap($this->_params); //return $handler->getResponse($request); } /* We can't use Horde_Util::bufferOutput() here for some reason. */ $beginTime = time(); ob_start(); $this->_server->handle($request); Horde::logMessage( sprintf('SOAP call: %s(%s) by %s serviced in %d seconds, sent %d bytes in response', $GLOBALS['__horde_rpc_PhpSoap']['lastMethodCalled'], implode(', ', array_map(create_function('$a', 'return is_array($a) ? "Array" : $a;'), $GLOBALS['__horde_rpc_PhpSoap']['lastMethodParams'])), $GLOBALS['registry']->getAuth(), time() - $beginTime, ob_get_length()), 'INFO'); return ob_get_clean(); } /** * Builds a SOAP request and sends it to the SOAP server. * * This statically called method is actually the SOAP client. * * @param string|Horde_Url $url The path to the SOAP server on the called * host. * @param string $method The method to call. * @param array $params A hash containing any necessary parameters * for the method call. * @param $options Optional associative array of parameters which can be: * - user: Basic Auth username * - pass: Basic Auth password * - proxy_host: Proxy server host * - proxy_port: Proxy server port * - proxy_user: Proxy auth username * - proxy_pass: Proxy auth password * - timeout: Connection timeout in seconds. * - allowRedirects: Whether to follow redirects or not * - maxRedirects: Max number of redirects to follow * - namespace: * - soapaction: * - from: SMTP, from address * - transfer-encoding: SMTP, sets the * Content-Transfer-Encoding header * - subject: SMTP, subject header * - headers: SMTP, array-hash of extra smtp * headers * * @return mixed The returned result from the method * @throws Horde_Rpc_Exception */ public static function request($url, $method, $params = null, $soap) { try { return $soap->__soapCall($method, $params); } catch (Exception $e) { throw new Horde_Rpc_Exception($e); } } } class Horde_Rpc_Soap_Caller { /** * List of method names to allow. * * @var array */ protected $_allowedMethods = array(); /** */ public function __construct($params = array()) { if (!empty($params['allowedMethods'])) { $this->_allowedMethods = $params['allowedMethods']; } } /** * Will be registered as the handler for all methods called in the * SOAP server and will call the appropriate function through the registry. * * @todo PEAR SOAP operates on a copy of this object at some unknown * point and therefore doesn't have access to instance * variables if they're set here. Instead, globals are used * to track the method name and args for the logging code. * Once this is PHP 5-only, the globals can go in favor of * instance variables. * * @access private * * @param string $method The name of the method called by the RPC request. * @param array $params The passed parameters. * @param mixed $data Unknown. * * @return mixed The result of the called registry method. */ public function __call($method, $params) { $method = str_replace('.', '/', $method); if (!empty($this->_params['allowedMethods']) && !in_array($method, $this->_params['allowedMethods'])) { return sprintf(Horde_Rpc_Translation::t("Method \"%s\" is not defined"), $method); } $GLOBALS['__horde_rpc_PhpSoap']['lastMethodCalled'] = $method; $GLOBALS['__horde_rpc_PhpSoap']['lastMethodParams'] = !empty($params) ? $params : array(); if (!$GLOBALS['registry']->hasMethod($method)) { return sprintf(Horde_Rpc_Translation::t("Method \"%s\" is not defined"), $method); } return $GLOBALS['registry']->call($method, $params); } } Horde_Rpc-2.1.1/lib/Horde/Rpc/Syncml.php0000664000175000017500000000376312227214442016006 0ustar janjan * @author Anthony Mills * @package Rpc */ class Horde_Rpc_Syncml extends Horde_Rpc { /** * SyncML handles authentication internally, so bypass the RPC framework * auth check by just returning true here. */ function authorize() { return true; } /** * Sends an RPC request to the server and returns the result. * * @param string $request The raw request string. * * @return string The XML encoded response from the server. */ function getResponse($request) { $backendparms = array( /* Write debug output to this dir, must be writeable be web * server. */ 'debug_dir' => Horde::getTempDir().'/sync', /* Log all (wb)xml packets received or sent to debug_dir. */ 'debug_files' => true, /* Log everything. */ 'log_level' => 'DEBUG'); /* Create the backend. */ $GLOBALS['backend'] = Horde_SyncMl_Backend::factory('Horde', $backendparms); /* Handle request. */ $h = new Horde_SyncMl_ContentHandler(); $response = $h->process( $request, $this->getResponseContentType(), Horde::url($GLOBALS['registry']->get('webroot', 'horde') . '/rpc.php', true, -1)); /* Close the backend. */ $GLOBALS['backend']->close(); return $response; } /** * Returns the Content-Type of the response. * * @return string The MIME Content-Type of the RPC response. */ function getResponseContentType() { return 'application/vnd.syncml+xml'; } } Horde_Rpc-2.1.1/lib/Horde/Rpc/Translation.php0000664000175000017500000000317012227214442017027 0ustar janjan * @package Rpc */ class Horde_Rpc_Translation extends Horde_Translation { /** * Returns the translation of a message. * * @var string $message The string to translate. * * @return string The string translation, or the original string if no * translation exists. */ static public function t($message) { self::$_domain = 'Horde_Rpc'; self::$_directory = '@data_dir@' == '@'.'data_dir'.'@' ? __DIR__ . '/../../../locale' : '@data_dir@/Horde_Rpc/locale'; return parent::t($message); } /** * Returns the plural translation of a message. * * @param string $singular The singular version to translate. * @param string $plural The plural version to translate. * @param integer $number The number that determines singular vs. plural. * * @return string The string translation, or the original string if no * translation exists. */ static public function ngettext($singular, $plural, $number) { self::$_domain = 'Horde_Rpc'; self::$_directory = '@data_dir@' == '@'.'data_dir'.'@' ? __DIR__ . '/../../../locale' : '@data_dir@/Horde_Rpc/locale'; return parent::ngettext($singular, $plural, $number); } } Horde_Rpc-2.1.1/lib/Horde/Rpc/Webdav.php0000664000175000017500000000332612227214442015744 0ustar janjan * @author Jan Schneider * @category Horde * @package Rpc */ /** * @author Ben Klang * @author Jan Schneider * @category Horde * @package Rpc */ class Horde_Rpc_Webdav extends Horde_Rpc { /** * Do we need an authenticated user? * * @var boolean */ protected $_requireAuthorization = false; /** * The server instance. * * @var Sabre\DAV\Server */ protected $_server; /** * Constructor. * * @param Horde_Controller_Request_Http $request The request object. * @param array $params A hash containing any additional configuration or * connection parameters. */ public function __construct($request, $params = array()) { parent::__construct($request, $params); $this->_server = $GLOBALS['injector']->getInstance('Horde_Dav_Server'); } /** * Implemented in Sabre\DAV\Server. */ public function getInput() { return ''; } /** * Sends an RPC request to the server and returns the result. * * @param string The raw request string. * * @return string The XML encoded response from the server. */ public function getResponse($request) { //xdebug_break(); $this->_server->exec(); } /** * Implemented in Sabre\DAV\Server. */ public function sendOutput($output) { } } Horde_Rpc-2.1.1/lib/Horde/Rpc/Xmlrpc.php0000664000175000017500000001025412227214442015777 0ustar janjan * @package Rpc */ class Horde_Rpc_Xmlrpc extends Horde_Rpc { /** * Resource handler for the XMLRPC server. * * @var resource */ var $_server; /** * XMLRPC server constructor * * @access private */ public function __construct($request, $params = array()) { parent::__construct($request, $params); $this->_server = xmlrpc_server_create(); foreach ($GLOBALS['registry']->listMethods() as $method) { xmlrpc_server_register_method($this->_server, str_replace('/', '.', $method), array('Horde_Rpc_Xmlrpc', '_dispatcher')); } } /** * Sends an RPC request to the server and returns the result. * * @param string The raw request string. * * @return string The XML encoded response from the server. */ function getResponse($request) { $response = null; return xmlrpc_server_call_method($this->_server, $request, $response); } /** * Will be registered as the handler for all available methods * and will call the appropriate function through the registry. * * @access private * * @param string $method The name of the method called by the RPC request. * @param array $params The passed parameters. * @param mixed $data Unknown. * * @return mixed The result of the called registry method. */ function _dispatcher($method, $params, $data) { global $registry; $method = str_replace('.', '/', $method); if (!$registry->hasMethod($method)) { return 'Method "' . $method . '" is not defined'; } try { $result = $registry->call($method, $params); } catch (Horde_Exception $e) { $result = array('faultCode' => (int)$e->getCode(), 'faultString' => $e->getMessage()); } return $result; } /** * Builds an XMLRPC request and sends it to the XMLRPC server. * * This statically called method is actually the XMLRPC client. * * @param string|Horde_Url $url The path to the XMLRPC server on the * called host. * @param string $method The method to call. * @param Horde_Http_Client $client The transport client * @param array $params A hash containing any necessary * parameters for the method call. * * @return mixed The returned result from the method. * @throws Horde_Rpc_Exception */ public static function request($url, $method, $client, $params = null) { $headers = array( 'User-Agent' => 'Horde RPC client', 'Content-Type' => 'text/xml'); try { $result = $client->post($url, xmlrpc_encode_request($method, $params), $headers); } catch (Horde_Http_Exception $e) { throw new Horde_Rpc_Exception($result); } if ($result->code != 200) { throw new Horde_Rpc_Exception('Request couldn\'t be answered. Returned errorcode: "' . $result->code); } elseif (strpos($result->getBody(), 'getBody()); } else { $response = @xmlrpc_decode(substr($result->getBody(), strpos($result->getBody(), ' * $response = Horde_Rpc::request('xmlrpc', * 'http://localhost:80/horde/rpc.php', * 'contacts.search', * $transport_client, * array(array('jan'), array('localsql'), * array('name', 'email'))); * * * Copyright 2002-2013 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you * did not receive this file, see http://www.horde.org/licenses/lgpl21. * * @author Jan Schneider * @package Rpc */ class Horde_Rpc { /** * All driver-specific parameters. * * @var array */ protected $_params = array(); /** * Do we need an authenticated user? * * @var boolean */ protected $_requireAuthorization = true; /** * Whether we should exit if auth fails instead of requesting * authorization credentials. * * @var boolean */ protected $_requestMissingAuthorization = true; /** * Request variables, cookies etc... * * @var Horde_Controller_Request_Http */ protected $_request; /** * Logging * * @var Horde_Log_Logger */ protected $_logger; /** * Constructor. * * @param Horde_Controller_Request_Http $request The request object. * @param array $params A hash containing any additional configuration or * connection parameters a subclass might need. */ public function __construct($request, $params = array()) { // Create a stub if we don't have a useable logger. if (isset($params['logger']) && is_callable(array($params['logger'], 'log'))) { $this->_logger = $params['logger']; unset($params['logger']); } else { $this->_logger = new Horde_Support_Stub; } $this->_params = $params; $this->_request = $request; if (isset($params['requireAuthorization'])) { $this->_requireAuthorization = $params['requireAuthorization']; } if (isset($params['requestMissingAuthorization'])) { $this->_requestMissingAuthorization = $params['requestMissingAuthorization']; } $this->_logger->debug('Horde_Rpc::__construct complete'); } /** * Check authentication. Different backends may handle * authentication in different ways. The base class implementation * checks for HTTP Authentication against the Horde auth setup. * * @return boolean Returns true if authentication is successful. * Should send appropriate "not authorized" headers * or other response codes/body if auth fails, * and take care of exiting. */ public function authorize() { $this->_logger->debug('Horde_Rpc::authorize() starting'); if (!$this->_requireAuthorization) { return true; } // @TODO: inject this $auth = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Auth')->create(); $serverVars = $this->_request->getServerVars(); if (!empty($serverVars['PHP_AUTH_USER'])) { $user = $serverVars['PHP_AUTH_USER']; $pass = $serverVars['PHP_AUTH_PW']; } elseif (!empty($serverVars['Authorization'])) { $hash = str_replace('Basic ', '', $serverVars['Authorization']); $hash = base64_decode($hash); if (strpos($hash, ':') !== false) { list($user, $pass) = explode(':', $hash, 2); } } if (!isset($user) || !$auth->authenticate($user, array('password' => $pass))) { if ($this->_requestMissingAuthorization) { header('WWW-Authenticate: Basic realm="Horde RPC"'); } header('HTTP/1.0 401 Unauthorized'); echo '401 Unauthorized'; exit; } $this->_logger->debug('Horde_Rpc::authorize() exiting'); return true; } /** * Get the request body input. Different RPC backends can override * this to return an open stream to php://stdin, for instance - * whatever is easiest to handle in the getResponse() method. * * The base class implementation looks for $HTTP_RAW_POST_DATA and * returns that if it's available; otherwise, it returns the * contents of php://stdin. * * @return mixed The input - a string (default), a filehandle, etc. */ public function getInput() { if (isset($GLOBALS['HTTP_RAW_POST_DATA'])) { return $GLOBALS['HTTP_RAW_POST_DATA']; } else { return implode("\r\n", file('php://input')); } } /** * Sends an RPC request to the server implementation and returns the * result. * * @param string The raw request string. * * @return string The response from the server. */ public function getResponse($request) { return 'not implemented'; } /** * Returns the Content-Type of the response. * * @return string The MIME Content-Type of the RPC response. */ public function getResponseContentType() { return 'text/xml'; } /** * Send the output back to the client * * @param string $output The output to send back to the client. Can be * overridden in classes if needed. * * @return void */ public function sendOutput($output) { header('Content-Type: ' . $this->getResponseContentType()); header('Content-length: ' . strlen($output)); header('Accept-Charset: UTF-8'); echo $output; } /** * Builds an RPC request and sends it to the RPC server. * * This statically called method is actually the RPC client. * * @param string $driver The protocol driver to use. Currently * 'soap', 'xmlrpc' and 'jsonrpc' are * available. * @param string|Horde_Url $url The path to the RPC server on the called * host. * @param string $method The method to call. * @param mixed $client An appropriate request client for the type * of request. (Horde_Http_Request, SoapClient * etc..) * @param array $params A hash containing any necessary parameters * for the method call. * * @return mixed The returned result from the method * @throws Horde_Rpc_Exception */ public static function request($driver, $url, $method, $client, $params = null) { $driver = Horde_String::ucfirst(basename($driver)); $class = 'Horde_Rpc_' . $driver; if (class_exists($class)) { return call_user_func(array($class, 'request'), $url, $method, $client, $params); } else { throw new Horde_Rpc_Exception('Class definition of ' . $class . ' not found.'); } } /** * Attempts to return a concrete RPC server instance based on * $driver. * * @param mixed $driver The type of concrete Horde_Rpc subclass to return. * @param array $params A hash containing any additional configuration or * connection parameters a subclass might need. * * @return Horde_Rpc The newly created concrete Horde_Rpc server instance, * or an exception if there is an error. */ public static function factory($driver, $request, $params = null) { $driver = basename($driver); $class = 'Horde_Rpc_' . $driver; if (class_exists($class)) { return new $class($request, $params); } else { throw new Horde_Rpc_Exception('Class definition of ' . $class . ' not found.'); } } } Horde_Rpc-2.1.1/locale/ar/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000057212227214442017320 0ustar janjan$,8@9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Horde_Rpc-2.1.1/locale/ar/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000255612227214442017327 0ustar janjan# Arabic translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/bg/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000057212227214442017306 0ustar janjan$,8@9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Horde_Rpc-2.1.1/locale/bg/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000303712227214442017310 0ustar janjan# Bulgarian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, fuzzy, php-format msgid "Method \"%s\" is not defined" msgstr "Метод '%s' не е дефиниран" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Върнатите данни не са XML" #: lib/Horde/Rpc/Phpgw.php:158 #, fuzzy msgid "Request couldn't be answered. Returned errorcode: " msgstr "На запитването не беше отговорено: " #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/bs/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000057212227214442017322 0ustar janjan$,8@9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Horde_Rpc-2.1.1/locale/bs/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000255712227214442017332 0ustar janjan# Bosnian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/ca/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000112412227214442017273 0ustar janjan4L`a2|@ BMethod "%s" is not definedRequest couldn't be answered. Returned errorcode: Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit El mètode "%s" no està definitNo s'ha pogut respondre a la sol·licitud. Codi d'error retornat: Horde_Rpc-2.1.1/locale/ca/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000312112227214442017275 0ustar janjan# Catalan translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "El mètode \"%s\" no està definit" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "No s'han retornat dades XML vàlides" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "No s'ha pogut respondre a la sol·licitud. Codi d'error retornat: " #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "No s'ha pogut crear el directori VFS \"%s\"." #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 #, fuzzy msgid "You did not authenticate." msgstr "No esteu autenticats." Horde_Rpc-2.1.1/locale/cs/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000121312227214442017314 0ustar janjan4L`a2|66TMethod "%s" is not definedRequest couldn't be answered. Returned errorcode: Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2; Metoda "%s" není definovánaNelze odpovědět na požadavek. Chybové hlášení: Horde_Rpc-2.1.1/locale/cs/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000322612227214442017325 0ustar janjan# Czech translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "Metoda \"%s\" není definována" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Nebyla navrácena žádná platná XML data." #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Nelze odpovědět na požadavek. Chybové hlášení: " #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Nelze vytvořit VFS adresář \"%s\"." #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 #, fuzzy msgid "You did not authenticate." msgstr "Nebyli jste správně ověřeni." Horde_Rpc-2.1.1/locale/da/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000125312227214442017277 0ustar janjan<\pq2kE4cMethod "%s" is not definedRequest couldn't be answered. Returned errorcode: You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Metode "%s" er ikke defineretAnmodning kunne ikke besvares. Returneret fejlkode: Du er ikke ægtet.Horde_Rpc-2.1.1/locale/da/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000312512227214442017302 0ustar janjan# Danish translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "Metode \"%s\" er ikke defineret" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Ingen gyldige XML-data returneret" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Anmodning kunne ikke besvares. Returneret fejlkode: " #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Kan ikke danne VFS-katalog \"%s\"." #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Du er ikke ægtet." Horde_Rpc-2.1.1/locale/de/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000175312227214442017310 0ustar janjanL |2G[vu$)F;MMethod "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Trying to access the ActiveSync endpoint from a browser. Not Supported.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2013-05-07 14:14+0200 PO-Revision-Date: 2012-07-19 18:58+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Die Methode "%s" ist nicht definiertKeine gültigen XML-Daten zurückgegeben:Anfrage konnte nicht beantwortet werden. Zurückgegebener Fehlercode: Der Zugriff auf die ActiveSync-URL mit einem Browser wird nicht unterstützt.Sie sind nicht angemeldet.Horde_Rpc-2.1.1/locale/de/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000267612227214442017320 0ustar janjan# German translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Jan Schneider , 2010-2012. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2013-05-07 14:14+0200\n" "PO-Revision-Date: 2012-07-19 18:58+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "Die Methode \"%s\" ist nicht definiert" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "Keine gültigen XML-Daten zurückgegeben:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Anfrage konnte nicht beantwortet werden. Zurückgegebener Fehlercode: " #: lib/Horde/Rpc/ActiveSync.php:102 msgid "Trying to access the ActiveSync endpoint from a browser. Not Supported." msgstr "" "Der Zugriff auf die ActiveSync-URL mit einem Browser wird nicht unterstützt." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Sie sind nicht angemeldet." Horde_Rpc-2.1.1/locale/el/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000115012227214442017307 0ustar janjan,<P2QkwRequest couldn't be answered. Returned errorcode: Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Το αίτημα δε μπορεί να απαντηθεί. Επιστρεφόμενος κωδικός λάθους: Horde_Rpc-2.1.1/locale/el/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000343212227214442017317 0ustar janjan# Greek translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, fuzzy, php-format msgid "Method \"%s\" is not defined" msgstr "Η Μέθοδος '%s' δεν ορίσθηκε" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Δεν επιστράφηκαν έγγυρα XML δεδομένα" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Το αίτημα δε μπορεί να απαντηθεί. Επιστρεφόμενος κωδικός λάθους: " #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Αδύνατη η δημιουργία καταλόγου VFS \"%s\"." #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 #, fuzzy msgid "You did not authenticate." msgstr "Δεν έχετε αυθεντικοποιηθεί." Horde_Rpc-2.1.1/locale/en/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000223712227214442017320 0ustar janjan\ 1223eJk1j23J:Error deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=ASCII Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Error deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Horde_Rpc-2.1.1/locale/en/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000332112227214442017316 0ustar janjan# English translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ASCII\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "Error deleting from path %s; must be [app]/[path]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "Method \"%s\" is not defined" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "No valid XML data returned:" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Request couldn't be answered. Returned errorcode: " #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Unable to create directory %s; must be [app]/[path]" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Unable to rename %s; must be [app]/[path] and within the same application." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "You did not authenticate." Horde_Rpc-2.1.1/locale/es/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000205012227214442017316 0ustar janjanL |2G[u!&?EfgMethod "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Trying to access the ActiveSync endpoint from a browser. Not Supported.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2013-05-07 14:14+0200 PO-Revision-Date: 2013-06-11 20:26+0200 Last-Translator: Manuel P. Ayala , Juan C. Blanco Language-Team: i18n@lists.horde.org Language: es MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); El método "%s" no está definidoNo se han devuelto datos XML válidos:No se ha podido responder a la solicitud. Código de error devuelto: Se está intentando acceder a un punto final de ActiveSync desde un navegador. Esto no está soportado.No se autentificó.Horde_Rpc-2.1.1/locale/es/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000277012227214442017332 0ustar janjan# Spanish translations for Horde_Rpc package. # Copyright (C) 2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc package. # Automatically generated, 2013. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc \n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2013-05-07 14:14+0200\n" "PO-Revision-Date: 2013-06-11 20:26+0200\n" "Last-Translator: Manuel P. Ayala , Juan C. Blanco " "\n" "Language-Team: i18n@lists.horde.org\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "El método \"%s\" no está definido" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "No se han devuelto datos XML válidos:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "No se ha podido responder a la solicitud. Código de error devuelto: " #: lib/Horde/Rpc/ActiveSync.php:102 msgid "Trying to access the ActiveSync endpoint from a browser. Not Supported." msgstr "" "Se está intentando acceder a un punto final de ActiveSync desde un " "navegador. Esto no está soportado." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "No se autentificó." Horde_Rpc-2.1.1/locale/et/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000231412227214442017322 0ustar janjan\ 1223eJ{,z&89'QaError deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2011-03-15 13:27+0100 PO-Revision-Date: 2010-11-09 01:27+0200 Last-Translator: Alar Sing Language-Team: i18n@lists.horde.org Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Viga kustutamise %s; peab olema [app]/[path]Meetod "%s" ei ole defineeritudEi tagastatud korrektseid XML andmeid:Päringule polnud võimalik vastata. Tagastati veakood: Ei õnnestu luua kausta %s; peab olema kujul [app]/[path]Ei ole võimalik ümber nimetada %s; peab olema [app]/[path] ja samas programmis.Sa ei ole sisse logitud.Horde_Rpc-2.1.1/locale/et/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000340612227214442017330 0ustar janjan# Estonian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2011-03-15 13:27+0100\n" "PO-Revision-Date: 2010-11-09 01:27+0200\n" "Last-Translator: Alar Sing \n" "Language-Team: i18n@lists.horde.org\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:352 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "Viga kustutamise %s; peab olema [app]/[path]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "Meetod \"%s\" ei ole defineeritud" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "Ei tagastatud korrektseid XML andmeid:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Päringule polnud võimalik vastata. Tagastati veakood: " #: lib/Horde/Rpc/Webdav.php:417 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Ei õnnestu luua kausta %s; peab olema kujul [app]/[path]" #: lib/Horde/Rpc/Webdav.php:452 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Ei ole võimalik ümber nimetada %s; peab olema [app]/[path] ja samas " "programmis." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Sa ei ole sisse logitud." Horde_Rpc-2.1.1/locale/eu/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000107312227214442017324 0ustar janjan,<PQk#You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2012-07-19 18:34+0200 PO-Revision-Date: 2013-01-17 14:39+0100 Last-Translator: Ibon Igartua Language-Team: Euskal Herriko Unibertsitatea Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-Language: Basque Ez zaude autentikatuta.Horde_Rpc-2.1.1/locale/eu/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000320712227214442017330 0ustar janjan# Basque translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2012-07-19 18:34+0200\n" "PO-Revision-Date: 2013-01-17 14:39+0100\n" "Last-Translator: Ibon Igartua \n" "Language-Team: Euskal Herriko Unibertsitatea \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: Basque\n" #: lib/Horde/Rpc/Webdav.php:352 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/ActiveSync.php:112 msgid "Trying to access the ActiveSync endpoint from a browser. Not Supported." msgstr "" #: lib/Horde/Rpc/Webdav.php:417 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:452 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Ez zaude autentikatuta." Horde_Rpc-2.1.1/locale/fa/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000103512227214442017277 0ustar janjan,<P2Q@WRequest couldn't be answered. Returned errorcode: Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit تقاضا قابل پاسخگویی نیست. کد خطای برگردانده شده:Horde_Rpc-2.1.1/locale/fa/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000326612227214442017312 0ustar janjan# Persian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, fuzzy, php-format msgid "Method \"%s\" is not defined" msgstr "روش '%s' تعریف نشده است" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "هیچ داده XML معتبری بازگردانده نشده است" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "تقاضا قابل پاسخگویی نیست. کد خطای برگردانده شده:" #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "نمی‌توان شاخه VFS \"%s\" را ایجاد نمود" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 #, fuzzy msgid "You did not authenticate." msgstr "شما تصدیق هویّت نشدید" Horde_Rpc-2.1.1/locale/fi/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000260612227214442017314 0ustar janjan d 1.2JG}3JD^9 !#B4fH7Ur Error deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Trying to access the ActiveSync endpoint from a browser. Not Supported.Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2012-07-19 18:34+0200 PO-Revision-Date: 2012-10-28 21:00:13+0200 Last-Translator: Leena Heino Language-Team: Finnish Language: fi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Virhe poistettaessa polusta %s; pitää olla [app]/[path]Metodia "%s" ei ole määriteltyPalautunut XML-data oli kelvotonta:Pyyntöön ei voitu vastata. Palautunut virhekoodi: Yritetään ottaa yhteyttä ActiveSync toimintoon selaimella. Ei tuettu.Ei voida luoda hakemistoa %s; pitää olla [app]/[path]Ei voida nimetä uudelleen %s; pitää olla [app]/[path] ja saman ohjelman sisällä.Et autentikoitunut.Horde_Rpc-2.1.1/locale/fi/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000374512227214442017324 0ustar janjan# Finnish translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Leena Heino , 2010-2012. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2012-07-19 18:34+0200\n" "PO-Revision-Date: 2012-10-28 21:00:13+0200\n" "Last-Translator: Leena Heino \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:352 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "Virhe poistettaessa polusta %s; pitää olla [app]/[path]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "Metodia \"%s\" ei ole määritelty" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "Palautunut XML-data oli kelvotonta:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Pyyntöön ei voitu vastata. Palautunut virhekoodi: " #: lib/Horde/Rpc/ActiveSync.php:112 msgid "Trying to access the ActiveSync endpoint from a browser. Not Supported." msgstr "Yritetään ottaa yhteyttä ActiveSync toimintoon selaimella. Ei tuettu." #: lib/Horde/Rpc/Webdav.php:417 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Ei voida luoda hakemistoa %s; pitää olla [app]/[path]" #: lib/Horde/Rpc/Webdav.php:452 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Ei voida nimetä uudelleen %s; pitää olla [app]/[path] ja saman ohjelman " "sisällä." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Et autentikoitunut." Horde_Rpc-2.1.1/locale/fr/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000305112227214442017320 0ustar janjan d 1.2JG}3JD^E)d/=_M\_  Error deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Trying to access the ActiveSync endpoint from a browser. Not Supported.Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2013-01-14 09:19+0100 PO-Revision-Date: 2013-01-16 17:37+0100 Last-Translator: Paul De Vlieger Language-Team: French Language: fr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); X-Generator: Lokalize 1.4 Erreur lors de la suppression du chemin %s : doit être [app]/[path]La méthode « %s » n'est pas définieAucune donnée XML valide n'a été retournée:Aucune réponse à votre requête. Code d'erreur retourné :Tentative d'accès au point d'accès ActiveSync depuis un navigateur. Ceci n'est pas supporté.Création du répertoire %s impossible ; doit être de la forme [app]/[path]Impossible de renommer %s ; doit être de la forme [app]/[path] et parmi la même application.Vous n'êtes pas authentifié.Horde_Rpc-2.1.1/locale/fr/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000431712227214442017331 0ustar janjan# French translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # Paul De Vlieger , 2013 msgid "" msgstr "" "Project-Id-Version: Horde_Rpc \n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2013-01-14 09:19+0100\n" "PO-Revision-Date: 2013-01-16 17:37+0100\n" "Last-Translator: Paul De Vlieger \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Lokalize 1.4\n" #: lib/Horde/Rpc/Webdav.php:352 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "Erreur lors de la suppression du chemin %s : doit être [app]/[path]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "La méthode « %s » n'est pas définie" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "Aucune donnée XML valide n'a été retournée:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Aucune réponse à votre requête. Code d'erreur retourné :" #: lib/Horde/Rpc/ActiveSync.php:106 msgid "Trying to access the ActiveSync endpoint from a browser. Not Supported." msgstr "" "Tentative d'accès au point d'accès ActiveSync depuis un navigateur. Ceci " "n'est pas supporté." #: lib/Horde/Rpc/Webdav.php:417 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" "Création du répertoire %s impossible ; doit être de la forme [app]/[path]" #: lib/Horde/Rpc/Webdav.php:452 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Impossible de renommer %s ; doit être de la forme [app]/[path] et parmi la " "même application." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Vous n'êtes pas authentifié." Horde_Rpc-2.1.1/locale/gl/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000057212227214442017320 0ustar janjan$,8@9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Horde_Rpc-2.1.1/locale/gl/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000256012227214442017322 0ustar janjan# Galician translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/he/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000064512227214442017313 0ustar janjan$,8k9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Horde_Rpc-2.1.1/locale/he/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000263512227214442017317 0ustar janjan# Hebrew translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/hr/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000253212227214442017325 0ustar janjan\ 1223eJH"89[O`FError deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2011-03-15 13:27+0100 PO-Revision-Date: 2011-11-08 16:49+0200 Last-Translator: Valentin Vidic Language-Team: i18n@lists.horde.org Language: hr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); Greška pri brisanju u stazi %s; mora biti u obliku [aplikacija]/[staza]Metoda "%s" nije definiranaNisu vraćeni ispravni XML podaci:Zahtjev nije mogao biti obrađen. Vraćen kod pogreške: Nije uspjelo kreiranje direktorija %s; mora biti u obliku [aplikacija]/[staza].Nije uspjelo preimenovanje %s; mora biti u obliku [aplikacija]/[staza] i unutar iste aplikacije.Niste se prijavili.Horde_Rpc-2.1.1/locale/hr/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000367512227214442017341 0ustar janjan# Croatian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Valentin Vidic , 2011. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2011-03-15 13:27+0100\n" "PO-Revision-Date: 2011-11-08 16:49+0200\n" "Last-Translator: Valentin Vidic \n" "Language-Team: i18n@lists.horde.org\n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: lib/Horde/Rpc/Webdav.php:352 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" "Greška pri brisanju u stazi %s; mora biti u obliku [aplikacija]/[staza]" # Postupak #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "Metoda \"%s\" nije definirana" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "Nisu vraćeni ispravni XML podaci:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Zahtjev nije mogao biti obrađen. Vraćen kod pogreške: " #: lib/Horde/Rpc/Webdav.php:417 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" "Nije uspjelo kreiranje direktorija %s; mora biti u obliku [aplikacija]/" "[staza]." #: lib/Horde/Rpc/Webdav.php:452 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Nije uspjelo preimenovanje %s; mora biti u obliku [aplikacija]/[staza] i " "unutar iste aplikacije." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Niste se prijavili." Horde_Rpc-2.1.1/locale/hu/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000241012227214442017323 0ustar janjanT 1239Jmk^>!1hxZ4Error deleting from path %s; must be [app]/[path]Method "%s" is not definedRequest couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Nem sikerült %s útvonalról törölni; [alkalmazás]/[elérési útvonal] alakú kell legyenA(z) "%s" módszer definiálatlanA kérés nem teljesíthető. A kapott hibakód: Nem sikerült a(z) "%s" alkönyvtárt létrehozni; [alkalmazás]/[elérési útvonal] alakú kell legyen%s átnevezése nem sikerült; [alkalmazás]/[útvonal] alakú kell legyen és ugyanabban az alkalmazásban kell lennie.Az Ön felhasználóazonosítása nem történt meg.Horde_Rpc-2.1.1/locale/hu/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000366212227214442017340 0ustar janjan# Hungarian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" "Nem sikerült %s útvonalról törölni; [alkalmazás]/[elérési útvonal] alakú " "kell legyen" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "A(z) \"%s\" módszer definiálatlan" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "A visszakapott adatok nem érvényes XML adatok" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "A kérés nem teljesíthető. A kapott hibakód: " #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" "Nem sikerült a(z) \"%s\" alkönyvtárt létrehozni; [alkalmazás]/[elérési " "útvonal] alakú kell legyen" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "%s átnevezése nem sikerült; [alkalmazás]/[útvonal] alakú kell legyen és " "ugyanabban az alkalmazásban kell lennie." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Az Ön felhasználóazonosítása nem történt meg." Horde_Rpc-2.1.1/locale/id/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000057212227214442017312 0ustar janjan$,8@9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=ASCII Content-Transfer-Encoding: 8bit Horde_Rpc-2.1.1/locale/id/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000256212227214442017316 0ustar janjan# Indonesian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ASCII\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/is/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000057212227214442017331 0ustar janjan$,8@9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Horde_Rpc-2.1.1/locale/is/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000256112227214442017334 0ustar janjan# Icelandic translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/it/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000221212227214442017323 0ustar janjanT 1239JmkF>5@WsError deleting from path %s; must be [app]/[path]Method "%s" is not definedRequest couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Errore nell'eliminazione dal percorso; %s deve essere [app]/[percorso]Il Metodo "%s" non è definitoLa richiesta non può essere risposta. Codice errore:Impossibile creare la directory %s; deve essere [app]/[percorso]Impossibile rinominare %s: deve essere [app]/[percorso] e dentro la stessa applicazioneNon ti eri autenticatoHorde_Rpc-2.1.1/locale/it/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000341012227214442017327 0ustar janjan# Italian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "Errore nell'eliminazione dal percorso; %s deve essere [app]/[percorso]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "Il Metodo \"%s\" non è definito" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Dati XML non validi" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "La richiesta non può essere risposta. Codice errore:" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Impossibile creare la directory %s; deve essere [app]/[percorso]" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Impossibile rinominare %s: deve essere [app]/[percorso] e dentro la stessa " "applicazione" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Non ti eri autenticato" Horde_Rpc-2.1.1/locale/ja/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000207212227214442017305 0ustar janjanL |2G[u-6@<wZ*Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Trying to access the ActiveSync endpoint from a browser. Not Supported.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2013-05-07 14:14+0200 PO-Revision-Date: 2013-06-01 16:59+0900 Last-Translator: Hiromi Kimura Language-Team: i18n@lists.horde.org Language: ja MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; X-Generator: Poedit 1.5.4 メソッド "%s" は定義されてません正しいXMLデータが返されませんでした:要求に返答できません。応答エラーコード:ブラウザから ActiveSync 端末へのアクセスはサポートしていません。あなたは認証されていません。Horde_Rpc-2.1.1/locale/ja/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000300012227214442017300 0ustar janjan# Japanese translation for Horde. # Copyright 2004-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde package. # Hiromi Kimura # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2013-05-07 14:14+0200\n" "PO-Revision-Date: 2013-06-01 16:59+0900\n" "Last-Translator: Hiromi Kimura \n" "Language-Team: i18n@lists.horde.org\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 1.5.4\n" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "メソッド \"%s\" は定義されてません" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "正しいXMLデータが返されませんでした:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "要求に返答できません。応答エラーコード:" #: lib/Horde/Rpc/ActiveSync.php:102 msgid "Trying to access the ActiveSync endpoint from a browser. Not Supported." msgstr "ブラウザから ActiveSync 端末へのアクセスはサポートしていません。" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "あなたは認証されていません。" Horde_Rpc-2.1.1/locale/km/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000057212227214442017325 0ustar janjan$,8@9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Horde_Rpc-2.1.1/locale/km/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000266312227214442017333 0ustar janjan# Khmer translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, fuzzy, php-format msgid "Method \"%s\" is not defined" msgstr "\"%s\" មិន​មែន​ជា​ថត​ឡើយ ។" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/ko/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000063612227214442017330 0ustar janjan$,8d9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; Horde_Rpc-2.1.1/locale/ko/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000271512227214442017333 0ustar janjan# Korean translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "vfsroot 디렉토리를 읽을 수 없습니다." #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/lt/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000237512227214442017340 0ustar janjan\ 1223eJ=/,;\PError deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2011-05-28 01:09+0300 PO-Revision-Date: 2011-06-28 01:01+0300 Last-Translator: Vilius Šumskas Language-Team: Lithuanian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2); Klaida trinant iš katalogo %s; turi būti [modulis]/[kelias]Būdas "%s" neaprašytasTeisingų XML duomenų nėra:Negaliu atsakyti į užklausą. Klaidos kodas: Nepavyko sukurti katalogo %s; turi būti [modulis]/[kelias]Nepavyko pervadinti %s; turi būti [modulis]/[kelias] ir tame pačiame modulyje.Jūs neprisijungę.Horde_Rpc-2.1.1/locale/lt/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000350012227214442017332 0ustar janjan# Lithuanian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Vilius Šumskas , 2011. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2011-05-28 01:09+0300\n" "PO-Revision-Date: 2011-06-28 01:01+0300\n" "Last-Translator: Vilius Šumskas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" #: lib/Horde/Rpc/Webdav.php:352 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "Klaida trinant iš katalogo %s; turi būti [modulis]/[kelias]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "Būdas \"%s\" neaprašytas" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "Teisingų XML duomenų nėra:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Negaliu atsakyti į užklausą. Klaidos kodas: " #: lib/Horde/Rpc/Webdav.php:417 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Nepavyko sukurti katalogo %s; turi būti [modulis]/[kelias]" #: lib/Horde/Rpc/Webdav.php:452 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Nepavyko pervadinti %s; turi būti [modulis]/[kelias] ir tame pačiame " "modulyje." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Jūs neprisijungę." Horde_Rpc-2.1.1/locale/lv/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000254512227214442017341 0ustar janjan\ 1223eJ<-G=d9b%?Error deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2011-03-15 13:27+0100 PO-Revision-Date: 2011-10-16 15:22+0300 Last-Translator: Jānis Eisaks Language-Team: i18n@lists.horde.org Language: lv MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2); X-Poedit-Language: Latvian X-Poedit-Country: LATVIA X-Poedit-SourceCharset: utf-8 Kļūda dzēšot ceļu %s; jābūt norādītiem [app]/[path]Metode "%s" nav definētaSaņemti nederīgi XML dati:Uz pieprasījumu nav iespējams atbildēt. Saņemtā kļūda:Nevar izveidot mapi %s; jābūt norādītiem [app]/[path]Kļūda pārdēvējot %s; jābūt norādītiem [app]/[path] un jāatrodas tai pašā aplikācijā.Jūs neesat autentificējies(-usies).Horde_Rpc-2.1.1/locale/lv/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000365712227214442017351 0ustar janjan# Latvian translations for Horde_Rpc package. # Copyright 2011-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc package. # Automatically generated, 2011. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2011-03-15 13:27+0100\n" "PO-Revision-Date: 2011-10-16 15:22+0300\n" "Last-Translator: Jānis Eisaks \n" "Language-Team: i18n@lists.horde.org\n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" "X-Poedit-Language: Latvian\n" "X-Poedit-Country: LATVIA\n" "X-Poedit-SourceCharset: utf-8\n" #: lib/Horde/Rpc/Webdav.php:352 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "Kļūda dzēšot ceļu %s; jābūt norādītiem [app]/[path]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "Metode \"%s\" nav definēta" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "Saņemti nederīgi XML dati:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Uz pieprasījumu nav iespējams atbildēt. Saņemtā kļūda:" #: lib/Horde/Rpc/Webdav.php:417 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Nevar izveidot mapi %s; jābūt norādītiem [app]/[path]" #: lib/Horde/Rpc/Webdav.php:452 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Kļūda pārdēvējot %s; jābūt norādītiem [app]/[path] un jāatrodas tai pašā " "aplikācijā." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Jūs neesat autentificējies(-usies)." Horde_Rpc-2.1.1/locale/mk/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000057212227214442017325 0ustar janjan$,8@9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Horde_Rpc-2.1.1/locale/mk/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000256212227214442017331 0ustar janjan# Macedonian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/nb/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000064512227214442017316 0ustar janjan$,8k9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Horde_Rpc-2.1.1/locale/nb/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000276512227214442017326 0ustar janjan# Norwegian Bokmal translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, fuzzy, php-format msgid "Method \"%s\" is not defined" msgstr "Metoden '%s' er ikke definert." #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Ingen gyldige XML-data returnert" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/nl/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000274412227214442017332 0ustar janjan d 1.2JG}3JD^Z !f./PnX Error deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Trying to access the ActiveSync endpoint from a browser. Not Supported.Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2012-07-19 18:34+0200 PO-Revision-Date: 2012-11-02 23:11+0100 Last-Translator: Arjen de Korte Language-Team: Dutch Language: nl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); X-Generator: Lokalize 1.4 Er is een fout opgetreden bij het verwijderen van het pad %s; moet zijn [applicatie]/[pad]Methode "%s" is niet gedefinieerdGeen geldige XML data gevonden:Verzoek kon niet worden beantwoord. Foutcode: ActiveSync is niet beschikbaar via een browser.Er is een fout opgetreden bij het maken van map %s; moet zijn [applicatie]/[pad]Er is een fout opgetreden bij het hernoemen van %s; moet zijn [applicatie]/[map] en binnen dezelde applicatie.U bent niet geauthenticeerd.Horde_Rpc-2.1.1/locale/nl/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000413312227214442017327 0ustar janjan# Dutch translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # # Arjen de Korte , 2012. msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2012-07-19 18:34+0200\n" "PO-Revision-Date: 2012-11-02 23:11+0100\n" "Last-Translator: Arjen de Korte \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 1.4\n" #: lib/Horde/Rpc/Webdav.php:352 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" "Er is een fout opgetreden bij het verwijderen van het pad %s; moet zijn " "[applicatie]/[pad]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "Methode \"%s\" is niet gedefinieerd" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "Geen geldige XML data gevonden:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Verzoek kon niet worden beantwoord. Foutcode: " #: lib/Horde/Rpc/ActiveSync.php:112 msgid "Trying to access the ActiveSync endpoint from a browser. Not Supported." msgstr "ActiveSync is niet beschikbaar via een browser." #: lib/Horde/Rpc/Webdav.php:417 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" "Er is een fout opgetreden bij het maken van map %s; moet zijn [applicatie]/" "[pad]" #: lib/Horde/Rpc/Webdav.php:452 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Er is een fout opgetreden bij het hernoemen van %s; moet zijn [applicatie]/" "[map] en binnen dezelde applicatie." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "U bent niet geauthenticeerd." Horde_Rpc-2.1.1/locale/nn/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000064512227214442017332 0ustar janjan$,8k9Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Horde_Rpc-2.1.1/locale/nn/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000303512227214442017331 0ustar janjan# Norwegian Nynorsk translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, fuzzy, php-format msgid "Method \"%s\" is not defined" msgstr "Metode '%s' ikkje definert" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Ingen gyldige XML-data returnert" #: lib/Horde/Rpc/Phpgw.php:158 #, fuzzy msgid "Request couldn't be answered. Returned errorcode: " msgstr "Kunne ikkje svare på førespurnad" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/pl/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000073712227214442017334 0ustar janjan$,89Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); Horde_Rpc-2.1.1/locale/pl/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000313412227214442017331 0ustar janjan# Polish translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, fuzzy, php-format msgid "Method \"%s\" is not defined" msgstr "Metoda \"%s\" jest niezdefiniowana" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Błąd podczas tworzenia katalogu na VFS \"%s\"." #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 #, fuzzy msgid "You did not authenticate." msgstr "Nie jesteś autoryzowany." Horde_Rpc-2.1.1/locale/pt/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000120212227214442017330 0ustar janjan4L`a2|k"C>Method "%s" is not definedRequest couldn't be answered. Returned errorcode: Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); O método "%s" não está definidoNão foi possível responder ao pedido. Código de erro devolvido: Horde_Rpc-2.1.1/locale/pt/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000321712227214442017343 0ustar janjan# Portuguese translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "O método \"%s\" não está definido" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Não foram retornados dados em XML válidos" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Não foi possível responder ao pedido. Código de erro devolvido: " #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Não foi possível criar a pasta VFS \"%s\"." #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 #, fuzzy msgid "You did not authenticate." msgstr "Não está autenticado." Horde_Rpc-2.1.1/locale/pt_BR/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000175312227214442017726 0ustar janjanL |2G[u "$DGDMethod "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Trying to access the ActiveSync endpoint from a browser. Not Supported.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2013-05-07 14:14+0200 PO-Revision-Date: 2013-03-16 11:07-0300 Last-Translator: Luis Felipe Marzagao Language-Team: i18n@lists.horde.org Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); Método "%s" não está definidoNenhum dado XML válido retornado:Solicitação não pôde ser respondida. Código de erro retornado: Tentando acessar o ponto ActiveSync de um navegador. Não suportado.Você não se autenticou.Horde_Rpc-2.1.1/locale/pt_BR/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000266412227214443017734 0ustar janjan# Portuguese translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2013-05-07 14:14+0200\n" "PO-Revision-Date: 2013-03-16 11:07-0300\n" "Last-Translator: Luis Felipe Marzagao \n" "Language-Team: i18n@lists.horde.org\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "Método \"%s\" não está definido" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "Nenhum dado XML válido retornado:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Solicitação não pôde ser respondida. Código de erro retornado: " #: lib/Horde/Rpc/ActiveSync.php:102 msgid "Trying to access the ActiveSync endpoint from a browser. Not Supported." msgstr "Tentando acessar o ponto ActiveSync de um navegador. Não suportado." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Você não se autenticou." Horde_Rpc-2.1.1/locale/ro/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000072312227214443017335 0ustar janjan$,89Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=ASCII Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2; Horde_Rpc-2.1.1/locale/ro/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000272012227214443017337 0ustar janjan# Romanian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ASCII\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/ru/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000120112227214443017333 0ustar janjan,<P1QG9Error deleting from path %s; must be [app]/[path]Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); Ошибка удаления с %s; должно быть [app]/[path]Horde_Rpc-2.1.1/locale/ru/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000352012227214443017344 0ustar janjan# Russian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "Ошибка удаления с %s; должно быть [app]/[path]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, fuzzy, php-format msgid "Method \"%s\" is not defined" msgstr "Адресат уведомления %s не найден." #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Невозможно соединиться с SQL сервером." #: lib/Horde/Rpc/Webdav.php:443 #, fuzzy, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "Невозможно соединиться с SQL сервером." #: lib/Horde/Rpc/Phpgw.php:99 #, fuzzy msgid "You did not authenticate." msgstr "Не могу открыть модуль Maintenance_Task %s" Horde_Rpc-2.1.1/locale/sk/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000277612227214443017344 0ustar janjan d 1.2JG}3JD^NP$pBcR<T Error deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Trying to access the ActiveSync endpoint from a browser. Not Supported.Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2012-07-19 18:34+0200 PO-Revision-Date: 2012-12-30 17:54+0200 Last-Translator: Jozef Sudolsky Language-Team: i18n@lists.horde.org Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2; Nepodarilo sa vymazať z cesty %s; musí byť vo formáte [aplikácia]/[cesta]Metóda "%s" nie je definovanáNeboli vrátené platné XML údaje:Na požiadavku nebolo možné odpovedať. Návratový kód chyby: Pokúšate sa pristupovať ku koncovnému bodu ActiveSync z prehliadača. Toto nie je podporované.Nepodarilo sa vytvoriť priečinok %s; musí byť vo formáte [aplikácia]/[cesta]Nepodarilo sa premenovať priečinok %s; musí byť vo formáte [aplikácia]/[cesta]Nie ste autentifikovaný.Horde_Rpc-2.1.1/locale/sk/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000427712227214443017345 0ustar janjan# Slovak translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # Martin Matuška , 2008 # Jozef Sudolský , 2012 # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2012-07-19 18:34+0200\n" "PO-Revision-Date: 2012-12-30 17:54+0200\n" "Last-Translator: Jozef Sudolsky \n" "Language-Team: i18n@lists.horde.org\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: lib/Horde/Rpc/Webdav.php:352 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" "Nepodarilo sa vymazať z cesty %s; musí byť vo formáte [aplikácia]/[cesta]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "Metóda \"%s\" nie je definovaná" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "Neboli vrátené platné XML údaje:" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Na požiadavku nebolo možné odpovedať. Návratový kód chyby: " #: lib/Horde/Rpc/ActiveSync.php:112 msgid "Trying to access the ActiveSync endpoint from a browser. Not Supported." msgstr "" "Pokúšate sa pristupovať ku koncovnému bodu ActiveSync z prehliadača. Toto " "nie je podporované." #: lib/Horde/Rpc/Webdav.php:417 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "" "Nepodarilo sa vytvoriť priečinok %s; musí byť vo formáte [aplikácia]/[cesta]" #: lib/Horde/Rpc/Webdav.php:452 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Nepodarilo sa premenovať priečinok %s; musí byť vo formáte [aplikácia]/" "[cesta]" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Nie ste autentifikovaný." Horde_Rpc-2.1.1/locale/sl/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000133412227214443017332 0ustar janjan<\pq2y4Method "%s" is not definedRequest couldn't be answered. Returned errorcode: You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3); '%s' postopek ni določen.Zahtevi ne morem ugoditi. Vrnjena je napačna koda: Niste se prijaviliHorde_Rpc-2.1.1/locale/sl/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000321412227214443017334 0ustar janjan# Slovenian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "'%s' postopek ni določen." #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Povratnih veljavnih XML podatkov ni" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Zahtevi ne morem ugoditi. Vrnjena je napačna koda: " #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Ne morem ustavriti imenika \"%s\"." #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Niste se prijavili" Horde_Rpc-2.1.1/locale/sv/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000104212227214443017340 0ustar janjan,<P2Qk1Request couldn't be answered. Returned errorcode: Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Begäran kunde inte besvaras. Returnerad felkod: Horde_Rpc-2.1.1/locale/sv/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000310312227214443017343 0ustar janjan# Swedish translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, fuzzy, php-format msgid "Method \"%s\" is not defined" msgstr "Metoden '%s' är inte definierad" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Ingen giltig XML data returnerades" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Begäran kunde inte besvaras. Returnerad felkod: " #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Kan inte skapa VFS-mapp %s." #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/locale/tr/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000215512227214443017343 0ustar janjanT 1239JmdE7}+:TWError deleting from path %s; must be [app]/[path]Method "%s" is not definedRequest couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; Erişim yolundan (%s) silinemedi; [uygulama]/[yol] şeklinde olmalı.Yöntem "%s" tanımlı değilİstek cevaplanamadı.Dönülen hata kodu: Dizin %s yaratılamadı; [uyglama]/[yol] şeklinde olmalı%s yeniden adlandırılamadı; [uygulama]/[yol] şeklinde, aynı uygulamada olmalı.Yetkilendirilmediniz.Horde_Rpc-2.1.1/locale/tr/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000337212227214443017350 0ustar janjan# Turkish translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "Erişim yolundan (%s) silinemedi; [uygulama]/[yol] şeklinde olmalı." #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "Yöntem \"%s\" tanımlı değil" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "Geçerli XML verisi geri dönmedi." #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "İstek cevaplanamadı.Dönülen hata kodu: " #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Dizin %s yaratılamadı; [uyglama]/[yol] şeklinde olmalı" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "%s yeniden adlandırılamadı; [uygulama]/[yol] şeklinde, aynı uygulamada " "olmalı." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Yetkilendirilmediniz." Horde_Rpc-2.1.1/locale/uk/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000272612227214443017341 0ustar janjan\ 1223eJ\):;Rv\|&2Error deleting from path %s; must be [app]/[path]Method "%s" is not definedNo valid XML data returned:Request couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2013-04-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); Помилка витирання за шляхом %s; повинна бути [app]/[path]Метод "%s" не визначенийКоректних даних XML не повернено:Відповіді на запит не може бути. Код помилки: Не можу створити директорію %s; повинна бути [app]/[path]Не можу перейменувати %s; повинна бути [app]/[path] і в межах того ж модуля.Ви не пройшли аутентикацію.Horde_Rpc-2.1.1/locale/uk/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000401512227214443017335 0ustar janjan# Ukrainian translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2013-04-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "Помилка витирання за шляхом %s; повинна бути [app]/[path]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "Метод \"%s\" не визначений" #: lib/Horde/Rpc/Phpgw.php:160 msgid "No valid XML data returned:" msgstr "Коректних даних XML не повернено:" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "Відповіді на запит не може бути. Код помилки: " #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "Не можу створити директорію %s; повинна бути [app]/[path]" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" "Не можу перейменувати %s; повинна бути [app]/[path] і в межах того ж модуля." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "Ви не пройшли аутентикацію." Horde_Rpc-2.1.1/locale/zh_CN/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000115312227214443017714 0ustar janjan<\pq2@'3[Method "%s" is not definedRequest couldn't be answered. Returned errorcode: You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 未定义方法 “%s”无法回复请求。返回错误码:您未验证。Horde_Rpc-2.1.1/locale/zh_CN/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000301412227214443017715 0ustar janjan# Chinese translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "未定义方法 “%s”" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "未返回有效的 XML 数据" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "无法回复请求。返回错误码:" #: lib/Horde/Rpc/Webdav.php:408 #, fuzzy, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "无法创建 VFS 目录“%s”。" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "您未验证。" Horde_Rpc-2.1.1/locale/zh_TW/LC_MESSAGES/Horde_Rpc.mo0000664000175000017500000000202012227214443017740 0ustar janjanT 1239Jm@@T!m-AError deleting from path %s; must be [app]/[path]Method "%s" is not definedRequest couldn't be answered. Returned errorcode: Unable to create directory %s; must be [app]/[path]Unable to rename %s; must be [app]/[path] and within the same application.You did not authenticate.Project-Id-Version: Horde_Rpc Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2010-10-13 01:27+0200 PO-Revision-Date: 2010-10-13 01:27+0200 Last-Translator: Automatically generated Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 自目錄 %s 刪除資料時發生錯誤; 必須是 [app]/[path]方法 "%s" 未被定義需求未被回應: 錯誤號碼:無法建立目錄 %s; 必須是 [app]/[path]無法更名 %s; 必須是 [app]/[path] 而且在相同的程式.你尚未驗證.Horde_Rpc-2.1.1/locale/zh_TW/LC_MESSAGES/Horde_Rpc.po0000664000175000017500000000322112227214443017747 0ustar janjan# Chinese translations for Horde_Rpc module. # Copyright 2010-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc module. # Automatically generated, 2010. # msgid "" msgstr "" "Project-Id-Version: Horde_Rpc\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2010-10-13 01:27+0200\n" "PO-Revision-Date: 2010-10-13 01:27+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: i18n@lists.horde.org\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Webdav.php:347 #, php-format msgid "Error deleting from path %s; must be [app]/[path]" msgstr "自目錄 %s 刪除資料時發生錯誤; 必須是 [app]/[path]" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:206 lib/Horde/Rpc/Soap.php:214 #, php-format msgid "Method \"%s\" is not defined" msgstr "方法 \"%s\" 未被定義" #: lib/Horde/Rpc/Phpgw.php:160 #, fuzzy msgid "No valid XML data returned:" msgstr "無可用的 XML 資料被傳回" #: lib/Horde/Rpc/Phpgw.php:158 msgid "Request couldn't be answered. Returned errorcode: " msgstr "需求未被回應: 錯誤號碼:" #: lib/Horde/Rpc/Webdav.php:408 #, php-format msgid "Unable to create directory %s; must be [app]/[path]" msgstr "無法建立目錄 %s; 必須是 [app]/[path]" #: lib/Horde/Rpc/Webdav.php:443 #, php-format msgid "" "Unable to rename %s; must be [app]/[path] and within the same application." msgstr "無法更名 %s; 必須是 [app]/[path] 而且在相同的程式." #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "你尚未驗證." Horde_Rpc-2.1.1/locale/Horde_Rpc.pot0000664000175000017500000000220612227214443015315 0ustar janjan# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde_Rpc package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Horde_Rpc \n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2013-05-07 14:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: lib/Horde/Rpc/Phpgw.php:80 lib/Horde/Rpc/Phpgw.php:81 #: lib/Horde/Rpc/Soap.php:185 lib/Horde/Rpc/Soap.php:193 #, php-format msgid "Method \"%s\" is not defined" msgstr "" #: lib/Horde/Rpc/Phpgw.php:134 msgid "No valid XML data returned:" msgstr "" #: lib/Horde/Rpc/Phpgw.php:132 msgid "Request couldn't be answered. Returned errorcode: " msgstr "" #: lib/Horde/Rpc/ActiveSync.php:102 msgid "Trying to access the ActiveSync endpoint from a browser. Not Supported." msgstr "" #: lib/Horde/Rpc/Phpgw.php:99 msgid "You did not authenticate." msgstr "" Horde_Rpc-2.1.1/test/rpc-test.php0000664000175000017500000000744412227214443014727 0ustar janjan#!/usr/bin/env php true)); $conf['server']['name'] = 'localhost'; $conf['server']['port'] = 80; if (!isset($argv) || count($argv) < 2) { die("Can't read arguments.\n"); } array_shift($argv); $testno = array_shift($argv); $rpc_params = array( 'request.username' => @array_shift($argv), 'request.password' => @array_shift($argv) ); $language = isset($GLOBALS['language']) ? $GLOBALS['language'] : (isset($_SERVER['LANG']) ? $_SERVER['LANG'] : ''); if (!empty($language)) { $rpc_params['request.headers'] = array('Accept-Language' => $language); } $http = $GLOBALS['injector']-> getInstance('Horde_Core_Facotory_HttpClient')-> create($rpc_params); try { switch ($testno) { case 0: $response = Horde_Rpc_Xmlrpc::request(Horde::url('rpc.php', true, -1), 'system.listMethods', $http); break; case 1: $response = Horde_Rpc_Xmlrpc::request(Horde::url('rpc.php', true, -1), 'system.describeMethods', $http, array('tasks.list')); break; case 2: $response = Horde_Rpc_Xmlrpc::request(Horde::url('rpc.php', true, -1), 'tasks.listTasks', $http, array(0)); break; case 3: $response = Horde_Rpc_Xmlrpc::request('http://dev.horde.org/horde/rpc.php', 'system.listMethods', $http); break; case 4: // @TODO: Need to instantiate a soap client. $rpc_options = array( 'login' => $rpc_params['username'], 'password' => $rpc_params['password'], 'namespace' => 'urn:horde', 'timeout' => 5, 'allowRedirects' => true, 'maxRedirects' => 3, 'location' => Horde::url(rpc.php, true, -1), 'uri' => 'urn:horde', 'exceptions' => true, 'trace' => true, ); $soap = new SOAP_Client(null, $rpc_options); $response = Horde_Rpc_Soap::request(Horde::url('rpc.php', true, -1), 'tasks.listTasks', $soap, array()); break; case 5: $rpc_options = array( 'login' => $rpc_params['username'], 'password' => $rpc_params['password'], 'namespace' => 'urn:horde', 'timeout' => 5, 'allowRedirects' => true, 'maxRedirects' => 3, 'location' => Horde::url(rpc.php, true, -1), 'uri' => 'urn:horde', 'exceptions' => true, 'trace' => true, ); $soap = new SOAP_Client(null, $rpc_options); $response = Horde_Rpc_Soap::request(Horde::url('rpc.php', true, -1), array_shift($argv), $soap, $argv); break; case 6: $response = Horde_Rpc_Xmlrpc::request(Horde::url('rpc.php', true, -1), array_shift($argv), $http, $argv); break; case 7: $response = Horde_Rpc_Jsonrpc::request(Horde::url('rpc.php', true, -1), array_shift($argv), $http, $argv); break; } echo "===value======\n"; var_dump($response); echo "==============\n"; } catch (Horde_Rpc_Exception $e) { echo "===error======\n"; echo $e->getMessage(); echo "\n"; $info = $e->getTraceAsString(); if (is_string($info)) { echo strtr($info, array_flip(get_html_translation_table(HTML_ENTITIES))); } else { var_dump($info); } echo "\n==============\n"; }