Richard Bradley

Results 48 issues of Richard Bradley

`ruckus.php` does not currently print any output until all migrations have finished. If one or more migrations take a very long time, then this can be disconcerting. It is not...

As far as I can see, without using `execute`, there is no support for foreign keys.

The rails migration system keeps the latest version of the schema in a `schema.rb` file (see http://guides.rubyonrails.org/migrations.html#schema-dumping-and-you ) This allows: - An up to date schema reference to be kept...

Unless I am mistaken, the contents of the download files are generated at render time (i.e. at the time that the buttons are shown), rather than when the download buttons...

This branch fixes #863 There are two issues: 1. This fix requires the PR https://github.com/marmelab/admin-config/issues/57 but that hasn't been merged. On this branch, I've added a dependency on "`git://github.com/RichardBradley/admin-config.git#a455071e`", but...

When using the "[Embedded Entities](http://ng-admin-book.marmelab.com/doc/Relationships.html#embedded-entities)" edit form, the `field.validation(x)` function does not update the UI with ticks or crosses ## To reproduce: - open this Plunkr demo: http://plnkr.co/edit/QW05BXQL2du3LXH1Xbly?p=preview - click...

bug

I have an entity with a string ID field. If the ID contains non-URLsafe chars like "+" or "/" then the detail links from the list view correctly escapes these...

bug

See https://github.com/marmelab/admin-config/issues/57 The `ng-admin` project uses lots of unguarded "for..in" statements, e.g. https://github.com/marmelab/ng-admin/blob/master/src/javascripts/ng-admin/Crud/list/ListController.js#L59 All of these need to be converted to use `angular.forEach` or add a `if (!xs.hasOwnProperty(i)) continue;` guard....

bug

My API passwords are being saved to the "cassette" files by PHP-VCR. This is a big problem for me, as I'd like to use PHP-VCR to help automate my tests,...