Chris Chilvers
Chris Chilvers
I have an implementation of this, but not sure if its correct, see https://github.com/chilversc/phpCAS/tree/session_handler for the current idea. For an example of how this is then used, see https://github.com/chilversc/gallery3_cas_auth/blob/master/libraries/CAS_Gallery_Session_Adapter.php which...
For instance, gallery3 does set up the session_set_save_handler, but it does so when you call [session::instance($session_id = null)](https://github.com/gallery/gallery3/blob/master/system/libraries/Session.php#L38). So I didn't want to start changing things about the session without...
Sorry, my work around was a bit confusing there. The actual property is not an array in this case. e.g. the model I want is something like: http://jsfiddle.net/efpoa2Lg/1/ ``` javascript...
Could be a work around for now, but I don't really like relying on private methods like that. As a quick test I removed the [`utils.isObservableArray` check](https://github.com/Knockout-Contrib/Knockout-Validation/blob/b9462a722b9b9c485b87c7d776922bfb9223a3e2/src/api.js#L59) and the validation...
I can't see any way to avoid individual grouping options though if you want `ko.validatedObservable(model, {deep: true})` but then want to exclude certain observables such as references back to the...
That was what I was thinking, but unlike #224 which only allows ignoring specific observables I thought of adding the same live/deep options as extenders. The logic would then be;...
My problem was that I wanted to name the extender `date` as that's the expected name, but that conflicts with the extender for the validation rule `date`. Access to the...
Looks like https://github.com/GoogleCloudPlatform/google-cloud-powershell/blob/b0549f98b2a150830ff6ddf10c66c3252df7626d/Google.PowerShell/Compute/GceMetadataCmdlet.cs#L161 is missing a call to `response.EnsureSuccessCode()` before accessing `response.Content`.
No, I think the current default strategy is fine, which is to take the names from the IUserType and generate "PropertyName_ColumnName", its just the defaults should be overridable by convention.
Tested out some other types: ``` C# // This works Map (x => x.Bar).CustomType (""); Map (x => x.Bar).CustomType (typeof(NHibernate.Type.EnumType)); // This does not work Map (x => x.Bar); Map...