Thiago Macedo
Thiago Macedo
**Example Usage** ``` $('.form-element').on('form.validated.bs.validator', function() { var validator = $(this).data('bs.validator'); if (!validator.hasErrors()) console.log('No errors found'); else console.log('Some errors present'); }); ```
Easy solution (worked for me) use the callback to input `active` element class ``` callback: function(index, elem) { $(elem).siblings().removeClass('active'); $(elem).addClass('active'); }, ``` than use the .active class to transition the...
Also **Bitbucket** and **Gitlab** currently have bad `fingerprint`.
@mbg-unsw can you describe how did you generate the new fingerprint on the xml format? Bitucket is also outdated.
Yes, thanks, I ended using the `Post.date` on GMT. Its also a good idea to put some docs on the field mappings and how they are treated by the library.
So to properly load a Post from RPC I had to add this to `fieldmaps.DateTimeFieldMap.convert_to_python` ``` import re raw_value = re.sub(r'(\d+)-(\d+)-(\d+) ', r'\1\2\3T', raw_value) if not isinstance(raw_value, xmlrpc_client.DateTime): .... ```
In fact the problem is with my custom method (I'm using wp plugin **extapi** to return query_post data) which may have different format. I'm writing some custom wrappers around the...
Couldnt solve. Think I've done my own class using `requests_oauthlib`
The fix is necessary for using templates with multiple lines, like in component templates.
Got something similar: handshake failure ``` log Coursera-dl v3.1.1 (html.parser) Logging in as '[email protected]'... Traceback (most recent call last): File "/usr/local/bin/coursera-dl", line 9, in load_entry_point('coursera-dl==3.1.1', 'console_scripts', 'coursera-dl')() File "/usr/local/lib/python2.7/dist-packages/courseradownloader/courseradownloader.py", line...