NIHVIVO-555. Added a list of files and directories that are known exceptions to the license-insertion process.

This commit is contained in:
mb863 2010-10-06 15:38:43 +00:00
parent a18bee2b6b
commit e164e2af8e
2 changed files with 19 additions and 5 deletions

View file

@ -24,3 +24,17 @@ themes/vivo-basic/css/blueprint/liquid.css
# Sample code from Google.
themes/vivo-basic/templates/googleAnalytics.ftl
# Stylesheet for Pictos fonts by pictos.drewwilson.com
themes/wilma/css/pictos.css
# Script for enabling new HTML5 semantic markup in IE browsers.
# remysharp.com/2009/01/07/html5-enabling-script/
js/html5.js
# selectivizr is a JavaScript utility that emulates CSS3 pseudo-classes and attribute selectors in Internet Explorer 6-8. selectivizr.com
js/selectivizr.js
# Supersleight jQuery Plugin for Transparent PNGs in IE6. allinthehead.com/retro/338/supersleight-jquery-plugin
js/supersleight.js
js/supersleightUtils.js

View file

@ -6,7 +6,7 @@
<title>${title}</title>
<link rel="stylesheet" href="${themeDir}/css/style.css" />
<!-- script for enabling new HTML5 semantic markup in IE browsers-->
${headScripts.addFromTheme("/html5.js")}
${headScripts.add("/js/html5.js")}
${headScripts.tags}
</head>
<body>
@ -101,20 +101,20 @@ ${headScripts.tags}
<script type="text/javascript" src="http://use.typekit.com/chp2uea.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
${scripts.addFromTheme("/js/jquery-1.4.2.js")}
${scripts.add("/js/jquery.js")}
${scripts.tags}
<!--[if lt IE 7]>
<script type="text/javascript" src="${themeDir}/js/supersleight-min.js"></script>
<script type="text/javascript" src="${themeDir}/js/utils.js""></script>
${scripts.add("/js/supersleight.js")}
${scripts.add("/js/supersleightUtils.js")}
<link rel="stylesheet" href="css/ie6.css" />
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" href="css/ie7.css" />
<![endif]-->
<!--[if (gte IE 6)&(lte IE 8)]>
<script type="text/javascript" src="${themeDir}/js/selectivizr.js""></script>
${scripts.add("/js/selectivizr.js")}
<![endif]-->
<#include "googleAnalytics.ftl">