home *** CD-ROM | disk | FTP | other *** search
/ Y2K Resource 1999 November / Y2K_Resource_Nov99.iso / ssx / ssx.exe / RCDATA / CABINET / ssx.cab / pasetup.inc < prev    next >
Text File  |  1998-03-02  |  887b  |  47 lines

  1. <%
  2.  
  3. dim NO
  4. dim YES
  5. dim HTTP
  6. dim HTTPS
  7. dim Scheme
  8. dim PathToPA
  9. dim RepostURL
  10. dim PostingURL
  11. dim InstallURL
  12. dim UninstalURL
  13. dim AllowAnonymous
  14. dim PublishingURL
  15. dim SitesURL
  16. dim TargetURL
  17. dim FluplVersion
  18.  
  19. NO = "NO"
  20.  
  21. YES = "YES"
  22.  
  23. HTTP = "http"
  24.  
  25. HTTPS = "https"
  26.  
  27. Scheme = HTTP
  28.  
  29. PathToPA = Scheme + "://" + Request.ServerVariables("SERVER_NAME") + "/scripts/cpshost.dll"
  30.  
  31. RepostURL = Scheme + "://" + Request.ServerVariables("SERVER_NAME") + "/scripts/repost.asp"
  32.  
  33. PostingURL = PathToPA + "?PUBLISH?" + RepostURL
  34. InstallURL = PathToPA + "?INSTALL"
  35. UninstallURL = PathToPA + "?UNINSTALL"
  36.  
  37. AllowAnonymous = NO
  38.  
  39. PublishingURL = "/SiteServer/Publishing"
  40. SitesURL = "/Sites/Publishing"
  41.  
  42. TargetURL = Scheme + "://" + Request.ServerVariables("SERVER_NAME") + SitesURL + "/users/" + Request.ServerVariables("LOGON_USER")
  43.  
  44. FluplVersion = "7,0,783,0"
  45.  
  46. %>
  47.