| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-28 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2013-07-27 | Removed `foreword.rst` from hidden `toctree` | Darren Slatten | |
| The `foreword.rst` file was used in printed versions, but currently it is not being used, so it shouldn't appear in any `toctree` directives. | |||
| 2013-07-27 | Added the `:orphan:` file-wide metadata field | Darren Slatten | |
| The <a href="http://sphinx-doc.org/markup/misc.html#file-wide-metadata"><code>:orphan:</code></a> field suppresses the Sphinx error that occurs when a file in the source directory doesn't appear in a `toctree` directive. | |||
| 2013-07-27 | Move .. versionadded:: 1.2 to end of ``match_param`` definition so that when ↵ | Steve Piercy | |
| building PDF it does not pause and wait for user to hit RETURN. This is now consistent with other placements of this directive as well. | |||
| 2013-07-24 | indicate version in which not_ was added | Chris McDonough | |
| 2013-07-24 | add not_ predicate feature | Chris McDonough | |
| 2013-07-24 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2013-07-23 | Merge pull request #1052 from stevepiercy/master | Steve Piercy | |
| Remove references to relocated PyCharm tutorial | |||
| 2013-07-23 | Remove references to relocated PyCharm tutorial | Steve Piercy | |
| 2013-07-22 | Merge pull request #1048 from stevepiercy/master | Chris McDonough | |
| Synch some differences between index.rst and latexindex.rst, with index.rst as master | |||
| 2013-07-21 | Merge pull request #1051 from ronnix/patch-5 | Chris McDonough | |
| Fix documentation of testing.setUp | |||
| 2013-07-21 | Fix documentation of testing.setUp | Ronan Amicel | |
| 2013-07-18 | add whatsnew-1.5 | Chris McDonough | |
| 2013-07-18 | version bump in setup.py conf.py CHANGES.txt, rejigger changes bugs vs. features | Chris McDonough | |
| 2013-07-18 | normalize notations used for string and json renderer return values, closes ↵ | Chris McDonough | |
| #1005 | |||
| 2013-07-18 | When running the alchemy scaffold on MySQL an error is generated on table | Chris Davies | |
| creation: sqlalchemy.exc.OperationalError: (OperationalError) (1170, "BLOB/TEXT column 'name' used in key specification without a key length") '\nCREATE TABLE models (\n\tid INTEGER NOT NULL AUTO_INCREMENT, \n\tname TEXT, \n\tvalue INTEGER, \n\tPRIMARY KEY (id), \n\tUNIQUE (name)\n)\n\n' () MySQL (and MariaDB) doesn't allow an index of more than 255 characters. After modifying the scaffold and creating a project, the following results: > show create table models; +--------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Table | Create Table | +--------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | models | CREATE TABLE `models` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text, `value` int(11) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `my_index` (`name`(255)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 | +--------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ A unique index is created on the name field, constrained to 255 characters. When run on SQLite3: sqlite> .schema models CREATE TABLE models ( id INTEGER NOT NULL, name TEXT, value INTEGER, PRIMARY KEY (id) ); CREATE UNIQUE INDEX my_index ON models (name); the mysql specific constraint is ignored and the table is created with a unique index as desired. | |||
| 2013-07-17 | Remove PyCharm tutorial, since it now resides under pyramid_tutorials | Steve Piercy | |
| 2013-07-17 | Improve consistency between latexindex.rst and index.rst. | Steve Piercy | |
| 2013-07-17 | Merge branch 'wichert-auth-parent-domain' | Chris McDonough | |
| 2013-07-17 | Merge branch 'auth-parent-domain' of github.com:wichert/pyramid into ↵ | Chris McDonough | |
| wichert-auth-parent-domain | |||
| 2013-07-16 | - Correct title | Steve Piercy | |
| - Synch order of chapters | |||
| 2013-07-15 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2013-07-15 | update changelog | Michael Merickel | |
| 2013-07-15 | Merge pull request #1046 from lrowe/skip-same-views | Michael Merickel | |
| Avoid re-executing the same view when looking up context base views. | |||
| 2013-07-14 | Avoid re-executing the same view when looking up context base views. | Laurence Rowe | |
| This is a tweak of #1004. Really we should be using subscribers here instead of adapters, but zope.interface doesn't yet suppport named subscribers. | |||
| 2013-07-14 | Merge branch 'pull.1004' | Michael Merickel | |
| 2013-07-14 | update changlog | Michael Merickel | |
| 2013-07-14 | Merge branch 'master' of lrowe/pyramid into pull.1004 | Michael Merickel | |
| 2013-07-13 | Merge pull request #1045 from stevepiercy/master | Chris McDonough | |
| New tutorial: Using PyCharm with Pyramid | |||
| 2013-07-13 | New tutorial: Using PyCharm with Pyramid | Steve Piercy | |
| 2013-07-13 | Merge branch 'master' of github.com:stevepiercy/pyramid | Steve Piercy | |
| 2013-07-13 | New tutorial: Using PyCharm with Pyramid | Steve Piercy | |
| 2013-07-13 | New tutorial: Using PyCharm with Pyramid | Steve Piercy | |
| 2013-07-12 | Merge pull request #1043 from merwok/master | Tres Seaver | |
| Minor markup update to clarify object type | |||
| 2013-07-12 | Merge pull request #1044 from stevepiercy/master | Michael Merickel | |
| Make abstraction variables consistent. | |||
| 2013-07-12 | Make abstraction consistent. | Steve Piercy | |
| 2013-07-12 | Merge branch 'feature.prequest_login' | Chris McDonough | |
| 2013-07-12 | add an entry to changes about code merged from feature.prequest_login branch | Chris McDonough | |
| 2013-07-12 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2013-07-11 | Merge pull request #1041 from merwok/patch-1 | Tres Seaver | |
| reST fixes | |||
| 2013-07-11 | Coverage for new OPTIONS and PROPFIND methods. | Tres Seaver | |
| 2013-07-11 | Coverage for new '--login' option. | Tres Seaver | |
| 2013-07-11 | Get this out of the way after removing the pre-commit hook. | Tres Seaver | |
| 2013-07-11 | Typo firx from merwok. | Tres Seaver | |
| 2013-07-11 | Minor markup update to clarify object type | Éric Araujo | |
| 2013-07-11 | reST fix | Éric Araujo | |
| 2013-07-07 | Merge branch 'master' of github.com:Pylons/pyramid | Paul Everitt | |
| 2013-07-03 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2013-07-02 | Allow 'prequest' to send basic auth headers. | Tres Seaver | |
| Also, allow passing PROPFIND / OPTIONS as methods. | |||
| 2013-07-01 | Tres committed this by mistake | Chris McDonough | |
