perl template tool kit extension development

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default perl template tool kit extension development

    Greetings,

    I would like to develop an extension to dreamweaver to allow DW to visually
    display the perl Template Toolkit .wld files.

    For those who arent familiar with these, they are similar to classic ASP
    pages, where blocks of code are embedded with HTML.

    Can someone point in in the right direction to develop an extension for DW8?

    Thanks

    SterlingDK Guest

  2. Similar Questions and Discussions

    1. No WML development extension for DW8?
      For some mysterious reason, no one can find a WML development extension for DW8. I must be missing a point here, has it been approached differently?...
    2. good rapid development tool
      James Englert wrote: Hi James, The trouble with tools like dreamweaver is that they are a closed world that is hard to extend. We once looked...
    3. is Ruby Development Tool still active?
      Hi gurus and nubys, 6 months passed by from the latest release of RDT (the ruby plugin for eclipse) , and looking at the cvs it seem that little...
    4. Awards for development of build tool
      WHAT IS AAP? The Aap program is make on steroids. It does everything that other build systems do, has a powerful script language build-in and has...
    5. C++ development tool/GUI for Linux or Solaris
      I'm looking for a C++ development tool/GUI for Linux or Solaris and if it uses GNU g++ probably all the better. Looking for some thing similar to...
  3. #2

    Default Re: perl template tool kit extension development

    There is an extension on the Macromedia Exchange that provides Perl Support:

    [url]http://www.macromedia.com/cfusion/exchange/index.cfm#view=sn121&extid=1021086[/url]

    No need to reinvent the wheel!

    Hope this helps,
    Randy

    > I would like to develop an extension to dreamweaver to allow DW to visually
    > display the perl Template Toolkit .wld files.
    >
    > For those who arent familiar with these, they are similar to classic ASP
    > pages, where blocks of code are embedded with HTML.
    >
    > Can someone point in in the right direction to develop an extension for DW8?
    Randy Edmunds Guest

  4. #3

    Default Re: perl template tool kit extension development

    Hi,

    I'm looking at developing an extension to support the perl Template Toolkit -
    not perl files - there is a big differences.

    Template Toolkit files are .wld files and resemble html with blocks of dynamic
    code.

    SterlingDK Guest

  5. #4

    Default Re: perl template tool kit extension development

    Look in the Help menu under "Extending Dreamweaver" and the "Dreamweaver
    API".


    --
    Nancy Gill
    Team Macromedia Member: Dreamweaver MX/UltraDev
    [url]http://www.macromedia.com/go/team/[/url]
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August, 2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004: A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP Web Development

    "SterlingDK" <webforumsuser@macromedia.com> wrote in message
    news:diibdo$288$1@forums.macromedia.com...
    > Hi,
    >
    > I'm looking at developing an extension to support the perl Template
    Toolkit -
    > not perl files - there is a big differences.
    >
    > Template Toolkit files are .wld files and resemble html with blocks of
    dynamic
    > code.
    >

    Nancy Gill Guest

  6. #5

    Default Re: perl template tool kit extension development

    You will still need everything that is provided in that extension, but
    you'll need to add a couple things.

    If this is just for your own system(s), you will need to add the .wld
    extension to the HTML doctype. This TechNote explains how to do that:

    [url]http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_16410[/url]

    You will also need to add something like the following (assuming perl
    uses <script> tags) so the perl blocks will be recognized in the WLD files:

    <blockStart doctypes="HTML,LibraryItem"
    scheme="outerTag"><![CDATA[<script>]]></blockStart>
    <blockEnd><![CDATA[</script>]]></blockEnd>
    <blockStart doctypes="HTML,LibraryItem"
    scheme="outerTag"><![CDATA[<script\s+\*>]]></blockStart>
    <blockEnd><![CDATA[</script>]]></blockEnd>

    If you want to package this as an extension to distribute to others,
    unfortunately there is no way to make those changes in a "Macromedia
    Approved" way. You'll have to get duplicate the HTML and Perl code
    coloring data.

    Hope this helps,
    Randy

    > I'm looking at developing an extension to support the perl Template Toolkit -
    > not perl files - there is a big differences.
    >
    > Template Toolkit files are .wld files and resemble html with blocks of dynamic
    > code.
    Randy Edmunds 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