ovidiu      02/04/09 17:47:36

  Modified:    src/scratchpad/schecoon ChangeLog
  Log:
  2002-04-09  Ovidiu Predescu  <[EMAIL PROTECTED]>
  
        * webapp/examples/calc/calc.js: Updated to reflect the changes in
        the API: forwardTo has been renamed to sendPage, and it
        automatically assumes URIs are to be invoked on the current
        processor (e.g. sitemap).
  
        * webapp/sitemap.xmap: Removed the Scheme calculator example for
        the moment, as it's not yet finished.
  
        * src/org/apache/cocoon/components/treeprocessor/sitemap/ContinueNode.java:
        Allow passing parameters in <map:continue>.
  
        * src/org/apache/cocoon/components/treeprocessor/sitemap/CallFunctionNode.java:
        Define parameters as a List rather than as an ArrayList.
  
        * src/org/apache/cocoon/components/flow/scheme/SchemeInterpreter.java:
        Updated to reflect the changes in flow.xconf.
  
        * src/org/apache/cocoon/components/flow/javascript/system.js:
        Rename forwardTo() to sendPage(). Removed old sendPage() as we no
        longer make use of named resources from the sitemap to generate
        output.
  
        * src/org/apache/cocoon/components/flow/javascript/JavaScriptInterpreter.java:
        Setup parameters so they can be accessed as a native JavaScript
        array using cocoon.parameters.
  
        * src/org/apache/cocoon/components/flow/javascript/JSWebContinuation.java:
        Added support for passing the time-to-live argument when creating
        a WebContinuation from JavaScript.
  
        * src/org/apache/cocoon/components/flow/javascript/JSCocoon.java:
        Remove processPipeline() function. Allow parameters to be set from
        Java and retrieved from the JavaScript side.
  
        * src/org/apache/cocoon/components/flow/flow.xconf: Use elements
        instead of attributes to configure components. Temporarily disable
        the Scheme support, as it's not ready for prime time yet.
  
        * src/org/apache/cocoon/components/flow/WebContinuation.java:
        Added support for the last access time. Pass an additional
        time-to-live argument when creating a WebContinuation.
  
        * src/org/apache/cocoon/components/flow/InterpreterSelector.java:
        Use elements when specifying configuration, instead of attributes.
  
        * src/org/apache/cocoon/components/flow/Interpreter.java: Removed
        the processPipeline() method. Allow parameters to be passed to
        continuations.
  
        * src/org/apache/cocoon/components/flow/ContinuationsManagerImpl.java:
        Pass and additional time-to-live argument in
        createWebContinuation(). Added an 'expirations' sorted set to
        maintain continuations in the order of their expiration.
  
        * src/org/apache/cocoon/components/flow/ContinuationsManager.java:
        Pass an additional time-to-live argument to
        createWebContinuation().
  
        * src/org/apache/cocoon/components/flow/AbstractInterpreter.java:
        Removed processPipeline(). Automatically add "cocoon:/" to the uri
        in forwardTo().
  
        * TODO: Updated to reflect the latest changes.
  
  Revision  Changes    Path
  1.34      +66 -0     xml-cocoon2/src/scratchpad/schecoon/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/scratchpad/schecoon/ChangeLog,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- ChangeLog 9 Apr 2002 05:44:43 -0000       1.33
  +++ ChangeLog 10 Apr 2002 00:47:36 -0000      1.34
  @@ -1,3 +1,69 @@
  +2002-04-09  Ovidiu Predescu  <[EMAIL PROTECTED]>
  +
  +     * webapp/examples/calc/calc.js: Updated to reflect the changes in
  +     the API: forwardTo has been renamed to sendPage, and it
  +     automatically assumes URIs are to be invoked on the current
  +     processor (e.g. sitemap).
  +
  +     * webapp/sitemap.xmap: Removed the Scheme calculator example for
  +     the moment, as it's not yet finished.
  +
  +     * src/org/apache/cocoon/components/treeprocessor/sitemap/ContinueNode.java:
  +     Allow passing parameters in <map:continue>.
  +
  +     * src/org/apache/cocoon/components/treeprocessor/sitemap/CallFunctionNode.java:
  +     Define parameters as a List rather than as an ArrayList.
  +
  +     * src/org/apache/cocoon/components/flow/scheme/SchemeInterpreter.java:
  +     Updated to reflect the changes in flow.xconf.
  +
  +     * src/org/apache/cocoon/components/flow/javascript/system.js:
  +     Rename forwardTo() to sendPage(). Removed old sendPage() as we no
  +     longer make use of named resources from the sitemap to generate
  +     output.
  +
  +     * src/org/apache/cocoon/components/flow/javascript/JavaScriptInterpreter.java:
  +     Setup parameters so they can be accessed as a native JavaScript
  +     array using cocoon.parameters.
  +
  +     * src/org/apache/cocoon/components/flow/javascript/JSWebContinuation.java:
  +     Added support for passing the time-to-live argument when creating
  +     a WebContinuation from JavaScript.
  +
  +     * src/org/apache/cocoon/components/flow/javascript/JSCocoon.java:
  +     Remove processPipeline() function. Allow parameters to be set from
  +     Java and retrieved from the JavaScript side.
  +
  +     * src/org/apache/cocoon/components/flow/flow.xconf: Use elements
  +     instead of attributes to configure components. Temporarily disable
  +     the Scheme support, as it's not ready for prime time yet.
  +
  +     * src/org/apache/cocoon/components/flow/WebContinuation.java:
  +     Added support for the last access time. Pass an additional
  +     time-to-live argument when creating a WebContinuation.
  +
  +     * src/org/apache/cocoon/components/flow/InterpreterSelector.java:
  +     Use elements when specifying configuration, instead of attributes.
  +
  +     * src/org/apache/cocoon/components/flow/Interpreter.java: Removed
  +     the processPipeline() method. Allow parameters to be passed to
  +     continuations.
  +
  +     * src/org/apache/cocoon/components/flow/ContinuationsManagerImpl.java:
  +     Pass and additional time-to-live argument in
  +     createWebContinuation(). Added an 'expirations' sorted set to
  +     maintain continuations in the order of their expiration.
  +
  +     * src/org/apache/cocoon/components/flow/ContinuationsManager.java:
  +     Pass an additional time-to-live argument to
  +     createWebContinuation().
  +
  +     * src/org/apache/cocoon/components/flow/AbstractInterpreter.java:
  +     Removed processPipeline(). Automatically add "cocoon:/" to the uri
  +     in forwardTo().
  +
  +     * TODO: Updated to reflect the latest changes.
  +
   2002-04-08  Ovidiu Predescu  <[EMAIL PROTECTED]>
   
        * lib/rhino1.5r4-continuations-20020408.jar: Updated to the latest
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     [EMAIL PROTECTED]
To unsubscribe, e-mail:          [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to