summaryrefslogtreecommitdiff
path: root/docs/tutorials
AgeCommit message (Collapse)Author
2016-12-23fix reST syntaxSteve Piercy
2016-12-23wiki2/src/models - update filesSteve Piercy
2016-12-23wiki2/src/basiclayout - update filesSteve Piercy
2016-12-23wiki2/src/installation - update filesSteve Piercy
2016-12-23sort packages alphaSteve Piercy
2016-12-23wiki2/*.rst first cut from comparing across branchesSteve Piercy
2016-12-23use correct package nameSteve Piercy
2016-12-23drop . from pip install commandSteve Piercy
2016-12-23replace pcreate w/ccSteve Piercy
2016-12-23wiki/src/tests updates, use correct lexersSteve Piercy
2016-12-23wiki/src/views updates, PEP8 the dictSteve Piercy
2016-12-23readjust line numbersSteve Piercy
2016-12-23wiki/src/authorization updatesSteve Piercy
2016-12-23wiki/src/views updatesSteve Piercy
2016-12-23wiki/src/models updatesSteve Piercy
2016-12-23wiki/src/models updatesSteve Piercy
2016-12-23wiki/src/basiclayout updatsSteve Piercy
2016-12-23forgot to add some files to gitSteve Piercy
2016-12-23alignment was offSteve Piercy
2016-12-23wiki/src/installation updatesSteve Piercy
2016-12-23standardize windows promptSteve Piercy
2016-12-23make distributing.rst's consistent, use pip installSteve Piercy
2016-12-23Use cookiecutter instead of scaffold and pcreateSteve Piercy
- minor grammar and reST fixes
2016-12-18Fix typoPavlo Kapyshin
2016-12-14Merge branch 'master' into pr/2853Michael Merickel
2016-12-09Added configuration for ipv6 in .ini files.Martin
2016-12-08minor grammar and style fixes for wiki/authorizationSteve Piercy
2016-12-08Merge pull request #2849 from mfrlin/issue-2656Michael Merickel
Changed wiki tutorial to showcase passwrd hashing with bcrypt.
2016-12-08bring wiki2 test coverage up to 100%, refs #2451Nejc Zupan
2016-12-07fixed 'list' to 'listen'Martin
2016-12-07Changed 'host' and 'port' configuration to a new 'listen' style that is now ↵Martin
supported by waitress server.
2016-12-07Hashing helpers now deal in unicode. Fixed wording. Added link to bcrypt and ↵Martin
a footnote from wiki2 example.
2016-12-06Revert "Changed 'host' and 'port' configuration to a new 'listen' style that ↵Bert JW Regeer
…"
2016-12-06Changed wiki tutorial to showcase passwrd hashing with bcrypt. Relates to #2204Martin
2016-12-06Changed 'host' and 'port' configuration to a new 'listen' style that is now ↵Martin
supported by waitress server.
2016-11-26add 3.6 support to documentationSteve Piercy
- See #2835
2016-11-20link to documentation on hupperMichael Merickel
fixes #2806
2016-07-29corrected folder name in docsandrew david burt
one of the instances of the tutorial's folder name was mistyped as "tutorials" rather than "tutorial" in the "Route declarations" section (cherry picked from commit 696f17c)
2016-07-29remove essentially duplicate "note" section under "initializing the database"andrew david burt
The note section under "initializing the database" was entered twice, the same except differing verb tenses. I removed one. (cherry picked from commit 96c1e36)
2016-07-16fix the wiki2 tutorial to set the password as unicodeMichael Merickel
Something really weird is happening but this fixes it. SQLAlchemy is returning the "password_hash" from queries as the type that it was inserted as. Not consistently unicode or bytes. If I insert bytes, then I get bytes back out. If I insert unicode then I get unicode back out. It's unclear why, as the type is Text, the data we're storing is unambiguously US-ASCII and the connection is using a consistent text_factory for unicode conversions of "str" on Python 3. Here, we ensure that we always insert the value as unicode which appears to fix downstream issues like those mentioned in #2605. I was able to reproduce that bug and confirm this fixes it if the original database is initialized using this fix. Obsoletes #2623.
2016-07-06Update links for AlembixSteve Piercy
2016-06-13pep8: inline comment must have 2 spaces beforeJC Bohin
2016-06-13Fix flake8's noqa directive in documentation and scaffoldsJC Bohin
2016-05-23Merge pull request #2601 from stevepiercy/1.7-branchSteve Piercy
revert column type change in alchemy scaffold and related docs
2016-05-22change type integer to type text, and update output of db init scriptSteve Piercy
- update output of running pytest coverage
2016-05-22Change type to Text from Integer. See #2591Steve Piercy
2016-05-20Change column `Page.data` to `Text`viniciusban
2016-05-19oops, encode the password in the authorization tutorial as wellMichael Merickel
2016-05-15password_hash is unicode, needs to be encodedMichael Merickel
2016-05-08docs: Fix typos.Vincent Férotin