| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2012-02-20 | tolerance to smtp error when creating project | Feth AREZKI | 1 | -2/+10 | |
| 2012-02-20 | cosmit. rem trailing spaces | Feth AREZKI | 1 | -18/+18 | |
| 2012-01-28 | Changed delete feature to only support POST method. Fix #21. | Frédéric Sureau | 1 | -3/+3 | |
| 2011-12-03 | The 'submit and add a new one' button now acts as intended | Alexis Metaireau | 1 | -2/+7 | |
| 2011-11-28 | Add a 'sumbit and add a new one' button for new bills. Fix #53 | Alexis Metaireau | 1 | -2/+4 | |
| 2011-11-28 | Fix #59. Edit now works properly | Alexis Metaireau | 1 | -1/+3 | |
| 2011-11-28 | add a (dead simple) dashboard. Fixes #42 | Alexis Metaireau | 1 | -0/+4 | |
| 2011-11-27 | change the icons, simplify some javascript | Alexis Metaireau | 1 | -1/+1 | |
| 2011-11-02 | Add a way to delete a project. Fix #63 | Arnaud Bos | 1 | -0/+5 | |
| 2011-10-20 | Last selected payer and translations. Fix #47. | Arnaud Bos | 1 | -1/+9 | |
| - Last selected payer selected by default when creating a new bill - Fix some translation typos and modify a few labels | |||||
| 2011-10-17 | Add the ability to change the language explicitely. I'm not sure the UI is ↵ | Alexis Metaireau | 1 | -0/+7 | |
| better with this. Any thoughts are welcome. Fix #35 | |||||
| 2011-10-15 | fix a bit the UI (identifier on bill's list) | Alexis Metaireau | 1 | -3/+1 | |
| 2011-10-15 | Translate the application using Flask-babel. | Alexis Metaireau | 1 | -18/+23 | |
| The only translation so far is french, but more can be added. The browser language is used thanks to the HTTP languages headers. There are still some problems with the translation of some strings, I don't know why this is. See #12 | |||||
| 2011-10-08 | Add a password recovery feature. Fix #32 | Alexis Metaireau | 1 | -2/+18 | |
| 2011-10-08 | merge with master | Alexis Metaireau | 1 | -3/+3 | |
| 2011-10-08 | Complete the REST API + Tests. Fix #27 | Alexis Metaireau | 1 | -2/+2 | |
| 2011-09-18 | Merge branch 'master' into auth-forms-usability | Arnaud Bos | 1 | -15/+39 | |
| 2011-09-14 | Provide a way to edit a project. Fix #17 | Alexis Metaireau | 1 | -1/+19 | |
| 2011-09-14 | Simplified #30 fix. | Arnaud Bos | 1 | -3/+2 | |
| 2011-09-14 | Validate authentication form if given identifier is null. Fix #30. | Arnaud Bos | 1 | -2/+6 | |
| 2011-09-14 | Make the identifier clearer to the end-user. | Arnaud Bos | 1 | -1/+14 | |
| - Send an email to the user with the summary of the created project containing a reminder of the identifier, password and a link. - Add flash message with the identifier in the /invite page/ - Add a small note containing the identifier in the upper right corner of the project main page. | |||||
| 2011-09-13 | API: Create and Update support | Alexis Metaireau | 1 | -10/+3 | |
| 2011-09-13 | REST API is now able to list stuff \o/ | Alexis Metaireau | 1 | -2/+11 | |
| 2011-09-11 | Fix #24 on Authentication and New project forms usability. | Arnaud Bos | 1 | -6/+12 | |
| - Do not display anymore the identifier field in home. - Let the user enter the id if the slug generated from project name already exists as a project id. - Moved get_billform_for from 'utils' to 'forms', to avoid issue (was 'from forms import ...' into utils, and 'from utils import ...' into forms, which causeed an error). | |||||
| 2011-09-09 | Refactor the application to use blueprints. | Alexis Metaireau | 1 | -50/+43 | |
| This allows to isolate some behavior in the context of the web application so the API and the web application can behave in different ways. | |||||
| 2011-09-09 | Move some logic to the models and add comments. | Alexis Metaireau | 1 | -15/+24 | |
| 2011-09-09 | Start working on archive management | Alexis Metaireau | 1 | -12/+10 | |
| 2011-08-25 | Add a way to reactivate an user, make the add project non obstrusive | Alexis Metaireau | 1 | -0/+11 | |
| 2011-08-22 | display a flash message when an user is coming back | Alexis Metaireau | 1 | -0/+1 | |
| 2011-08-22 | Add missing tests. Fixes #14 and #22. | Alexis Metaireau | 1 | -0/+8 | |
| 2011-08-21 | RequestRedirect uses a HTTP 301. We need 303. | Alexis Metaireau | 1 | -4/+3 | |
| This is mainly because 301 is cacheable whereas 303 (See other) isn't. The redirect response given by the app when trying to connect to a project (via /project_name) while not authenticated was to permanently redirect to /authenticate. Once authenticated, the browser was redirected to the /project_name, that was cached, leading to an endless loop. 303 see other allows to solve this problem. | |||||
| 2011-08-21 | authentication dance | Alexis Metaireau | 1 | -8/+7 | |
| 2011-08-21 | Add a flash message + the name of the site when sending invitations | Alexis Metaireau | 1 | -0/+1 | |
| 2011-08-21 | put back stuff in the wrong place for now | Alexis Metaireau | 1 | -8/+9 | |
| 2011-08-21 | Fix a weird behavior with tests and databases. | Alexis Metaireau | 1 | -9/+13 | |
| Now all the database during the tests is in memory, created for each test and cleared at the end of the test. | |||||
| 2011-08-21 | add a demo feature (see #16) | Alexis Metaireau | 1 | -0/+6 | |
| 2011-08-21 | Do not loop-redirect on authenticate. | Alexis Metaireau | 1 | -0/+2 | |
| 2011-08-21 | Re-design (Fixes #19) | Alexis Metaireau | 1 | -32/+32 | |
| 2011-08-20 | Add the project to the local context even if it is already in session. | Alexis Metaireau | 1 | -0/+1 | |
| 2011-08-20 | forgot to commit changes to web.py | Alexis Metaireau | 1 | -5/+5 | |
| 2011-08-19 | No need anymore to pass the project_id to the urls. | Alexis Metaireau | 1 | -54/+68 | |
| The project is now directly added to the context local g object, and injected on the fly into the urls that need it. This commits also add ideas found while reading the flask documentation. The project can be enhanced in many ways, some ideas are stated there. | |||||
| 2011-08-10 | Add a set_default argument to the get_billform_for function. | Alexis Metaireau | 1 | -2/+1 | |
| 2011-08-10 | Add some more tests about membership. (#14) | Alexis Metaireau | 1 | -1/+1 | |
| Fixes #15 as invalid: deactivated users are not listed on the bill form or on the balance. | |||||
| 2011-08-10 | The delete bill feature has been fixed. #6 | Frédéric Sureau | 1 | -2/+0 | |
| 2011-08-10 | It is now possible to edit existing bills. | Frédéric Sureau | 1 | -12/+31 | |
| 2011-08-10 | Fixes various typos. | Alexis Metaireau | 1 | -1/+1 | |
| 2011-08-10 | get ready for production, baby :) | Alexis Metaireau | 1 | -8/+9 | |
| 2011-08-10 | remove the debug route for production | Alexis Metaireau | 1 | -5/+0 | |
| 2011-08-09 | formatting | Alexis Metaireau | 1 | -4/+6 | |
| 2011-08-09 | fixes authentication (#9) | Alexis Metaireau | 1 | -18/+19 | |
