Opened 14 years ago

Last modified 11 years ago

#6514 closed defect

Problems with 0.12dev — at Initial Version

Reported by: Costache Catallin Owned by: Abbywinters.com WebDev
Priority: normal Component: GridModifyPlugin
Severity: critical Keywords:
Cc: Trac Release: 0.12

Description

When I used this plugin with trac multirepos 0.12dev and genshi 0.6dev it gave two problems.

  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"])
  1. Trac 0.12dev gave an error when sending back the OK response from an ajax request because the Content-Length header was mandatory

I have attached a patch with the small fixes that make it work properly on trac 0.12dev

Change History (1)

Changed 14 years ago by Costache Catallin

Attachment: patch added

small fixes

Note: See TracTickets for help on using tickets.