-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsilk.manifest
More file actions
85 lines (70 loc) · 2.19 KB
/
Copy pathsilk.manifest
File metadata and controls
85 lines (70 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<cfsavecontent variable="cacheManifest">
<!---
NOTE: Cache Manifest must be the very first thing in this
manifest file.
--->
CACHE MANIFEST
<!---
When a cache manifest is reviewed by the browser, it uses a
complete byte-wise comparison. As such, we can use COMMENTS
to defunk a previously used cache manifest. In this way, we
can use a version-comment to indicate change even when the
file list has not changed.
NOTE: If ANY part of this file is different from the previous
cache manifest, ALL of the files are re-downloaded.
It seems logical to use a VCS latest revision or commit.
--->
# Cache Manifest Version: e87914f
<!---
Let's list the file that get cached. The URLs to these files
are relative to the cache manifest file (or absolute).
--->
# Core files
./index.html
./community.html
./getting-started.html
./release-notes.html
./downloads.html
./team.html
./documentation/index.html
./documentation/components.html
./documentation/pipelines.html
./documentation/site-prototypes.html
./documentation/spinning.html
./documentation/templates.html
./documentation/views.html
# Resource styling files
# Less files
./resource/less/bootstrap.less
./resource/less/forms.less
./resource/less/mixins.less
./resource/less/patterns.less
./resource/less/reset.less
./resource/less/scaffolding.less
./resource/less/silk.less
./resource/less/tables.less
./resource/less/type.less
./resource/less/variables.less
# JS files
./resource/js/less-1.1.5.min.js
# Resource js files
./resource/js/bootstrap-dropdown.js
./resource/js/jquery-1.7.1.min.js
# Resource image files
./resource/images/silk-blue.png
./resource/images/spun-with-silk.png
</cfsavecontent>
<!--- ----------------------------------------------------- --->
<!--- ----------------------------------------------------- --->
<!---
Let's reset the output and set the appropriate content type.
It is critical that the manifest file be served up as a type
"text/cache-manifest" mime-type.
NOTE: We need to be careful about the whitespace here since
the very first line of the file must contain the phrase,
"CACHE MANIFEST". As such, we must TRIM() the content.
--->
<cfcontent
type="text/cache-manifest"
variable="#toBinary( toBase64( trim( cacheManifest ) ) )#"
/>