Non-Dreamweaver templates for Contribute

Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Non-Dreamweaver templates for Contribute

    Are there any guidelines anywhere for creating the equivalent of Contribute
    editable/non-editable templates for sections of HTML pages which were not
    created by Dreamweaver; for example, guidelines on the use of <!--
    begineditable--> etc.?

    Ian Hutchison Guest

  2. Similar Questions and Discussions

    1. testing dreamweaver templates in contribute
      I have a client that wants me to set up a template for sending mass HTML e-mail that they can edit in contribute. I have set up the page and...
    2. Linking in contribute templates made by dreamweaver
      I am creating templates in Dreamweaver 8 for people using Contribute 3. When I am testing the templates I am unable to add more than one link at a...
    3. Using Contribute without Dreamweaver Templates
      I have a newly created website that utilizes ASP includes and table less design. My clients just love Contribute and would still like to use it. ...
    4. Dreamweaver Templates, Contribute and .NET Custom'Page's
      Hi all, I don't know if what I'm about to describe is at all possible, but it is the ideal solution to user collaboration issues we will soon be...
    5. Contribute 3 templates other than Dreamweaver
      Does Contribute 3 allow the usage of templates not created in Dreamweaver, Frontpage for example?
  3. #2

    Default Re: Non-Dreamweaver templates for Contribute

    Notate your editable regions as shown in the following markup -

    <!-- #BeginEditable "whatever" -->
    Editable region content goes here
    <!-- #EndEditable -->

    and you should be OK.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "Ian Hutchison" <webforumsuser@macromedia.com> wrote in message
    news:eme649$3ot$1@forums.macromedia.com...
    > Are there any guidelines anywhere for creating the equivalent of
    > Contribute
    > editable/non-editable templates for sections of HTML pages which were not
    > created by Dreamweaver; for example, guidelines on the use of <!--
    > begineditable--> etc.?
    >

    Murray *ACE* Guest

  4. #3

    Default Re: Non-Dreamweaver templates for Contribute

    Thanks for the guidance. However, we had already worked that out. I don't
    think that actually does anything if you have not created a .dwt "copy"
    template for that page. As far as we can see, you have to tell Conbtribute to
    NOT allow changes outside the <! -- begineditable... <! -- enditable pairs by
    creating a copy .dwt template for that page. Or is there another way of
    blocking changes to everything except between the "editable" statements?

    Ian Hutchison Guest

  5. #4

    Default Re: Non-Dreamweaver templates for Contribute

    Ian,

    The Dreamweaver template system works from the standpoint of a "deny all,
    allow some" mentality.

    Initially a Dreamweaver template file allows no editing to any sections. When
    modifying the template in Dreamweaver or any other text editor, the addition of
    the begin/end editable pairs enables the editing of any content existing within
    the tag pair.

    If you want to create a template for use with Contribute outside of
    Dreamweaver just create the file with any editable sections you desire then
    change the file extension to .dwt and place it in the "Templates" directory on
    your CPS managed webserver. Any files in the "Templates" directory that end
    with ".dwt" will be loaded on the next startup of the Contribute client.

    By default the Publisher and Writer roles allow access to all templates in the
    "Templates" directory via the Contribute client.

    Also, make sure that the "whatever" text mentioned by Murray is unique to each
    individual editable region.

    Please note that the Contribute/Dreamweaver template interaction is *not* a
    run-time template system. Dreamweaver templates are design-time templates. If
    you have sections of the template that change later then those changes will
    need to be applied on a page-by-page basis to each page using a given template.
    This functionality is automatically handled within the Macromedia workflow by
    using Dreamweaver to download the entire site then having it update all pages
    that are based on a given template.

    The piece of the code that denotes which template is assigned to a given page
    is as follows:

    <!-- InstanceBegin template="/Templates/level2.dwt"
    codeOutsideHTMLIsLocked="false" -->

    with an acompanying closing tag of:

    <!-- InstanceEnd -->

    The "InstanceBegin" tag should follow the opening html tag and the
    "InstanceEnd" tag should precede the closing html tag.

    The important piece of the "InstanceBegin" tag is the value of the "template"
    attribute. This needs to be the path to the specific template file relative to
    the webroot on the server.

    Hope this helps.

    arfore Guest

  6. #5

    Default Re: Non-Dreamweaver templates for Contribute

    Thanks. That's very helpful.
    Ian Hutchison Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139