Changes between Initial Version and Version 5 of Ticket #6514


Ignore:
Timestamp:
Oct 19, 2012, 10:28:05 PM (12 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6514

    • Property Owner changed from Abbywinters.com WebDev to Björn Harrtell
    • Property Status changed from new to closed
    • Property Resolution changed from to fixed
  • Ticket #6514 – Description

    initial v5  
    11When I used this plugin with trac multirepos 0.12dev and genshi 0.6dev it gave two problems.
    2 1. On the client side you try to find the chrome path of the trac installation by finding the gridmod.js script with a jquery css selector rule like $("script[src~="gridmod"]) which is incorrect because jquery documentation states that this matches gridmod as a separated word (separated by spaces). The fix is to use $("script[src*="gridmod"])
     2 1. On the client side you try to find the chrome path of the trac installation by finding the gridmod.js script with a jquery css selector rule like `$("script[src~="gridmod"])` which is incorrect because jquery documentation states that this matches gridmod as a separated word (separated by spaces). The fix is to use `$("script[src*="gridmod"])`.
     3 1. Trac `0.12dev` gave an error when sending back the OK response from an ajax request because the Content-Length header was mandatory.
    34
    4 2. Trac 0.12dev gave an error when sending back the OK response from an ajax request because the Content-Length header was mandatory
    5 
    6 I have attached a patch with the small fixes that make it work properly on trac 0.12dev
     5I have attached a patch with the small fixes that make it work properly on trac `0.12dev`.