Forum Discussion

Jonathan_Dion_1's avatar
Jonathan_Dion_1
Icon for Nimbostratus rankNimbostratus
Sep 24, 2014

iRule Editor links to wiki broken

Hello,

 

The links for the commands to the wiki that the iRule Editor points to seems to be broken.

 

For example, if I click on HTTP::header on the iRule Editor, the page that is requested is: http://devcentral.f5.com/Wiki/default.aspx/iRules.HTTP__header which redirects to: https://devcentral.f5.com/Wiki/default.aspx/iRules.HTTP__header

 

However, the wiki page containing that command is: https://devcentral.f5.com/wiki/iRules.HTTP__header.ashx

 

It used to work a few days/weeks ago.

 

I've search around on DevCentral for a similar question or to an update to the iRule Editor, but I can't seem to find any hence my question. I also can't find anywhere to replace that in a config file (it's not in the iRuler.xml).

 

Please let me know if I missed something!

 

Thanks.

 

2 Replies

  • Hi Jonathan, we had made some changes on Devcentral which may have reorganized uris. So big chance the irule editor is now pointing to wrong urls. we will have to wait for an update on the editor side, except if you have a bigip in between with some irules :)

     

  • I've thought about using a BIG-IP VE on my laptop to do so, but then that would drain my battery way too fast for something as "simple" as that :).

    Instead I'm using my favorite debugging proxy Fiddler that I'm using all the time anyway. I just added this:

    if (oSession.HostnameIs("devcentral.f5.com") && oSession.PathAndQuery.match(/Wiki\/default.aspx/)) {
        oSession.PathAndQuery=(oSession.PathAndQuery.replace("Wiki/default.aspx","wiki")).concat(".ashx");
    }
    

    to the "OnBeforeRequest" function.

    Here's some documentation on how to add rules: http://docs.telerik.com/fiddler/Extend-Fiddler/AddRules