josejachuf

Results 14 issues of josejachuf

### Browsers Tested - [x] Chrome - [x] Firefox - [ ] Edge - [ ] Safari 9 - [ ] Safari 8 - [ ] IE 11 ### Versions...

Hi. First approach to Rust. I'm just starting with Rust and I'm interested in using lopdf. rustc 1.54.0 (a178d0322 2021-07-26) cargo 1.54.0 (5ae8d74b3 2021-06-22) I'm testing the sample code but...

Can anyone help me to do what is stated in this [1] tutorial for iocage using bastille? Basically it would be the equivalent command to create an empty jail: >...

enhancement

Taking into account the UUID type PK support. How is it resolved in auth_permission record_id (integer) field? **Sample of docs:** ``` maintenance = db.Preference(name='maintenance').first() auth.add_permission(admins, 'write', 'Preference', maintenance.id) auth.has_permission('write', 'Preference',...

enhancement

I have this validation `'f1': {'in': {'dbset': lambda db: db.where(db.A.f2 == session.f2)}}` In another way: ``` def val_f2(db): print(session.f2) return db.where(db.A.f2 == session.f2) 'f1': {'in': {'dbset': lambda db: val_f2(db)}} ```...

ORM
bug::investigation-needed

Hello @gi0baro . In which state is the schemas support (pgsql)? It would be desirable to have it Jose

feature request
ORM

Hi @gi0baro in shell: ``` >>> row = Provincia.create(nombre='Prueba 01') >>> row >>> row.id 24 >>> row.id.as_dict() Traceback (most recent call last): File "", line 1, in TypeError: 'NoneType' object...

bug
ORM

Hi @gi0baro Routes with negative float values do not work as expected. ``` @foo.route('/a//') def a(lat): ``` /foo/a/-30.5 Jose

feature request

Hi @gi0baro . The following works fine (for docs) ``` @mymodule.route("/profile(/)?") def profile(user_id): if user_id: # get requested user else: # load current logged user profile ``` But if I...

bug

You can sort the fields in the form based on model. Currently orders fields defined with Field() , but always located at the end of the fields defined with belongs_to()....

enhancement
feature request
discussion