Version 5 a Disaster for Session/Application/Permission based Dynamic Configuration!!!!!

  •  01-25-2006, 1:35 PM

    Version 5 a Disaster for Session/Application/Permission based Dynamic Configuration!!!!!

    Karen / Adam:
     
    Ok, so the reason your editor isn't working for me (yes, any moron can run the defaults), however the way it works at the core has been totally altered.  CuteSoft hasn't just fixed some things and added new features - its a whole new mechanism.
     
    For instance we used to create the toolsbar like this ...
     
    In the site super admin we have an admin panel that provides ...
     
    rsTools("sMyToolbar") = Request.Form("sMyToolbar")   '("g_start,Save,separator,Find,CleanCode,InsertTemplate,spell,separator,blah,blah,blah)
     
    And in the script that actually called the toolbar ...
     
      Session("sMyToolbar") = rsTools("sMyToolbar")
     ' Whatever
      oEditor.Template = Session("sMyToolbar")
     
     
    All the properties were defined through Application/Session variables preset based upon extensive dynamic factors.  How on earth are we to embed a session variable into this XML (config) and expect it to parse dynamically?  We need the raw ASP to build your Toolbar config, properties, etc as it was.  A static XML config is NOT acceptable!  Need an object model ASAP that is accessible via oEditor.Property = Session("bBooleanValue"), etc   Also we need more advanced support files - not pictures of Cindy Crawford as part of your deliverable.  When I bought my last car it came clean and ready to go - not with the dust and dirt from the dealers showroom. 
     
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
     <security name="MaxImageSize"><% =Session("iImageMaxSize %>/security>  OF COURSE THIS WONT WORK
     <security name="MaxMediaSize">10000000</security>
     <security name="MaxFlashSize">100000</security>
     <security name="MaxDocumentSize">1000000</security>
     <security name="MaxTemplateSize">100000</security>
     <security name="ImageGalleryPath">/uploads</security>
     <security name="MediaGalleryPath">/uploads</security>
     <security name="FlashGalleryPath">/uploads</security>
     <security name="TemplateGalleryPath">/templates</security>
     <security name="FilesGalleryPath">/uploads</security>
     <security name="AllowUpload">true</security>
     <security name="AllowRename">true</security>
     <security name="AllowDelete">true</security>
     <security name="ImageFilters">
      <item>.jpg</item>
      <item>.jpeg</item>
      <item>.gif</item>
      <item>.png</item>
     </security>
     <security name="MediaFilters">
      <item>.avi</item>
      <item>.mpg</item>
      <item>.mpeg</item>
      <item>.mp3</item>
     </security>
     <security name="DocumentFilters">
      <item>.txt</item>
      <item>.doc</item>
      <item>.pdf</item>
      <item>.zip</item>
      <item>.rar</item>
      <item>.avi</item>
      <item>.mpg</item>
      <item>.mpeg</item>
      <item>.swf</item>
      <item>.jpg</item>
      <item>.jpeg</item>
      <item>.gif</item>
      <item>.png</item>
      <item>.htm</item>
     </security>
    </configuration>
View Complete Thread