Opened 14 years ago

Closed 14 years ago

Last modified 12 years ago

#6514 closed defect (fixed)

Problems with 0.12dev — at Version 5

Reported by: Costache Catallin Owned by: Björn Harrtell
Priority: normal Component: GridModifyPlugin
Severity: critical Keywords:
Cc: Trac Release: 0.12

Description (last modified by Ryan J Ollos)

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"]).
  2. 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 (6)

Changed 14 years ago by Costache Catallin

Attachment: patch added

small fixes

comment:1 Changed 14 years ago by anonymous

Owner: changed from Abbywinters.com WebDev to anonymous
Status: newassigned

comment:2 Changed 14 years ago by Björn Harrtell

Owner: changed from anonymous to Björn Harrtell
Status: assignednew

comment:3 Changed 14 years ago by Björn Harrtell

Resolution: fixed
Status: newclosed

(In [8322]) Fixed 0.12 showstoppers (closes #6514)

comment:4 Changed 12 years ago by Ryan J Ollos

#10301 closed as a duplicate.

comment:5 Changed 12 years ago by Ryan J Ollos

Description: modified (diff)
Note: See TracTickets for help on using tickets.