Hi guys
I'm using Splash from this fork:
http://github.com/raulriera/SplashCMS/
I've run into a small problem... I'm creating a new layout that has
the following code:
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css" /
>
<link rel="stylesheet" type="text/css" href="javascripts/fancybox/
jquery.fancybox-1.3.1.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/blue-
green.css" media="screen" />
<script type="text/javascript" src="javascripts/jquery.js"></script>
<script type="text/javascript" src="javascripts/jquery.tools.js"></
script>
<script type="text/javascript" src="javascripts/fancybox/
jquery.fancybox-1.3.1.pack.js"></script>
<script type="text/javascript" src="javascripts/site.js"></script>
<script type="text/javascript" src="javascripts/demo.js"></script>
When I save it, the editor saves them as:
<link rel="stylesheet" type="text/css" href="/public/stylesheets/
styles.css" />
<link rel="stylesheet" type="text/css" href="/public/javascripts/
fancybox/jquery.fancybox-1.3.1.css" />
<link rel="stylesheet" type="text/css" href="/public/stylesheets/blue-
green.css" media="screen" />
<invalidTag type="text/javascript" src="/public/javascripts/
jquery.js"></script>
<invalidTag type="text/javascript" src="/public/javascripts/
jquery.tools.js"></script>
<invalidTag type="text/javascript" src="/public/javascripts/fancybox/
jquery.fancybox-1.3.1.pack.js"></script>
<invalidTag type="text/javascript" src="/public/javascripts/
site.js"></script>
<invalidTag type="text/javascript" src="/public/javascripts/
demo.js"></script>
Notice how the link tags are ok, but the script tags are converted
into invalidType.
I searched the group and there were a couple of other mails on this,
but not sure if I see an answer to this.
Can someone help?
Thanks
Indy