|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today! |
|
#1
|
|||
|
|||
|
Dreamweaver And Bulky Code
I have read on a lot of posts that dreamweaver ads extra code to most third party softwares. (example) I planned on buying a real estate management system that is already in a custom CMS and using dreamweaver mx to edit the front side. When I mentioned this to the script creator, he said that dreamwever will add unnecessary code. One posts said that the extra unnecessary code is the reason you can not use dreamweaver with other CMS such as drupal. Is there a way to go around this problem?
|
|
#2
|
||||
|
||||
|
Issue
In certain situations, Dreamweaver MX translator code is added to the source code of a document.The issue appears after saving and re-opening the page, or opening a page edited in an external editor. For example, the following code in a page: Code:
<script> <!--#include file="inc/include.inc" --> </script> is converted to: Code:
<script> <MM:BeginLock translatorClass="MM_SSI" type="ssi_comment" orig="%3C!--#include file=%22inc/include.inc%22 --%3E" fileRef="inc/include.inc" depFiles="file:///C|/MySites/asp/inc/include.inc">#993333 <MM:EndLock> </script> Reason The code inserted into the page is Dreamweaver's internal translator code. This code is used to translate source code for rendering the design view. In certain circumstances Dreamweaver does not complete the translation process, and the intermediate translator code is erroneously left behind in the source code. There are two known situations when this will occur.
Note:This behavior occurs with both HTML include statements (as above) and ColdFusion includes (<cfinclude>).This is a known issue with Dreamweaver. Solution
Code:
<script> <!-- <!--#include file="inc/include.inc" --> //--> </script> |
|
#3
|
|||
|
|||
|
thanks for the reply
thanks
QUOTE=:Merrick:]Issue In certain situations, Dreamweaver MX translator code is added to the source code of a document.The issue appears after saving and re-opening the page, or opening a page edited in an external editor. For example, the following code in a page: Code:
<script> <!--#include file="inc/include.inc" --> </script> is converted to: Code:
<script> <MM:BeginLock translatorClass="MM_SSI" type="ssi_comment" orig="%3C!--#include file=%22inc/include.inc%22 --%3E" fileRef="inc/include.inc" depFiles="file:///C|/MySites/asp/inc/include.inc">#993333 <MM:EndLock> </script> Reason The code inserted into the page is Dreamweaver's internal translator code. This code is used to translate source code for rendering the design view. In certain circumstances Dreamweaver does not complete the translation process, and the intermediate translator code is erroneously left behind in the source code. There are two known situations when this will occur.
Note:This behavior occurs with both HTML include statements (as above) and ColdFusion includes (<cfinclude>).This is a known issue with Dreamweaver. Solution
Code:
<script> <!-- <!--#include file="inc/include.inc" --> //--> </script> |
![]() |
| Viewing: Dev Shed Forums > Web Site Management > Development Software > Dreamweaver And Bulky Code |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|