kynx
kynx
If you're installing this on multiple RHEL-based boxes, you might find building an RPM worth while. I've stuck the spec file I used here: https://gist.github.com/2960984 I wasn't sure what version...
I'm getting `Notice: Undefined offset: 1 in /path/to/vendor/zendframework/zend-code/src/Scanner/ClassScanner.php on line 596` using 3.1.0. It looks like this happens with aliased trait methods: ```php trait A { function a() { //...
Currently the `SftpAdapter` doesn't overwrite existing files when moving, unlike other adapters. This PR adds that ability.
This fixes the `InMemoryFilesystemAdapter` not copying or moving directories
If the header value is folded and the continuation line contains leading whitespace: ``` Subject: Subject Subject Subject Subject Subject Subject Subject Subject Subject Subject ``` the simple header canonicalization...
If the header value contains leading whitespace: ``` Subject: Subject Subject ``` the header canonicalization strips it: ``` Subject: Subject Subject ``` This leads to an (incorrect) failed validation. According...
This is a follow-on from #32. You cannot use the view helpers without requiring zend-view. This is because `Zend\Form\View\Helper\AbstractHelper` extends `Zend\I18n\View\Helper\AbstractTranslatorHelper`, which in turn extends `Zend\View\Helper\AbstractHelper`. I would like to...
### Feature Request | Q | A |------------ | ------ | New Feature | yes | RFC | yes | BC Break | no #### Summary It would be nice...
This PR fixes issues publishing reports to a Pentaho server configured to serve content from an empty context path (ie, http://localhost:8080, not http://localhost:8080/pentaho)
I'm using pyrax 1.9.4. My script uses copy_object(from_container, name, to_container) and catches NoSuchObject. However, when the object name contains a leading forward slash (ie "/path/to/file") it's throwing NoSuchContainer. OK, it's...