Update of /cvsroot/webware/Webware/WebKit/Docs
In directory usw-pr-cvs1:/tmp/cvs-serv29682/WebKit/Docs
Modified Files:
Application.configlist UsersGuide.html
Log Message:
adding *.pyc, *.pyo, and *.config to FilesToHide default value; and improving descriptions of the FilesToHide and FilesToServe settings in the user's guide.
Index: Application.configlist
===================================================================
RCS file: /cvsroot/webware/Webware/WebKit/Docs/Application.configlist,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Application.configlist 2001/12/19 13:38:09 1.8
--- Application.configlist 2001/12/21 21:04:37 1.9
***************
*** 14,20 ****
('ExtensionCascadeOrder', "['.psp', '.py', '.html']", 'This is a list of extensions that WebKit will cascade through when autodetecting extensions. Note that this has no effect if the extension is named explicitly in a URL.'),
! ('FilesToHide', "['.*','*~', '*bak', '*.tmpl', ]", 'File patterns to protect from browsing.'),
! ('FilesToServe', "[]", 'File patterns to serve from exclusively. If the file being served for a particulary request does not match one of these patterns an HTTP403 Forbidden error will be return.'),
('LogActivity', '1', "If true, then the execution of each servlet is logged with useful information such as time, duration and whether or not an error occurred."),
--- 14,20 ----
('ExtensionCascadeOrder', "['.psp', '.py', '.html']", 'This is a list of extensions that WebKit will cascade through when autodetecting extensions. Note that this has no effect if the extension is named explicitly in a URL.'),
! ('FilesToHide', "['.*', '*~', '*bak', '*.tmpl', '*.pyc', '*.pyo', '*.config']", 'File patterns to protect from browsing. This affects all requests, not just requests with autodetected extensions.'),
! ('FilesToServe', "[]", 'File patterns to serve from exclusively. If the file being served for a particulary request does not match one of these patterns an HTTP403 Forbidden error will be return. This affects all requests, not just requests with autodetected extensions.'),
('LogActivity', '1', "If true, then the execution of each servlet is logged with useful information such as time, duration and whether or not an error occurred."),
Index: UsersGuide.html
===================================================================
RCS file: /cvsroot/webware/Webware/WebKit/Docs/UsersGuide.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** UsersGuide.html 2001/12/19 13:38:09 1.15
--- UsersGuide.html 2001/12/21 21:04:37 1.16
***************
*** 255,260 ****
<code> = </code></dt>
<dd class=config>
! <code>['.*','*~', '*bak', '*.tmpl', ]</code>
! <br> File patterns to protect from browsing.
</dd>
</dl></p>
--- 255,260 ----
<code> = </code></dt>
<dd class=config>
! <code>['.*', '*~', '*bak', '*.tmpl', '*.pyc', '*.pyo', '*.config']</code>
! <br> File patterns to protect from browsing. This affects all requests, not just requests with autodetected extensions.
</dd>
</dl></p>
***************
*** 264,268 ****
<code> = []</code></dt>
<dd class=config>
! File patterns to serve from exclusively. If the file being served for a particulary request does not match one of these patterns an HTTP403 Forbidden error will be return.
</dd>
</dl></p>
--- 264,268 ----
<code> = []</code></dt>
<dd class=config>
! File patterns to serve from exclusively. If the file being served for a particulary request does not match one of these patterns an HTTP403 Forbidden error will be return. This affects all requests, not just requests with autodetected extensions.
</dd>
</dl></p>
***************
*** 328,332 ****
<code> = 1</code></dt>
<dd class=config>
! If false, then an error message will be returned to the user if the user's session has timed out or doesn't exist. If true, then servlets will be processed with no session data <!-- and can take action if session.isNew(). -->.
</dd>
</dl></p>
--- 328,332 ----
<code> = 1</code></dt>
<dd class=config>
! If false, then an error message will be returned to the user if the user's session has timed out or doesn't exist. If true, then servlets will be processed with no session data <!-- and can take action if session.isNew(). -->.
</dd>
</dl></p>
***************
*** 336,340 ****
<code> = 0</code></dt>
<dd class=config>
! If true, then the app server will include the session ID in the URL by inserting a component of the form _SID_=8098302983 into the URL, and will parse the URL to determine the session ID. This is useful for situations where you want to use sessions, but it has to work even if the users can't use cookies.
</dd>
</dl></p>
--- 336,340 ----
<code> = 0</code></dt>
<dd class=config>
! If true, then the app server will include the session ID in the URL by inserting a component of the form _SID_=8098302983 into the URL, and will parse the URL to determine the session ID. This is useful for situations where you want to use sessions, but it has to work even if the users can't use cookies.
</dd>
</dl></p>
***************
*** 495,499 ****
<br><br> If your site has a large amount of static files being served via WebKit, you should consider changing 'CacheContent' to 0. If you are confident that your static files do not get updated while the app server is live, then you might consider changing 'CheckDate' to 0 for better performance.
! <br><br> The 'Technique' setting can be switch to 'redirectSansAdapter', but this is an experimental setting with some known problems.
</dd>
</dl></p>
--- 495,499 ----
<br><br> If your site has a large amount of static files being served via WebKit, you should consider changing 'CacheContent' to 0. If you are confident that your static files do not get updated while the app server is live, then you might consider changing 'CheckDate' to 0 for better performance.
! <br><br> The 'Technique' setting can be switch to 'redirectSansAdapter', but this is an experimental setting with some known problems.
</dd>
</dl></p>
|