[svn] 3501: Adding the new CallResponder component.

Revision: 3501
Author: [email protected]
Date: 2008-10-06 17:42:26 -0700 (Mon, 06 Oct 2008)
Log Message:
Adding the new CallResponder component. This is best used from MXML to implement
a specific invocation of a specific RPC service operation. It separates the use of the
RPC operation from its definition.
QE: New class (and MXML component)
Docs: Yes - see the asdoc for info.
Checkintests: pass
Reviewer: Pete, Seth, Ed, Sameer
Modified Paths:
flex/sdk/trunk/frameworks/projects/rpc/manifest.xml
Added Paths:
flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/CallResponder.as

Did you import the 3 required SC:
SAP-JEE,
SAP_BUILD
SAP_JTECHS
the DC: sap.com/tc/ddic/metamodel/content is part of SC SAP_JTECHS
You can brouse all imported DCs from CBS
SAPs should be 161. The one you are looking for is N:31 in the SAP_JTECHS
If you have problem with the local bild, than you havn't checked out all DC to your NWDS.
Regards, Angel

Similar Messages

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • [svn:osmf:] 10587: Modified the Akamai Plugin Sample app: 1) Added the new MAST plugin; 2) Added support to load the plugins as static or dynamic

    Revision: 10587
    Author:   [email protected]
    Date:     2009-09-24 18:42:35 -0700 (Thu, 24 Sep 2009)
    Log Message:
    Modified the Akamai Plugin Sample app: 1) Added the new MAST plugin; 2) Added support to load the plugins as static or dynamic
    Modified Paths:
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/.actionScriptProperties
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/.project
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/src/AkamaiPluginSample.css
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/src/AkamaiPluginSample.mxml

    Revision: 10587
    Author:   [email protected]
    Date:     2009-09-24 18:42:35 -0700 (Thu, 24 Sep 2009)
    Log Message:
    Modified the Akamai Plugin Sample app: 1) Added the new MAST plugin; 2) Added support to load the plugins as static or dynamic
    Modified Paths:
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/.actionScriptProperties
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/.project
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/src/AkamaiPluginSample.css
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/src/AkamaiPluginSample.mxml

  • I want to create a new folder on my external hard drive for photos.  Even though I added the new folder button to the tool bar it is not highlighted so I cannot click on it to create a new folder on this drive.

    I have an external hard drive that I would like to pre-make a new folder before I import photos into it.  Even though I added the new folder app to by toolbar, it is not highlighted and I cannot use it.  It will only let me create new folders if I upload to iPhoto.  That is not where I want to store everything.  So I need to figure out how to turn on or activate New Folder on my toolbar for all possible downloading options.

    If it's a drive that you've previously used with a PC, just double-check the format - click the drive once on the desktop to highlight it, and click cmd-i (the command key and the i key together) to see the Info window. That will tell you, under Format, how it's formatted.
    If it's "NTFS", that's the current Windows format. You can read but not write to it with a Mac. If you want full read/write access, you should look into Paragon NTFS, which allows you to do both. Note that some features of te Mac (Time Machine, for example) will only work with Mac-formatted drives.
    Matt

  • Problem in adding the new column in VO : ADF

    Hi,
    I am using jdev 10.1.3.2 with ADF.
    I added a new column in a table in the database. In my ADF application, I right clicked on the entity object of the changed table, and selected ‘Synchronize with DB’ which added the new column in the entity object also.
    I had a jsp which uses this view object’s (VO). I had to change the VO also to add this new column.
    After all this, in the jsp page, I dragged and dropped this new column as an input text field.
    But while running this page, the field is empty. Also when I drag and drop it, this field doesn’t have the ‘id’ attribute.
    Below is the code. Please let me know how I can fix this issue.
    <af:inputText value="#{bindings.RebillNumber.inputValue}"
    label="#{bindings.RebillNumber.label}"
    required="#{bindings.RebillNumber.mandatory}"
    columns="#{bindings.RebillNumber.displayWidth}">
    <af:validator binding="#{bindings.RebillNumber.validator}"/>
    </af:inputText>
    Thanks,
    Venki

    Hi Venki,
    Please check if the object on the page is bound to the same iterator as the other components. Sometimes dragging and dropping new attributes makes JDev create a new iterator, and the two iterators will not be in sync.
    You can check this in the pageDef file and correct any strange things you may find.
    Jeroen van Veldhuizen

  • How to make the scroll bar in flex automate to focus on the new ui component added in the canvas?

    Hi all ,
    There is a canvas container where am adding charts in separate windows.
    So whenever a new chart is added the scroll bar needs to set the focus on the present chart window.
    For this i made the functionality for the canvas container to scroll whenever a new chart is added using the below code
    canvasContainer.verticalScrollPosition = canvasContainer.maxVerticalScrollPosition;
    But the calculations for the vertical position are not precise...
    Is there anything else I should do to make the scroll happen automatically as the chart windows get added in the container ??
    Any suggestions pls
    Regards,
    Ajantha

    Many many thanks to Frank,
    In the css,use the follwing style settings to hide the scroll bar
    af|carousel::spin-bar{    
    visibility: hidden;
    af|carousel::spin-h-previous-icon-style{
    visibility: hidden;
    af|carousel::spin-h-next-icon-style{
    visibility: hidden;
    af|carousel::spin-info{
    visibility: hidden;
    }

  • Question for the new List component

    hello
    I work with Oracle BI Publisher 11.1.1.5 anf firefox 3.6.17
    I have a problem with the new component LIST.
    i open the report SFO Passenger Count Report in the samples/11G overview/
    I choose the tab named insight tab
    i select Air china in the Air lines List
    i select 2006 in the time list, ok for the report
    if i select 2007, all the companies are deselected, i need to reselect air china.
    How to avoid this behaviour ?
    best regards
    jean marc

    hello
    I work with Oracle BI Publisher 11.1.1.5 anf firefox 3.6.17
    I have a problem with the new component LIST.
    i open the report SFO Passenger Count Report in the samples/11G overview/
    I choose the tab named insight tab
    i select Air china in the Air lines List
    i select 2006 in the time list, ok for the report
    if i select 2007, all the companies are deselected, i need to reselect air china.
    How to avoid this behaviour ?
    best regards
    jean marc

  • Where's the new video component?

    I just installed the 9.0.2 update (on my Mac Pro) which is
    supposed to have a new video component that allows the use of h.264
    video. However, there doesn't seem to be any new components and the
    old FLYPlayback component still doesn't recognize anything other
    than a .flv file. Is there a problem with the updater or am I
    missing something here?

    > try using NetStream/NetConnect on a video object. I
    haven't
    > tried this yet, but give it a shot.
    That's a good thought, and it certainly does work with a
    Video object
    and AS3. However, I did try this with the FLVPlayback
    component and, well
    ... it works -- but it's not especially intuitive. Not an
    ideal situation,
    unfortunately.
    For one, it's difficult to browse for the non-FLV file (in
    my case, an
    MP4). Why? Because the file filter only looks for FLVs. I'm
    on a Windows
    machine, so I just typed *.* into the "File name" field of
    the browse
    dialog. That overrides the "Files of type" filter and that's
    when I was
    able to see my MP4s. After that, I selected my video file by
    double-clicking on it. That updated the FLVPlayback.source
    parameter to the
    file path, as expected, but after I clicked OK (after a
    verrrrrry long
    pause), Flash gave me an error message, saying "Failed to
    load FLV: [name of
    file]." ("Hmm," I thought, "that would be because I didn't
    ask for an FLV
    file.") But I tested the SWF anyway, and the thing played
    just fine. Which
    means the IDE is now capable of using the latest Flash Player
    to display (to
    test, versus debug) SWFs. That part is good. I would have
    expected the IDE
    not to have such a hard time with it, though.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Manual of adding the new node on RAC with ASM

    Hello everbody
    Someone have the manual of the adding a new node on RAC with ASM for Solaris ?
    regards
    Spaulonci

    Go to http://www.oracle.com/technology/documentation/index.html, select your unknown database version and search for a manual named 'Oracle Clusterware and Oracle Real Application Clusters Administration and Deployment Guide'.
    Werner

  • Custom SharePoint 2010 designer page throws "The data source control failed to execute the insert command" exception while adding the new item after the August 13, 2013 CU has installed

    We have the SharePoint Server 2010 with SP1 environment on which the custom SP2010 designer pages were working as expected before the
    August 13, 2013 CU has installed. But, getting the below exception while trying to add the new item after the CU has installed.
    Error while executing web part: System.NullReferenceException: Object reference not set to an instance of an object.     at Microsoft.SharePoint.WebControls.SPDataSourceView.ExecuteInsert(IDictionary values)     at
    System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    06/19/2014 16:49:37.65  w3wp.exe (0x1240)                        0x1300 SharePoint Foundation        
     Runtime                        tkau Unexpected Microsoft.SharePoint.WebPartPages.DataFormWebPartException: The data source control
    failed to execute the insert command. 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.InsertCallback(Int32 affectedRecords, Exception ex)     at System.Web.UI.DataSourceView.Insert(IDictionary
    values, DataSourceViewOperationCallback callback)     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.FlatCommit()     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.HandleOnSave(Object sender, EventArgs e)    
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.RaisePostBackEvent(String eventArgument)     at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean
    inclu... 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    06/19/2014 16:49:37.65* w3wp.exe (0x1240)                        0x1300 SharePoint Foundation        
     Runtime                        tkau Unexpected ...deStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    I have tried changing the "DataSourceMode" as below, now the insert command is working, but update command is not working.
    <SharePoint:SPDataSource runat="server" DataSourceMode="ListItem" />
    Also, the lookup dropdown fields are displaying the value as "<a href="Daughterhttp://cpsp10/sites/Employees/_layouts/listform.aspx?PageType=4&ListId={8F62F444-FB6A-4F03-9522-C4696B45DCD1}&ID=10&RootFolder=*">Daughter</a>"
    instead of only "Daughter".
    Please provide the solution to get rid of this issue.
    Thanks
    Ramasubbu

    Try below:
    http://social.technet.microsoft.com/Forums/en-US/ae910269-3a0c-4506-844b-e8bc89d95b71/data-source-control-failed-to-execute-the-insert-command
    http://blog.jussipalo.com/2012/01/sharepoint-2010-data-source-control.html
    While there can be many causes for this generic error message, in my case the first parameter or ddwrt:DataBind function inside the SharePoint:FormFields element was
    'i' and I was working with an Edit Form. Changing it to
    'u' as it was with every other FormField fixed the issue.
    <SharePoint:FormField runat="server" id="ff1{$Pos}" ControlMode="Edit" FieldName="Esittaja" __designer:bind="{ddwrt:DataBind('u',concat('ff1',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Esittaja')}"
    />
    Explanation:
    DataBind operation type parameters (the first parameter) are listed below:
    'i' stands for INSERT,
    'u' stands for UPDATE,
    'd' stands for DELETE.
    http://webcache.googleusercontent.com/search?q=cache:d9HHY4I7omgJ:thearkfloats.blogspot.com/2014/03/sharepoint-2010-data-source-control.html+&cd=4&hl=en&ct=clnk&gl=in
    If this helped you resolve your issue, please mark it Answered

  • On my new mac book pro i synced new music onto my iPhone. it added the new music but deleted all of my old music. how can i get my old music back?????

    please help!

    Did you create a new iTunes library on the new computer?  A device can only synch with one library at a time and will delete material from syncing with another library (it warns you of this).  If this is the case you need to get your old music from whatever the original source was.

  • 2 of my authorized computewrs have crashed and burned. Need to deauthorize them before adding the new computer, as well as one of then was my main itunes computer. how do i move everything

    2 of my computers have crashed and burned in the last week. One of them was my main computer for itunes. i have 2 issues:
    1) i need to deauthorize the other 2 computers in order to authorize my new one.
    2)how do i move all of my music etc to the new computer?
    thank you

    Thanks much, that's very helpful for step one (getting old phone onto new phone).  Very clear. 
    However, I still have the problem of moving to the new computer.  How do I move the sync to the new computer after the new phone is set up?

  • [svn] 2474: adding the eclipse development files

    Revision: 2474
    Author: [email protected]
    Date: 2008-07-14 13:29:25 -0700 (Mon, 14 Jul 2008)
    Log Message:
    adding the eclipse development files
    Added Paths:
    flex/sdk/trunk/development/eclipse/flex/flex4test/
    flex/sdk/trunk/development/eclipse/flex/flex4test/.actionScriptProperties
    flex/sdk/trunk/development/eclipse/flex/flex4test/.flexProperties
    flex/sdk/trunk/development/eclipse/flex/flex4test/.project
    flex/sdk/trunk/development/eclipse/flex/flex4test/.settings/
    flex/sdk/trunk/development/eclipse/flex/flex4test/.settings/org.eclipse.core.resources.pr efs
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/AddItemsTest.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/NewEffects.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/RemoveItemsTest.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/ScrollbarFrenzy.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/components/
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/components/CircularScrollBar.as
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/flex4test.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/CircularScrollBarSkin.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/CircularScrollBarTrackSkin.mx ml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/MyScrollBarTrackSkin.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/MyVScrollBarSkin.mxml

    Hi Cody,
    I have solved this problem.
    I had a fortran GNU compiler installed on my computer (for use with some simulation software on my computer), and this seems to have caused all the problems.  When I looked at the paths included by the Cross GCC it was refering to the fortran directory rather than the National Instruments directory.  To solve the problem, I have uninstalled the fortran software and now everything works, macros and paths properly populated by the Cross GCC.
    Maybe you have a better solution than to delete the fortran software?  Maybe modifying my $PATH environment variable so the NI path comes at the end rather than beginning?
    Thanks,
    Robert

  • [svn] 2473: adding the eclipse development files

    Revision: 2473
    Author: [email protected]
    Date: 2008-07-14 13:28:56 -0700 (Mon, 14 Jul 2008)
    Log Message:
    adding the eclipse development files
    Added Paths:
    flex/sdk/trunk/development/eclipse/flex/flex4/
    flex/sdk/trunk/development/eclipse/flex/flex4/.actionScriptProperties
    flex/sdk/trunk/development/eclipse/flex/flex4/.flexLibProperties
    flex/sdk/trunk/development/eclipse/flex/flex4/.project
    flex/sdk/trunk/development/eclipse/flex/flex4/.settings/
    flex/sdk/trunk/development/eclipse/flex/flex4/.settings/org.eclipse.core.resources.prefs

    Hi Cody,
    I have solved this problem.
    I had a fortran GNU compiler installed on my computer (for use with some simulation software on my computer), and this seems to have caused all the problems.  When I looked at the paths included by the Cross GCC it was refering to the fortran directory rather than the National Instruments directory.  To solve the problem, I have uninstalled the fortran software and now everything works, macros and paths properly populated by the Cross GCC.
    Maybe you have a better solution than to delete the fortran software?  Maybe modifying my $PATH environment variable so the NI path comes at the end rather than beginning?
    Thanks,
    Robert

  • [svn] 1566: Added the unmodified source distribution for Apache Velocity 1. 4 as modules/thirdparty/velocity.

    Revision: 1566
    Author: [email protected]
    Date: 2008-05-05 18:19:41 -0700 (Mon, 05 May 2008)
    Log Message:
    Added the unmodified source distribution for Apache Velocity 1.4 as modules/thirdparty/velocity. It was obtained from http://archive.apache.org/dist/velocity/engine/1.4/velocity-1.4.zip.
    Bugs: -
    QA: No
    Doc: No
    Reviewer: Pete F
    Ticket Links:
    http://bugs.adobe.com/jira/browse/velocity-1
    Added Paths:
    flex/sdk/trunk/modules/thirdparty/velocity/
    flex/sdk/trunk/modules/thirdparty/velocity/LICENSE
    flex/sdk/trunk/modules/thirdparty/velocity/NOTICE
    flex/sdk/trunk/modules/thirdparty/velocity/README.txt
    flex/sdk/trunk/modules/thirdparty/velocity/build/
    flex/sdk/trunk/modules/thirdparty/velocity/build/build.xml
    flex/sdk/trunk/modules/thirdparty/velocity/build/jakarta.scm
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/antlr-runtime.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/bcel-5.0rc1.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/commons-collections.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/fop-bin-0_17_0.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/jdom-b9.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/junit-3.7.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/log4j-1.1.3.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/log4j-core-1.1.3.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/logkit-1.0.1.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/oro.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/servlet.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/w3c.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/lib/werken.xpath.jar
    flex/sdk/trunk/modules/thirdparty/velocity/build/test.sh
    flex/sdk/trunk/modules/thirdparty/velocity/build/testcases.xml
    flex/sdk/trunk/modules/thirdparty/velocity/build/xsl/
    flex/sdk/trunk/modules/thirdparty/velocity/build/xsl/xml2pdf.xsl
    flex/sdk/trunk/modules/thirdparty/velocity/build/xsl/xml2xml.xsl
    flex/sdk/trunk/modules/thirdparty/velocity/convert/
    flex/sdk/trunk/modules/thirdparty/velocity/convert/buildcp.bat
    flex/sdk/trunk/modules/thirdparty/velocity/convert/convert-wm.bat
    flex/sdk/trunk/modules/thirdparty/velocity/convert/convert-wm.sh
    flex/sdk/trunk/modules/thirdparty/velocity/convert/convert.wm
    flex/sdk/trunk/modules/thirdparty/velocity/docs/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/anakia.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/allclasses-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/deprecated-list.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/help-doc.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/index-all.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/index.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/Template.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/VelocityContext.h tml
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/AnakiaElem ent.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/AnakiaJDOM Factory.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/AnakiaTask .html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/Escape.htm l
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/NodeList.A ttributeXMLOutputter.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/NodeList.h tml
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/OutputWrap per.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/TreeWalker .html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/XPathCache .html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/XPathTool. html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/ AnakiaElement.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/ AnakiaJDOMFactory.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/ AnakiaTask.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/ Escape.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/ NodeList.AttributeXMLOutputter.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/ NodeList.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/ OutputWrapper.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/ TreeWalker.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/ XPathCache.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/class-use/ XPathTool.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/package-fr ame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/package-su mmary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/package-tr ee.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/anakia/package-us e.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/FieldMethodiz er.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/Velocity.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/VelocityEngin e.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/class-use/Fie ldMethodizer.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/class-use/Vel ocity.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/class-use/Vel ocityEngine.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/EventCa rtridge.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/EventHa ndler.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/MethodE xceptionEventHandler.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/NullSet EventHandler.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/Referen ceInsertionEventHandler.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/class-u se/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/class-u se/EventCartridge.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/class-u se/EventHandler.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/class-u se/MethodExceptionEventHandler.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/class-u se/NullSetEventHandler.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/class-u se/ReferenceInsertionEventHandler.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/package -frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/package -summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/package -tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/event/package -use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/package-frame .html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/package-summa ry.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/package-tree. html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/package-use.h tml
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/Velocit yFormatter.VelocityAlternator.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/Velocit yFormatter.VelocityAutoAlternator.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/Velocit yFormatter.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/class-u se/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/class-u se/VelocityFormatter.VelocityAlternator.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/class-u se/VelocityFormatter.VelocityAutoAlternator.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/class-u se/VelocityFormatter.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/package -frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/package -summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/package -tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/app/tools/package -use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/class-use/Templat e.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/class-use/Velocit yContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/AbstractC ontext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/Context.h tml
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/InternalC ontextAdapter.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/InternalC ontextAdapterImpl.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/InternalC ontextBase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/InternalE ventContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/InternalH ousekeepingContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/InternalW rapperContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/VMContext .html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/class-use /
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/class-use /AbstractContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/class-use /Context.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/class-use /InternalContextAdapter.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/class-use /InternalContextAdapterImpl.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/class-use /InternalContextBase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/class-use /InternalEventContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/class-use /InternalHousekeepingContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/class-use /InternalWrapperContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/class-use /VMContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/package-f rame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/package-s ummary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/package-t ree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/context/package-u se.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/convert/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/convert/WebMacro. html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/convert/class-use /
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/convert/class-use /WebMacro.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/convert/package-f rame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/convert/package-s ummary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/convert/package-t ree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/convert/package-u se.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/MethodI nvocationException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/ParseEr rorException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/Resourc eNotFoundException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/Velocit yException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/class-u se/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/class-u se/MethodInvocationException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/class-u se/ParseErrorException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/class-u se/ResourceNotFoundException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/class-u se/VelocityException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/package -frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/package -summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/package -tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/exception/package -use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/io/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/io/VelocityWriter .html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/io/class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/io/class-use/Velo cityWriter.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/io/package-frame. html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/io/package-summar y.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/io/package-tree.h tml
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/io/package-use.ht ml
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/package-frame.htm l
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/package-summary.h tml
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/package-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/package-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/Runtime.h tml
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/RuntimeCo nstants.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/RuntimeIn stance.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/RuntimeLo gger.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/RuntimeSe rvices.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/RuntimeSi ngleton.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/Velocimac roFactory.Twonk.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/Velocimac roFactory.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/Velocimac roManager.MacroEntry.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/Velocimac roManager.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /Runtime.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /RuntimeConstants.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /RuntimeInstance.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /RuntimeLogger.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /RuntimeServices.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /RuntimeSingleton.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /VelocimacroFactory.Twonk.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /VelocimacroFactory.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /VelocimacroManager.MacroEntry.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/class-use /VelocimacroManager.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/compiler/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/compiler/ Compiler.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/compiler/ class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/compiler/ class-use/Compiler.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/compiler/ package-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/compiler/ package-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/compiler/ package-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/compiler/ package-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/Configuration.PropertiesReader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/Configuration.PropertiesTokenizer.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/Configuration.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/class-use/Configuration.PropertiesReader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/class-use/Configuration.PropertiesTokenizer.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/class-use/Configuration.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/package-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/package-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/package-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/configura tion/package-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /Directive.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /DirectiveConstants.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /Foreach.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /Include.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /InputBase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /Literal.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /Macro.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /MacroParseException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /Parse.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /ParseDirectiveException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /VMProxyArg.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /VelocimacroProxy.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/Directive.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/DirectiveConstants.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/Foreach.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/Include.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/InputBase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/Literal.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/Macro.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/MacroParseException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/Parse.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/ParseDirectiveException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/VMProxyArg.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /class-use/VelocimacroProxy.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /package-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /package-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /package-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/directive /package-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/exception /
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/exception /NodeException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/exception /ReferenceException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/exception /class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/exception /class-use/NodeException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/exception /class-use/ReferenceException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/exception /package-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/exception /package-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/exception /package-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/exception /package-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/Avalo nLogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/Log4J LogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/LogMa nager.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/LogSy stem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/NullL ogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/Primo rdialLogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/Simpl eLog4JLogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/Veloc ityFormatter.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/class -use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/class -use/AvalonLogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/class -use/Log4JLogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/class -use/LogManager.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/class -use/LogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/class -use/NullLogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/class -use/PrimordialLogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/class -use/SimpleLog4JLogSystem.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/class -use/VelocityFormatter.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/packa ge-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/packa ge-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/packa ge-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/log/packa ge-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/package-f rame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/package-s ummary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/package-t ree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/package-u se.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/Ch arStream.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/JJ TParserState.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/Pa rseException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/Pa rser.JJCalls.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/Pa rser.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/Pa rserConstants.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/Pa rserTokenManager.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/Pa rserTreeConstants.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/To ken.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/To kenMgrError.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/Ve locityCharStream.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/CharStream.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/JJTParserState.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/ParseException.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/Parser.JJCalls.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/Parser.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/ParserConstants.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/ParserTokenManager.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/ParserTreeConstants.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/Token.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/TokenMgrError.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/cl ass-use/VelocityCharStream.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTAddNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTAndNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTAssignment.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTBlock.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTComment.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTDirective.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTDivNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTEQNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTElseIfStatement.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTElseStatement.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTEscape.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTEscapedDirective.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTExpression.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTFalse.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTGENode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTGTNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTIdentifier.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTIfStatement.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTIncludeStatement.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTIntegerRange.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTLENode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTLTNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTMethod.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTModNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTMulNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTNENode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTNotNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTNumberLiteral.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTObjectArray.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTOrNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTParameters.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTReference.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTSetDirective.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTStringLiteral.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTSubtractNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTText.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTTrue.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTVariable.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTWord.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ASTprocess.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/AbstractExecutor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/BooleanPropertyExecutor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/GetExecutor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/Node.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/NodeUtils.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/ParserVisitor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/PropertyExecutor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/SimpleNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTAddNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTAndNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTAssignment.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTBlock.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTComment.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTDirective.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTDivNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTEQNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTElseIfStatement.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTElseStatement.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTEscape.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTEscapedDirective.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTExpression.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTFalse.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTGENode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTGTNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTIdentifier.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTIfStatement.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTIncludeStatement.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTIntegerRange.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTLENode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTLTNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTMethod.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTModNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTMulNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTNENode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTNotNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTNumberLiteral.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTObjectArray.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTOrNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTParameters.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTReference.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTSetDirective.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTStringLiteral.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTSubtractNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTText.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTTrue.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTVariable.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTWord.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ASTprocess.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/AbstractExecutor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/BooleanPropertyExecutor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/GetExecutor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/Node.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/NodeUtils.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/ParserVisitor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/PropertyExecutor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/class-use/SimpleNode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/package-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/package-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/package-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/no de/package-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/pa ckage-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/pa ckage-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/pa ckage-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/parser/pa ckage-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ ContentResource.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ Resource.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ ResourceCache.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ ResourceCacheImpl.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ ResourceFactory.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ ResourceManager.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ ResourceManagerImpl.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ class-use/ContentResource.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ class-use/Resource.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ class-use/ResourceCache.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ class-use/ResourceCacheImpl.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ class-use/ResourceFactory.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ class-use/ResourceManager.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ class-use/ResourceManagerImpl.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/ClasspathResourceLoader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/DataSourceResourceLoader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/FileResourceLoader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/JarHolder.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/JarResourceLoader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/ResourceLoader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/ResourceLoaderFactory.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/class-use/ClasspathResourceLoader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/class-use/DataSourceResourceLoader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/class-use/FileResourceLoader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/class-use/JarHolder.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/class-use/JarResourceLoader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/class-use/ResourceLoader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/class-use/ResourceLoaderFactory.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/package-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/package-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/package-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ loader/package-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ package-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ package-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ package-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/resource/ package-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/B aseVisitor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/N odeViewMode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/V MReferenceMungeVisitor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/c lass-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/c lass-use/BaseVisitor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/c lass-use/NodeViewMode.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/c lass-use/VMReferenceMungeVisitor.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/p ackage-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/p ackage-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/p ackage-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/runtime/visitor/p ackage-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/servlet/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/servlet/VelocityS ervlet.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/servlet/class-use /
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/servlet/class-use /VelocityServlet.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/servlet/package-f rame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/servlet/package-s ummary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/servlet/package-t ree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/servlet/package-u se.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/AnakiaTestCa se.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/BaseTestCase .html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/ClassloaderC hangeTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/ClasspathRes ourceTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/CommonsExtPr opTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Configuratio nTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/ContextSafet yTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/EncodingTest Case.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/EventHandlin gTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/ExternalLogg erTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/InlineScopeV MTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Introspector TestCase.MethodProvider.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Introspector TestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Introspector TestCase2.Bar.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Introspector TestCase2.Foo.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Introspector TestCase2.Tester.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Introspector TestCase2.Tester2.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Introspector TestCase2.Woogie.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Introspector TestCase2.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Introspector TestCase3.MethodProvider.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/Introspector TestCase3.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/MethodInvoca tionExceptionTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/MiscTestCase .html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/MultiLoaderT estCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/MultipleFile ResourcePathTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/ParserTestCa se.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/TemplateTest Base.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/TemplateTest Case.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/TemplateTest Suite.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/TestClassloa der.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/TexenClasspa thTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/TexenTestCas e.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/VelocimacroT estCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/VelocityAppT estCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/VelocityServ letTest.MockHttpServletResponse.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/VelocityServ letTest.MockServletConfig.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/VelocityServ letTest.MockServletContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/VelocityServ letTest.MockVelocityServlet.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/VelocityServ letTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/An akiaTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Ba seTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Cl assloaderChangeTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Cl asspathResourceTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Co mmonsExtPropTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Co nfigurationTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Co ntextSafetyTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/En codingTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Ev entHandlingTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Ex ternalLoggerTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In lineScopeVMTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In trospectorTestCase.MethodProvider.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In trospectorTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In trospectorTestCase2.Bar.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In trospectorTestCase2.Foo.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In trospectorTestCase2.Tester.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In trospectorTestCase2.Tester2.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In trospectorTestCase2.Woogie.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In trospectorTestCase2.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In trospectorTestCase3.MethodProvider.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/In trospectorTestCase3.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Me thodInvocationExceptionTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Mi scTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Mu ltiLoaderTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Mu ltipleFileResourcePathTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Pa rserTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Te mplateTestBase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Te mplateTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Te mplateTestSuite.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Te stClassloader.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Te xenClasspathTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Te xenTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Ve locimacroTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Ve locityAppTestCase.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Ve locityServletTest.MockHttpServletResponse.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Ve locityServletTest.MockServletConfig.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Ve locityServletTest.MockServletContext.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Ve locityServletTest.MockVelocityServlet.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/class-use/Ve locityServletTest.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/misc/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/misc/Test.ht ml
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/misc/class-u se/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/misc/class-u se/Test.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/misc/package -frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/misc/package -summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/misc/package -tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/misc/package -use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/package-fram e.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/package-summ ary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/package-tree .html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/package-use. html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/Boo lObj.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/Chi ld.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/Per son.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/Tes tProvider.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/cla ss-use/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/cla ss-use/BoolObj.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/cla ss-use/Child.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/cla ss-use/Person.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/cla ss-use/TestProvider.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/pac kage-frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/pac kage-summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/pac kage-tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/provider/pac kage-use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/view/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/view/Templat eNodeView.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/view/class-u se/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/view/class-u se/TemplateNodeView.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/view/package -frame.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/view/package -summary.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/view/package -tree.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/test/view/package -use.html
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/texen/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/texen/Generator.h tml
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/texen/ant/
    flex/sdk/trunk/modules/thirdparty/velocity/docs/api/org/apache/velocity/texen/ant/TexenTa sk.html
    flex/sdk/trunk

    In the default php.ini is set open_basedir which limits work with php only to few directories (and directories bellow them). There is set /srv/http, /home,/tmp and /usr/share/pear by default.
    To allow your vhost you should add /data/www or set empty value.

Maybe you are looking for