Changes between Version 5 and Version 6 of AddStaticResourcesPlugin


Ignore:
Timestamp:
Nov 26, 2015, 12:57:54 PM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • AddStaticResourcesPlugin

    v5 v6  
    1414There is also a patch listed below to provide case sensitivity.
    1515
     16'''Note''': This plugin is trying to accomplish much of what TracTweakUiPlugin is, however with the following additional goals:
     17 * Simple, I want to simply map a url to a javascript/stylesheet that should be included.
     18 * Affect all tracs at once
     19  * I have many tracs so specifying this once in the shared conf file is much nicer than once in each database
     20  * Deployment of files should be simple and preferably in the egg we are already installing, rather than in a static location I need to keep track of and separately manage for each trac.
     21
    1622== Bugs/Feature Requests
    1723
     
    2228[/newticket?component=AddStaticResourcesPlugin new ticket].
    2329
     30'''Note:''' The Trac 0.11 branch seems to work fine in Trac 0.12. If you experience any issues, then please [/newticket?component=AddStaticResourcesPlugin report them].
     31
    2432[[TicketQuery(component=AddStaticResourcesPlugin&group=type,format=progress)]]
    2533
    26 == Download & Source
     34== Download
    2735
    28 '''Note:''' The Trac 0.11 branch seems to work fine in Trac 0.12. If you experience any issues, then please [http://trac-hacks.org/newticket?component=AddStaticResourcesPlugin&owner=bobbysmith007 report them].
     36Download the zipped source from [export:addstaticresourcesplugin here].
    2937
    30 Download the zipped source:
    31  * [download:addstaticresourcesplugin ZIP].
    32 SVN:
    33  * [http://trac-hacks.org/svn/addstaticresourcesplugin SVN]
     38== Source
    3439
    35 or [source:addstaticresourcesplugin browse the source] with Trac.
     40You can check out AddStaticResourcesPlugin from [/svn/addstaticresourcesplugin here] using Subversion, or [source:addstaticresourcesplugin browse the source] with Trac.
    3641
    37 === Patches
    38 
    39  * [http://trac-hacks.org/ticket/7334 Case Sensitive Regex]
     42Also note that there are [#7334 case sensitive regex patches].
    4043
    4144== Installation
    4245
    43  1. Insert your static files into the 'addstaticresourcesplugin/htdocs' folder of the plugin before install
    44  1. Install the plugin either for a single project or globally. See the details on how to install a trac plugin at: [trac:TracPlugins].
    45  1. Be sure that the plugin is enabled. Add "addstaticresourcesplugin.* = enabled" to your `trac.ini` file in the [components] subheading.
    46   * Alternatively, this can be enabled in the Web Admin section of the website as well.
     46 1. Insert your static files into the 'addstaticresourcesplugin/htdocs' folder of the plugin before installation.
     47 1. Install the plugin either for a single project or globally. See the details on how to install a trac plugin at [trac:TracPlugins].
     48 1. Enable the plugin. Add "addstaticresourcesplugin.* = enabled" to your `trac.ini` file in the [components] subheading. Alternatively, this can be enabled in the Web Admin section of the website as well.
    4749 1. Reload/restart your HTTPD / other webserver / Tracd.
    48 
    49 == Related Plugins
    50 
    51 === TracTweakUiPlugin
    52 
    53 This plugin is trying to accomplish much of what TracTweakUiPlugin is, however I had some goals that were not being met by TracTweakUiPlugin.
    54  * Simple, I want to simply map a url to a javascript/stylesheet that should be included.
    55  * Affect all tracs at once
    56   * I have many tracs so specifying this once in the shared conf file is much nicer than once in each database
    57   * Deployment of files should be simple and preferably in the egg we are already installing, rather than in a static location I need to keep track of and separately manage for each trac.
    5850
    5951== Example