Barry O'Donovan
Barry O'Donovan
> it would be part of https://github.com/FoilPHP organization, but not part of Foil +1. Dependancies are a pain 😄
Issue is with [`$r->validate()` here](https://github.com/inex/IXP-Manager/blob/v6.2.0/app/Http/Controllers/Switches/SwitchController.php#L728). `validate()` returns to the referrer but in the add-by-snmp stream, the referred is the initial page where the user enters hostname and community rather than...
The change is very big and encompasses the entire database layer. I just caught up with @yannrobin there and he's powering through it. In fact most objects are done but...
Thanks @tardoe - we'll likely do this as a beta release. We'll have it live at INEX first so others will know it's in production use but the beta tag...
Hi Paul - is there a real requirement for this I wonder? Could they not just filter for the infrastructure they need? Either way, they're parsing the JSON?
> Users don't know what pb_1234_as12345, t_1234_12345 or master4 means. I was planning to link these to member names in the next iteration.
> Also it's still broken for the prefix display. Just gives an empty window. That's fixed in release-v6 @listerr via 5f7b338b16189c9284bf133f1fd8ca94355967fb and will be in the next release.
I wouldn't just now @tardoe - let's keep this open and @yannrobin and I will review and look to implement this or something like it now that we have v6...
Hi @bluecmd, so just for anyone else reading this, the functionality here is: ``` | By setting this option to true, session cookies will only be sent back | to...
Hey @listerr Regarding the regex: `match:"/^(?:^..*)\.\w{1,5}$/"` - is the intention 'at least one char, a dot and an extension of 1-5 characters? If so, this might be better: `match:"/^\w[\w\-\.\(\)]+\.\w+$/"` -...