siforek
New member
Ever used http://www.protware.com/
Thoughts, opinions, etc?
Thoughts, opinions, etc?
So my take is that you're NOT using this now, but are considering it? Are there comparable packages out there?
In my opinion, I don't think its realistic to hide/protect HTML/javascript/CSS content from visitors.
It can be made harder to steal the code, but you can't really prevent it.
For example, visit the HTML Guardian demonstration page using firefox and click on Tools > DOM Inspector.
You can view the structure of the entire page.
You can't really prevent that.
Obfuscation of javascript and CSS is doable, but a determined person would still be able to format it in order to make some sense out of it.
Just do a google search for javascript beautifier or css beautifier.
You'll find many online tools to insert spaces, tabs and newlines to make javascript and css readable again.
In the application we develop, we use YUI Compressor to compress javascript and CSS code.
The aim isn't to obfuscate the code, but to reduce the size so that pages load faster.
A side effect is that it makes it difficult to read.
We supply the original, uncompressed javascript and CSS code along with the application in case users wish to customize it.
We didn't find it necessary to prevent visitors from stealing the code.
Also, if the original javascript/CSS code is valid, I believe it will still be valid after it passes through YUI Compressor
Though you better check on that if its a requirement.
Anyway, its just my opinion - would like to hear what others have to say