Changes between Version 1 and Version 2 of TracViewScript


Ignore:
Timestamp:
Oct 30, 2009, 9:51:34 PM (14 years ago)
Author:
Jeff Hammel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracViewScript

    v1 v2  
    1 = pastescript template for a Trac view =
     1= Creating Views in Trac is now even easier! =
    22
    3 == Description ==
     3TracViewScript, which is a pastescript template, to enable the
     4creation of a skeleton view of a view in Trac.  This view
    45
    5 !PasteScript template for creating a view with Trac.  Includes a main navigation contributor, templates directory, htdocs, and a request handler.  Useful for making a cheap view OOTB
     6 * provides mainnav navigation (INavigationContributor)
     7 * handles requests (IRequestHandler)
     8 * provides templates (ITemplateProvider)
     9
     10You can download TracViewScript here:
     11http://trac-hacks.org/wiki/TracViewScript
     12
     13For more general purpose Trac plugin creation, see http://trac-hacks.org/wiki/CreatePluginScript
     14
     15== Usage ==
     16
     17Once you have installed the software, `tracview` should be listed by
     18paster:
     19
     20`paster create --list-templates`
     21
     22To invoke the template, run
     23
     24`paster create -t tracview FooBar`
     25
     26where `FooBar` is the name of the view you want to create.
     27
     28== Download ==
     29
     30Download the zipped source from [download:tracviewscript here].
     31
     32You can check out TracViewScript from [http://trac-hacks.org/svn/tracviewscript here] using Subversion, or [source:tracviewscript browse the source] with Trac.
    633
    734== Bugs/Feature Requests ==
     
    1340[http://trac-hacks.org/newticket?component=TracViewScript&owner=k0s new ticket].
    1441
    15 == Download ==
    16 
    17 Download the zipped source from [download:tracviewscript here].
    18 
    19 == Source ==
    20 
    21 You can check out TracViewScript from [http://trac-hacks.org/svn/tracviewscript here] using Subversion, or [source:tracviewscript browse the source] with Trac.
    22 
    23 == Example ==
    24 
    25 `paster create -t tracview FOOVIEW`
    2642
    2743== Recent Changes ==