1 / 141

Const INST_ID = 6

<%. Const INST_ID = 6. ' // Begin Feed cache constants. Const FEED_CACHE_LEN_INTRO_EXTRACT = 250. Const FEED_PUB_TYPE_PROJECT = "projectevent". Const FEED_PUB_TYPE_EVENT = "event". Const FEED_PUB_TYPE_TEAM = "team". Const FEED_PUB_TYPE_PUBLICATION = "publication" '"Publication".

xuan
Download Presentation

Const INST_ID = 6

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. <%

  2. Const INST_ID = 6

  3. ' // Begin Feed cache constants

  4. Const FEED_CACHE_LEN_INTRO_EXTRACT = 250

  5. Const FEED_PUB_TYPE_PROJECT = "projectevent"

  6. Const FEED_PUB_TYPE_EVENT = "event"

  7. Const FEED_PUB_TYPE_TEAM = "team"

  8. Const FEED_PUB_TYPE_PUBLICATION = "publication" '"Publication"

  9. Const FEED_PUB_TYPE_ARTICLE = "article"

  10. Const FEED_PUB_TYPE_PRESSRELEASE = "pressrelease"

  11. Const FEED_MAX_COUNT = 0

  12. Const FEED_RSS_CHANNEL_TTL = 60

  13. Const FEED_XML_PREFIX = "<?xml version=""1.0"" encoding=""UTF-8"" ?><root>"

  14. Const FEED_XML_SUFFIX = "</root>"

  15. ' this is used when we need some carriage lines on the end of xml for view html source sanity

  16. Const FEED_DISPLAYMODE = "" '& vbcrlf

  17. ' // End: Feed cache constants

  18. 'EncryptionPassword = "NvFmNqckz0xrpZlC"

  19. ' ** Set up the Base64 arrays

  20. const BASE_64_MAP_INIT ="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"

  21. dim nl

  22. dim Base64EncMap(63)

  23. dim Base64DecMap(127)

  24. '// lets define some global constants for the different areas //

  25. Const SHOW_OPTS = 1 '// show the options screen at all? //

  26. Const POST_OPTS = 0 '// no del options //

  27. Const VCHR_OPTS = 0 '// accepts vouchers //

  28. Const VAT_OPTS = 0 '// standard //

  29. Const VAT_ON_ALL= 0 '// all products incur VAT in full //

  30. Const WRAP_OPTS = 0 '// none //

  31. Const DEL_OPTS = 1 '// none //

  32. Const GIFT_OPTS = 1 '// none //

  33. Const PAY_METH = 1 '// enc email //

  34. Const DFLT_LEADTIME_IS = "5 to 7 days"

  35. Const DFLT_LEADTIME_OS = "1 to 2 weeks"

  36. '// Image upload and resizing definitions use 0 where image isn't used //

  37. Const IMG_RESIZE_DFT = 0 '// Resize uploads by default? //

  38. Const IMG_PRESERVE_R = 0 '// Preserve Image Aspect Ratio By Default //

  39. '// Canvas Background Colours //

  40. Const IMG_CANVAS_CLR = &HFFFFFF '// white - hex value &HRRGGBB //

  41. dim aIMG_CANVAS_BG

  42. aIMG_CANVAS_BG = array( _

  43. array("default",IMG_CANVAS_CLR, "#FFFFFF"), _

  44. array("white",&HFFFFFF, "#FFFFFF"), _

  45. array("black",&H000000, "#000000"), _

  46. array("grey" ,&HF3F3F2, "#F3F3F2") _

  47. )

  48. '// Product Shots //

  49. Const IMG_SZ_PR_TH_W = 71

  50. Const IMG_SZ_PR_TH_H = 71

More Related