summaryrefslogtreecommitdiff
path: root/doc/build/static
Commit message (Collapse)AuthorAgeFilesLines
* - squash-merge the improve_toc branch, which moves all the Sphinx stylingMike Bayer2014-12-173-724/+0
| | | | | | 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.
* relative hereMike Bayer2014-05-291-0/+1
|
* - correct the size on side elementsMike Bayer2014-05-291-7/+33
|
* - re-merge doc_nav. We've removed the whole idea of a "fixed top", and ↵Mike Bayer2014-05-292-65/+84
|\ | | | | | | | | | | | | | | moved the "fixed" thing entirely to the left side. The content now regains full vertical real estate, such that there's no workarounds needed for anchors, they work directly again. we had to reorganize the whole layout to accommodate this however.
| * moreMike Bayer2014-05-291-3/+4
| |
| * - all new approach which allows the main text to be on the topMike Bayer2014-05-292-76/+82
| |
| * - add some more height here so that anchors come outMike Bayer2014-05-271-2/+2
| |
| * - disallow negative scroll positions from affecting the left nav positionMike Bayer2014-05-271-1/+2
| |
| * - again use "fixed" for sidebar in all automated cases, dynamicallyMike Bayer2014-05-272-3/+12
| | | | | | | | | | | | adjust its top within the initial scroll period, this is what foundationdb is doing. For whatever reason that comes out smooth on all browsers. the rationale is so that its independently scrollable at all times.
| * - go back to float:left for the sidenav in normal mode, we had a clear:rightMike Bayer2014-05-271-2/+4
| | | | | | | | causing the issue
| * OK this one seems to be the most solidMike Bayer2014-05-272-7/+11
| |
| * - use relative/absolute positioning and greatly simplify everything,Mike Bayer2014-05-272-24/+24
| | | | | | | | works in chrome + safari
| * more tweaksMike Bayer2014-05-262-9/+40
| |
| * - automate the offset partMike Bayer2014-05-262-4/+6
| |
| * - add mobile detection, turn the whole thing off if mobileMike Bayer2014-05-262-1/+10
| |
| * - pull in the whole top into the fixed part, reduce the size, clean it upMike Bayer2014-05-262-15/+18
| |
| * - experiment with multi-zoned navigationMike Bayer2014-05-012-14/+69
| |
* | - disable the scrolling layout, anchors for code/params are not working,Mike Bayer2014-05-291-1/+2
| | | | | | | | | | and the current approach used for sections is not able to work for fine-grained anchors like these, another approach needs to be taken.
* | - a rework of doc layout and nav:Mike Bayer2014-05-283-23/+139
|/ | | | | | | | | | - 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).
* hypothetical "floaty thing" for navigation, doesn't really work yetMike Bayer2014-01-252-1/+21
|
* - tutorial updatesMike Bayer2013-11-101-1/+7
| | | | | | - emphasis on not using a custom contructor by default, making sure it's clear that you *can* use one - other separation of narrative from special notes using sidebars
* - The ``version_id_generator`` parameter of ``Mapper`` can now be specifiedMike Bayer2013-08-251-0/+15
| | | | | | | | | | | | | | | | | | | | | to rely upon server generated version identifiers, using triggers or other database-provided versioning features, by passing the value ``False``. The ORM will use RETURNING when available to immediately load the new version identifier, else it will emit a second SELECT. [ticket:2793] - The ``eager_defaults`` flag of :class:`.Mapper` will now allow the newly generated default values to be fetched using an inline RETURNING clause, rather than a second SELECT statement, for backends that support RETURNING. - Added a new variant to :meth:`.ValuesBase.returning` called :meth:`.ValuesBase.return_defaults`; this allows arbitrary columns to be added to the RETURNING clause of the statement without interfering with the compilers usual "implicit returning" feature, which is used to efficiently fetch newly generated primary key values. For supporting backends, a dictionary of all fetched values is present at :attr:`.ResultProxy.returned_defaults`. - add a glossary entry for RETURNING - add documentation for version id generation, [ticket:867]
* move FAQ to the docs, [ticket:2133]Mike Bayer2013-08-211-0/+8
|
* too small!Mike Bayer2013-08-181-1/+1
|
* add some heightMike Bayer2013-08-181-2/+5
|
* CSS tweaks to support version styling in the latest versions of sphinxMike Bayer2013-07-121-9/+16
|
* - create a new system where we can decorate an event methodMike Bayer2013-07-081-0/+6
| | | | | | | | | | | | | | | | with @_legacy_signature, will inspect incoming listener functions to see if they match an older signature, will wrap into a newer sig - add an event listen argument named=True, will send all args as kw args so that event listeners can be written with **kw, any combination of names - add a doc system to events that writes out the various calling styles for a given event, produces deprecation messages automatically. a little concerned that it's a bit verbose but will look at it up on RTD for awhile to get a feel. - change the calling signature for bulk update/delete events - we have the BulkUD object right there, and there's at least six or seven things people might want to see, so just send the whole BulkUD in [ticket:2775]
* glossary updatesMike Bayer2012-10-281-0/+1
|
* add changelogsMike Bayer2012-10-251-1/+2
|
* - add md5-hashed links to changelog entriesMike Bayer2012-10-211-0/+8
|
* - move out maxdbMike Bayer2012-10-181-2/+9
| | | | | | - begin consolidating docs for dialects to be more self contained - add a separate section for "external" dialects - not sure how we're going to go with this yet.
* - add a glossary b.c. hey its a good ideaMike Bayer2012-09-301-0/+4
|
* - add new sphinx handlers to render method and attribute inheritanceMike Bayer2012-09-091-5/+13
| | | | for inherited members
* Add some basic CSS styles for version informations paragraph markups.Mike Bayer2012-06-081-1/+9
|
* integrate new readthedocs/sqla.org doc buildMike Bayer2012-01-232-1/+18
|
* doc styling reworkMike Bayer2011-11-251-185/+224
|
* - Repaired edge case where mapper would failMike Bayer2011-08-061-4/+1
| | | | | | | | to fully update internal state when a relationship on a new mapper would establish a backref on the first mapper. - continuing with tutorial, moving eager loading into its own place and describing more fully
* - rework tutorial to be all declarative, all the timeMike Bayer2011-08-061-1/+5
| | | | - add detail to declarative docs about base classes
* - get all comparison operators to document with sphinx - column based, ↵Mike Bayer2011-05-261-0/+3
| | | | | | relationship based. Should fix misunderstandings like [ticket:2177]
* css fixMike Bayer2011-04-171-2/+2
|
* some font changes to match the site styleMike Bayer2011-04-151-139/+144
|
* - add a new "documentation overview" page. rip off a project widely knownMike Bayer2011-04-141-5/+63
| | | | to start with "Dj".
* - whitespace removal bonanzaMike Bayer2011-01-021-3/+3
|
* - add doc pages for exceptionsMike Bayer2010-09-091-1/+2
|
* get slightly better about deprecations in docstrings, tho this is kind of an ↵Mike Bayer2010-08-091-2/+3
| | | | uphill climb
* introductionsMike Bayer2010-08-081-1/+2
|
* - more 78 charsMike Bayer2010-07-101-1/+3
| | | | | - BIGINT doc - clean up docs in schema.py
* some prep for the 'viewcode' plugin, which works, though not sure if its helpfulMike Bayer2010-07-041-0/+3
|
* - added documentation for Inspector [ticket:1820]Mike Bayer2010-06-131-0/+4
| | | | | - fixed "toplevel" regexp to include tokens of the form foo-bar-toplevel (i.e. multiple dashes) - some CSS adjustment so that all API headings are in gray.
* documentation updatesMike Bayer2010-03-281-4/+8
|