This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- | |
Goal: implement timestamp-based cache busting | |
For example: instead of loading a javascript file from "http://www.example.com/myscript.js", it'll load it from "http://www.example.com/myscript.js?20191101160030" | |
Usage examples: | |
- add as global tag and: <CF_js_script src="/js/myscript.js"> | |
- <cfimport prefix="akaita" taglib="customTags"> and then <akaita:js_script src="/js/myscript.js"></akaita:js_script> | |
---> | |
<CFSETTING ENABLECFOUTPUTONLY="Yes"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfimport prefix="divvy" taglib="/customTags"> | |
... | |
... | |
<!--- <script src="/js/myscript.js"></script> ---> | |
<akaita:js_script src="/js/myscript.js"></akaita:js_script> | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define ONE 1 | |
#define TWO 2 | |
#define THREE 3 | |
#define FOUR 4 | |
#define FIVE 4 | |
#define SIX 6 | |
#define SEVEN 7 | |
#define EIGHT 8 | |
#define NINE 9 | |
... |
NewerOlder