summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial
AgeCommit message (Collapse)Author
2018-08-18Clean up code-blocks in qt/static_assetsSteve Piercy
2018-08-18Clean up code-blocks in qt/sessionsSteve Piercy
2018-08-18Clean up code-blocks in qt/routingSteve Piercy
2018-08-18Clean up code-blocks in qt/requirementsSteve Piercy
2018-08-18Clean up code-blocks in qt/request_responseSteve Piercy
2018-08-18Clean up code-blocks in qt/packageSteve Piercy
2018-08-18Clean up code-blocks in qt/more_view_classesSteve Piercy
2018-08-18Clean up code-blocks in qt/loggingSteve Piercy
2018-08-18Clean up code-blocks in qt/jsonSteve Piercy
2018-08-18Clean up code-blocks in qt/jinja3Steve Piercy
2018-08-18Clean up code-blocks in qt/iniSteve Piercy
2018-08-18Clean up code-blocks in qt/functional_testingSteve Piercy
2018-08-18Clean up code-blocks in qt/functional_testingSteve Piercy
2018-08-18Clean up code-blocks in qt/formsSteve Piercy
2018-08-18Clean up code-blocks in qt/debugtoolbarSteve Piercy
2018-08-18Clean up code-blocks in qt/databasesSteve Piercy
2018-08-18Clean up code-blocks in qt/cookiecuttersSteve Piercy
2018-08-18Clean up code-blocks in qt/authorizationSteve Piercy
2018-08-18Clean up code-blocks in qt/authenticationSteve Piercy
2018-08-04Update __init__.pyOdinsGenre
2018-06-28Typos changedGerard
2018-05-17Merge pull request #3283 from LuisCastilloH/Issue-3154Steve Piercy
Add cut and paste text to quick tutorial index
2018-05-16Use actual tree output characters, now that we have Unicode supportSteve Piercy
2018-05-16Update GitHub URLs for tutorialsLuisCastilloH
2018-05-16Merge pull request #3287 from radurevutchi/masterSteve Piercy
issue #3276 removed extra lines from previous PR
2018-05-15issue #3182 removed extra lines from previous PRRadu Revutchi
2018-05-15Added cut and paste instructions in new locationLuisCastilloH
2018-05-15Removed for code reviewLuisCastilloH
2018-05-15Add cut and paste text to quick tutorial indexLuisCastilloH
2018-05-14Merge pull request #3275 from cyraxjoe/sprints-doc-fixesSteve Piercy
Removes the step to install additional packages in the quick tutorial.
2018-05-14fixed issue #3182 - alphabetized dependencies in quick tutorial and aligned ↵Radu Revutchi
emphasize-lines
2018-05-14Removes the step to install additional packages in the quick tutorial.Joel Rivera
This part is redundant because in the same tutorial we indicate to install the application in development/editable mode with `pip -e` in the next section. (which will install the required dependencies if needed by the app) Related issue: #3181
2018-04-24link to pypi.orgMichael Merickel
2018-02-26fix broken linkMichael Merickel
2018-01-12Update templates to align with cookiecuttersSteve Piercy
- Update CDN assets to minor versions - Use data attribute for Jinja2 templates (already done in mako and chameleon)
2017-12-01Clarify when and how waitress is installed.Steve Piercy
- see #3204
2017-11-03views.py: prevent exception on unknown user loginsilum
2017-11-03views.py: prevent exception on unknown user loginsilum
Attempting authentication without specifying a login, or when the login is not known, causes an unhandled exception to be raised in `security.py` because `None` is passed to `check_password()` as the hashed password to check against.
2017-10-21Changes per stevepiercy review, thanks!Chris Shenton
2017-10-21Force emacs not to add newlines gratuitously, un-add themChris Shenton
2017-10-21Quick Tutorial: Replace wsgiref with waitressChris Shenton
In setup.py add waitress import. In development.ini use waitress. Adjust line number highlighting. Mention that we're using it early in the tutorial. Addresses #2926
2017-08-15Merge pull request #3152 from larsblumberg/masterSteve Piercy
Add a functional test for the static file
2017-08-15Only include test code snippet that has been addedLars Alexander Blumberg
2017-08-14Merge pull request #3153 from larsblumberg/change-wordingSteve Piercy
Update wording on tutorial page
2017-08-14Add a functional test for the static fileLars Alexander Blumberg
2017-08-14Update wording on tutorial pageLars Blumberg
2017-08-14Add functional test for css fileLars Alexander Blumberg
Static files were introduced in this tutorial step. As the tutorials emphasise to write tests, this commits adds a test for the static file `app.css` that was introduced with this tutorial step.
2017-08-14Add missing word to jinja2 tutorials pageLars Alexander Blumberg
2017-07-03Add a term for context manager in Quick TutorialSteve Piercy
2017-07-03Update example apps to use config context manager in Quick TourSteve Piercy
- add missing EOF line ending