summaryrefslogtreecommitdiff
path: root/doc/build/conf.py
Commit message (Collapse)AuthorAgeFilesLines
* - 1.2.0b2rel_1_2_0b2Mike Bayer2017-07-241-2/+2
|
* - move to file-per-changelog for unreleased change notes,Mike Bayer2017-07-221-6/+7
| | | | | | | | | | | so that we no longer have to rely upon merges within the changelog files. because gerrit doesn't allow us to use custom merge engines unlike git, we have no ability to merge multiple changes into the changelog files without going through conflicts. new version of changelog in git supports these new patterns. Change-Id: I588eebd027b4ad3428bd522f36a6f1cd77f105bb
* - 1.2.0b1rel_1_2_0b1Mike Bayer2017-07-101-1/+1
|
* - remove intersphinx usage, the overhead of re-fetchingMike Bayer2017-07-091-10/+3
| | | | | | inventory on every build not worth it Change-Id: I3c4506b246d0f327c4b56afa723975daee984476
* - begin the 1.2 branch in master, diverge from 1.1Mike Bayer2017-03-101-3/+3
| | | | Change-Id: I446f7528046873bf2d547daec043737b1bffe5f4
* - 1.1.6rel_1_1_6Mike Bayer2017-02-281-2/+2
|
* - 1.1.5rel_1_1_5Mike Bayer2017-01-171-2/+2
|
* update for 2017 copyrightMike Bayer2017-01-041-1/+1
| | | | Change-Id: I4e8c2aa8fe817bb2af8707410fa0201f938781de
* - 1.1.4rel_1_1_4Mike Bayer2016-11-151-2/+2
|
* - 1.1.3rel_1_1_3Mike Bayer2016-10-271-2/+2
|
* - 1.1.2rel_1_1_2Mike Bayer2016-10-171-2/+2
|
* - 1.1.1rel_1_1_1Mike Bayer2016-10-071-2/+2
|
* - 1.1.0rel_1_1_0Mike Bayer2016-10-051-2/+2
|
* - 1.1.0b3rel_1_1_0b3Mike Bayer2016-07-261-2/+2
|
* - 1.1.0b2rel_1_1_0b2Mike Bayer2016-07-011-2/+2
|
* - revert the RTD reqs workaround, we are self-hosting nowMike Bayer2016-07-011-31/+0
| | | | Change-Id: Ie11361147d497c6eb6418cdc850ed277dfbd1de4
* - update alembic linkMike Bayer2016-06-181-1/+1
| | | | Change-Id: I5ac6ba8234873fdd19bee6c1decd311a9cb4d55e
* 1.1.0b1Mike Bayer2016-06-161-1/+1
|
* Convert readthedocs link for their .org -> .io migration for hosted projectspr/278Adam Chainz2016-05-291-1/+1
| | | | | | | | As per their email ‘Changes to project subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified.
* - happy new yearMike Bayer2016-01-291-1/+1
|
* - Organize the tree for 1.1Mike Bayer2015-07-241-3/+3
|
* 1.0.8rel_1_0_8Mike Bayer2015-07-221-2/+2
|
* 1.0.7rel_1_0_7Mike Bayer2015-07-201-2/+2
|
* 1.0.6rel_1_0_6Mike Bayer2015-06-251-2/+2
|
* - 1.0.5rel_1_0_5Mike Bayer2015-06-071-2/+2
|
* - turn some dials to try to get more log outputMike Bayer2015-05-251-1/+1
|
* - work around RTD issue #1293, take oneMike Bayer2015-05-251-0/+32
|
* 1.0.4rel_1_0_4Mike Bayer2015-05-071-2/+2
|
* 1.0.3rel_1_0_3Mike Bayer2015-04-301-2/+2
|
* 1.0.2rel_1_0_2Mike Bayer2015-04-241-2/+2
|
* 1.0.1rel_1_0_1Mike Bayer2015-04-231-2/+2
|
* 1.0.0rel_1_0_0Mike Bayer2015-04-161-2/+2
|
* 1.0.0b5rel_1_0_0b5Mike Bayer2015-04-031-2/+2
|
* 1.0.0b4rel_1_0_0b4Mike Bayer2015-03-291-2/+2
|
* - 1.0.0b3rel_1_0_0_b3Mike Bayer2015-03-201-1/+1
|
* - 1.0.0b2rel_1_0_0b2Mike Bayer2015-03-201-2/+2
|
* 1.0.0b1rel_1_0_0b1Mike Bayer2015-03-131-1/+1
|
* - call this 1.0.0b1Mike Bayer2015-03-131-1/+1
|
* - copyright 2015Mike Bayer2015-03-101-2/+2
|
* correctionsMike Bayer2014-12-271-3/+5
|
* - correctionsMike Bayer2014-12-271-0/+3
| | | | - attempt to add a script to semi-automate the fixing of links
* - squash-merge the improve_toc branch, which moves all the Sphinx stylingMike Bayer2014-12-171-6/+19
| | | | | | and extensions into an external library, and also reorganizes most large documentation pages into many small areas to reduce scrolling and better present the context into a more fine-grained hierarchy.
* - The :func:`~.expression.column` and :func:`~.expression.table`Mike Bayer2014-09-011-1/+1
| | | | | | | | | | | | | | | | | | | | | constructs are now importable from the "from sqlalchemy" namespace, just like every other Core construct. - The implicit conversion of strings to :func:`.text` constructs when passed to most builder methods of :func:`.select` as well as :class:`.Query` now emits a warning with just the plain string sent. The textual conversion still proceeds normally, however. The only method that accepts a string without a warning are the "label reference" methods like order_by(), group_by(); these functions will now at compile time attempt to resolve a single string argument to a column or label expression present in the selectable; if none is located, the expression still renders, but you get the warning again. The rationale here is that the implicit conversion from string to text is more unexpected than not these days, and it is better that the user send more direction to the Core / ORM when passing a raw string as to what direction should be taken. Core/ORM tutorials have been updated to go more in depth as to how text is handled. fixes #2992
* Merged in chrisw/sqlalchemy/more_range_docs (pull request #20) Mike Bayer2014-05-301-0/+1
|\ | | | | | | | | more docs for using psycopg2 range types, specifically instantiating models with them fixes #3046
| * more docs for using psycopg2 range types, specifically instantiating models ↵Chris Withers2014-05-251-0/+1
| | | | | | | | with them
* | - a rework of doc layout and nav:Mike Bayer2014-05-281-1/+3
|/ | | | | | | | | | - reduce the real estate for the top nav; move the search box into the top yellow box, close in space - use a new CSS/js approach such that the top toolbar freezes from scrolling at the top of the page. The left nav scrolls independently of the content pane so that the local contents remain visible regardless of scrolling. this approach is disabled on mobile where the dual scrollbars may be cumbersome (overall the site is not well designed for mobile).
* call this 1.0Mike Bayer2014-05-231-3/+3
|
* 0.9.4rel_0_9_4Mike Bayer2014-03-281-2/+2
|
* 0.9.3Mike Bayer2014-02-191-2/+2
|
* 0.9.2Mike Bayer2014-02-021-2/+2
|