From: <vb...@us...> - 2002-09-05 06:25:24
|
Update of /cvsroot/webnotes/webnotes/sample In directory usw-pr-cvs1:/tmp/cvs-serv26048/sample Modified Files: webservices.php xml.php Log Message: - Fixed a problem with the default value for $g_absolute_directory - Enhanced the themes template. - Cleanup of admin.php - Did cleaning of parameters before injecting them into SQL in api.php - Updated the roadmap. - Cleanup of logout.php - Cleanup of login_page.php - Cleanup of login.php - Cleanup of note_add.php - Cleanup of note_add_page.php (still more work). - Cleanup of xml.php - Cleanup of webservices.php - Cleanup of index.html Index: webservices.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/sample/webservices.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- webservices.php 4 Sep 2002 13:36:58 -0000 1.1 +++ webservices.php 5 Sep 2002 06:25:20 -0000 1.2 @@ -1,24 +1,24 @@ <html> -<head> -<title>Web services (from Webopedia)</title> -</head> -<body> -<h1>Web services</h1> + <head> + <title>Web services (from Webopedia)</title> + </head> + <body> + <h1>Web services</h1> -<p>The term Web services describes a standardized way of integrating Web-based applications using the XML, SOAP, WSDL and UDDI open standards over an Internet protocol backbone. XML is used to tag the data, SOAP is used to transfer the data, WSDL is used for describing the services available and UDDI is used for listing what services are available. Used primarily as a means for businesses to communicate with each other and with clients, Web services allow organizations to communicate data without intimate knowledge of each other's IT systems behind the firewall.</p> -<p>Unlike traditional client/server models, such as a Web server/Web page system, Web services do not provide the user with a GUI. Web services instead share business logic, data and processes through a programmatic interface across a network. The applications interface, not the users. Developers can then add the Web service to a GUI (such as a Web page or an executable program) to offer specific functionality to users.</p> + <p>The term Web services describes a standardized way of integrating Web-based applications using the XML, SOAP, WSDL and UDDI open standards over an Internet protocol backbone. XML is used to tag the data, SOAP is used to transfer the data, WSDL is used for describing the services available and UDDI is used for listing what services are available. Used primarily as a means for businesses to communicate with each other and with clients, Web services allow organizations to communicate data without intimate knowledge of each other's IT systems behind the firewall.</p> + <p>Unlike traditional client/server models, such as a Web server/Web page system, Web services do not provide the user with a GUI. Web services instead share business logic, data and processes through a programmatic interface across a network. The applications interface, not the users. Developers can then add the Web service to a GUI (such as a Web page or an executable program) to offer specific functionality to users.</p> -<p>Web services allow different applications from different sources to communicate with each other without time-consuming custom coding, and because all communication is in XML, Web services are not tied to any one operating system or programming language. For example, Java can talk with Perl, Windows applications can talk with UNIX applications.</p> + <p>Web services allow different applications from different sources to communicate with each other without time-consuming custom coding, and because all communication is in XML, Web services are not tied to any one operating system or programming language. For example, Java can talk with Perl, Windows applications can talk with UNIX applications.</p> -<p>Web services do not require the use of browsers or HTML.</p> + <p>Web services do not require the use of browsers or HTML.</p> -<p>Web services are sometimes called application services.</p> + <p>Web services are sometimes called application services.</p> -<p>The above definition was copied from <a href="http://www.webopedia.com">Webopedia</a>.</p> + <p>The above definition was copied from <a href="http://www.webopedia.com">Webopedia</a>.</p> -<?php - include("../core/api.php"); # replace with actual path - print_web_notes( __FILE__, $PHP_SELF ); -?> -</body> + <?php + include("../core/api.php"); # replace with actual path + print_web_notes( __FILE__, $PHP_SELF ); + ?> + </body> </html> Index: xml.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/sample/xml.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- xml.php 4 Sep 2002 13:36:58 -0000 1.1 +++ xml.php 5 Sep 2002 06:25:20 -0000 1.2 @@ -1,17 +1,17 @@ <html> -<head> -<title>XML (from Webopedia)</title> -</head> -<body> -<h1>XML</h1> + <head> + <title>XML (from Webopedia)</title> + </head> + <body> + <h1>XML</h1> -<p>Short for Extensible Markup Language, a specification developed by the W3C. XML is a pared-down version of SGML, designed especially for Web documents. It allows designers to create their own customized tags, enabling the definition, transmission, validation, and interpretation of data between applications and between organizations.</p> + <p>Short for Extensible Markup Language, a specification developed by the W3C. XML is a pared-down version of SGML, designed especially for Web documents. It allows designers to create their own customized tags, enabling the definition, transmission, validation, and interpretation of data between applications and between organizations.</p> -<p>The above definition was copied from <a href="http://www.webopedia.com">Webopedia</a>.</p> + <p>The above definition was copied from <a href="http://www.webopedia.com">Webopedia</a>.</p> -<?php - include("../core/api.php"); # replace with actual path - print_web_notes( __FILE__, $PHP_SELF ); -?> -</body> + <?php + include("../core/api.php"); # replace with actual path + print_web_notes( __FILE__, $PHP_SELF ); + ?> + </body> </html> |