It seems like there was no issue for this, but sdboyer has been working on it, and committed some stuff at:
- http://drupal.org/cvs?commit=473156
- http://drupal.org/cvs?commit=473170
- http://drupal.org/cvs?commit=473224
- http://drupal.org/cvs?commit=473226
- http://drupal.org/cvs?commit=473230
- http://drupal.org/cvs?commit=473232
- http://drupal.org/cvs?commit=473238
- http://drupal.org/cvs?commit=473250
- http://drupal.org/cvs?commit=473254
- http://drupal.org/cvs?commit=473256
I opened this because there are two bugs there:
- Nothing is returned on
hook_views_default_views() - It seems like there was a missing view: vc_git_user_commits (referenced from backend, but do not exists)
So, patch attached for returning views, but waiting on feedback about vc_git_user_commits from sdboyer before removing that as default view set.
PS: @sdboyer: I think 10 commits deserve an issue ;-)
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | 1013872-return-all-the-views-2.patch | 670 bytes | mikey_p |
| 0001-Finish-versioncontrol-views-sets-implementation.patch | 1.3 KB | marvil07 |
Comments
Comment #1
sdboyer commentedAhh yup, looks like I did forget to return them all. One of those annoying things about working on default views - you have to try to manually revert them in order to notice that there's something wrong with how you've declared the defaults. That bit I've added. And instead of removing declaration for the user commit view, I've just added that view; it's an important one to the spec I set forth in #970200-15: Create shippable commit views.
Comment #2
mikey_p commentedForgot to add the last view to the return.
Comment #3
sdboyer commentedGiggle. Thanks.