FrViPofm

Results 7 issues of FrViPofm

1. open zotero 2. open Libreoffice and create an new document writer 3. write something 4. click on "Add/Edit citation" 5. set "Zotero - document settings" with "triangle", "footnote"... 6....

Bien le bonjour, Quelques suggestions de tests autour du tag [ref:FR:SIRET.](https://wiki.openstreetmap.org/wiki/FR:Key:ref:FR:SIRET). + Contrairement au SIREN qui concerne une entité juridique, le SIRET concerne un site de ladite entité. Le tag...

Hi all, Using Bottle and Macaron, I try to implement a kind of sponsorship with a self-jointure on the sql table 'user' ```SQL CREATE TABLE "user" ( "id" INTEGER PRIMARY...

Sometimes, it is very convenient to use a view instead of a table. Let us imagine a page with a side block showing the 10 last twits. In your template...

Hi, `except ValidationError, e:` raise an error in python3 and i must change manually all occurrence of such code to : `except ValidationError as e:` Maybe it could be changed...

Hi, There is a way to store data in sqlite. See : http://stackoverflow.com/questions/198692/can-i-pickle-a-python-dictionary-into-a-sqlite3-text-field So it would be nice to have a class to store it, and also raw data (JSON...

Enhancement

Hi, I got a problem in casting empty form entry with `macaron.IntegerField(null=True)` I solved it by adding just a line in macaron.IntegerField.cast : ```python class IntegerField(FloatField): ... def cast(self, value):...