|
[Webware-checkins] CVS: Webware/WebKit/Docs RelNotes-0.8.html,1.1,1.2
From: Geoff Talvola <gtalvola@us...> - 2002-04-18 20:47
|
Update of /cvsroot/webware/Webware/WebKit/Docs In directory usw-pr-cvs1:/tmp/cvs-serv2074/WebKit/Docs Modified Files: RelNotes-0.8.html Log Message: Adding 4 new HTTPRequest methods: siteRoot(), siteRootFromCurrentServlet(), originalURLPath(), and servletPathFromSiteRoot() Index: RelNotes-0.8.html =================================================================== RCS file: /cvsroot/webware/Webware/WebKit/Docs/RelNotes-0.8.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RelNotes-0.8.html 12 Apr 2002 15:12:16 -0000 1.1 --- RelNotes-0.8.html 18 Apr 2002 20:47:53 -0000 1.2 *************** *** 50,53 **** --- 50,78 ---- <li> New setting 'ReportRPCExceptionsInWebKit': 1 means report exceptions in RPC servlets in the same way as exceptions in other servlets, i.e. in the logfiles, the error log, and/or by email. 0 means don't report the exceptions on the server side at all; this is useful if your RPC servlets are raising exceptions by design and you don't want to be notified. Note that in release 0.7, there was no exception reporting on the server side in RPC servlets; if you want to get the same behavior in this release you'll have to set this setting to 0. + + <li> New methods in HTTPRequest: + <ul> + <li><b>originalURLPath()</b> - Returns the URL path of the original servlet before any forwarding. + <li><b>siteRoot()</b> - Returns the URL path components necessary to get back home from the current location. + <p>Examples: + <br> '' + <br> '../' + <br> '../../' + <p>You can use this as a prefix to a URL that you know is based off + the home location. Any time you are in a servlet that may have been + forwarded to from another servlet at a different level, + you should prefix your URL's with this. That is, if servlet "Foo/Bar" + forwards to "Qux", then the qux servlet should use siteRoot() to construct all + links to avoid broken links. This works properly because this method + computes the path based on the original servlet, not the location of the + servlet that you have forwarded to. + <li><b>siteRootFromCurrentServlet()</b> - Similar to siteRoot() but instead, it returns the site root + relative to the current servlet, not the original servlet. + <li><b>servletPathFromSiteRoot()</b> - Returns the "servlet path" of this servlet relative to the siteRoot. In + other words, everything after the name of the context (if present). + If you append this to the result of self.siteRoot() you get back to the + current servlet. This is useful for saving the path to the current servlet + in a database, for example. + </ul> </ul> |
| Thread | Author | Date |
|---|---|---|
| [Webware-checkins] CVS: Webware/WebKit/Docs RelNotes-0.8.html,1.1,1.2 | Geoff Talvola <gtalvola@us...> |