kitto
Posts: 3
|
| Posted: 09/20/2004, 2:52 PM |
|
I would appreciate if someone kindly advice how to eliminate meta name generator "CodeCharge Studio" from html generated pages?
Thanks.
Kitto
|
 |
 |
Zulu
Posts: 33
|
| Posted: 09/22/2004, 7:27 AM |
|
Are u using the demo version. If, so u can delete the line containing the META TAG from the published html file
|
 |
 |
Stevef
|
| Posted: 10/04/2004, 7:19 AM |
|
I'm using the full version, and am hoping that this tag is optional....
|
|
|
 |
Davis
|
| Posted: 10/05/2004, 10:19 AM |
|
Yeah... I couldn't find the option of disabling this either. And its very troublesome for us to remove one by one.
|
|
|
 |
mamboBROWN
Posts: 1713
|
| Posted: 10/06/2004, 6:53 AM |
|
In version 2.3.2.24 you have the capability to change any line in the project (for all code/pages) by using the Edit -> Find and Replace -> Replace in Files feature. This feature will change any line in the current document, all open documents or current project. Give it a try.
|
 |
 |
Ingrid_a
|
| Posted: 03/07/2005, 6:23 AM |
|
Any way to do this auto?
We used our own HTML PageTemplate , but still that meta is generate.
would be good to have answer, for yessoftware (YES/NO) so we stop looking forit.
|
|
|
 |
peterr
Posts: 5971
|
| Posted: 03/07/2005, 10:04 AM |
|
I don't know of a way to do this automatically.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
Triffid
Posts: 6
|
| Posted: 03/07/2005, 12:59 PM |
|
Find the common.js file in Codecharge/Components/Dialogs/wizards/common
on lne 1471 it says :
if(window.external.dialogArguments3!=null) newheadcodeINNER = "\r\n<meta name=\"GENERATOR\" .... etc.
Change that to your liking, or comment it out.
|
 |
 |
Jerry
|
| Posted: 03/07/2005, 3:12 PM |
|
Hi
This does not work for me. What am I doing wrong
Regards
Jerry
|
|
|
 |
Bill Noble
|
| Posted: 03/07/2005, 3:20 PM |
|
Codechargestudio\components\dialogs\wizards\project\pageblank.js
Locate.....
//Parsing <HEAD></HEAD>
var pageHTML=newPage.templateContent(true).toString();
var newheadcodeINNER = "<meta name=\"GENERATOR\" content=\"CodeCharge Studio"+ccObject.Application.Version.toString()+"\">";
and replace with.....
//Parsing <HEAD></HEAD>
var pageHTML=newPage.templateContent(true).toString();
var newheadcodeINNER = "<!-- visit www.codechargexchange.com -->"; 
Regards
Bill
|
|
|
 |
Triffid
Posts: 6
|
| Posted: 03/07/2005, 3:33 PM |
|
Also have a look at PageBlank.js and ProjectBlank.js and make the same changes there.
Don't expect your existing HTML files to change. My suggestion only works to prevent the meta tag showing up in new files.
|
 |
 |
Oper
Posts: 1195
|
| Posted: 03/08/2005, 4:52 AM |
|
Changing the PAGEBLANK.JS
]var newheadcodeINNER = "<meta name=\"GENERATOR\" content=\"CodeCharge Studio"+ccObject.Application.Version.toString()+"\">";
For:
var newheadcodeINNER = "<meta name=\"GENERATOR\" content=\"My Company\">";
worked Perfect
But i really dont know if that is legal, and Page will change back after next patch. (peter comments, please)
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
peterr
Posts: 5971
|
| Posted: 03/08/2005, 12:00 PM |
|
It seems legal to me.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |