I am using the dynamic class loader in ExtJS 4, and it has a mechanism for disabling caching. It appends a querystring to each request it makes for JS files, so the requests look like this:
GET Accounts.js?_dc=1315587302740 GET Account.js?_dc=1315587302774 GET Transactions.js?_dc=1315587302806 GET Transaction.js?_dc=1315587302828 GET Viewport.js?_dc=1315587302852 When I try to set a breakpoint in FireBug it is logged for those exact file name keys. Now, when I reload my page the _dc timestamps change, and FireBug doesn't match the breakpoints that are set with the new file names: GET Accounts.js?_dc=1315587689200 GET Account.js?_dc=1315587689226 GET Transactions.js?_dc=1315587689256 GET Transaction.js?_dc=1315587689275 GET Viewport.js?_dc=1315587689295 FireBug needs an option to ignore querystring params in file names, so that they can be debugged. Thanks, Jason Evans -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/firebug?hl=en.
