Having studied a little, I found that if we go to the tridion.contenmanager.config file, we find a node that refers to the type of the Dreamweaver mediator:
<mediator matchMIMEType="text/x-tcm-dreamweaver" type="Tridion.ContentManager.Templating.Dreamweaver.DreamweaverMediator" />
This namespace is inside Tridion.ContentManager.Templating.dll
Decompilation is the best way to find out what's inside and learn something. Since this is .Net code, this will not be a problem, there are many good free tools available. I have been using JustDecompile recently
I didn't go too deep into the code, but I see that there is a TridionObjectSource class with the number of constants for reserved words, for example:
ReservedNameTitleReservedNameDescription
Finding where these constants are used in your code can help you better understand what they are doing and the way the Dreamweaver broker works.
Sounds like an interesting training exercise.
Puntero
source share