711226

所属分类:浏览器
开发工具:PHP
文件大小:78KB
下载次数:0
上传日期:2018-12-19 01:44:58
上 传 者KOHT%21013508
说明:  php平台上的一个开源ajax框架 比较新
(A New Open Source ajax Framework on php platform)

文件列表:
2LICENSE.txt (1488, 2006-10-03)
5Lexamples (0, 2018-11-09)
5Lexamples\helloworld.php (2136, 2006-09-18)
5Lexamples\multiply (0, 2018-11-09)
5Lexamples\multiply\multiply.common.php (301, 2006-06-20)
5Lexamples\multiply\multiply.php (797, 2005-11-23)
5Lexamples\multiply\multiply.server.php (362, 2006-09-18)
5Lexamples\signup (0, 2018-11-09)
5Lexamples\signup\signup.common.php (333, 2006-06-20)
5Lexamples\signup\signup.php (1576, 2005-11-23)
5Lexamples\signup\signup.server.php (3364, 2006-09-18)
5Lexamples\thewall (0, 2018-11-09)
5Lexamples\thewall\brick.jpg (1119, 2005-11-23)
5Lexamples\thewall\thewall.common.php (360, 2006-06-20)
5Lexamples\thewall\thewall.php (1824, 2005-11-23)
5Lexamples\thewall\thewall.server.php (3337, 2006-09-18)
5Lexamples\xul (0, 2018-11-09)
5Lexamples\xul\xulApplication.php (1260, 2006-09-18)
5Lexamples\xul\xulClient.xul (663, 2006-09-18)
5Lexamples\xul\xulServer.php (509, 2006-09-18)
release_notes.txt (6588, 2006-10-03)
tests (0, 2018-11-09)
tests\basicPluginTest.php (1646, 2006-09-18)
tests\callTechniquesTest.php (2451, 2006-08-24)
tests\catchAllFunctionTest.php (1651, 2006-09-18)
tests\changeEventTest.php (1226, 2006-09-28)
tests\charEncodingTest.php (4277, 2006-09-18)
tests\createFormInputTest.php (3497, 2006-09-28)
tests\customResponseClassTest.php (2866, 2006-09-28)
tests\disabledFormElementsTest.php (1360, 2006-09-18)
tests\errorHandlingTest.php (1090, 2006-09-28)
tests\eventHandlerTest.php (1820, 2006-09-28)
tests\fluentInterfaceTest.php (909, 2006-09-18)
tests\formSubmissionTest.php (2903, 2006-09-28)
tests\HTTPStatusTest.php (1144, 2006-09-28)
tests\includeExternalScriptTest.php (1206, 2006-09-28)
tests\index.php (1892, 2006-09-28)
tests\largeResponseTest.php (1046, 2006-09-28)
tests\legacy_tests (0, 2018-11-09)
... ...

=============================================================================== xajax PHP & Javascript Library The easiest way to develop powerful Ajax applications with PHP Version 0.5 (Beta 1) README Text File ------------------------------------------------------ | Release Notes: | | See release_notes.txt in this download archive | | | | Lead Developers: | | Jared White (jared@intuitivefuture.com) | | J. Max Wilson (jmaxwilson@users.sourceforge.net) | | Eion Robb (eion@bigfoot.com) | ------------------------------------------------------ =============================================================================== :: To find out what's changed since the 0.2.4 release of xajax, :: :: view the Release Notes in the file listed above. :: ** THIS IS AN EARLY BETA RELEASE OF 0.5 ** We're very excited about this initial beta release of 0.5, but please be aware that (a) there are absolutely no guarantees we won't change all kinds of things before the final 0.5 release, and (b) it's possible that this version will break your PHP apps and maybe not even work on your server. That's why this is a beta. :) The rest of this readme is the same as the 0.2.4 readme, which means some of its information is incorrect now with the 0.5 changes. Please read the release notes in release_notes.txt to see what's new. Thank you for testing out 0.5 Beta 1! Please visit our forums at http://community.xajaxproject.com and give us your feedback. You can also report bugs you find at http://www.sourceforge.net/projects/xajax using our bug tracker. ____________________________________________________________________ 1. Introduction xajax is a PHP library that you can include in your PHP scripts to provide an easy way for Web pages to call PHP functions or object methods using Ajax (Asynchronous Javascript And XML). Simply register one or more functions/methods with the xajax object that return a proper XML response using the supplied response class, add a statement in your HTML header to print the Javascript include, and run a request processor prior to outputting any HTML. Then add some simple Javascript function calls to your HTML, and xajax takes care of the rest! xajax includes a Javascript object to facilitate the communication between the browser and the server, and it can also be used as a Javascript library directly to simplify certain DOM and event manipulations. However, you can definitely choose to use a dedicated Javascript "engine" of your liking and integrate it with xajax's client/server communication features in a number of ways. More tightly-coupled integration will be forthcoming in a future version of xajax. 2. For More Information The official xajax Web site is located at: http://www.xajaxproject.org Visit the xajax Forums at: http://community.xajaxproject.org to keep track of the latest news and participate in the community discussion. There is also a wiki with documentation, tips & tricks, and other information located at: http://wiki.xajaxproject.org 3. Installation To run xajax, you need: * Apache Web Server or IIS for Windows XP/2003 Server (other servers may or may not work and are not supported at this time) * PHP 4.3.x or PHP 5.x * Minimum supported browsers: Internet Explorer 5.5, Firefox 1.0 (or equivalent Gecko-based browser), Safari 1.3, Opera 8.5 (older versions only work with GET requests) To install xajax: Unpack the contents of this archive and copy them to your main Web site folder. Or if you wish, you can put all of the files in a dedicated "xajax" folder on your Web server (make sure that you know what that URL is relative your site pages so you can provide xajax with the correct installed folder URL). Note that the "thewall" folder in the "examples" folder needs to be writable by the Web server for that example to function. Within the main xajax folder there are two folders: "examples" and "tests". You should be able to view these PHP pages from your Web browser and see xajax working in action. If you can view the pages but the AJAX calls are not working, there may be something wrong with your server setup or perhaps your browser is not supported or configured correctly. If worst comes to worst, post a message in our forums and someone may be able to help you. 4. Documentation Detailed documentation for the xajax PHP classes is available on our wiki (URL listed above in section 2), and more is on the way (particularly in regards to the Javascript component of xajax). Another good way of learning xajax is to look at the code for the examples and tests. If you need any help, pop in the forums and ask for assistance (and the more specific your questions are, the better the answers will be). 5. Contributing to xajax xajax is released under the LGPL open source license. If you wish to contribute to the project or suggest new features, introduce yourself on the forums or you can e-mail the lead developers at the addresses listed at the top of this README. 6. Good luck and enjoy! ====================================================================

近期下载者

相关文件


收藏者