From 58cf7d14ed661fce07a85efed4261efb9987088a Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Mon, 13 Feb 2012 00:14:24 +0100 Subject: [PATCH] sphinx build 2012-02-13 00:14:24+01:00 --- .buildinfo | 2 +- _sources/installing.txt | 3 +- _sources/main-tables.txt | 23 +- _sources/schema.txt | 2 - _sources/usage.txt | 306 +- _static/ajax-loader.gif | Bin 0 -> 673 bytes _static/basic.css | 39 +- _static/comment-bright.png | Bin 0 -> 3500 bytes _static/comment-close.png | Bin 0 -> 3578 bytes _static/comment.png | Bin 0 -> 3445 bytes _static/default.css | 3 +- _static/doctools.js | 12 +- _static/down-pressed.png | Bin 0 -> 368 bytes _static/down.png | Bin 0 -> 363 bytes _static/jquery.js | 8308 +----------------------------------- _static/pygments.css | 123 +- _static/searchtools.js | 140 +- _static/sidebar.js | 8 +- _static/underscore.js | 7 + _static/up-pressed.png | Bin 0 -> 372 bytes _static/up.png | Bin 0 -> 363 bytes _static/websupport.js | 808 ++++ genindex.html | 638 ++- index.html | 19 +- installing.html | 20 +- main-tables.html | 1454 ++++--- objects.inv | Bin 791 -> 902 bytes py-modindex.html | 23 +- schema.html | 19 +- search.html | 13 +- searchindex.js | 2 +- usage.html | 187 +- 32 files changed, 2945 insertions(+), 9214 deletions(-) create mode 100644 _static/ajax-loader.gif create mode 100644 _static/comment-bright.png create mode 100644 _static/comment-close.png create mode 100644 _static/comment.png create mode 100644 _static/down-pressed.png create mode 100644 _static/down.png create mode 100644 _static/up-pressed.png create mode 100644 _static/up.png create mode 100644 _static/websupport.js diff --git a/.buildinfo b/.buildinfo index dbfd181..18c7680 100644 --- a/.buildinfo +++ b/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 20fbb3c1f25faf227aa89dc7ec78651b +config: 646af3bec0e0a7be5a0d8b9116f40b74 tags: fbb0d17656682115ca4d033fb2f83ba1 diff --git a/_sources/installing.txt b/_sources/installing.txt index 4fd24b5..44b94a9 100644 --- a/_sources/installing.txt +++ b/_sources/installing.txt @@ -7,7 +7,7 @@ Quick startup with Ubuntu/Debian-like systems Run the following from an empty directory:: $ sudo apt-get install git python python-pip python-sqlalchemy - $ git clone git://git.veekun.com/pokedex.git + $ git clone git://github.com/veekun/pokedex.git $ pip install -E env -e pokedex $ source env/bin/activate (env)$ pokedex setup -v @@ -75,7 +75,6 @@ In env/bin, there are three interesting files: * pokedex: The pokedex program * python: A copy of Python that knows about pokedex and its prerequisites. - Using the system python won't work. * activate: Typing ``source env/bin/activate`` in a shell will put pokedex and our bin/python on the $PATH, and generally set things up to work with them. Your prompt will change to let you know of this. You can end such diff --git a/_sources/main-tables.txt b/_sources/main-tables.txt index 5da1e90..7cef777 100644 --- a/_sources/main-tables.txt +++ b/_sources/main-tables.txt @@ -3,28 +3,31 @@ The pokédex tables .. module:: pokedex.db.tables -All the tables listed here are classes defined with SQLAlchemy's +The :mod:`pokedex.db.tables` module defines all of the tables in the Pokédex. +They are all defined with SQLAlchemy's :mod:`~sqlalchemy.ext.declarative` extension. +To introspect the tables programmatically, you can use the following: + +.. data:: mapped_classes + + A list of all the classes you see below. + .. data:: metadata The SQLAlchemy :class:`~sqlalchemy.schema.MetaData` containing all the tables. -.. data:: mapped_classes - - A list of all the classes you see below. - -Each of these classes has a ``translation_classes`` attribute: a potentially +Each of the classes has a ``translation_classes`` attribute: a potentially empty list of translation classes. See :mod:`pokedex.db.multilang` for how these work. Many tables have these columns: - **id**: An integer primary key. Sometimes it's semantically meaningful, most - often it isn't. + often it isn't. - **identifier**: A string identifier of the class, and the preferred way to - access individual items. + access individual items. - **name**: A name (uses the multilang functionality) Pokémon @@ -42,7 +45,6 @@ Moves .. dex-table:: Move .. dex-table:: MoveEffect .. dex-table:: MoveMeta -.. dex-table:: MoveVersion Items ----- @@ -104,7 +106,6 @@ Enum tables .. dex-table:: EvolutionTrigger .. dex-table:: GrowthRate .. dex-table:: ItemCategory -.. dex-table:: ItemFlag .. dex-table:: ItemFlingEffect .. dex-table:: ItemPocket .. dex-table:: MoveBattleStyle @@ -123,6 +124,7 @@ Changelogs .. dex-table:: AbilityChangelog .. dex-table:: MoveEffectChangelog +.. dex-table:: MoveChangelog Flavor text ----------- @@ -137,6 +139,7 @@ Association tables .. dex-table:: BerryFlavor .. dex-table:: EncounterConditionValueMap +.. dex-table:: ItemFlag .. dex-table:: ItemFlagMap .. dex-table:: Machine .. dex-table:: MoveFlag diff --git a/_sources/schema.txt b/_sources/schema.txt index 3743604..48db3d7 100644 --- a/_sources/schema.txt +++ b/_sources/schema.txt @@ -4,5 +4,3 @@ The database schema .. toctree:: main-tables - enumerations - associations diff --git a/_sources/usage.txt b/_sources/usage.txt index 0c662ba..b4a6ef5 100644 --- a/_sources/usage.txt +++ b/_sources/usage.txt @@ -33,243 +33,161 @@ The object :func:`~pokedex.db.connect` gives you is actually a full power of SQLAlchemy for working with the data. We'll cover some basics here, but if you intend to do some serious work, do read SQLAlchemy's docs. -XXX: write the rest of this +Pokédex tables +-------------- -.. commented out old stuff +Data in the pokédex is organized in tables, defined in +:mod:`pokedex.db.tables`. +There is quite a few or them. To get you started, here are a few common ones: - Pokédex tables - -------------- +* :class:`~pokedex.db.tables.PokemonSpecies` +* :class:`~pokedex.db.tables.Move` +* :class:`~pokedex.db.tables.Item` +* :class:`~pokedex.db.tables.Type` - Data in the pokédex is organized in tables, defined in - :mod:`pokedex.db.tables`. - There is quite a few or them. To get you started, here are a few common ones: +Getting things +-------------- - * :class:`~pokedex.db.tables.Pokemon` (includes some alternate forms) - * :class:`~pokedex.db.tables.Move` - * :class:`~pokedex.db.tables.Item` - * :class:`~pokedex.db.tables.Type` +If you know what you want from the pokédex, you can use the +:func:`pokedex.db.util.get` function. It looks up a thing in a table, based on +its identifier, name, or ID, and returns it. - Getting things - -------------- +.. testcode:: - If you know what you want from the pokédex, you can use the - :func:`pokedex.db.util.get` function. It looks up a thing in a table, based on - its identifier, name, or ID, and returns it. + def print_pokemon(pokemon): + print u'{0.name}, the {0.genus} Pokemon'.format(pokemon) - .. testcode:: + print_pokemon(util.get(session, tables.PokemonSpecies, identifier='eevee')) + print_pokemon(util.get(session, tables.PokemonSpecies, name=u'Ho-Oh')) + print_pokemon(util.get(session, tables.PokemonSpecies, id=50)) - def print_pokemon(pokemon): - print u'{0.name}, the {0.genus} Pokemon'.format(pokemon) + def print_item(item): + print u'{0.name}: ${0.cost}'.format(item) - print_pokemon(util.get(session, tables.PokemonSpecies, identifier='eevee')) - print_pokemon(util.get(session, tables.PokemonSpecies, name=u'Ho-Oh')) - print_pokemon(util.get(session, tables.PokemonSpecies, id=50)) + print_item(util.get(session, tables.Item, identifier='great-ball')) + print_item(util.get(session, tables.Item, name='Potion')) + print_item(util.get(session, tables.Item, id=30)) - def print_item(item): - print u'{0.name}: ${0.cost}'.format(item) +.. testoutput:: - print_item(util.get(session, tables.Item, identifier='great-ball')) - print_item(util.get(session, tables.Item, name='Potion')) - print_item(util.get(session, tables.Item, id=30)) + Eevee, the Evolution Pokemon + Ho-Oh, the Rainbow Pokemon + Diglett, the Mole Pokemon + Great Ball: $600 + Potion: $300 + Fresh Water: $200 - .. testoutput:: +Querying +-------- - Eevee, the Evolution Pokemon - Ho-Oh, the Rainbow Pokemon - Diglett, the Mole Pokemon - Great Ball: $600 - Potion: $300 - Fresh Water: $200 +So, how do you get data from the session? You use the session's +:meth:`~sqlalchemy.orm.session.Session.query` method, and give it a pokédex +Table as an argument. This will give you a :class:`SQLAlchemy query +`. - .. : - Simple lists - ------------ +Ordering +^^^^^^^^ - .. note:: +As always with SQL, you should not rely on query results being in some +particular order – unless you have ordered the query first. This means that +you'll want to sort just about every query you will make. - These functions are only included for convenience in experiments and simple - scripts. - If you want to do something specific, please query the pokédex as explained - in the following sections. +For example, you can get a list of all pokémon species, sorted by their +:attr:`~pokedex.db.tables.PokemonSpecies.id`, like so: - If you want to get a simple list of pokémon without needing to worry about - things like the different forms and sorting the list, you can use the - :func:`pokedex.util.simple.pokemon` function. +.. testcode:: - .. testcode:: + for pokemon in session.query(tables.PokemonSpecies).order_by(tables.PokemonSpecies.id): + print pokemon.name - from pokedex.util import simple - for pokemon in simple.pokemon(session): - print u'{0.name}, the {0.species} Pokemon'.format(pokemon) +.. testoutput:: - .. testoutput:: + Bulbasaur + Ivysaur + Venusaur + Charmander + Charmeleon + ... + Keldeo + Meloetta + Genesect - Bulbasaur, the Seed Pokemon - Ivysaur, the Seed Pokemon - ... - Meloetta, the Melody Pokemon - Genesect, the Paleozoic Pokemon +Or to order by :attr:`~pokedex.db.tables.PokemonSpecies.name`: - Similar functions exist for :func:`~pokedex.util.simple.moves`, - :func:`~pokedex.util.simple.items` and :func:`~pokedex.util.simple.types`. +.. testcode:: - All of these give you quick simple lists, basically something a pokédex would - show you. They filter out things you probably won't need (such as Shadow moves - or duplicate Pokémon moves), and sort the results in some sane way, but they - can't guess your needs exactly, and their guesses might change in future - versions. - If you want to do some serious work with the pokédex, read on. + for pokemon in session.query(tables.PokemonSpecies).order_by(tables.PokemonSpecies.name): + print pokemon.name - Querying - -------- +.. testoutput:: - So, how do you get data from the session? You use the session's - :meth:`~sqlalchemy.orm.session.Session.query` method, and give it a pokédex - Table as an argument. This will give you a :class:`SQLAlchemy query - `. + Abomasnow + ... + Zweilous - To get you started, we'll cover some common query operations below. If you - need to do more, consult the `SQLAlchemy documentation`_. - Ordering - ^^^^^^^^ +Filtering +^^^^^^^^^ - As always with SQL, you should not rely on query results being in some - particular order – unless you have ordered the query first. This means that - you'll likely want to sort every query you will make. +Another major operation on queries is filtering, using the query's +:meth:`~sqlalchemy.orm.query.Query.filter` or +:meth:`~sqlalchemy.orm.query.Query.filter_by` methods: - For example, you can get a list of all pokémon, sorted by their - :attr:`~pokedex.db.tables.Pokemon.order`, like so: +.. testcode:: - .. testcode:: + for move in session.query(tables.Move).filter(tables.Move.power > 200): + print move.name - for pokemon in session.query(tables.Pokemon).order_by(tables.Pokemon.order): - print pokemon.name +.. testoutput:: - .. testoutput:: + Explosion - Bulbasaur - Ivysaur - Venusaur - Charmander - Charmeleon - ... - Pichu - Pikachu - Raichu - ... - Keldeo - Aria Meloetta - Pirouette Meloetta - Genesect +Joining +^^^^^^^ - Ordering by name - **************** +The final operation we'll cover here is joining other tables to the query, +using the query's :meth:`~sqlalchemy.orm.query.Query.join`. +You will usually want to join on a relationship, such as in the following +example: - Since the pokédex can be used in other languages than English, working with - texts such as names is sometimes tricky. +.. testcode:: - The “name” attribute is actually a relation that uses the connection's - default language to select an appropriate translation. It usually works the - same way as a normal attribute, but ordering is an exception to this: + query = session.query(tables.Move) + query = query.join(tables.Move.type) + query = query.filter(tables.Type.identifier == 'grass') + query = query.filter(tables.Move.power >= 100) + query = query.order_by(tables.Move.power) + query = query.order_by(tables.Move.name) - .. testcode:: + print 'The most powerful Grass-type moves:' + for move in query: + print u'{0.name} ({0.power})'.format(move) - for pokemon in session.query(tables.Pokemon).order_by(tables.Pokemon.name): - print pokemon.name +.. testoutput:: - .. testoutput:: + The most powerful Grass-type moves: + Petal Dance (120) + Power Whip (120) + Seed Flare (120) + SolarBeam (120) + Wood Hammer (120) + Leaf Storm (140) + Frenzy Plant (150) - Traceback (most recent call last): - ... - ArgumentError: SQL expression object or string expected. +That concludes our brief tutorial. +If you need to do more, consult the `SQLAlchemy documentation`_. - This means that to order by name, you either have to explicitly join the - translation table and sort by that, or use - :func:`pokedex.db.util.order_by_name`: +API documentation +----------------- +.. autofunction:: pokedex.db.connect - .. testcode:: + See :class:`sqlalchemy.orm.session.Session` for more documentation on the + returned object. - from pokedex.db import util - for pokemon in util.order_by_name(session.query(tables.Pokemon), tables.Pokemon): - print pokemon.name +.. autofunction:: pokedex.db.util.get - .. testoutput:: - Abomasnow - ... - Zweilous - - Filtering - ^^^^^^^^^ - - Another major operation on queries is filtering, using the query's - :meth:`~sqlalchemy.orm.query.Query.filter` or - :meth:`~sqlalchemy.orm.query.Query.filter_by` methods: - - .. testcode:: - - for move in session.query(tables.Move).filter(tables.Move.power > 200): - print move.name - - .. testoutput:: - - Explosion - - Joining - ^^^^^^^ - - The final operation we'll cover here is joining other tables to the query, - using the query's :meth:`~sqlalchemy.orm.query.Query.join`. - You will usually want to join on a relationship, such as in the following - example: - - .. testcode:: - - query = session.query(tables.Move) - query = query.join(tables.Move.type) - query = query.filter(tables.Type.identifier == 'grass') - query = query.filter(tables.Move.power >= 100) - query = query.order_by(tables.Move.power) - query = util.order_by_name(query, tables.Move) - - print 'The most powerful Grass moves:' - for move in query: - print u'{0.name} ({0.power})'.format(move) - - .. testoutput:: - - The most powerful Grass moves: - Petal Dance (120) - Power Whip (120) - Seed Flare (120) - SolarBeam (120) - Wood Hammer (120) - Leaf Storm (140) - Frenzy Plant (150) - - - API documentation - ----------------- - - .. autofunction:: pokedex.db.connect - - See :class:`sqlalchemy.orm.session.Session` for more documentation on the - returned object. - - .. autofunction:: pokedex.db.util.get - .. autofunction:: pokedex.db.util.order_by_name - - Simple lists - ^^^^^^^^^^^^ - - .. autofunction:: pokedex.util.simple.pokemon - .. autofunction:: pokedex.util.simple.moves - .. autofunction:: pokedex.util.simple.items - .. autofunction:: pokedex.util.simple.types - - - .. _Python: http://www.python.org - .. _SQLAlchemy: http://www.sqlalchemy.org - .. _`SQLAlchemy documentation`: http://www.sqlalchemy.org/docs/orm/tutorial.html +.. _Python: http://www.python.org +.. _SQLAlchemy: http://www.sqlalchemy.org +.. _`SQLAlchemy documentation`: http://www.sqlalchemy.org/docs/orm/tutorial.html diff --git a/_static/ajax-loader.gif b/_static/ajax-loader.gif new file mode 100644 index 0000000000000000000000000000000000000000..61faf8cab23993bd3e1560bff0668bd628642330 GIT binary patch literal 673 zcmZ?wbhEHb6krfw_{6~Q|Nno%(3)e{?)x>&1u}A`t?OF7Z|1gRivOgXi&7IyQd1Pl zGfOfQ60;I3a`F>X^fL3(@);C=vM_KlFfb_o=k{|A33hf2a5d61U}gjg=>Rd%XaNQW zW@Cw{|b%Y*pl8F?4B9 zlo4Fz*0kZGJabY|>}Okf0}CCg{u4`zEPY^pV?j2@h+|igy0+Kz6p;@SpM4s6)XEMg z#3Y4GX>Hjlml5ftdH$4x0JGdn8~MX(U~_^d!Hi)=HU{V%g+mi8#UGbE-*ao8f#h+S z2a0-5+vc7MU$e-NhmBjLIC1v|)9+Im8x1yacJ7{^tLX(ZhYi^rpmXm0`@ku9b53aN zEXH@Y3JaztblgpxbJt{AtE1ad1Ca>{v$rwwvK(>{m~Gf_=-Ro7Fk{#;i~+{{>QtvI yb2P8Zac~?~=sRA>$6{!(^3;ZP0TPFR(G_-UDU(8Jl0?(IXu$~#4A!880|o%~Al1tN literal 0 HcmV?d00001 diff --git a/_static/basic.css b/_static/basic.css index 69f30d4..f0379f3 100644 --- a/_static/basic.css +++ b/_static/basic.css @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- basic theme. * - * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ @@ -79,6 +79,14 @@ div.sphinxsidebar input { font-size: 1em; } +div.sphinxsidebar input[type="text"] { + width: 170px; +} + +div.sphinxsidebar input[type="submit"] { + width: 30px; +} + img { border: 0; } @@ -213,12 +221,29 @@ p.rubric { font-weight: bold; } +img.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + .align-left { text-align: left; } .align-center { - clear: both; text-align: center; } @@ -395,7 +420,7 @@ dl.glossary dt { } .footnote:target { - background-color: #ffa + background-color: #ffa; } .line-block { @@ -422,10 +447,16 @@ dl.glossary dt { font-style: oblique; } +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + /* -- code displays --------------------------------------------------------- */ pre { overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ } td.linenos pre { @@ -506,4 +537,4 @@ span.eqno { #top-link { display: none; } -} +} \ No newline at end of file diff --git a/_static/comment-bright.png b/_static/comment-bright.png new file mode 100644 index 0000000000000000000000000000000000000000..551517b8c83b76f734ff791f847829a760ad1903 GIT binary patch literal 3500 zcmV;d4O8-oP)Oz@Z0f2-7z;ux~O9+4z06=<WDR*FRcSTFz- zW=q650N5=6FiBTtNC2?60Km==3$g$R3;-}uh=nNt1bYBr$Ri_o0EC$U6h`t_Jn<{8 z5a%iY0C<_QJh>z}MS)ugEpZ1|S1ukX&Pf+56gFW3VVXcL!g-k)GJ!M?;PcD?0HBc- z5#WRK{dmp}uFlRjj{U%*%WZ25jX z{P*?XzTzZ-GF^d31o+^>%=Ap99M6&ogks$0k4OBs3;+Bb(;~!4V!2o<6ys46agIcq zjPo+3B8fthDa9qy|77CdEc*jK-!%ZRYCZvbku9iQV*~a}ClFY4z~c7+0P?$U!PF=S z1Au6Q;m>#f??3%Vpd|o+W=WE9003S@Bra6Svp>fO002awfhw>;8}z{#EWidF!3EsG z3;bXU&9EIRU@z1_9W=mEXoiz;4lcq~xDGvV5BgyU zp1~-*fe8db$Osc*A=-!mVv1NJjtCc-h4>-CNCXm#Bp}I%6j35eku^v$Qi@a{RY)E3 zJ#qp$hg?Rwkvqr$GJ^buyhkyVfwECO)C{#lxu`c9ghrwZ&}4KmnvWKso6vH!8a<3Q zq36)6Xb;+tK10Vaz~~qUGsJ8#F2=(`u{bOVlVi)VBCHIn#u~6ztOL7=^<&SmcLWlF zMZgI*1b0FpVIDz9SWH+>*hr`#93(Um+6gxa1B6k+CnA%mOSC4s5&6UzVlpv@SV$}* z))J2sFA#f(L&P^E5{W}HC%KRUNwK6<(h|}}(r!{C=`5+6G)NjFlgZj-YqAG9lq?`C z$c5yc>d>VnA`E_*3F2Qp##d8RZb=H01_mm@+|Cqnc9PsG(F5HIG_C zt)aG3uTh7n6Et<2In9F>NlT@zqLtGcXcuVrX|L#Xx)I%#9!{6gSJKPrN9dR61N3(c z4Tcqi$B1Vr8Jidf7-t!G7_XR2rWwr)$3XQ?}=hpK0&Z&W{| zep&sA23f;Q!%st`QJ}G3cbou<7-yIK2z4nfCCCtN2-XOGSWo##{8Q{ATurxr~;I`ytDs%xbip}RzP zziy}Qn4Z2~fSycmr`~zJ=lUFdFa1>gZThG6M+{g7vkW8#+YHVaJjFF}Z#*3@$J_By zLtVo_L#1JrVVB{Ak-5=4qt!-@Mh}c>#$4kh<88)m#-k<%CLtzEP3leVno>={htGUuD;o7bD)w_sX$S}eAxwzy?UvgBH(S?;#HZiQMoS*2K2 zT3xe7t(~nU*1N5{rxB;QPLocnp4Ml>u<^FZwyC!nu;thW+pe~4wtZn|Vi#w(#jeBd zlf9FDx_yoPJqHbk*$%56S{;6Kv~mM9!g3B(KJ}#RZ#@)!hR|78Dq|Iq-afF%KE1Brn_fm;Im z_u$xr8UFki1L{Ox>G0o)(&RAZ;=|I=wN2l97;cLaHH6leTB-XXa*h%dBOEvi`+x zi?=Txl?TadvyiL>SuF~-LZ;|cS}4~l2eM~nS7yJ>iOM;atDY;(?aZ^v+mJV$@1Ote z62cPUlD4IWOIIx&SmwQ~YB{nzae3Pc;}r!fhE@iwJh+OsDs9zItL;~pu715HdQEGA zUct(O!LkCy1<%NCg+}G`0PgpNm-?d@-hMgNe6^V+j6x$b<6@S<$+<4_1hi}Ti zncS4LsjI}fWY1>OX6feMEuLErma3QLmkw?X+1j)X-&VBk_4Y;EFPF_I+q;9dL%E~B zJh;4Nr^(LEJ3myURP{Rblsw%57T)g973R8o)DE9*xN#~;4_o$q%o z4K@u`jhx2fBXC4{U8Qn{*%*B$Ge=nny$HAYq{=vy|sI0 z_vss+H_qMky?OB#|JK!>IX&II^LlUh#rO5!7TtbwC;iULyV-Xq?ybB}ykGP{?LpZ? z-G|jbTmIbG@7#ZCz;~eY(cDM(28Dyq{*m>M4?_iynUBkc4TkHUI6gT!;y-fz>HMcd z&t%Ugo)`Y2{>!cx7B7DI)$7;J(U{Spm-3gBzioV_{p!H$8L!*M!p0uH$#^p{Ui4P` z?ZJ24cOCDe-w#jZd?0@)|7iKK^;6KN`;!@ylm7$*nDhK&GcDTy000JJOGiWi{{a60 z|De66lK=n!32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2niQ93PPz|JOBU!-bqA3 zR5;6pl1pe^WfX zkSdl!omi0~*ntl;2q{jA^;J@WT8O!=A(Gck8fa>hn{#u{`Tyg)!KXI6l>4dj==iVKK6+%4zaRizy(5eryC3d2 z+5Y_D$4}k5v2=Siw{=O)SWY2HJwR3xX1*M*9G^XQ*TCNXF$Vj(kbMJXK0DaS_Sa^1 z?CEa!cFWDhcwxy%a?i@DN|G6-M#uuWU>lss@I>;$xmQ|`u3f;MQ|pYuHxxvMeq4TW;>|7Z2*AsqT=`-1O~nTm6O&pNEK?^cf9CX= zkq5|qAoE7un3V z^yy=@%6zqN^x`#qW+;e7j>th{6GV}sf*}g7{(R#T)yg-AZh0C&U;WA`AL$qz8()5^ zGFi2`g&L7!c?x+A2oOaG0c*Bg&YZt8cJ{jq_W{uTdA-<;`@iP$$=$H?gYIYc_q^*$ z#k(Key`d40R3?+GmgK8hHJcwiQ~r4By@w9*PuzR>x3#(F?YW_W5pPc(t(@-Y{psOt zz2!UE_5S)bLF)Oz@Z0f2-7z;ux~O9+4z06=<WDR*FRcSTFz- zW=q650N5=6FiBTtNC2?60Km==3$g$R3;-}uh=nNt1bYBr$Ri_o0EC$U6h`t_Jn<{8 z5a%iY0C<_QJh>z}MS)ugEpZ1|S1ukX&Pf+56gFW3VVXcL!g-k)GJ!M?;PcD?0HBc- z5#WRK{dmp}uFlRjj{U%*%WZ25jX z{P*?XzTzZ-GF^d31o+^>%=Ap99M6&ogks$0k4OBs3;+Bb(;~!4V!2o<6ys46agIcq zjPo+3B8fthDa9qy|77CdEc*jK-!%ZRYCZvbku9iQV*~a}ClFY4z~c7+0P?$U!PF=S z1Au6Q;m>#f??3%Vpd|o+W=WE9003S@Bra6Svp>fO002awfhw>;8}z{#EWidF!3EsG z3;bXU&9EIRU@z1_9W=mEXoiz;4lcq~xDGvV5BgyU zp1~-*fe8db$Osc*A=-!mVv1NJjtCc-h4>-CNCXm#Bp}I%6j35eku^v$Qi@a{RY)E3 zJ#qp$hg?Rwkvqr$GJ^buyhkyVfwECO)C{#lxu`c9ghrwZ&}4KmnvWKso6vH!8a<3Q zq36)6Xb;+tK10Vaz~~qUGsJ8#F2=(`u{bOVlVi)VBCHIn#u~6ztOL7=^<&SmcLWlF zMZgI*1b0FpVIDz9SWH+>*hr`#93(Um+6gxa1B6k+CnA%mOSC4s5&6UzVlpv@SV$}* z))J2sFA#f(L&P^E5{W}HC%KRUNwK6<(h|}}(r!{C=`5+6G)NjFlgZj-YqAG9lq?`C z$c5yc>d>VnA`E_*3F2Qp##d8RZb=H01_mm@+|Cqnc9PsG(F5HIG_C zt)aG3uTh7n6Et<2In9F>NlT@zqLtGcXcuVrX|L#Xx)I%#9!{6gSJKPrN9dR61N3(c z4Tcqi$B1Vr8Jidf7-t!G7_XR2rWwr)$3XQ?}=hpK0&Z&W{| zep&sA23f;Q!%st`QJ}G3cbou<7-yIK2z4nfCCCtN2-XOGSWo##{8Q{ATurxr~;I`ytDs%xbip}RzP zziy}Qn4Z2~fSycmr`~zJ=lUFdFa1>gZThG6M+{g7vkW8#+YHVaJjFF}Z#*3@$J_By zLtVo_L#1JrVVB{Ak-5=4qt!-@Mh}c>#$4kh<88)m#-k<%CLtzEP3leVno>={htGUuD;o7bD)w_sX$S}eAxwzy?UvgBH(S?;#HZiQMoS*2K2 zT3xe7t(~nU*1N5{rxB;QPLocnp4Ml>u<^FZwyC!nu;thW+pe~4wtZn|Vi#w(#jeBd zlf9FDx_yoPJqHbk*$%56S{;6Kv~mM9!g3B(KJ}#RZ#@)!hR|78Dq|Iq-afF%KE1Brn_fm;Im z_u$xr8UFki1L{Ox>G0o)(&RAZ;=|I=wN2l97;cLaHH6leTB-XXa*h%dBOEvi`+x zi?=Txl?TadvyiL>SuF~-LZ;|cS}4~l2eM~nS7yJ>iOM;atDY;(?aZ^v+mJV$@1Ote z62cPUlD4IWOIIx&SmwQ~YB{nzae3Pc;}r!fhE@iwJh+OsDs9zItL;~pu715HdQEGA zUct(O!LkCy1<%NCg+}G`0PgpNm-?d@-hMgNe6^V+j6x$b<6@S<$+<4_1hi}Ti zncS4LsjI}fWY1>OX6feMEuLErma3QLmkw?X+1j)X-&VBk_4Y;EFPF_I+q;9dL%E~B zJh;4Nr^(LEJ3myURP{Rblsw%57T)g973R8o)DE9*xN#~;4_o$q%o z4K@u`jhx2fBXC4{U8Qn{*%*B$Ge=nny$HAYq{=vy|sI0 z_vss+H_qMky?OB#|JK!>IX&II^LlUh#rO5!7TtbwC;iULyV-Xq?ybB}ykGP{?LpZ? z-G|jbTmIbG@7#ZCz;~eY(cDM(28Dyq{*m>M4?_iynUBkc4TkHUI6gT!;y-fz>HMcd z&t%Ugo)`Y2{>!cx7B7DI)$7;J(U{Spm-3gBzioV_{p!H$8L!*M!p0uH$#^p{Ui4P` z?ZJ24cOCDe-w#jZd?0@)|7iKK^;6KN`;!@ylm7$*nDhK&GcDTy000JJOGiWi{{a60 z|De66lK=n!32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2oe()A>y0J-2easEJ;K` zR5;6Jl3z%jbr{D#&+mQTbB>-f&3W<<%ayjKi&ZjBc2N<@)`~{dMXWB0(ajbV85_gJ zf(EU`iek}4Bt%55ix|sVMm1u8KvB#hnmU~_r<Ogd(A5vg_omvd-#L!=(BMVklxVqhdT zofSj`QA^|)G*lu58>#vhvA)%0Or&dIsb%b)st*LV8`ANnOipDbh%_*c7`d6# z21*z~Xd?ovgf>zq(o0?Et~9ti+pljZC~#_KvJhA>u91WRaq|uqBBKP6V0?p-NL59w zrK0w($_m#SDPQ!Z$nhd^JO|f+7k5xca94d2OLJ&sSxlB7F%NtrF@@O7WWlkHSDtor zzD?u;b&KN$*MnHx;JDy9P~G<{4}9__s&MATBV4R+MuA8TjlZ3ye&qZMCUe8ihBnHI zhMSu zSERHwrmBb$SWVr+)Yk2k^FgTMR6mP;@FY2{}BeV|SUo=mNk<-XSOHNErw>s{^rR-bu$@aN7= zj~-qXcS2!BA*(Q**BOOl{FggkyHdCJi_Fy>?_K+G+DYwIn8`29DYPg&s4$}7D`fv? zuyJ2sMfJX(I^yrf6u!(~9anf(AqAk&ke}uL0SIb-H!SaDQvd(}07*qoM6N<$g1Ha7 A2LJ#7 literal 0 HcmV?d00001 diff --git a/_static/comment.png b/_static/comment.png new file mode 100644 index 0000000000000000000000000000000000000000..92feb52b8824c6b0f59b658b1196c61de9162a95 GIT binary patch literal 3445 zcmV-*4T|!KP)Oz@Z0f2-7z;ux~O9+4z06=<WDR*FRcSTFz- zW=q650N5=6FiBTtNC2?60Km==3$g$R3;-}uh=nNt1bYBr$Ri_o0EC$U6h`t_Jn<{8 z5a%iY0C<_QJh>z}MS)ugEpZ1|S1ukX&Pf+56gFW3VVXcL!g-k)GJ!M?;PcD?0HBc- z5#WRK{dmp}uFlRjj{U%*%WZ25jX z{P*?XzTzZ-GF^d31o+^>%=Ap99M6&ogks$0k4OBs3;+Bb(;~!4V!2o<6ys46agIcq zjPo+3B8fthDa9qy|77CdEc*jK-!%ZRYCZvbku9iQV*~a}ClFY4z~c7+0P?$U!PF=S z1Au6Q;m>#f??3%Vpd|o+W=WE9003S@Bra6Svp>fO002awfhw>;8}z{#EWidF!3EsG z3;bXU&9EIRU@z1_9W=mEXoiz;4lcq~xDGvV5BgyU zp1~-*fe8db$Osc*A=-!mVv1NJjtCc-h4>-CNCXm#Bp}I%6j35eku^v$Qi@a{RY)E3 zJ#qp$hg?Rwkvqr$GJ^buyhkyVfwECO)C{#lxu`c9ghrwZ&}4KmnvWKso6vH!8a<3Q zq36)6Xb;+tK10Vaz~~qUGsJ8#F2=(`u{bOVlVi)VBCHIn#u~6ztOL7=^<&SmcLWlF zMZgI*1b0FpVIDz9SWH+>*hr`#93(Um+6gxa1B6k+CnA%mOSC4s5&6UzVlpv@SV$}* z))J2sFA#f(L&P^E5{W}HC%KRUNwK6<(h|}}(r!{C=`5+6G)NjFlgZj-YqAG9lq?`C z$c5yc>d>VnA`E_*3F2Qp##d8RZb=H01_mm@+|Cqnc9PsG(F5HIG_C zt)aG3uTh7n6Et<2In9F>NlT@zqLtGcXcuVrX|L#Xx)I%#9!{6gSJKPrN9dR61N3(c z4Tcqi$B1Vr8Jidf7-t!G7_XR2rWwr)$3XQ?}=hpK0&Z&W{| zep&sA23f;Q!%st`QJ}G3cbou<7-yIK2z4nfCCCtN2-XOGSWo##{8Q{ATurxr~;I`ytDs%xbip}RzP zziy}Qn4Z2~fSycmr`~zJ=lUFdFa1>gZThG6M+{g7vkW8#+YHVaJjFF}Z#*3@$J_By zLtVo_L#1JrVVB{Ak-5=4qt!-@Mh}c>#$4kh<88)m#-k<%CLtzEP3leVno>={htGUuD;o7bD)w_sX$S}eAxwzy?UvgBH(S?;#HZiQMoS*2K2 zT3xe7t(~nU*1N5{rxB;QPLocnp4Ml>u<^FZwyC!nu;thW+pe~4wtZn|Vi#w(#jeBd zlf9FDx_yoPJqHbk*$%56S{;6Kv~mM9!g3B(KJ}#RZ#@)!hR|78Dq|Iq-afF%KE1Brn_fm;Im z_u$xr8UFki1L{Ox>G0o)(&RAZ;=|I=wN2l97;cLaHH6leTB-XXa*h%dBOEvi`+x zi?=Txl?TadvyiL>SuF~-LZ;|cS}4~l2eM~nS7yJ>iOM;atDY;(?aZ^v+mJV$@1Ote z62cPUlD4IWOIIx&SmwQ~YB{nzae3Pc;}r!fhE@iwJh+OsDs9zItL;~pu715HdQEGA zUct(O!LkCy1<%NCg+}G`0PgpNm-?d@-hMgNe6^V+j6x$b<6@S<$+<4_1hi}Ti zncS4LsjI}fWY1>OX6feMEuLErma3QLmkw?X+1j)X-&VBk_4Y;EFPF_I+q;9dL%E~B zJh;4Nr^(LEJ3myURP{Rblsw%57T)g973R8o)DE9*xN#~;4_o$q%o z4K@u`jhx2fBXC4{U8Qn{*%*B$Ge=nny$HAYq{=vy|sI0 z_vss+H_qMky?OB#|JK!>IX&II^LlUh#rO5!7TtbwC;iULyV-Xq?ybB}ykGP{?LpZ? z-G|jbTmIbG@7#ZCz;~eY(cDM(28Dyq{*m>M4?_iynUBkc4TkHUI6gT!;y-fz>HMcd z&t%Ugo)`Y2{>!cx7B7DI)$7;J(U{Spm-3gBzioV_{p!H$8L!*M!p0uH$#^p{Ui4P` z?ZJ24cOCDe-w#jZd?0@)|7iKK^;6KN`;!@ylm7$*nDhK&GcDTy000JJOGiWi{{a60 z|De66lK=n!32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2nzr)JMUJvzW@LNr%6OX zR5;6Zk;`k`RTRfR-*ac2G}PGmXsUu>6ce?Lsn$m^3Q`48f|TwQ+_-Qh=t8Ra7nE)y zf@08(pjZ@22^EVjG*%30TJRMkBUC$WqZ73uoiv&J=APqX;!v%AH}`Vx`999MVjXwy z{f1-vh8P<=plv&cZ>p5jjX~Vt&W0e)wpw1RFRuRdDkwlKb01tp5 zP=trFN0gH^|L4jJkB{6sCV;Q!ewpg-D&4cza%GQ*b>R*=34#dW;ek`FEiB(vnw+U# zpOX5UMJBhIN&;D1!yQoIAySC!9zqJmmfoJqmQp}p&h*HTfMh~u9rKic2oz3sNM^#F zBIq*MRLbsMt%y{EHj8}LeqUUvoxf0=kqji62>ne+U`d#%J)abyK&Y`=eD%oA!36<)baZyK zXJh5im6umkS|_CSGXips$nI)oBHXojzBzyY_M5K*uvb0_9viuBVyV%5VtJ*Am1ag# zczbv4B?u8j68iOz<+)nDu^oWnL+$_G{PZOCcOGQ?!1VCefves~rfpaEZs-PdVYMiV z98ElaJ2}7f;htSXFY#Zv?__sQeckE^HV{ItO=)2hMQs=(_ Xn!ZpXD%P(H00000NkvXXu0mjf' + _('Hide Search Matches') + '') - .appendTo($('.sidebar .this-page-menu')); + $('') + .appendTo($('#searchbox')); } }, @@ -213,7 +213,7 @@ var Documentation = { * helper function to hide the search marks again */ hideSearchWords : function() { - $('.sidebar .this-page-menu li.highlight-link').fadeOut(300); + $('#searchbox .highlight-link').fadeOut(300); $('span.highlighted').removeClass('highlighted'); }, diff --git a/_static/down-pressed.png b/_static/down-pressed.png new file mode 100644 index 0000000000000000000000000000000000000000..6f7ad782782e4f8e39b0c6e15c7344700cdd2527 GIT binary patch literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*yM+OLB!qm#z$3ZNi+iKnkC`z>}Z23@f-Ava~9&<9T!#}JFtXD=!G zGdl{fK6ro2OGiOl+hKvH6i=D3%%Y^j`yIkRn!8O>@bG)IQR0{Kf+mxNd=_WScA8u_ z3;8(7x2){m9`nt+U(Nab&1G)!{`SPVpDX$w8McLTzAJ39wprG3p4XLq$06M`%}2Yk zRPPsbES*dnYm1wkGL;iioAUB*Or2kz6(-M_r_#Me-`{mj$Z%( literal 0 HcmV?d00001 diff --git a/_static/down.png b/_static/down.png new file mode 100644 index 0000000000000000000000000000000000000000..3003a88770de3977d47a2ba69893436a2860f9e7 GIT binary patch literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*yM+OLB!qm#z$3ZNi+iKnkC`z>}xaV3tUZ$qnrLa#kt978NlpS`ru z&)HFc^}^>{UOEce+71h5nn>6&w6A!ieNbu1wh)UGh{8~et^#oZ1# z>T7oM=FZ~xXWnTo{qnXm$ZLOlqGswI_m2{XwVK)IJmBjW{J3-B3x@C=M{ShWt#fYS9M?R;8K$~YwlIqwf>VA7q=YKcwf2DS4Zj5inDKXXB1zl=(YO3ST6~rDq)&z z*o>z)=hxrfG-cDBW0G$!?6{M<$@{_4{m1o%Ub!naEtn|@^frU1tDnm{r-UW|!^@B8 literal 0 HcmV?d00001 diff --git a/_static/jquery.js b/_static/jquery.js index 5c99a8d..7c24308 100644 --- a/_static/jquery.js +++ b/_static/jquery.js @@ -1,8176 +1,154 @@ /*! - * jQuery JavaScript Library v1.5 + * jQuery JavaScript Library v1.4.2 * http://jquery.com/ * - * Copyright 2011, John Resig + * Copyright 2010, John Resig * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * Includes Sizzle.js * http://sizzlejs.com/ - * Copyright 2011, The Dojo Foundation + * Copyright 2010, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * - * Date: Mon Jan 31 08:31:29 2011 -0500 + * Date: Sat Feb 13 22:33:48 2010 -0500 */ -(function( window, undefined ) { - -// Use the correct document accordingly with window argument (sandbox) -var document = window.document; -var jQuery = (function() { - -// Define a local copy of jQuery -var jQuery = function( selector, context ) { - // The jQuery object is actually just the init constructor 'enhanced' - return new jQuery.fn.init( selector, context, rootjQuery ); - }, - - // Map over jQuery in case of overwrite - _jQuery = window.jQuery, - - // Map over the $ in case of overwrite - _$ = window.$, - - // A central reference to the root jQuery(document) - rootjQuery, - - // A simple way to check for HTML strings or ID strings - // (both of which we optimize for) - quickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/, - - // Check if a string has a non-whitespace character in it - rnotwhite = /\S/, - - // Used for trimming whitespace - trimLeft = /^\s+/, - trimRight = /\s+$/, - - // Check for digits - rdigit = /\d/, - - // Match a standalone tag - rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, - - // JSON RegExp - rvalidchars = /^[\],:{}\s]*$/, - rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, - rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, - rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, - - // Useragent RegExp - rwebkit = /(webkit)[ \/]([\w.]+)/, - ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/, - rmsie = /(msie) ([\w.]+)/, - rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/, - - // Keep a UserAgent string for use with jQuery.browser - userAgent = navigator.userAgent, - - // For matching the engine and version of the browser - browserMatch, - - // Has the ready events already been bound? - readyBound = false, - - // The deferred used on DOM ready - readyList, - - // Promise methods - promiseMethods = "then done fail isResolved isRejected promise".split( " " ), - - // The ready event handler - DOMContentLoaded, - - // Save a reference to some core methods - toString = Object.prototype.toString, - hasOwn = Object.prototype.hasOwnProperty, - push = Array.prototype.push, - slice = Array.prototype.slice, - trim = String.prototype.trim, - indexOf = Array.prototype.indexOf, - - // [[Class]] -> type pairs - class2type = {}; - -jQuery.fn = jQuery.prototype = { - constructor: jQuery, - init: function( selector, context, rootjQuery ) { - var match, elem, ret, doc; - - // Handle $(""), $(null), or $(undefined) - if ( !selector ) { - return this; - } - - // Handle $(DOMElement) - if ( selector.nodeType ) { - this.context = this[0] = selector; - this.length = 1; - return this; - } - - // The body element only exists once, optimize finding it - if ( selector === "body" && !context && document.body ) { - this.context = document; - this[0] = document.body; - this.selector = "body"; - this.length = 1; - return this; - } - - // Handle HTML strings - if ( typeof selector === "string" ) { - // Are we dealing with HTML string or an ID? - match = quickExpr.exec( selector ); - - // Verify a match, and that no context was specified for #id - if ( match && (match[1] || !context) ) { - - // HANDLE: $(html) -> $(array) - if ( match[1] ) { - context = context instanceof jQuery ? context[0] : context; - doc = (context ? context.ownerDocument || context : document); - - // If a single string is passed in and it's a single tag - // just do a createElement and skip the rest - ret = rsingleTag.exec( selector ); - - if ( ret ) { - if ( jQuery.isPlainObject( context ) ) { - selector = [ document.createElement( ret[1] ) ]; - jQuery.fn.attr.call( selector, context, true ); - - } else { - selector = [ doc.createElement( ret[1] ) ]; - } - - } else { - ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); - selector = (ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment).childNodes; - } - - return jQuery.merge( this, selector ); - - // HANDLE: $("#id") - } else { - elem = document.getElementById( match[2] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id !== match[2] ) { - return rootjQuery.find( selector ); - } - - // Otherwise, we inject the element directly into the jQuery object - this.length = 1; - this[0] = elem; - } - - this.context = document; - this.selector = selector; - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return (context || rootjQuery).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( jQuery.isFunction( selector ) ) { - return rootjQuery.ready( selector ); - } - - if (selector.selector !== undefined) { - this.selector = selector.selector; - this.context = selector.context; - } - - return jQuery.makeArray( selector, this ); - }, - - // Start with an empty selector - selector: "", - - // The current version of jQuery being used - jquery: "1.5", - - // The default length of a jQuery object is 0 - length: 0, - - // The number of elements contained in the matched element set - size: function() { - return this.length; - }, - - toArray: function() { - return slice.call( this, 0 ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num == null ? - - // Return a 'clean' array - this.toArray() : - - // Return just the object - ( num < 0 ? this[ this.length + num ] : this[ num ] ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems, name, selector ) { - // Build a new jQuery matched element set - var ret = this.constructor(); - - if ( jQuery.isArray( elems ) ) { - push.apply( ret, elems ); - - } else { - jQuery.merge( ret, elems ); - } - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - ret.context = this.context; - - if ( name === "find" ) { - ret.selector = this.selector + (this.selector ? " " : "") + selector; - } else if ( name ) { - ret.selector = this.selector + "." + name + "(" + selector + ")"; - } - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - // (You can seed the arguments with an array of args, but this is - // only used internally.) - each: function( callback, args ) { - return jQuery.each( this, callback, args ); - }, - - ready: function( fn ) { - // Attach the listeners - jQuery.bindReady(); - - // Add the callback - readyList.done( fn ); - - return this; - }, - - eq: function( i ) { - return i === -1 ? - this.slice( i ) : - this.slice( i, +i + 1 ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ), - "slice", slice.call(arguments).join(",") ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map(this, function( elem, i ) { - return callback.call( elem, i, elem ); - })); - }, - - end: function() { - return this.prevObject || this.constructor(null); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: [].sort, - splice: [].splice -}; - -// Give the init function the jQuery prototype for later instantiation -jQuery.fn.init.prototype = jQuery.fn; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[0] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - target = arguments[1] || {}; - // skip the boolean and the target - i = 2; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction(target) ) { - target = {}; - } - - // extend jQuery itself if only one argument is passed - if ( length === i ) { - target = this; - --i; - } - - for ( ; i < length; i++ ) { - // Only deal with non-null/undefined values - if ( (options = arguments[ i ]) != null ) { - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { - if ( copyIsArray ) { - copyIsArray = false; - clone = src && jQuery.isArray(src) ? src : []; - - } else { - clone = src && jQuery.isPlainObject(src) ? src : {}; - } - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend({ - noConflict: function( deep ) { - window.$ = _$; - - if ( deep ) { - window.jQuery = _jQuery; - } - - return jQuery; - }, - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - // A third-party is pushing the ready event forwards - if ( wait === true ) { - jQuery.readyWait--; - } - - // Make sure that the DOM is not already loaded - if ( !jQuery.readyWait || (wait !== true && !jQuery.isReady) ) { - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( !document.body ) { - return setTimeout( jQuery.ready, 1 ); - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - - // Trigger any bound ready events - if ( jQuery.fn.trigger ) { - jQuery( document ).trigger( "ready" ).unbind( "ready" ); - } - } - }, - - bindReady: function() { - if ( readyBound ) { - return; - } - - readyBound = true; - - // Catch cases where $(document).ready() is called after the - // browser event has already occurred. - if ( document.readyState === "complete" ) { - // Handle it asynchronously to allow scripts the opportunity to delay ready - return setTimeout( jQuery.ready, 1 ); - } - - // Mozilla, Opera and webkit nightlies currently support this event - if ( document.addEventListener ) { - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", jQuery.ready, false ); - - // If IE event model is used - } else if ( document.attachEvent ) { - // ensure firing before onload, - // maybe late but safe also for iframes - document.attachEvent("onreadystatechange", DOMContentLoaded); - - // A fallback to window.onload, that will always work - window.attachEvent( "onload", jQuery.ready ); - - // If IE and not a frame - // continually check to see if the document is ready - var toplevel = false; - - try { - toplevel = window.frameElement == null; - } catch(e) {} - - if ( document.documentElement.doScroll && toplevel ) { - doScrollCheck(); - } - } - }, - - // See test/unit/core.js for details concerning isFunction. - // Since version 1.3, DOM methods and functions like alert - // aren't supported. They return false on IE (#2968). - isFunction: function( obj ) { - return jQuery.type(obj) === "function"; - }, - - isArray: Array.isArray || function( obj ) { - return jQuery.type(obj) === "array"; - }, - - // A crude way of determining if an object is a window - isWindow: function( obj ) { - return obj && typeof obj === "object" && "setInterval" in obj; - }, - - isNaN: function( obj ) { - return obj == null || !rdigit.test( obj ) || isNaN( obj ); - }, - - type: function( obj ) { - return obj == null ? - String( obj ) : - class2type[ toString.call(obj) ] || "object"; - }, - - isPlainObject: function( obj ) { - // Must be an Object. - // Because of IE, we also have to check the presence of the constructor property. - // Make sure that DOM nodes and window objects don't pass through, as well - if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { - return false; - } - - // Not own constructor property must be Object - if ( obj.constructor && - !hasOwn.call(obj, "constructor") && - !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { - return false; - } - - // Own properties are enumerated firstly, so to speed up, - // if last one is own, then all properties are own. - - var key; - for ( key in obj ) {} - - return key === undefined || hasOwn.call( obj, key ); - }, - - isEmptyObject: function( obj ) { - for ( var name in obj ) { - return false; - } - return true; - }, - - error: function( msg ) { - throw msg; - }, - - parseJSON: function( data ) { - if ( typeof data !== "string" || !data ) { - return null; - } - - // Make sure leading/trailing whitespace is removed (IE can't handle it) - data = jQuery.trim( data ); - - // Make sure the incoming data is actual JSON - // Logic borrowed from http://json.org/json2.js - if ( rvalidchars.test(data.replace(rvalidescape, "@") - .replace(rvalidtokens, "]") - .replace(rvalidbraces, "")) ) { - - // Try to use the native JSON parser first - return window.JSON && window.JSON.parse ? - window.JSON.parse( data ) : - (new Function("return " + data))(); - - } else { - jQuery.error( "Invalid JSON: " + data ); - } - }, - - // Cross-browser xml parsing - // (xml & tmp used internally) - parseXML: function( data , xml , tmp ) { - - if ( window.DOMParser ) { // Standard - tmp = new DOMParser(); - xml = tmp.parseFromString( data , "text/xml" ); - } else { // IE - xml = new ActiveXObject( "Microsoft.XMLDOM" ); - xml.async = "false"; - xml.loadXML( data ); - } - - tmp = xml.documentElement; - - if ( ! tmp || ! tmp.nodeName || tmp.nodeName === "parsererror" ) { - jQuery.error( "Invalid XML: " + data ); - } - - return xml; - }, - - noop: function() {}, - - // Evalulates a script in a global context - globalEval: function( data ) { - if ( data && rnotwhite.test(data) ) { - // Inspired by code by Andrea Giammarchi - // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html - var head = document.getElementsByTagName("head")[0] || document.documentElement, - script = document.createElement("script"); - - script.type = "text/javascript"; - - if ( jQuery.support.scriptEval() ) { - script.appendChild( document.createTextNode( data ) ); - } else { - script.text = data; - } - - // Use insertBefore instead of appendChild to circumvent an IE6 bug. - // This arises when a base node is used (#2709). - head.insertBefore( script, head.firstChild ); - head.removeChild( script ); - } - }, - - nodeName: function( elem, name ) { - return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); - }, - - // args is for internal usage only - each: function( object, callback, args ) { - var name, i = 0, - length = object.length, - isObj = length === undefined || jQuery.isFunction(object); - - if ( args ) { - if ( isObj ) { - for ( name in object ) { - if ( callback.apply( object[ name ], args ) === false ) { - break; - } - } - } else { - for ( ; i < length; ) { - if ( callback.apply( object[ i++ ], args ) === false ) { - break; - } - } - } - - // A special, fast, case for the most common use of each - } else { - if ( isObj ) { - for ( name in object ) { - if ( callback.call( object[ name ], name, object[ name ] ) === false ) { - break; - } - } - } else { - for ( var value = object[0]; - i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {} - } - } - - return object; - }, - - // Use native String.trim function wherever possible - trim: trim ? - function( text ) { - return text == null ? - "" : - trim.call( text ); - } : - - // Otherwise use our own trimming functionality - function( text ) { - return text == null ? - "" : - text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); - }, - - // results is for internal usage only - makeArray: function( array, results ) { - var ret = results || []; - - if ( array != null ) { - // The window, strings (and functions) also have 'length' - // The extra typeof function check is to prevent crashes - // in Safari 2 (See: #3039) - // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 - var type = jQuery.type(array); - - if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) { - push.call( ret, array ); - } else { - jQuery.merge( ret, array ); - } - } - - return ret; - }, - - inArray: function( elem, array ) { - if ( array.indexOf ) { - return array.indexOf( elem ); - } - - for ( var i = 0, length = array.length; i < length; i++ ) { - if ( array[ i ] === elem ) { - return i; - } - } - - return -1; - }, - - merge: function( first, second ) { - var i = first.length, - j = 0; - - if ( typeof second.length === "number" ) { - for ( var l = second.length; j < l; j++ ) { - first[ i++ ] = second[ j ]; - } - - } else { - while ( second[j] !== undefined ) { - first[ i++ ] = second[ j++ ]; - } - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, inv ) { - var ret = [], retVal; - inv = !!inv; - - // Go through the array, only saving the items - // that pass the validator function - for ( var i = 0, length = elems.length; i < length; i++ ) { - retVal = !!callback( elems[ i ], i ); - if ( inv !== retVal ) { - ret.push( elems[ i ] ); - } - } - - return ret; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var ret = [], value; - - // Go through the array, translating each of the items to their - // new value (or values). - for ( var i = 0, length = elems.length; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - - // Flatten any nested arrays - return ret.concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - proxy: function( fn, proxy, thisObject ) { - if ( arguments.length === 2 ) { - if ( typeof proxy === "string" ) { - thisObject = fn; - fn = thisObject[ proxy ]; - proxy = undefined; - - } else if ( proxy && !jQuery.isFunction( proxy ) ) { - thisObject = proxy; - proxy = undefined; - } - } - - if ( !proxy && fn ) { - proxy = function() { - return fn.apply( thisObject || this, arguments ); - }; - } - - // Set the guid of unique handler to the same of original handler, so it can be removed - if ( fn ) { - proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; - } - - // So proxy can be declared as an argument - return proxy; - }, - - // Mutifunctional method to get and set values to a collection - // The value/s can be optionally by executed if its a function - access: function( elems, key, value, exec, fn, pass ) { - var length = elems.length; - - // Setting many attributes - if ( typeof key === "object" ) { - for ( var k in key ) { - jQuery.access( elems, k, key[k], exec, fn, value ); - } - return elems; - } - - // Setting one attribute - if ( value !== undefined ) { - // Optionally, function values get executed if exec is true - exec = !pass && exec && jQuery.isFunction(value); - - for ( var i = 0; i < length; i++ ) { - fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); - } - - return elems; - } - - // Getting an attribute - return length ? fn( elems[0], key ) : undefined; - }, - - now: function() { - return (new Date()).getTime(); - }, - - // Create a simple deferred (one callbacks list) - _Deferred: function() { - var // callbacks list - callbacks = [], - // stored [ context , args ] - fired, - // to avoid firing when already doing so - firing, - // flag to know if the deferred has been cancelled - cancelled, - // the deferred itself - deferred = { - - // done( f1, f2, ...) - done: function() { - if ( !cancelled ) { - var args = arguments, - i, - length, - elem, - type, - _fired; - if ( fired ) { - _fired = fired; - fired = 0; - } - for ( i = 0, length = args.length; i < length; i++ ) { - elem = args[ i ]; - type = jQuery.type( elem ); - if ( type === "array" ) { - deferred.done.apply( deferred, elem ); - } else if ( type === "function" ) { - callbacks.push( elem ); - } - } - if ( _fired ) { - deferred.resolveWith( _fired[ 0 ], _fired[ 1 ] ); - } - } - return this; - }, - - // resolve with given context and args - resolveWith: function( context, args ) { - if ( !cancelled && !fired && !firing ) { - firing = 1; - try { - while( callbacks[ 0 ] ) { - callbacks.shift().apply( context, args ); - } - } - finally { - fired = [ context, args ]; - firing = 0; - } - } - return this; - }, - - // resolve with this as context and given arguments - resolve: function() { - deferred.resolveWith( jQuery.isFunction( this.promise ) ? this.promise() : this, arguments ); - return this; - }, - - // Has this deferred been resolved? - isResolved: function() { - return !!( firing || fired ); - }, - - // Cancel - cancel: function() { - cancelled = 1; - callbacks = []; - return this; - } - }; - - return deferred; - }, - - // Full fledged deferred (two callbacks list) - Deferred: function( func ) { - var deferred = jQuery._Deferred(), - failDeferred = jQuery._Deferred(), - promise; - // Add errorDeferred methods, then and promise - jQuery.extend( deferred, { - then: function( doneCallbacks, failCallbacks ) { - deferred.done( doneCallbacks ).fail( failCallbacks ); - return this; - }, - fail: failDeferred.done, - rejectWith: failDeferred.resolveWith, - reject: failDeferred.resolve, - isRejected: failDeferred.isResolved, - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj , i /* internal */ ) { - if ( obj == null ) { - if ( promise ) { - return promise; - } - promise = obj = {}; - } - i = promiseMethods.length; - while( i-- ) { - obj[ promiseMethods[ i ] ] = deferred[ promiseMethods[ i ] ]; - } - return obj; - } - } ); - // Make sure only one callback list will be used - deferred.then( failDeferred.cancel, deferred.cancel ); - // Unexpose cancel - delete deferred.cancel; - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - return deferred; - }, - - // Deferred helper - when: function( object ) { - var args = arguments, - length = args.length, - deferred = length <= 1 && object && jQuery.isFunction( object.promise ) ? - object : - jQuery.Deferred(), - promise = deferred.promise(), - resolveArray; - - if ( length > 1 ) { - resolveArray = new Array( length ); - jQuery.each( args, function( index, element ) { - jQuery.when( element ).then( function( value ) { - resolveArray[ index ] = arguments.length > 1 ? slice.call( arguments, 0 ) : value; - if( ! --length ) { - deferred.resolveWith( promise, resolveArray ); - } - }, deferred.reject ); - } ); - } else if ( deferred !== object ) { - deferred.resolve( object ); - } - return promise; - }, - - // Use of jQuery.browser is frowned upon. - // More details: http://docs.jquery.com/Utilities/jQuery.browser - uaMatch: function( ua ) { - ua = ua.toLowerCase(); - - var match = rwebkit.exec( ua ) || - ropera.exec( ua ) || - rmsie.exec( ua ) || - ua.indexOf("compatible") < 0 && rmozilla.exec( ua ) || - []; - - return { browser: match[1] || "", version: match[2] || "0" }; - }, - - sub: function() { - function jQuerySubclass( selector, context ) { - return new jQuerySubclass.fn.init( selector, context ); - } - jQuery.extend( true, jQuerySubclass, this ); - jQuerySubclass.superclass = this; - jQuerySubclass.fn = jQuerySubclass.prototype = this(); - jQuerySubclass.fn.constructor = jQuerySubclass; - jQuerySubclass.subclass = this.subclass; - jQuerySubclass.fn.init = function init( selector, context ) { - if ( context && context instanceof jQuery && !(context instanceof jQuerySubclass) ) { - context = jQuerySubclass(context); - } - - return jQuery.fn.init.call( this, selector, context, rootjQuerySubclass ); - }; - jQuerySubclass.fn.init.prototype = jQuerySubclass.fn; - var rootjQuerySubclass = jQuerySubclass(document); - return jQuerySubclass; - }, - - browser: {} -}); - -// Create readyList deferred -readyList = jQuery._Deferred(); - -// Populate the class2type map -jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -}); - -browserMatch = jQuery.uaMatch( userAgent ); -if ( browserMatch.browser ) { - jQuery.browser[ browserMatch.browser ] = true; - jQuery.browser.version = browserMatch.version; -} - -// Deprecated, use jQuery.browser.webkit instead -if ( jQuery.browser.webkit ) { - jQuery.browser.safari = true; -} - -if ( indexOf ) { - jQuery.inArray = function( elem, array ) { - return indexOf.call( array, elem ); - }; -} - -// IE doesn't match non-breaking spaces with \s -if ( rnotwhite.test( "\xA0" ) ) { - trimLeft = /^[\s\xA0]+/; - trimRight = /[\s\xA0]+$/; -} - -// All jQuery objects should point back to these -rootjQuery = jQuery(document); - -// Cleanup functions for the document ready method -if ( document.addEventListener ) { - DOMContentLoaded = function() { - document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - jQuery.ready(); - }; - -} else if ( document.attachEvent ) { - DOMContentLoaded = function() { - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( document.readyState === "complete" ) { - document.detachEvent( "onreadystatechange", DOMContentLoaded ); - jQuery.ready(); - } - }; -} - -// The DOM ready check for Internet Explorer -function doScrollCheck() { - if ( jQuery.isReady ) { - return; - } - - try { - // If IE is used, use the trick by Diego Perini - // http://javascript.nwbox.com/IEContentLoaded/ - document.documentElement.doScroll("left"); - } catch(e) { - setTimeout( doScrollCheck, 1 ); - return; - } - - // and execute any waiting functions - jQuery.ready(); -} - -// Expose jQuery to the global object -return (window.jQuery = window.$ = jQuery); - -})(); - - -(function() { - - jQuery.support = {}; - - var div = document.createElement("div"); - - div.style.display = "none"; - div.innerHTML = "
a"; - - var all = div.getElementsByTagName("*"), - a = div.getElementsByTagName("a")[0], - select = document.createElement("select"), - opt = select.appendChild( document.createElement("option") ); - - // Can't get basic test support - if ( !all || !all.length || !a ) { - return; - } - - jQuery.support = { - // IE strips leading whitespace when .innerHTML is used - leadingWhitespace: div.firstChild.nodeType === 3, - - // Make sure that tbody elements aren't automatically inserted - // IE will insert them into empty tables - tbody: !div.getElementsByTagName("tbody").length, - - // Make sure that link elements get serialized correctly by innerHTML - // This requires a wrapper element in IE - htmlSerialize: !!div.getElementsByTagName("link").length, - - // Get the style information from getAttribute - // (IE uses .cssText insted) - style: /red/.test( a.getAttribute("style") ), - - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - hrefNormalized: a.getAttribute("href") === "/a", - - // Make sure that element opacity exists - // (IE uses filter instead) - // Use a regex to work around a WebKit issue. See #5145 - opacity: /^0.55$/.test( a.style.opacity ), - - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - cssFloat: !!a.style.cssFloat, - - // Make sure that if no value is specified for a checkbox - // that it defaults to "on". - // (WebKit defaults to "" instead) - checkOn: div.getElementsByTagName("input")[0].value === "on", - - // Make sure that a selected-by-default option has a working selected property. - // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) - optSelected: opt.selected, - - // Will be defined later - deleteExpando: true, - optDisabled: false, - checkClone: false, - _scriptEval: null, - noCloneEvent: true, - boxModel: null, - inlineBlockNeedsLayout: false, - shrinkWrapBlocks: false, - reliableHiddenOffsets: true - }; - - // Make sure that the options inside disabled selects aren't marked as disabled - // (WebKit marks them as diabled) - select.disabled = true; - jQuery.support.optDisabled = !opt.disabled; - - jQuery.support.scriptEval = function() { - if ( jQuery.support._scriptEval === null ) { - var root = document.documentElement, - script = document.createElement("script"), - id = "script" + jQuery.now(); - - script.type = "text/javascript"; - try { - script.appendChild( document.createTextNode( "window." + id + "=1;" ) ); - } catch(e) {} - - root.insertBefore( script, root.firstChild ); - - // Make sure that the execution of code works by injecting a script - // tag with appendChild/createTextNode - // (IE doesn't support this, fails, and uses .text instead) - if ( window[ id ] ) { - jQuery.support._scriptEval = true; - delete window[ id ]; - } else { - jQuery.support._scriptEval = false; - } - - root.removeChild( script ); - // release memory in IE - root = script = id = null; - } - - return jQuery.support._scriptEval; - }; - - // Test to see if it's possible to delete an expando from an element - // Fails in Internet Explorer - try { - delete div.test; - - } catch(e) { - jQuery.support.deleteExpando = false; - } - - if ( div.attachEvent && div.fireEvent ) { - div.attachEvent("onclick", function click() { - // Cloning a node shouldn't copy over any - // bound event handlers (IE does this) - jQuery.support.noCloneEvent = false; - div.detachEvent("onclick", click); - }); - div.cloneNode(true).fireEvent("onclick"); - } - - div = document.createElement("div"); - div.innerHTML = ""; - - var fragment = document.createDocumentFragment(); - fragment.appendChild( div.firstChild ); - - // WebKit doesn't clone checked state correctly in fragments - jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked; - - // Figure out if the W3C box model works as expected - // document.body must exist before we can do this - jQuery(function() { - var div = document.createElement("div"), - body = document.getElementsByTagName("body")[0]; - - // Frameset documents with no body should not run this code - if ( !body ) { - return; - } - - div.style.width = div.style.paddingLeft = "1px"; - body.appendChild( div ); - jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2; - - if ( "zoom" in div.style ) { - // Check if natively block-level elements act like inline-block - // elements when setting their display to 'inline' and giving - // them layout - // (IE < 8 does this) - div.style.display = "inline"; - div.style.zoom = 1; - jQuery.support.inlineBlockNeedsLayout = div.offsetWidth === 2; - - // Check if elements with layout shrink-wrap their children - // (IE 6 does this) - div.style.display = ""; - div.innerHTML = "
"; - jQuery.support.shrinkWrapBlocks = div.offsetWidth !== 2; - } - - div.innerHTML = "
t
"; - var tds = div.getElementsByTagName("td"); - - // Check if table cells still have offsetWidth/Height when they are set - // to display:none and there are still other visible table cells in a - // table row; if so, offsetWidth/Height are not reliable for use when - // determining if an element has been hidden directly using - // display:none (it is still safe to use offsets if a parent element is - // hidden; don safety goggles and see bug #4512 for more information). - // (only IE 8 fails this test) - jQuery.support.reliableHiddenOffsets = tds[0].offsetHeight === 0; - - tds[0].style.display = ""; - tds[1].style.display = "none"; - - // Check if empty table cells still have offsetWidth/Height - // (IE < 8 fail this test) - jQuery.support.reliableHiddenOffsets = jQuery.support.reliableHiddenOffsets && tds[0].offsetHeight === 0; - div.innerHTML = ""; - - body.removeChild( div ).style.display = "none"; - div = tds = null; - }); - - // Technique from Juriy Zaytsev - // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/ - var eventSupported = function( eventName ) { - var el = document.createElement("div"); - eventName = "on" + eventName; - - // We only care about the case where non-standard event systems - // are used, namely in IE. Short-circuiting here helps us to - // avoid an eval call (in setAttribute) which can cause CSP - // to go haywire. See: https://developer.mozilla.org/en/Security/CSP - if ( !el.attachEvent ) { - return true; - } - - var isSupported = (eventName in el); - if ( !isSupported ) { - el.setAttribute(eventName, "return;"); - isSupported = typeof el[eventName] === "function"; - } - el = null; - - return isSupported; - }; - - jQuery.support.submitBubbles = eventSupported("submit"); - jQuery.support.changeBubbles = eventSupported("change"); - - // release memory in IE - div = all = a = null; -})(); - - - -var rbrace = /^(?:\{.*\}|\[.*\])$/; - -jQuery.extend({ - cache: {}, - - // Please use with caution - uuid: 0, - - // Unique for each copy of jQuery on the page - // Non-digits removed to match rinlinejQuery - expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), - - // The following elements throw uncatchable exceptions if you - // attempt to add expando properties to them. - noData: { - "embed": true, - // Ban all objects except for Flash (which handle expandos) - "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", - "applet": true - }, - - hasData: function( elem ) { - elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; - - return !!elem && !jQuery.isEmptyObject(elem); - }, - - data: function( elem, name, data, pvt /* Internal Use Only */ ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var internalKey = jQuery.expando, getByName = typeof name === "string", thisCache, - - // We have to handle DOM nodes and JS objects differently because IE6-7 - // can't GC object references properly across the DOM-JS boundary - isNode = elem.nodeType, - - // Only DOM nodes need the global jQuery cache; JS object data is - // attached directly to the object so GC can occur automatically - cache = isNode ? jQuery.cache : elem, - - // Only defining an ID for JS objects if its cache already exists allows - // the code to shortcut on the same path as a DOM node with no cache - id = isNode ? elem[ jQuery.expando ] : elem[ jQuery.expando ] && jQuery.expando; - - // Avoid doing any more work than we need to when trying to get data on an - // object that has no data at all - if ( (!id || (pvt && id && !cache[ id ][ internalKey ])) && getByName && data === undefined ) { - return; - } - - if ( !id ) { - // Only DOM nodes need a new unique ID for each element since their data - // ends up in the global cache - if ( isNode ) { - elem[ jQuery.expando ] = id = ++jQuery.uuid; - } else { - id = jQuery.expando; - } - } - - if ( !cache[ id ] ) { - cache[ id ] = {}; - } - - // An object can be passed to jQuery.data instead of a key/value pair; this gets - // shallow copied over onto the existing cache - if ( typeof name === "object" ) { - if ( pvt ) { - cache[ id ][ internalKey ] = jQuery.extend(cache[ id ][ internalKey ], name); - } else { - cache[ id ] = jQuery.extend(cache[ id ], name); - } - } - - thisCache = cache[ id ]; - - // Internal jQuery data is stored in a separate object inside the object's data - // cache in order to avoid key collisions between internal data and user-defined - // data - if ( pvt ) { - if ( !thisCache[ internalKey ] ) { - thisCache[ internalKey ] = {}; - } - - thisCache = thisCache[ internalKey ]; - } - - if ( data !== undefined ) { - thisCache[ name ] = data; - } - - // TODO: This is a hack for 1.5 ONLY. It will be removed in 1.6. Users should - // not attempt to inspect the internal events object using jQuery.data, as this - // internal data object is undocumented and subject to change. - if ( name === "events" && !thisCache[name] ) { - return thisCache[ internalKey ] && thisCache[ internalKey ].events; - } - - return getByName ? thisCache[ name ] : thisCache; - }, - - removeData: function( elem, name, pvt /* Internal Use Only */ ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var internalKey = jQuery.expando, isNode = elem.nodeType, - - // See jQuery.data for more information - cache = isNode ? jQuery.cache : elem, - - // See jQuery.data for more information - id = isNode ? elem[ jQuery.expando ] : jQuery.expando; - - // If there is already no cache entry for this object, there is no - // purpose in continuing - if ( !cache[ id ] ) { - return; - } - - if ( name ) { - var thisCache = pvt ? cache[ id ][ internalKey ] : cache[ id ]; - - if ( thisCache ) { - delete thisCache[ name ]; - - // If there is no data left in the cache, we want to continue - // and let the cache object itself get destroyed - if ( !jQuery.isEmptyObject(thisCache) ) { - return; - } - } - } - - // See jQuery.data for more information - if ( pvt ) { - delete cache[ id ][ internalKey ]; - - // Don't destroy the parent cache unless the internal data object - // had been the only thing left in it - if ( !jQuery.isEmptyObject(cache[ id ]) ) { - return; - } - } - - var internalCache = cache[ id ][ internalKey ]; - - // Browsers that fail expando deletion also refuse to delete expandos on - // the window, but it will allow it on all other JS objects; other browsers - // don't care - if ( jQuery.support.deleteExpando || cache != window ) { - delete cache[ id ]; - } else { - cache[ id ] = null; - } - - // We destroyed the entire user cache at once because it's faster than - // iterating through each key, but we need to continue to persist internal - // data if it existed - if ( internalCache ) { - cache[ id ] = {}; - cache[ id ][ internalKey ] = internalCache; - - // Otherwise, we need to eliminate the expando on the node to avoid - // false lookups in the cache for entries that no longer exist - } else if ( isNode ) { - // IE does not allow us to delete expando properties from nodes, - // nor does it have a removeAttribute function on Document nodes; - // we must handle all of these cases - if ( jQuery.support.deleteExpando ) { - delete elem[ jQuery.expando ]; - } else if ( elem.removeAttribute ) { - elem.removeAttribute( jQuery.expando ); - } else { - elem[ jQuery.expando ] = null; - } - } - }, - - // For internal use only. - _data: function( elem, name, data ) { - return jQuery.data( elem, name, data, true ); - }, - - // A method for determining if a DOM node can handle the data expando - acceptData: function( elem ) { - if ( elem.nodeName ) { - var match = jQuery.noData[ elem.nodeName.toLowerCase() ]; - - if ( match ) { - return !(match === true || elem.getAttribute("classid") !== match); - } - } - - return true; - } -}); - -jQuery.fn.extend({ - data: function( key, value ) { - var data = null; - - if ( typeof key === "undefined" ) { - if ( this.length ) { - data = jQuery.data( this[0] ); - - if ( this[0].nodeType === 1 ) { - var attr = this[0].attributes, name; - for ( var i = 0, l = attr.length; i < l; i++ ) { - name = attr[i].name; - - if ( name.indexOf( "data-" ) === 0 ) { - name = name.substr( 5 ); - dataAttr( this[0], name, data[ name ] ); - } - } - } - } - - return data; - - } else if ( typeof key === "object" ) { - return this.each(function() { - jQuery.data( this, key ); - }); - } - - var parts = key.split("."); - parts[1] = parts[1] ? "." + parts[1] : ""; - - if ( value === undefined ) { - data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]); - - // Try to fetch any internally stored data first - if ( data === undefined && this.length ) { - data = jQuery.data( this[0], key ); - data = dataAttr( this[0], key, data ); - } - - return data === undefined && parts[1] ? - this.data( parts[0] ) : - data; - - } else { - return this.each(function() { - var $this = jQuery( this ), - args = [ parts[0], value ]; - - $this.triggerHandler( "setData" + parts[1] + "!", args ); - jQuery.data( this, key, value ); - $this.triggerHandler( "changeData" + parts[1] + "!", args ); - }); - } - }, - - removeData: function( key ) { - return this.each(function() { - jQuery.removeData( this, key ); - }); - } -}); - -function dataAttr( elem, key, data ) { - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - data = elem.getAttribute( "data-" + key ); - - if ( typeof data === "string" ) { - try { - data = data === "true" ? true : - data === "false" ? false : - data === "null" ? null : - !jQuery.isNaN( data ) ? parseFloat( data ) : - rbrace.test( data ) ? jQuery.parseJSON( data ) : - data; - } catch( e ) {} - - // Make sure we set the data so it isn't changed later - jQuery.data( elem, key, data ); - - } else { - data = undefined; - } - } - - return data; -} - - - - -jQuery.extend({ - queue: function( elem, type, data ) { - if ( !elem ) { - return; - } - - type = (type || "fx") + "queue"; - var q = jQuery._data( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( !data ) { - return q || []; - } - - if ( !q || jQuery.isArray(data) ) { - q = jQuery._data( elem, type, jQuery.makeArray(data) ); - - } else { - q.push( data ); - } - - return q; - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - fn = queue.shift(); - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - } - - if ( fn ) { - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift("inprogress"); - } - - fn.call(elem, function() { - jQuery.dequeue(elem, type); - }); - } - - if ( !queue.length ) { - jQuery.removeData( elem, type + "queue", true ); - } - } -}); - -jQuery.fn.extend({ - queue: function( type, data ) { - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - } - - if ( data === undefined ) { - return jQuery.queue( this[0], type ); - } - return this.each(function( i ) { - var queue = jQuery.queue( this, type, data ); - - if ( type === "fx" && queue[0] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - }); - }, - dequeue: function( type ) { - return this.each(function() { - jQuery.dequeue( this, type ); - }); - }, - - // Based off of the plugin by Clint Helfers, with permission. - // http://blindsignals.com/index.php/2009/07/jquery-delay/ - delay: function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[time] || time : time; - type = type || "fx"; - - return this.queue( type, function() { - var elem = this; - setTimeout(function() { - jQuery.dequeue( elem, type ); - }, time ); - }); - }, - - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - } -}); - - - - -var rclass = /[\n\t\r]/g, - rspaces = /\s+/, - rreturn = /\r/g, - rspecialurl = /^(?:href|src|style)$/, - rtype = /^(?:button|input)$/i, - rfocusable = /^(?:button|input|object|select|textarea)$/i, - rclickable = /^a(?:rea)?$/i, - rradiocheck = /^(?:radio|checkbox)$/i; - -jQuery.props = { - "for": "htmlFor", - "class": "className", - readonly: "readOnly", - maxlength: "maxLength", - cellspacing: "cellSpacing", - rowspan: "rowSpan", - colspan: "colSpan", - tabindex: "tabIndex", - usemap: "useMap", - frameborder: "frameBorder" -}; - -jQuery.fn.extend({ - attr: function( name, value ) { - return jQuery.access( this, name, value, true, jQuery.attr ); - }, - - removeAttr: function( name, fn ) { - return this.each(function(){ - jQuery.attr( this, name, "" ); - if ( this.nodeType === 1 ) { - this.removeAttribute( name ); - } - }); - }, - - addClass: function( value ) { - if ( jQuery.isFunction(value) ) { - return this.each(function(i) { - var self = jQuery(this); - self.addClass( value.call(this, i, self.attr("class")) ); - }); - } - - if ( value && typeof value === "string" ) { - var classNames = (value || "").split( rspaces ); - - for ( var i = 0, l = this.length; i < l; i++ ) { - var elem = this[i]; - - if ( elem.nodeType === 1 ) { - if ( !elem.className ) { - elem.className = value; - - } else { - var className = " " + elem.className + " ", - setClass = elem.className; - - for ( var c = 0, cl = classNames.length; c < cl; c++ ) { - if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) { - setClass += " " + classNames[c]; - } - } - elem.className = jQuery.trim( setClass ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - if ( jQuery.isFunction(value) ) { - return this.each(function(i) { - var self = jQuery(this); - self.removeClass( value.call(this, i, self.attr("class")) ); - }); - } - - if ( (value && typeof value === "string") || value === undefined ) { - var classNames = (value || "").split( rspaces ); - - for ( var i = 0, l = this.length; i < l; i++ ) { - var elem = this[i]; - - if ( elem.nodeType === 1 && elem.className ) { - if ( value ) { - var className = (" " + elem.className + " ").replace(rclass, " "); - for ( var c = 0, cl = classNames.length; c < cl; c++ ) { - className = className.replace(" " + classNames[c] + " ", " "); - } - elem.className = jQuery.trim( className ); - - } else { - elem.className = ""; - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isBool = typeof stateVal === "boolean"; - - if ( jQuery.isFunction( value ) ) { - return this.each(function(i) { - var self = jQuery(this); - self.toggleClass( value.call(this, i, self.attr("class"), stateVal), stateVal ); - }); - } - - return this.each(function() { - if ( type === "string" ) { - // toggle individual class names - var className, - i = 0, - self = jQuery( this ), - state = stateVal, - classNames = value.split( rspaces ); - - while ( (className = classNames[ i++ ]) ) { - // check each className given, space seperated list - state = isBool ? state : !self.hasClass( className ); - self[ state ? "addClass" : "removeClass" ]( className ); - } - - } else if ( type === "undefined" || type === "boolean" ) { - if ( this.className ) { - // store className if set - jQuery._data( this, "__className__", this.className ); - } - - // toggle whole className - this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; - } - }); - }, - - hasClass: function( selector ) { - var className = " " + selector + " "; - for ( var i = 0, l = this.length; i < l; i++ ) { - if ( (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { - return true; - } - } - - return false; - }, - - val: function( value ) { - if ( !arguments.length ) { - var elem = this[0]; - - if ( elem ) { - if ( jQuery.nodeName( elem, "option" ) ) { - // attributes.value is undefined in Blackberry 4.7 but - // uses .value. See #6932 - var val = elem.attributes.value; - return !val || val.specified ? elem.value : elem.text; - } - - // We need to handle select boxes special - if ( jQuery.nodeName( elem, "select" ) ) { - var index = elem.selectedIndex, - values = [], - options = elem.options, - one = elem.type === "select-one"; - - // Nothing was selected - if ( index < 0 ) { - return null; - } - - // Loop through all the selected options - for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) { - var option = options[ i ]; - - // Don't return options that are disabled or in a disabled optgroup - if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && - (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { - - // Get the specific value for the option - value = jQuery(option).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - } - - // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified - if ( rradiocheck.test( elem.type ) && !jQuery.support.checkOn ) { - return elem.getAttribute("value") === null ? "on" : elem.value; - } - - // Everything else, we just grab the value - return (elem.value || "").replace(rreturn, ""); - - } - - return undefined; - } - - var isFunction = jQuery.isFunction(value); - - return this.each(function(i) { - var self = jQuery(this), val = value; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call(this, i, self.val()); - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - } else if ( typeof val === "number" ) { - val += ""; - } else if ( jQuery.isArray(val) ) { - val = jQuery.map(val, function (value) { - return value == null ? "" : value + ""; - }); - } - - if ( jQuery.isArray(val) && rradiocheck.test( this.type ) ) { - this.checked = jQuery.inArray( self.val(), val ) >= 0; - - } else if ( jQuery.nodeName( this, "select" ) ) { - var values = jQuery.makeArray(val); - - jQuery( "option", this ).each(function() { - this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; - }); - - if ( !values.length ) { - this.selectedIndex = -1; - } - - } else { - this.value = val; - } - }); - } -}); - -jQuery.extend({ - attrFn: { - val: true, - css: true, - html: true, - text: true, - data: true, - width: true, - height: true, - offset: true - }, - - attr: function( elem, name, value, pass ) { - // don't get/set attributes on text, comment and attribute nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || elem.nodeType === 2 ) { - return undefined; - } - - if ( pass && name in jQuery.attrFn ) { - return jQuery(elem)[name](value); - } - - var notxml = elem.nodeType !== 1 || !jQuery.isXMLDoc( elem ), - // Whether we are setting (or getting) - set = value !== undefined; - - // Try to normalize/fix the name - name = notxml && jQuery.props[ name ] || name; - - // Only do all the following if this is a node (faster for style) - if ( elem.nodeType === 1 ) { - // These attributes require special treatment - var special = rspecialurl.test( name ); - - // Safari mis-reports the default selected property of an option - // Accessing the parent's selectedIndex property fixes it - if ( name === "selected" && !jQuery.support.optSelected ) { - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - - // If applicable, access the attribute via the DOM 0 way - // 'in' checks fail in Blackberry 4.7 #6931 - if ( (name in elem || elem[ name ] !== undefined) && notxml && !special ) { - if ( set ) { - // We can't allow the type property to be changed (since it causes problems in IE) - if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) { - jQuery.error( "type property can't be changed" ); - } - - if ( value === null ) { - if ( elem.nodeType === 1 ) { - elem.removeAttribute( name ); - } - - } else { - elem[ name ] = value; - } - } - - // browsers index elements by id/name on forms, give priority to attributes. - if ( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) ) { - return elem.getAttributeNode( name ).nodeValue; - } - - // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - if ( name === "tabIndex" ) { - var attributeNode = elem.getAttributeNode( "tabIndex" ); - - return attributeNode && attributeNode.specified ? - attributeNode.value : - rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? - 0 : - undefined; - } - - return elem[ name ]; - } - - if ( !jQuery.support.style && notxml && name === "style" ) { - if ( set ) { - elem.style.cssText = "" + value; - } - - return elem.style.cssText; - } - - if ( set ) { - // convert the value to a string (all browsers do this but IE) see #1070 - elem.setAttribute( name, "" + value ); - } - - // Ensure that missing attributes return undefined - // Blackberry 4.7 returns "" from getAttribute #6938 - if ( !elem.attributes[ name ] && (elem.hasAttribute && !elem.hasAttribute( name )) ) { - return undefined; - } - - var attr = !jQuery.support.hrefNormalized && notxml && special ? - // Some attributes require a special call on IE - elem.getAttribute( name, 2 ) : - elem.getAttribute( name ); - - // Non-existent attributes return null, we normalize to undefined - return attr === null ? undefined : attr; - } - // Handle everything which isn't a DOM element node - if ( set ) { - elem[ name ] = value; - } - return elem[ name ]; - } -}); - - - - -var rnamespaces = /\.(.*)$/, - rformElems = /^(?:textarea|input|select)$/i, - rperiod = /\./g, - rspace = / /g, - rescape = /[^\w\s.|`]/g, - fcleanup = function( nm ) { - return nm.replace(rescape, "\\$&"); - }, - eventKey = "events"; - -/* - * A number of helper functions used for managing events. - * Many of the ideas behind this code originated from - * Dean Edwards' addEvent library. - */ -jQuery.event = { - - // Bind an event to an element - // Original by Dean Edwards - add: function( elem, types, handler, data ) { - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // For whatever reason, IE has trouble passing the window object - // around, causing it to be cloned in the process - if ( jQuery.isWindow( elem ) && ( elem !== window && !elem.frameElement ) ) { - elem = window; - } - - if ( handler === false ) { - handler = returnFalse; - } else if ( !handler ) { - // Fixes bug #7229. Fix recommended by jdalton - return; - } - - var handleObjIn, handleObj; - - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - } - - // Make sure that the function being executed has a unique ID - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure - var elemData = jQuery._data( elem ); - - // If no elemData is found then we must be trying to bind to one of the - // banned noData elements - if ( !elemData ) { - return; - } - - var events = elemData[ eventKey ], - eventHandle = elemData.handle; - - if ( typeof events === "function" ) { - // On plain objects events is a fn that holds the the data - // which prevents this data from being JSON serialized - // the function does not need to be called, it just contains the data - eventHandle = events.handle; - events = events.events; - - } else if ( !events ) { - if ( !elem.nodeType ) { - // On plain objects, create a fn that acts as the holder - // of the values to avoid JSON serialization of event data - elemData[ eventKey ] = elemData = function(){}; - } - - elemData.events = events = {}; - } - - if ( !eventHandle ) { - elemData.handle = eventHandle = function() { - // Handle the second event of a trigger and when - // an event is called after a page has unloaded - return typeof jQuery !== "undefined" && !jQuery.event.triggered ? - jQuery.event.handle.apply( eventHandle.elem, arguments ) : - undefined; - }; - } - - // Add elem as a property of the handle function - // This is to prevent a memory leak with non-native events in IE. - eventHandle.elem = elem; - - // Handle multiple events separated by a space - // jQuery(...).bind("mouseover mouseout", fn); - types = types.split(" "); - - var type, i = 0, namespaces; - - while ( (type = types[ i++ ]) ) { - handleObj = handleObjIn ? - jQuery.extend({}, handleObjIn) : - { handler: handler, data: data }; - - // Namespaced event handlers - if ( type.indexOf(".") > -1 ) { - namespaces = type.split("."); - type = namespaces.shift(); - handleObj.namespace = namespaces.slice(0).sort().join("."); - - } else { - namespaces = []; - handleObj.namespace = ""; - } - - handleObj.type = type; - if ( !handleObj.guid ) { - handleObj.guid = handler.guid; - } - - // Get the current list of functions bound to this event - var handlers = events[ type ], - special = jQuery.event.special[ type ] || {}; - - // Init the event handler queue - if ( !handlers ) { - handlers = events[ type ] = []; - - // Check for a special event handler - // Only use addEventListener/attachEvent if the special - // events handler returns false - if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - // Bind the global event handler to the element - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle, false ); - - } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add the function to the element's handler list - handlers.push( handleObj ); - - // Keep track of which events have been used, for global triggering - jQuery.event.global[ type ] = true; - } - - // Nullify elem to prevent memory leaks in IE - elem = null; - }, - - global: {}, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, pos ) { - // don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - if ( handler === false ) { - handler = returnFalse; - } - - var ret, type, fn, j, i = 0, all, namespaces, namespace, special, eventType, handleObj, origType, - elemData = jQuery.hasData( elem ) && jQuery._data( elem ), - events = elemData && elemData[ eventKey ]; - - if ( !elemData || !events ) { - return; - } - - if ( typeof events === "function" ) { - elemData = events; - events = events.events; - } - - // types is actually an event object here - if ( types && types.type ) { - handler = types.handler; - types = types.type; - } - - // Unbind all events for the element - if ( !types || typeof types === "string" && types.charAt(0) === "." ) { - types = types || ""; - - for ( type in events ) { - jQuery.event.remove( elem, type + types ); - } - - return; - } - - // Handle multiple events separated by a space - // jQuery(...).unbind("mouseover mouseout", fn); - types = types.split(" "); - - while ( (type = types[ i++ ]) ) { - origType = type; - handleObj = null; - all = type.indexOf(".") < 0; - namespaces = []; - - if ( !all ) { - // Namespaced event handlers - namespaces = type.split("."); - type = namespaces.shift(); - - namespace = new RegExp("(^|\\.)" + - jQuery.map( namespaces.slice(0).sort(), fcleanup ).join("\\.(?:.*\\.)?") + "(\\.|$)"); - } - - eventType = events[ type ]; - - if ( !eventType ) { - continue; - } - - if ( !handler ) { - for ( j = 0; j < eventType.length; j++ ) { - handleObj = eventType[ j ]; - - if ( all || namespace.test( handleObj.namespace ) ) { - jQuery.event.remove( elem, origType, handleObj.handler, j ); - eventType.splice( j--, 1 ); - } - } - - continue; - } - - special = jQuery.event.special[ type ] || {}; - - for ( j = pos || 0; j < eventType.length; j++ ) { - handleObj = eventType[ j ]; - - if ( handler.guid === handleObj.guid ) { - // remove the given handler for the given type - if ( all || namespace.test( handleObj.namespace ) ) { - if ( pos == null ) { - eventType.splice( j--, 1 ); - } - - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - - if ( pos != null ) { - break; - } - } - } - - // remove generic event handler if no more handlers exist - if ( eventType.length === 0 || pos != null && eventType.length === 1 ) { - if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { - jQuery.removeEvent( elem, type, elemData.handle ); - } - - ret = null; - delete events[ type ]; - } - } - - // Remove the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - var handle = elemData.handle; - if ( handle ) { - handle.elem = null; - } - - delete elemData.events; - delete elemData.handle; - - if ( typeof elemData === "function" ) { - jQuery.removeData( elem, eventKey, true ); - - } else if ( jQuery.isEmptyObject( elemData ) ) { - jQuery.removeData( elem, undefined, true ); - } - } - }, - - // bubbling is internal - trigger: function( event, data, elem /*, bubbling */ ) { - // Event object or event type - var type = event.type || event, - bubbling = arguments[3]; - - if ( !bubbling ) { - event = typeof event === "object" ? - // jQuery.Event object - event[ jQuery.expando ] ? event : - // Object literal - jQuery.extend( jQuery.Event(type), event ) : - // Just the event type (string) - jQuery.Event(type); - - if ( type.indexOf("!") >= 0 ) { - event.type = type = type.slice(0, -1); - event.exclusive = true; - } - - // Handle a global trigger - if ( !elem ) { - // Don't bubble custom events when global (to avoid too much overhead) - event.stopPropagation(); - - // Only trigger if we've ever bound an event for it - if ( jQuery.event.global[ type ] ) { - // XXX This code smells terrible. event.js should not be directly - // inspecting the data cache - jQuery.each( jQuery.cache, function() { - // internalKey variable is just used to make it easier to find - // and potentially change this stuff later; currently it just - // points to jQuery.expando - var internalKey = jQuery.expando, - internalCache = this[ internalKey ]; - if ( internalCache && internalCache.events && internalCache.events[type] ) { - jQuery.event.trigger( event, data, internalCache.handle.elem ); - } - }); - } - } - - // Handle triggering a single element - - // don't do events on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) { - return undefined; - } - - // Clean up in case it is reused - event.result = undefined; - event.target = elem; - - // Clone the incoming data, if any - data = jQuery.makeArray( data ); - data.unshift( event ); - } - - event.currentTarget = elem; - - // Trigger the event, it is assumed that "handle" is a function - var handle = elem.nodeType ? - jQuery._data( elem, "handle" ) : - (jQuery._data( elem, eventKey ) || {}).handle; - - if ( handle ) { - handle.apply( elem, data ); - } - - var parent = elem.parentNode || elem.ownerDocument; - - // Trigger an inline bound script - try { - if ( !(elem && elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()]) ) { - if ( elem[ "on" + type ] && elem[ "on" + type ].apply( elem, data ) === false ) { - event.result = false; - event.preventDefault(); - } - } - - // prevent IE from throwing an error for some elements with some event types, see #3533 - } catch (inlineError) {} - - if ( !event.isPropagationStopped() && parent ) { - jQuery.event.trigger( event, data, parent, true ); - - } else if ( !event.isDefaultPrevented() ) { - var old, - target = event.target, - targetType = type.replace( rnamespaces, "" ), - isClick = jQuery.nodeName( target, "a" ) && targetType === "click", - special = jQuery.event.special[ targetType ] || {}; - - if ( (!special._default || special._default.call( elem, event ) === false) && - !isClick && !(target && target.nodeName && jQuery.noData[target.nodeName.toLowerCase()]) ) { - - try { - if ( target[ targetType ] ) { - // Make sure that we don't accidentally re-trigger the onFOO events - old = target[ "on" + targetType ]; - - if ( old ) { - target[ "on" + targetType ] = null; - } - - jQuery.event.triggered = true; - target[ targetType ](); - } - - // prevent IE from throwing an error for some elements with some event types, see #3533 - } catch (triggerError) {} - - if ( old ) { - target[ "on" + targetType ] = old; - } - - jQuery.event.triggered = false; - } - } - }, - - handle: function( event ) { - var all, handlers, namespaces, namespace_re, events, - namespace_sort = [], - args = jQuery.makeArray( arguments ); - - event = args[0] = jQuery.event.fix( event || window.event ); - event.currentTarget = this; - - // Namespaced event handlers - all = event.type.indexOf(".") < 0 && !event.exclusive; - - if ( !all ) { - namespaces = event.type.split("."); - event.type = namespaces.shift(); - namespace_sort = namespaces.slice(0).sort(); - namespace_re = new RegExp("(^|\\.)" + namespace_sort.join("\\.(?:.*\\.)?") + "(\\.|$)"); - } - - event.namespace = event.namespace || namespace_sort.join("."); - - events = jQuery._data(this, eventKey); - - if ( typeof events === "function" ) { - events = events.events; - } - - handlers = (events || {})[ event.type ]; - - if ( events && handlers ) { - // Clone the handlers to prevent manipulation - handlers = handlers.slice(0); - - for ( var j = 0, l = handlers.length; j < l; j++ ) { - var handleObj = handlers[ j ]; - - // Filter the functions by class - if ( all || namespace_re.test( handleObj.namespace ) ) { - // Pass in a reference to the handler function itself - // So that we can later remove it - event.handler = handleObj.handler; - event.data = handleObj.data; - event.handleObj = handleObj; - - var ret = handleObj.handler.apply( this, args ); - - if ( ret !== undefined ) { - event.result = ret; - if ( ret === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - - if ( event.isImmediatePropagationStopped() ) { - break; - } - } - } - } - - return event.result; - }, - - props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), - - fix: function( event ) { - if ( event[ jQuery.expando ] ) { - return event; - } - - // store a copy of the original event object - // and "clone" to set read-only properties - var originalEvent = event; - event = jQuery.Event( originalEvent ); - - for ( var i = this.props.length, prop; i; ) { - prop = this.props[ --i ]; - event[ prop ] = originalEvent[ prop ]; - } - - // Fix target property, if necessary - if ( !event.target ) { - // Fixes #1925 where srcElement might not be defined either - event.target = event.srcElement || document; - } - - // check if target is a textnode (safari) - if ( event.target.nodeType === 3 ) { - event.target = event.target.parentNode; - } - - // Add relatedTarget, if necessary - if ( !event.relatedTarget && event.fromElement ) { - event.relatedTarget = event.fromElement === event.target ? event.toElement : event.fromElement; - } - - // Calculate pageX/Y if missing and clientX/Y available - if ( event.pageX == null && event.clientX != null ) { - var doc = document.documentElement, - body = document.body; - - event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc && doc.clientLeft || body && body.clientLeft || 0); - event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc && doc.clientTop || body && body.clientTop || 0); - } - - // Add which for key events - if ( event.which == null && (event.charCode != null || event.keyCode != null) ) { - event.which = event.charCode != null ? event.charCode : event.keyCode; - } - - // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs) - if ( !event.metaKey && event.ctrlKey ) { - event.metaKey = event.ctrlKey; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - // Note: button is not normalized, so don't use it - if ( !event.which && event.button !== undefined ) { - event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) )); - } - - return event; - }, - - // Deprecated, use jQuery.guid instead - guid: 1E8, - - // Deprecated, use jQuery.proxy instead - proxy: jQuery.proxy, - - special: { - ready: { - // Make sure the ready event is setup - setup: jQuery.bindReady, - teardown: jQuery.noop - }, - - live: { - add: function( handleObj ) { - jQuery.event.add( this, - liveConvert( handleObj.origType, handleObj.selector ), - jQuery.extend({}, handleObj, {handler: liveHandler, guid: handleObj.handler.guid}) ); - }, - - remove: function( handleObj ) { - jQuery.event.remove( this, liveConvert( handleObj.origType, handleObj.selector ), handleObj ); - } - }, - - beforeunload: { - setup: function( data, namespaces, eventHandle ) { - // We only want to do this special case on windows - if ( jQuery.isWindow( this ) ) { - this.onbeforeunload = eventHandle; - } - }, - - teardown: function( namespaces, eventHandle ) { - if ( this.onbeforeunload === eventHandle ) { - this.onbeforeunload = null; - } - } - } - } -}; - -jQuery.removeEvent = document.removeEventListener ? - function( elem, type, handle ) { - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle, false ); - } - } : - function( elem, type, handle ) { - if ( elem.detachEvent ) { - elem.detachEvent( "on" + type, handle ); - } - }; - -jQuery.Event = function( src ) { - // Allow instantiation without the 'new' keyword - if ( !this.preventDefault ) { - return new jQuery.Event( src ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = (src.defaultPrevented || src.returnValue === false || - src.getPreventDefault && src.getPreventDefault()) ? returnTrue : returnFalse; - - // Event type - } else { - this.type = src; - } - - // timeStamp is buggy for some events on Firefox(#3843) - // So we won't rely on the native value - this.timeStamp = jQuery.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -function returnFalse() { - return false; -} -function returnTrue() { - return true; -} - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - preventDefault: function() { - this.isDefaultPrevented = returnTrue; - - var e = this.originalEvent; - if ( !e ) { - return; - } - - // if preventDefault exists run it on the original event - if ( e.preventDefault ) { - e.preventDefault(); - - // otherwise set the returnValue property of the original event to false (IE) - } else { - e.returnValue = false; - } - }, - stopPropagation: function() { - this.isPropagationStopped = returnTrue; - - var e = this.originalEvent; - if ( !e ) { - return; - } - // if stopPropagation exists run it on the original event - if ( e.stopPropagation ) { - e.stopPropagation(); - } - // otherwise set the cancelBubble property of the original event to true (IE) - e.cancelBubble = true; - }, - stopImmediatePropagation: function() { - this.isImmediatePropagationStopped = returnTrue; - this.stopPropagation(); - }, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse -}; - -// Checks if an event happened on an element within another element -// Used in jQuery.event.special.mouseenter and mouseleave handlers -var withinElement = function( event ) { - // Check if mouse(over|out) are still within the same parent element - var parent = event.relatedTarget; - - // Firefox sometimes assigns relatedTarget a XUL element - // which we cannot access the parentNode property of - try { - // Traverse up the tree - while ( parent && parent !== this ) { - parent = parent.parentNode; - } - - if ( parent !== this ) { - // set the correct event type - event.type = event.data; - - // handle event if we actually just moused on to a non sub-element - jQuery.event.handle.apply( this, arguments ); - } - - // assuming we've left the element since we most likely mousedover a xul element - } catch(e) { } -}, - -// In case of event delegation, we only need to rename the event.type, -// liveHandler will take care of the rest. -delegate = function( event ) { - event.type = event.data; - jQuery.event.handle.apply( this, arguments ); -}; - -// Create mouseenter and mouseleave events -jQuery.each({ - mouseenter: "mouseover", - mouseleave: "mouseout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - setup: function( data ) { - jQuery.event.add( this, fix, data && data.selector ? delegate : withinElement, orig ); - }, - teardown: function( data ) { - jQuery.event.remove( this, fix, data && data.selector ? delegate : withinElement ); - } - }; -}); - -// submit delegation -if ( !jQuery.support.submitBubbles ) { - - jQuery.event.special.submit = { - setup: function( data, namespaces ) { - if ( this.nodeName && this.nodeName.toLowerCase() !== "form" ) { - jQuery.event.add(this, "click.specialSubmit", function( e ) { - var elem = e.target, - type = elem.type; - - if ( (type === "submit" || type === "image") && jQuery( elem ).closest("form").length ) { - e.liveFired = undefined; - return trigger( "submit", this, arguments ); - } - }); - - jQuery.event.add(this, "keypress.specialSubmit", function( e ) { - var elem = e.target, - type = elem.type; - - if ( (type === "text" || type === "password") && jQuery( elem ).closest("form").length && e.keyCode === 13 ) { - e.liveFired = undefined; - return trigger( "submit", this, arguments ); - } - }); - - } else { - return false; - } - }, - - teardown: function( namespaces ) { - jQuery.event.remove( this, ".specialSubmit" ); - } - }; - -} - -// change delegation, happens here so we have bind. -if ( !jQuery.support.changeBubbles ) { - - var changeFilters, - - getVal = function( elem ) { - var type = elem.type, val = elem.value; - - if ( type === "radio" || type === "checkbox" ) { - val = elem.checked; - - } else if ( type === "select-multiple" ) { - val = elem.selectedIndex > -1 ? - jQuery.map( elem.options, function( elem ) { - return elem.selected; - }).join("-") : - ""; - - } else if ( elem.nodeName.toLowerCase() === "select" ) { - val = elem.selectedIndex; - } - - return val; - }, - - testChange = function testChange( e ) { - var elem = e.target, data, val; - - if ( !rformElems.test( elem.nodeName ) || elem.readOnly ) { - return; - } - - data = jQuery._data( elem, "_change_data" ); - val = getVal(elem); - - // the current data will be also retrieved by beforeactivate - if ( e.type !== "focusout" || elem.type !== "radio" ) { - jQuery._data( elem, "_change_data", val ); - } - - if ( data === undefined || val === data ) { - return; - } - - if ( data != null || val ) { - e.type = "change"; - e.liveFired = undefined; - return jQuery.event.trigger( e, arguments[1], elem ); - } - }; - - jQuery.event.special.change = { - filters: { - focusout: testChange, - - beforedeactivate: testChange, - - click: function( e ) { - var elem = e.target, type = elem.type; - - if ( type === "radio" || type === "checkbox" || elem.nodeName.toLowerCase() === "select" ) { - return testChange.call( this, e ); - } - }, - - // Change has to be called before submit - // Keydown will be called before keypress, which is used in submit-event delegation - keydown: function( e ) { - var elem = e.target, type = elem.type; - - if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== "textarea") || - (e.keyCode === 32 && (type === "checkbox" || type === "radio")) || - type === "select-multiple" ) { - return testChange.call( this, e ); - } - }, - - // Beforeactivate happens also before the previous element is blurred - // with this event you can't trigger a change event, but you can store - // information - beforeactivate: function( e ) { - var elem = e.target; - jQuery._data( elem, "_change_data", getVal(elem) ); - } - }, - - setup: function( data, namespaces ) { - if ( this.type === "file" ) { - return false; - } - - for ( var type in changeFilters ) { - jQuery.event.add( this, type + ".specialChange", changeFilters[type] ); - } - - return rformElems.test( this.nodeName ); - }, - - teardown: function( namespaces ) { - jQuery.event.remove( this, ".specialChange" ); - - return rformElems.test( this.nodeName ); - } - }; - - changeFilters = jQuery.event.special.change.filters; - - // Handle when the input is .focus()'d - changeFilters.focus = changeFilters.beforeactivate; -} - -function trigger( type, elem, args ) { - args[0].type = type; - return jQuery.event.handle.apply( elem, args ); -} - -// Create "bubbling" focus and blur events -if ( document.addEventListener ) { - jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { - jQuery.event.special[ fix ] = { - setup: function() { - this.addEventListener( orig, handler, true ); - }, - teardown: function() { - this.removeEventListener( orig, handler, true ); - } - }; - - function handler( e ) { - e = jQuery.event.fix( e ); - e.type = fix; - return jQuery.event.handle.call( this, e ); - } - }); -} - -jQuery.each(["bind", "one"], function( i, name ) { - jQuery.fn[ name ] = function( type, data, fn ) { - // Handle object literals - if ( typeof type === "object" ) { - for ( var key in type ) { - this[ name ](key, data, type[key], fn); - } - return this; - } - - if ( jQuery.isFunction( data ) || data === false ) { - fn = data; - data = undefined; - } - - var handler = name === "one" ? jQuery.proxy( fn, function( event ) { - jQuery( this ).unbind( event, handler ); - return fn.apply( this, arguments ); - }) : fn; - - if ( type === "unload" && name !== "one" ) { - this.one( type, data, fn ); - - } else { - for ( var i = 0, l = this.length; i < l; i++ ) { - jQuery.event.add( this[i], type, handler, data ); - } - } - - return this; - }; -}); - -jQuery.fn.extend({ - unbind: function( type, fn ) { - // Handle object literals - if ( typeof type === "object" && !type.preventDefault ) { - for ( var key in type ) { - this.unbind(key, type[key]); - } - - } else { - for ( var i = 0, l = this.length; i < l; i++ ) { - jQuery.event.remove( this[i], type, fn ); - } - } - - return this; - }, - - delegate: function( selector, types, data, fn ) { - return this.live( types, data, fn, selector ); - }, - - undelegate: function( selector, types, fn ) { - if ( arguments.length === 0 ) { - return this.unbind( "live" ); - - } else { - return this.die( types, null, fn, selector ); - } - }, - - trigger: function( type, data ) { - return this.each(function() { - jQuery.event.trigger( type, data, this ); - }); - }, - - triggerHandler: function( type, data ) { - if ( this[0] ) { - var event = jQuery.Event( type ); - event.preventDefault(); - event.stopPropagation(); - jQuery.event.trigger( event, data, this[0] ); - return event.result; - } - }, - - toggle: function( fn ) { - // Save reference to arguments for access in closure - var args = arguments, - i = 1; - - // link all the functions, so any of them can unbind this click handler - while ( i < args.length ) { - jQuery.proxy( fn, args[ i++ ] ); - } - - return this.click( jQuery.proxy( fn, function( event ) { - // Figure out which function to execute - var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; - jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); - - // Make sure that clicks stop - event.preventDefault(); - - // and execute the function - return args[ lastToggle ].apply( this, arguments ) || false; - })); - }, - - hover: function( fnOver, fnOut ) { - return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); - } -}); - -var liveMap = { - focus: "focusin", - blur: "focusout", - mouseenter: "mouseover", - mouseleave: "mouseout" -}; - -jQuery.each(["live", "die"], function( i, name ) { - jQuery.fn[ name ] = function( types, data, fn, origSelector /* Internal Use Only */ ) { - var type, i = 0, match, namespaces, preType, - selector = origSelector || this.selector, - context = origSelector ? this : jQuery( this.context ); - - if ( typeof types === "object" && !types.preventDefault ) { - for ( var key in types ) { - context[ name ]( key, data, types[key], selector ); - } - - return this; - } - - if ( jQuery.isFunction( data ) ) { - fn = data; - data = undefined; - } - - types = (types || "").split(" "); - - while ( (type = types[ i++ ]) != null ) { - match = rnamespaces.exec( type ); - namespaces = ""; - - if ( match ) { - namespaces = match[0]; - type = type.replace( rnamespaces, "" ); - } - - if ( type === "hover" ) { - types.push( "mouseenter" + namespaces, "mouseleave" + namespaces ); - continue; - } - - preType = type; - - if ( type === "focus" || type === "blur" ) { - types.push( liveMap[ type ] + namespaces ); - type = type + namespaces; - - } else { - type = (liveMap[ type ] || type) + namespaces; - } - - if ( name === "live" ) { - // bind live handler - for ( var j = 0, l = context.length; j < l; j++ ) { - jQuery.event.add( context[j], "live." + liveConvert( type, selector ), - { data: data, selector: selector, handler: fn, origType: type, origHandler: fn, preType: preType } ); - } - - } else { - // unbind live handler - context.unbind( "live." + liveConvert( type, selector ), fn ); - } - } - - return this; - }; -}); - -function liveHandler( event ) { - var stop, maxLevel, related, match, handleObj, elem, j, i, l, data, close, namespace, ret, - elems = [], - selectors = [], - events = jQuery._data( this, eventKey ); - - if ( typeof events === "function" ) { - events = events.events; - } - - // Make sure we avoid non-left-click bubbling in Firefox (#3861) and disabled elements in IE (#6911) - if ( event.liveFired === this || !events || !events.live || event.target.disabled || event.button && event.type === "click" ) { - return; - } - - if ( event.namespace ) { - namespace = new RegExp("(^|\\.)" + event.namespace.split(".").join("\\.(?:.*\\.)?") + "(\\.|$)"); - } - - event.liveFired = this; - - var live = events.live.slice(0); - - for ( j = 0; j < live.length; j++ ) { - handleObj = live[j]; - - if ( handleObj.origType.replace( rnamespaces, "" ) === event.type ) { - selectors.push( handleObj.selector ); - - } else { - live.splice( j--, 1 ); - } - } - - match = jQuery( event.target ).closest( selectors, event.currentTarget ); - - for ( i = 0, l = match.length; i < l; i++ ) { - close = match[i]; - - for ( j = 0; j < live.length; j++ ) { - handleObj = live[j]; - - if ( close.selector === handleObj.selector && (!namespace || namespace.test( handleObj.namespace )) ) { - elem = close.elem; - related = null; - - // Those two events require additional checking - if ( handleObj.preType === "mouseenter" || handleObj.preType === "mouseleave" ) { - event.type = handleObj.preType; - related = jQuery( event.relatedTarget ).closest( handleObj.selector )[0]; - } - - if ( !related || related !== elem ) { - elems.push({ elem: elem, handleObj: handleObj, level: close.level }); - } - } - } - } - - for ( i = 0, l = elems.length; i < l; i++ ) { - match = elems[i]; - - if ( maxLevel && match.level > maxLevel ) { - break; - } - - event.currentTarget = match.elem; - event.data = match.handleObj.data; - event.handleObj = match.handleObj; - - ret = match.handleObj.origHandler.apply( match.elem, arguments ); - - if ( ret === false || event.isPropagationStopped() ) { - maxLevel = match.level; - - if ( ret === false ) { - stop = false; - } - if ( event.isImmediatePropagationStopped() ) { - break; - } - } - } - - return stop; -} - -function liveConvert( type, selector ) { - return (type && type !== "*" ? type + "." : "") + selector.replace(rperiod, "`").replace(rspace, "&"); -} - -jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + - "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + - "change select submit keydown keypress keyup error").split(" "), function( i, name ) { - - // Handle event binding - jQuery.fn[ name ] = function( data, fn ) { - if ( fn == null ) { - fn = data; - data = null; - } - - return arguments.length > 0 ? - this.bind( name, data, fn ) : - this.trigger( name ); - }; - - if ( jQuery.attrFn ) { - jQuery.attrFn[ name ] = true; - } -}); - - -/*! - * Sizzle CSS Selector Engine - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * More information: http://sizzlejs.com/ - */ -(function(){ - -var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, - done = 0, - toString = Object.prototype.toString, - hasDuplicate = false, - baseHasDuplicate = true; - -// Here we check if the JavaScript engine is using some sort of -// optimization where it does not always call our comparision -// function. If that is the case, discard the hasDuplicate value. -// Thus far that includes Google Chrome. -[0, 0].sort(function() { - baseHasDuplicate = false; - return 0; -}); - -var Sizzle = function( selector, context, results, seed ) { - results = results || []; - context = context || document; - - var origContext = context; - - if ( context.nodeType !== 1 && context.nodeType !== 9 ) { - return []; - } - - if ( !selector || typeof selector !== "string" ) { - return results; - } - - var m, set, checkSet, extra, ret, cur, pop, i, - prune = true, - contextXML = Sizzle.isXML( context ), - parts = [], - soFar = selector; - - // Reset the position of the chunker regexp (start from head) - do { - chunker.exec( "" ); - m = chunker.exec( soFar ); - - if ( m ) { - soFar = m[3]; - - parts.push( m[1] ); - - if ( m[2] ) { - extra = m[3]; - break; - } - } - } while ( m ); - - if ( parts.length > 1 && origPOS.exec( selector ) ) { - - if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { - set = posProcess( parts[0] + parts[1], context ); - - } else { - set = Expr.relative[ parts[0] ] ? - [ context ] : - Sizzle( parts.shift(), context ); - - while ( parts.length ) { - selector = parts.shift(); - - if ( Expr.relative[ selector ] ) { - selector += parts.shift(); - } - - set = posProcess( selector, set ); - } - } - - } else { - // Take a shortcut and set the context if the root selector is an ID - // (but not if it'll be faster if the inner selector is an ID) - if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && - Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { - - ret = Sizzle.find( parts.shift(), context, contextXML ); - context = ret.expr ? - Sizzle.filter( ret.expr, ret.set )[0] : - ret.set[0]; - } - - if ( context ) { - ret = seed ? - { expr: parts.pop(), set: makeArray(seed) } : - Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); - - set = ret.expr ? - Sizzle.filter( ret.expr, ret.set ) : - ret.set; - - if ( parts.length > 0 ) { - checkSet = makeArray( set ); - - } else { - prune = false; - } - - while ( parts.length ) { - cur = parts.pop(); - pop = cur; - - if ( !Expr.relative[ cur ] ) { - cur = ""; - } else { - pop = parts.pop(); - } - - if ( pop == null ) { - pop = context; - } - - Expr.relative[ cur ]( checkSet, pop, contextXML ); - } - - } else { - checkSet = parts = []; - } - } - - if ( !checkSet ) { - checkSet = set; - } - - if ( !checkSet ) { - Sizzle.error( cur || selector ); - } - - if ( toString.call(checkSet) === "[object Array]" ) { - if ( !prune ) { - results.push.apply( results, checkSet ); - - } else if ( context && context.nodeType === 1 ) { - for ( i = 0; checkSet[i] != null; i++ ) { - if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) { - results.push( set[i] ); - } - } - - } else { - for ( i = 0; checkSet[i] != null; i++ ) { - if ( checkSet[i] && checkSet[i].nodeType === 1 ) { - results.push( set[i] ); - } - } - } - - } else { - makeArray( checkSet, results ); - } - - if ( extra ) { - Sizzle( extra, origContext, results, seed ); - Sizzle.uniqueSort( results ); - } - - return results; -}; - -Sizzle.uniqueSort = function( results ) { - if ( sortOrder ) { - hasDuplicate = baseHasDuplicate; - results.sort( sortOrder ); - - if ( hasDuplicate ) { - for ( var i = 1; i < results.length; i++ ) { - if ( results[i] === results[ i - 1 ] ) { - results.splice( i--, 1 ); - } - } - } - } - - return results; -}; - -Sizzle.matches = function( expr, set ) { - return Sizzle( expr, null, null, set ); -}; - -Sizzle.matchesSelector = function( node, expr ) { - return Sizzle( expr, null, null, [node] ).length > 0; -}; - -Sizzle.find = function( expr, context, isXML ) { - var set; - - if ( !expr ) { - return []; - } - - for ( var i = 0, l = Expr.order.length; i < l; i++ ) { - var match, - type = Expr.order[i]; - - if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { - var left = match[1]; - match.splice( 1, 1 ); - - if ( left.substr( left.length - 1 ) !== "\\" ) { - match[1] = (match[1] || "").replace(/\\/g, ""); - set = Expr.find[ type ]( match, context, isXML ); - - if ( set != null ) { - expr = expr.replace( Expr.match[ type ], "" ); - break; - } - } - } - } - - if ( !set ) { - set = typeof context.getElementsByTagName !== "undefined" ? - context.getElementsByTagName( "*" ) : - []; - } - - return { set: set, expr: expr }; -}; - -Sizzle.filter = function( expr, set, inplace, not ) { - var match, anyFound, - old = expr, - result = [], - curLoop = set, - isXMLFilter = set && set[0] && Sizzle.isXML( set[0] ); - - while ( expr && set.length ) { - for ( var type in Expr.filter ) { - if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { - var found, item, - filter = Expr.filter[ type ], - left = match[1]; - - anyFound = false; - - match.splice(1,1); - - if ( left.substr( left.length - 1 ) === "\\" ) { - continue; - } - - if ( curLoop === result ) { - result = []; - } - - if ( Expr.preFilter[ type ] ) { - match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); - - if ( !match ) { - anyFound = found = true; - - } else if ( match === true ) { - continue; - } - } - - if ( match ) { - for ( var i = 0; (item = curLoop[i]) != null; i++ ) { - if ( item ) { - found = filter( item, match, i, curLoop ); - var pass = not ^ !!found; - - if ( inplace && found != null ) { - if ( pass ) { - anyFound = true; - - } else { - curLoop[i] = false; - } - - } else if ( pass ) { - result.push( item ); - anyFound = true; - } - } - } - } - - if ( found !== undefined ) { - if ( !inplace ) { - curLoop = result; - } - - expr = expr.replace( Expr.match[ type ], "" ); - - if ( !anyFound ) { - return []; - } - - break; - } - } - } - - // Improper expression - if ( expr === old ) { - if ( anyFound == null ) { - Sizzle.error( expr ); - - } else { - break; - } - } - - old = expr; - } - - return curLoop; -}; - -Sizzle.error = function( msg ) { - throw "Syntax error, unrecognized expression: " + msg; -}; - -var Expr = Sizzle.selectors = { - order: [ "ID", "NAME", "TAG" ], - - match: { - ID: /#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, - CLASS: /\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, - NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/, - ATTR: /\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/, - TAG: /^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/, - CHILD: /:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/, - POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/, - PSEUDO: /:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ - }, - - leftMatch: {}, - - attrMap: { - "class": "className", - "for": "htmlFor" - }, - - attrHandle: { - href: function( elem ) { - return elem.getAttribute( "href" ); - } - }, - - relative: { - "+": function(checkSet, part){ - var isPartStr = typeof part === "string", - isTag = isPartStr && !/\W/.test( part ), - isPartStrNotTag = isPartStr && !isTag; - - if ( isTag ) { - part = part.toLowerCase(); - } - - for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { - if ( (elem = checkSet[i]) ) { - while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} - - checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? - elem || false : - elem === part; - } - } - - if ( isPartStrNotTag ) { - Sizzle.filter( part, checkSet, true ); - } - }, - - ">": function( checkSet, part ) { - var elem, - isPartStr = typeof part === "string", - i = 0, - l = checkSet.length; - - if ( isPartStr && !/\W/.test( part ) ) { - part = part.toLowerCase(); - - for ( ; i < l; i++ ) { - elem = checkSet[i]; - - if ( elem ) { - var parent = elem.parentNode; - checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; - } - } - - } else { - for ( ; i < l; i++ ) { - elem = checkSet[i]; - - if ( elem ) { - checkSet[i] = isPartStr ? - elem.parentNode : - elem.parentNode === part; - } - } - - if ( isPartStr ) { - Sizzle.filter( part, checkSet, true ); - } - } - }, - - "": function(checkSet, part, isXML){ - var nodeCheck, - doneName = done++, - checkFn = dirCheck; - - if ( typeof part === "string" && !/\W/.test(part) ) { - part = part.toLowerCase(); - nodeCheck = part; - checkFn = dirNodeCheck; - } - - checkFn( "parentNode", part, doneName, checkSet, nodeCheck, isXML ); - }, - - "~": function( checkSet, part, isXML ) { - var nodeCheck, - doneName = done++, - checkFn = dirCheck; - - if ( typeof part === "string" && !/\W/.test( part ) ) { - part = part.toLowerCase(); - nodeCheck = part; - checkFn = dirNodeCheck; - } - - checkFn( "previousSibling", part, doneName, checkSet, nodeCheck, isXML ); - } - }, - - find: { - ID: function( match, context, isXML ) { - if ( typeof context.getElementById !== "undefined" && !isXML ) { - var m = context.getElementById(match[1]); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - return m && m.parentNode ? [m] : []; - } - }, - - NAME: function( match, context ) { - if ( typeof context.getElementsByName !== "undefined" ) { - var ret = [], - results = context.getElementsByName( match[1] ); - - for ( var i = 0, l = results.length; i < l; i++ ) { - if ( results[i].getAttribute("name") === match[1] ) { - ret.push( results[i] ); - } - } - - return ret.length === 0 ? null : ret; - } - }, - - TAG: function( match, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( match[1] ); - } - } - }, - preFilter: { - CLASS: function( match, curLoop, inplace, result, not, isXML ) { - match = " " + match[1].replace(/\\/g, "") + " "; - - if ( isXML ) { - return match; - } - - for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { - if ( elem ) { - if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n\r]/g, " ").indexOf(match) >= 0) ) { - if ( !inplace ) { - result.push( elem ); - } - - } else if ( inplace ) { - curLoop[i] = false; - } - } - } - - return false; - }, - - ID: function( match ) { - return match[1].replace(/\\/g, ""); - }, - - TAG: function( match, curLoop ) { - return match[1].toLowerCase(); - }, - - CHILD: function( match ) { - if ( match[1] === "nth" ) { - if ( !match[2] ) { - Sizzle.error( match[0] ); - } - - match[2] = match[2].replace(/^\+|\s*/g, ''); - - // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' - var test = /(-?)(\d*)(?:n([+\-]?\d*))?/.exec( - match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || - !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); - - // calculate the numbers (first)n+(last) including if they are negative - match[2] = (test[1] + (test[2] || 1)) - 0; - match[3] = test[3] - 0; - } - else if ( match[2] ) { - Sizzle.error( match[0] ); - } - - // TODO: Move to normal caching system - match[0] = done++; - - return match; - }, - - ATTR: function( match, curLoop, inplace, result, not, isXML ) { - var name = match[1] = match[1].replace(/\\/g, ""); - - if ( !isXML && Expr.attrMap[name] ) { - match[1] = Expr.attrMap[name]; - } - - // Handle if an un-quoted value was used - match[4] = ( match[4] || match[5] || "" ).replace(/\\/g, ""); - - if ( match[2] === "~=" ) { - match[4] = " " + match[4] + " "; - } - - return match; - }, - - PSEUDO: function( match, curLoop, inplace, result, not ) { - if ( match[1] === "not" ) { - // If we're dealing with a complex expression, or a simple one - if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { - match[3] = Sizzle(match[3], null, null, curLoop); - - } else { - var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); - - if ( !inplace ) { - result.push.apply( result, ret ); - } - - return false; - } - - } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { - return true; - } - - return match; - }, - - POS: function( match ) { - match.unshift( true ); - - return match; - } - }, - - filters: { - enabled: function( elem ) { - return elem.disabled === false && elem.type !== "hidden"; - }, - - disabled: function( elem ) { - return elem.disabled === true; - }, - - checked: function( elem ) { - return elem.checked === true; - }, - - selected: function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - elem.parentNode.selectedIndex; - - return elem.selected === true; - }, - - parent: function( elem ) { - return !!elem.firstChild; - }, - - empty: function( elem ) { - return !elem.firstChild; - }, - - has: function( elem, i, match ) { - return !!Sizzle( match[3], elem ).length; - }, - - header: function( elem ) { - return (/h\d/i).test( elem.nodeName ); - }, - - text: function( elem ) { - return "text" === elem.type; - }, - radio: function( elem ) { - return "radio" === elem.type; - }, - - checkbox: function( elem ) { - return "checkbox" === elem.type; - }, - - file: function( elem ) { - return "file" === elem.type; - }, - password: function( elem ) { - return "password" === elem.type; - }, - - submit: function( elem ) { - return "submit" === elem.type; - }, - - image: function( elem ) { - return "image" === elem.type; - }, - - reset: function( elem ) { - return "reset" === elem.type; - }, - - button: function( elem ) { - return "button" === elem.type || elem.nodeName.toLowerCase() === "button"; - }, - - input: function( elem ) { - return (/input|select|textarea|button/i).test( elem.nodeName ); - } - }, - setFilters: { - first: function( elem, i ) { - return i === 0; - }, - - last: function( elem, i, match, array ) { - return i === array.length - 1; - }, - - even: function( elem, i ) { - return i % 2 === 0; - }, - - odd: function( elem, i ) { - return i % 2 === 1; - }, - - lt: function( elem, i, match ) { - return i < match[3] - 0; - }, - - gt: function( elem, i, match ) { - return i > match[3] - 0; - }, - - nth: function( elem, i, match ) { - return match[3] - 0 === i; - }, - - eq: function( elem, i, match ) { - return match[3] - 0 === i; - } - }, - filter: { - PSEUDO: function( elem, match, i, array ) { - var name = match[1], - filter = Expr.filters[ name ]; - - if ( filter ) { - return filter( elem, i, match, array ); - - } else if ( name === "contains" ) { - return (elem.textContent || elem.innerText || Sizzle.getText([ elem ]) || "").indexOf(match[3]) >= 0; - - } else if ( name === "not" ) { - var not = match[3]; - - for ( var j = 0, l = not.length; j < l; j++ ) { - if ( not[j] === elem ) { - return false; - } - } - - return true; - - } else { - Sizzle.error( name ); - } - }, - - CHILD: function( elem, match ) { - var type = match[1], - node = elem; - - switch ( type ) { - case "only": - case "first": - while ( (node = node.previousSibling) ) { - if ( node.nodeType === 1 ) { - return false; - } - } - - if ( type === "first" ) { - return true; - } - - node = elem; - - case "last": - while ( (node = node.nextSibling) ) { - if ( node.nodeType === 1 ) { - return false; - } - } - - return true; - - case "nth": - var first = match[2], - last = match[3]; - - if ( first === 1 && last === 0 ) { - return true; - } - - var doneName = match[0], - parent = elem.parentNode; - - if ( parent && (parent.sizcache !== doneName || !elem.nodeIndex) ) { - var count = 0; - - for ( node = parent.firstChild; node; node = node.nextSibling ) { - if ( node.nodeType === 1 ) { - node.nodeIndex = ++count; - } - } - - parent.sizcache = doneName; - } - - var diff = elem.nodeIndex - last; - - if ( first === 0 ) { - return diff === 0; - - } else { - return ( diff % first === 0 && diff / first >= 0 ); - } - } - }, - - ID: function( elem, match ) { - return elem.nodeType === 1 && elem.getAttribute("id") === match; - }, - - TAG: function( elem, match ) { - return (match === "*" && elem.nodeType === 1) || elem.nodeName.toLowerCase() === match; - }, - - CLASS: function( elem, match ) { - return (" " + (elem.className || elem.getAttribute("class")) + " ") - .indexOf( match ) > -1; - }, - - ATTR: function( elem, match ) { - var name = match[1], - result = Expr.attrHandle[ name ] ? - Expr.attrHandle[ name ]( elem ) : - elem[ name ] != null ? - elem[ name ] : - elem.getAttribute( name ), - value = result + "", - type = match[2], - check = match[4]; - - return result == null ? - type === "!=" : - type === "=" ? - value === check : - type === "*=" ? - value.indexOf(check) >= 0 : - type === "~=" ? - (" " + value + " ").indexOf(check) >= 0 : - !check ? - value && result !== false : - type === "!=" ? - value !== check : - type === "^=" ? - value.indexOf(check) === 0 : - type === "$=" ? - value.substr(value.length - check.length) === check : - type === "|=" ? - value === check || value.substr(0, check.length + 1) === check + "-" : - false; - }, - - POS: function( elem, match, i, array ) { - var name = match[2], - filter = Expr.setFilters[ name ]; - - if ( filter ) { - return filter( elem, i, match, array ); - } - } - } -}; - -var origPOS = Expr.match.POS, - fescape = function(all, num){ - return "\\" + (num - 0 + 1); - }; - -for ( var type in Expr.match ) { - Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) ); - Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) ); -} - -var makeArray = function( array, results ) { - array = Array.prototype.slice.call( array, 0 ); - - if ( results ) { - results.push.apply( results, array ); - return results; - } - - return array; -}; - -// Perform a simple check to determine if the browser is capable of -// converting a NodeList to an array using builtin methods. -// Also verifies that the returned array holds DOM nodes -// (which is not the case in the Blackberry browser) -try { - Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; - -// Provide a fallback method if it does not work -} catch( e ) { - makeArray = function( array, results ) { - var i = 0, - ret = results || []; - - if ( toString.call(array) === "[object Array]" ) { - Array.prototype.push.apply( ret, array ); - - } else { - if ( typeof array.length === "number" ) { - for ( var l = array.length; i < l; i++ ) { - ret.push( array[i] ); - } - - } else { - for ( ; array[i]; i++ ) { - ret.push( array[i] ); - } - } - } - - return ret; - }; -} - -var sortOrder, siblingCheck; - -if ( document.documentElement.compareDocumentPosition ) { - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { - return a.compareDocumentPosition ? -1 : 1; - } - - return a.compareDocumentPosition(b) & 4 ? -1 : 1; - }; - -} else { - sortOrder = function( a, b ) { - var al, bl, - ap = [], - bp = [], - aup = a.parentNode, - bup = b.parentNode, - cur = aup; - - // The nodes are identical, we can exit early - if ( a === b ) { - hasDuplicate = true; - return 0; - - // If the nodes are siblings (or identical) we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - - // If no parents were found then the nodes are disconnected - } else if ( !aup ) { - return -1; - - } else if ( !bup ) { - return 1; - } - - // Otherwise they're somewhere else in the tree so we need - // to build up a full list of the parentNodes for comparison - while ( cur ) { - ap.unshift( cur ); - cur = cur.parentNode; - } - - cur = bup; - - while ( cur ) { - bp.unshift( cur ); - cur = cur.parentNode; - } - - al = ap.length; - bl = bp.length; - - // Start walking down the tree looking for a discrepancy - for ( var i = 0; i < al && i < bl; i++ ) { - if ( ap[i] !== bp[i] ) { - return siblingCheck( ap[i], bp[i] ); - } - } - - // We ended someplace up the tree so do a sibling check - return i === al ? - siblingCheck( a, bp[i], -1 ) : - siblingCheck( ap[i], b, 1 ); - }; - - siblingCheck = function( a, b, ret ) { - if ( a === b ) { - return ret; - } - - var cur = a.nextSibling; - - while ( cur ) { - if ( cur === b ) { - return -1; - } - - cur = cur.nextSibling; - } - - return 1; - }; -} - -// Utility function for retreiving the text value of an array of DOM nodes -Sizzle.getText = function( elems ) { - var ret = "", elem; - - for ( var i = 0; elems[i]; i++ ) { - elem = elems[i]; - - // Get the text from text nodes and CDATA nodes - if ( elem.nodeType === 3 || elem.nodeType === 4 ) { - ret += elem.nodeValue; - - // Traverse everything else, except comment nodes - } else if ( elem.nodeType !== 8 ) { - ret += Sizzle.getText( elem.childNodes ); - } - } - - return ret; -}; - -// Check to see if the browser returns elements by name when -// querying by getElementById (and provide a workaround) -(function(){ - // We're going to inject a fake input element with a specified name - var form = document.createElement("div"), - id = "script" + (new Date()).getTime(), - root = document.documentElement; - - form.innerHTML = ""; - - // Inject it into the root element, check its status, and remove it quickly - root.insertBefore( form, root.firstChild ); - - // The workaround has to do additional checks after a getElementById - // Which slows things down for other browsers (hence the branching) - if ( document.getElementById( id ) ) { - Expr.find.ID = function( match, context, isXML ) { - if ( typeof context.getElementById !== "undefined" && !isXML ) { - var m = context.getElementById(match[1]); - - return m ? - m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? - [m] : - undefined : - []; - } - }; - - Expr.filter.ID = function( elem, match ) { - var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); - - return elem.nodeType === 1 && node && node.nodeValue === match; - }; - } - - root.removeChild( form ); - - // release memory in IE - root = form = null; -})(); - -(function(){ - // Check to see if the browser returns only elements - // when doing getElementsByTagName("*") - - // Create a fake element - var div = document.createElement("div"); - div.appendChild( document.createComment("") ); - - // Make sure no comments are found - if ( div.getElementsByTagName("*").length > 0 ) { - Expr.find.TAG = function( match, context ) { - var results = context.getElementsByTagName( match[1] ); - - // Filter out possible comments - if ( match[1] === "*" ) { - var tmp = []; - - for ( var i = 0; results[i]; i++ ) { - if ( results[i].nodeType === 1 ) { - tmp.push( results[i] ); - } - } - - results = tmp; - } - - return results; - }; - } - - // Check to see if an attribute returns normalized href attributes - div.innerHTML = ""; - - if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && - div.firstChild.getAttribute("href") !== "#" ) { - - Expr.attrHandle.href = function( elem ) { - return elem.getAttribute( "href", 2 ); - }; - } - - // release memory in IE - div = null; -})(); - -if ( document.querySelectorAll ) { - (function(){ - var oldSizzle = Sizzle, - div = document.createElement("div"), - id = "__sizzle__"; - - div.innerHTML = "

"; - - // Safari can't handle uppercase or unicode characters when - // in quirks mode. - if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { - return; - } - - Sizzle = function( query, context, extra, seed ) { - context = context || document; - - // Only use querySelectorAll on non-XML documents - // (ID selectors don't work in non-HTML documents) - if ( !seed && !Sizzle.isXML(context) ) { - // See if we find a selector to speed up - var match = /^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec( query ); - - if ( match && (context.nodeType === 1 || context.nodeType === 9) ) { - // Speed-up: Sizzle("TAG") - if ( match[1] ) { - return makeArray( context.getElementsByTagName( query ), extra ); - - // Speed-up: Sizzle(".CLASS") - } else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) { - return makeArray( context.getElementsByClassName( match[2] ), extra ); - } - } - - if ( context.nodeType === 9 ) { - // Speed-up: Sizzle("body") - // The body element only exists once, optimize finding it - if ( query === "body" && context.body ) { - return makeArray( [ context.body ], extra ); - - // Speed-up: Sizzle("#ID") - } else if ( match && match[3] ) { - var elem = context.getElementById( match[3] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id === match[3] ) { - return makeArray( [ elem ], extra ); - } - - } else { - return makeArray( [], extra ); - } - } - - try { - return makeArray( context.querySelectorAll(query), extra ); - } catch(qsaError) {} - - // qSA works strangely on Element-rooted queries - // We can work around this by specifying an extra ID on the root - // and working up from there (Thanks to Andrew Dupont for the technique) - // IE 8 doesn't work on object elements - } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { - var old = context.getAttribute( "id" ), - nid = old || id, - hasParent = context.parentNode, - relativeHierarchySelector = /^\s*[+~]/.test( query ); - - if ( !old ) { - context.setAttribute( "id", nid ); - } else { - nid = nid.replace( /'/g, "\\$&" ); - } - if ( relativeHierarchySelector && hasParent ) { - context = context.parentNode; - } - - try { - if ( !relativeHierarchySelector || hasParent ) { - return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra ); - } - - } catch(pseudoError) { - } finally { - if ( !old ) { - context.removeAttribute( "id" ); - } - } - } - } - - return oldSizzle(query, context, extra, seed); - }; - - for ( var prop in oldSizzle ) { - Sizzle[ prop ] = oldSizzle[ prop ]; - } - - // release memory in IE - div = null; - })(); -} - -(function(){ - var html = document.documentElement, - matches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector, - pseudoWorks = false; - - try { - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( document.documentElement, "[test!='']:sizzle" ); - - } catch( pseudoError ) { - pseudoWorks = true; - } - - if ( matches ) { - Sizzle.matchesSelector = function( node, expr ) { - // Make sure that attribute selectors are quoted - expr = expr.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); - - if ( !Sizzle.isXML( node ) ) { - try { - if ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) { - return matches.call( node, expr ); - } - } catch(e) {} - } - - return Sizzle(expr, null, null, [node]).length > 0; - }; - } -})(); - -(function(){ - var div = document.createElement("div"); - - div.innerHTML = "
"; - - // Opera can't find a second classname (in 9.6) - // Also, make sure that getElementsByClassName actually exists - if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { - return; - } - - // Safari caches class attributes, doesn't catch changes (in 3.2) - div.lastChild.className = "e"; - - if ( div.getElementsByClassName("e").length === 1 ) { - return; - } - - Expr.order.splice(1, 0, "CLASS"); - Expr.find.CLASS = function( match, context, isXML ) { - if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { - return context.getElementsByClassName(match[1]); - } - }; - - // release memory in IE - div = null; -})(); - -function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - - if ( elem ) { - var match = false; - - elem = elem[dir]; - - while ( elem ) { - if ( elem.sizcache === doneName ) { - match = checkSet[elem.sizset]; - break; - } - - if ( elem.nodeType === 1 && !isXML ){ - elem.sizcache = doneName; - elem.sizset = i; - } - - if ( elem.nodeName.toLowerCase() === cur ) { - match = elem; - break; - } - - elem = elem[dir]; - } - - checkSet[i] = match; - } - } -} - -function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - - if ( elem ) { - var match = false; - - elem = elem[dir]; - - while ( elem ) { - if ( elem.sizcache === doneName ) { - match = checkSet[elem.sizset]; - break; - } - - if ( elem.nodeType === 1 ) { - if ( !isXML ) { - elem.sizcache = doneName; - elem.sizset = i; - } - - if ( typeof cur !== "string" ) { - if ( elem === cur ) { - match = true; - break; - } - - } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { - match = elem; - break; - } - } - - elem = elem[dir]; - } - - checkSet[i] = match; - } - } -} - -if ( document.documentElement.contains ) { - Sizzle.contains = function( a, b ) { - return a !== b && (a.contains ? a.contains(b) : true); - }; - -} else if ( document.documentElement.compareDocumentPosition ) { - Sizzle.contains = function( a, b ) { - return !!(a.compareDocumentPosition(b) & 16); - }; - -} else { - Sizzle.contains = function() { - return false; - }; -} - -Sizzle.isXML = function( elem ) { - // documentElement is verified for cases where it doesn't yet exist - // (such as loading iframes in IE - #4833) - var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; - - return documentElement ? documentElement.nodeName !== "HTML" : false; -}; - -var posProcess = function( selector, context ) { - var match, - tmpSet = [], - later = "", - root = context.nodeType ? [context] : context; - - // Position selectors must be done after the filter - // And so must :not(positional) so we move all PSEUDOs to the end - while ( (match = Expr.match.PSEUDO.exec( selector )) ) { - later += match[0]; - selector = selector.replace( Expr.match.PSEUDO, "" ); - } - - selector = Expr.relative[selector] ? selector + "*" : selector; - - for ( var i = 0, l = root.length; i < l; i++ ) { - Sizzle( selector, root[i], tmpSet ); - } - - return Sizzle.filter( later, tmpSet ); -}; - -// EXPOSE -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; -jQuery.expr[":"] = jQuery.expr.filters; -jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; - - -})(); - - -var runtil = /Until$/, - rparentsprev = /^(?:parents|prevUntil|prevAll)/, - // Note: This RegExp should be improved, or likely pulled from Sizzle - rmultiselector = /,/, - isSimple = /^.[^:#\[\.,]*$/, - slice = Array.prototype.slice, - POS = jQuery.expr.match.POS, - // methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend({ - find: function( selector ) { - var ret = this.pushStack( "", "find", selector ), - length = 0; - - for ( var i = 0, l = this.length; i < l; i++ ) { - length = ret.length; - jQuery.find( selector, this[i], ret ); - - if ( i > 0 ) { - // Make sure that the results are unique - for ( var n = length; n < ret.length; n++ ) { - for ( var r = 0; r < length; r++ ) { - if ( ret[r] === ret[n] ) { - ret.splice(n--, 1); - break; - } - } - } - } - } - - return ret; - }, - - has: function( target ) { - var targets = jQuery( target ); - return this.filter(function() { - for ( var i = 0, l = targets.length; i < l; i++ ) { - if ( jQuery.contains( this, targets[i] ) ) { - return true; - } - } - }); - }, - - not: function( selector ) { - return this.pushStack( winnow(this, selector, false), "not", selector); - }, - - filter: function( selector ) { - return this.pushStack( winnow(this, selector, true), "filter", selector ); - }, - - is: function( selector ) { - return !!selector && jQuery.filter( selector, this ).length > 0; - }, - - closest: function( selectors, context ) { - var ret = [], i, l, cur = this[0]; - - if ( jQuery.isArray( selectors ) ) { - var match, selector, - matches = {}, - level = 1; - - if ( cur && selectors.length ) { - for ( i = 0, l = selectors.length; i < l; i++ ) { - selector = selectors[i]; - - if ( !matches[selector] ) { - matches[selector] = jQuery.expr.match.POS.test( selector ) ? - jQuery( selector, context || this.context ) : - selector; - } - } - - while ( cur && cur.ownerDocument && cur !== context ) { - for ( selector in matches ) { - match = matches[selector]; - - if ( match.jquery ? match.index(cur) > -1 : jQuery(cur).is(match) ) { - ret.push({ selector: selector, elem: cur, level: level }); - } - } - - cur = cur.parentNode; - level++; - } - } - - return ret; - } - - var pos = POS.test( selectors ) ? - jQuery( selectors, context || this.context ) : null; - - for ( i = 0, l = this.length; i < l; i++ ) { - cur = this[i]; - - while ( cur ) { - if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { - ret.push( cur ); - break; - - } else { - cur = cur.parentNode; - if ( !cur || !cur.ownerDocument || cur === context ) { - break; - } - } - } - } - - ret = ret.length > 1 ? jQuery.unique(ret) : ret; - - return this.pushStack( ret, "closest", selectors ); - }, - - // Determine the position of an element within - // the matched set of elements - index: function( elem ) { - if ( !elem || typeof elem === "string" ) { - return jQuery.inArray( this[0], - // If it receives a string, the selector is used - // If it receives nothing, the siblings are used - elem ? jQuery( elem ) : this.parent().children() ); - } - // Locate the position of the desired element - return jQuery.inArray( - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[0] : elem, this ); - }, - - add: function( selector, context ) { - var set = typeof selector === "string" ? - jQuery( selector, context ) : - jQuery.makeArray( selector ), - all = jQuery.merge( this.get(), set ); - - return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? - all : - jQuery.unique( all ) ); - }, - - andSelf: function() { - return this.add( this.prevObject ); - } -}); - -// A painfully simple check to see if an element is disconnected -// from a document (should be improved, where feasible). -function isDisconnected( node ) { - return !node || !node.parentNode || node.parentNode.nodeType === 11; -} - -jQuery.each({ - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return jQuery.dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return jQuery.dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return jQuery.nth( elem, 2, "nextSibling" ); - }, - prev: function( elem ) { - return jQuery.nth( elem, 2, "previousSibling" ); - }, - nextAll: function( elem ) { - return jQuery.dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return jQuery.dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return jQuery.dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return jQuery.dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return jQuery.sibling( elem.parentNode.firstChild, elem ); - }, - children: function( elem ) { - return jQuery.sibling( elem.firstChild ); - }, - contents: function( elem ) { - return jQuery.nodeName( elem, "iframe" ) ? - elem.contentDocument || elem.contentWindow.document : - jQuery.makeArray( elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var ret = jQuery.map( this, fn, until ), - // The variable 'args' was introduced in - // https://github.com/jquery/jquery/commit/52a0238 - // to work around a bug in Chrome 10 (Dev) and should be removed when the bug is fixed. - // http://code.google.com/p/v8/issues/detail?id=1050 - args = slice.call(arguments); - - if ( !runtil.test( name ) ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - ret = jQuery.filter( selector, ret ); - } - - ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; - - if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { - ret = ret.reverse(); - } - - return this.pushStack( ret, name, args.join(",") ); - }; -}); - -jQuery.extend({ - filter: function( expr, elems, not ) { - if ( not ) { - expr = ":not(" + expr + ")"; - } - - return elems.length === 1 ? - jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : - jQuery.find.matches(expr, elems); - }, - - dir: function( elem, dir, until ) { - var matched = [], - cur = elem[ dir ]; - - while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { - if ( cur.nodeType === 1 ) { - matched.push( cur ); - } - cur = cur[dir]; - } - return matched; - }, - - nth: function( cur, result, dir, elem ) { - result = result || 1; - var num = 0; - - for ( ; cur; cur = cur[dir] ) { - if ( cur.nodeType === 1 && ++num === result ) { - break; - } - } - - return cur; - }, - - sibling: function( n, elem ) { - var r = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - r.push( n ); - } - } - - return r; - } -}); - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, keep ) { - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep(elements, function( elem, i ) { - var retVal = !!qualifier.call( elem, i, elem ); - return retVal === keep; - }); - - } else if ( qualifier.nodeType ) { - return jQuery.grep(elements, function( elem, i ) { - return (elem === qualifier) === keep; - }); - - } else if ( typeof qualifier === "string" ) { - var filtered = jQuery.grep(elements, function( elem ) { - return elem.nodeType === 1; - }); - - if ( isSimple.test( qualifier ) ) { - return jQuery.filter(qualifier, filtered, !keep); - } else { - qualifier = jQuery.filter( qualifier, filtered ); - } - } - - return jQuery.grep(elements, function( elem, i ) { - return (jQuery.inArray( elem, qualifier ) >= 0) === keep; - }); -} - - - - -var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, - rleadingWhitespace = /^\s+/, - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig, - rtagName = /<([\w:]+)/, - rtbody = /", "" ], - legend: [ 1, "
", "
" ], - thead: [ 1, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - col: [ 2, "", "
" ], - area: [ 1, "", "" ], - _default: [ 0, "", "" ] - }; - -wrapMap.optgroup = wrapMap.option; -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// IE can't serialize and - + @@ -44,204 +49,511 @@
-

Index

+

Index

-
- A | B | C | E | G | I | L | M | N | P | R | S | T | V -
+
+ A + | B + | C + | E + | G + | I + | L + | M + | N + | P + | R + | S + | T + | V + +

A

- - - +
-
Ability (mapped class)
-
AbilityChangelog (mapped class)
-
-
AbilityFlavorText (mapped class)
-
+ +
+ +
Ability (mapped class) +
+ + +
AbilityChangelog (mapped class) +
+ +
+ +
AbilityFlavorText (mapped class) +
+ + +
appears_underground (pokedex.db.tables.Item attribute) +
+ +

B

- - - +
-
Berry (mapped class)
-
BerryFirmness (mapped class)
-
-
BerryFlavor (mapped class)
-
+ +
+ +
Berry (mapped class) +
+ + +
BerryFirmness (mapped class) +
+ +
+ +
BerryFlavor (mapped class) +
+ + +
better_damage_class (pokedex.db.tables.Pokemon attribute) +
+ +

C

- - - +
-
ContestCombo (mapped class)
-
ContestEffect (mapped class)
-
-
ContestType (mapped class)
-
+ +
+ +
connect() (in module pokedex.db) +
+ + +
ContestCombo (mapped class) +
+ +
+ +
ContestEffect (mapped class) +
+ + +
ContestType (mapped class) +
+ +

E

- - - +
-
EggGroup (mapped class)
-
Encounter (mapped class)
-
EncounterCondition (mapped class)
-
EncounterConditionValue (mapped class)
-
EncounterConditionValueMap (mapped class)
-
-
EncounterMethod (mapped class)
-
EncounterSlot (mapped class)
-
EvolutionChain (mapped class)
-
EvolutionTrigger (mapped class)
-
Experience (mapped class)
-
+ +
+ +
EggGroup (mapped class) +
+ + +
Encounter (mapped class) +
+ + +
EncounterCondition (mapped class) +
+ + +
EncounterConditionValue (mapped class) +
+ + +
EncounterConditionValueMap (mapped class) +
+ +
+ +
EncounterMethod (mapped class) +
+ + +
EncounterSlot (mapped class) +
+ + +
EvolutionChain (mapped class) +
+ + +
EvolutionTrigger (mapped class) +
+ + +
Experience (mapped class) +
+ +

G

- - - +
-
Generation (mapped class)
-
-
GrowthRate (mapped class)
-
+ +
+ +
Generation (mapped class) +
+ + +
get() (in module pokedex.db.util) +
+ +
+ +
GrowthRate (mapped class) +
+ +

I

- - - +
-
Item (mapped class)
-
ItemCategory (mapped class)
-
ItemFlag (mapped class)
-
ItemFlagMap (mapped class)
-
-
ItemFlavorText (mapped class)
-
ItemFlingEffect (mapped class)
-
ItemGameIndex (mapped class)
-
ItemPocket (mapped class)
-
+ +
+ +
is_hm (pokedex.db.tables.Machine attribute) +
+ + +
is_neutral (pokedex.db.tables.Nature attribute) +
+ + +
Item (mapped class) +
+ + +
ItemCategory (mapped class) +
+ + +
ItemFlag (mapped class) +
+ +
+ +
ItemFlagMap (mapped class) +
+ + +
ItemFlavorText (mapped class) +
+ + +
ItemFlingEffect (mapped class) +
+ + +
ItemGameIndex (mapped class) +
+ + +
ItemPocket (mapped class) +
+ +

L

- - - +
-
Language (mapped class)
-
Location (mapped class)
-
LocationArea (mapped class)
-
-
LocationAreaEncounterRate (mapped class)
-
LocationGameIndex (mapped class)
-
+ +
+ +
Language (mapped class) +
+ + +
Location (mapped class) +
+ + +
LocationArea (mapped class) +
+ +
+ +
LocationAreaEncounterRate (mapped class) +
+ + +
LocationGameIndex (mapped class) +
+ +

M

- - - +
-
Machine (mapped class)
-
mapped_classes (in module pokedex.db.tables)
-
metadata (in module pokedex.db.tables)
-
Move (mapped class)
-
MoveBattleStyle (mapped class)
-
MoveDamageClass (mapped class)
-
MoveEffect (mapped class)
-
MoveEffectChangelog (mapped class)
-
MoveFlag (mapped class)
-
-
MoveFlagMap (mapped class)
-
MoveFlavorText (mapped class)
-
MoveMeta (mapped class)
-
MoveMetaAilment (mapped class)
-
MoveMetaCategory (mapped class)
-
MoveMetaStatChange (mapped class)
-
MoveTarget (mapped class)
-
MoveVersion (mapped class)
-
+ +
+ +
Machine (mapped class) +
+ + +
mapped_classes (in module pokedex.db.tables) +
+ + +
metadata (in module pokedex.db.tables) +
+ + +
Move (mapped class) +
+ + +
MoveBattleStyle (mapped class) +
+ + +
MoveChangelog (mapped class) +
+ + +
MoveDamageClass (mapped class) +
+ + +
MoveEffect (mapped class) +
+ + +
MoveEffectChangelog (mapped class) +
+ +
+ +
MoveFlag (mapped class) +
+ + +
MoveFlagMap (mapped class) +
+ + +
MoveFlavorText (mapped class) +
+ + +
MoveMeta (mapped class) +
+ + +
MoveMetaAilment (mapped class) +
+ + +
MoveMetaCategory (mapped class) +
+ + +
MoveMetaStatChange (mapped class) +
+ + +
MoveTarget (mapped class) +
+ +

N

- - - +
-
Nature (mapped class)
-
NatureBattleStylePreference (mapped class)
-
-
NaturePokeathlonStat (mapped class)
-
+ +
+ +
name (pokedex.db.tables.Pokemon attribute) +
+ +
+ +
(pokedex.db.tables.PokemonForm attribute) +
+ +
+ +
Nature (mapped class) +
+ +
+ +
NatureBattleStylePreference (mapped class) +
+ + +
NaturePokeathlonStat (mapped class) +
+ +

P

- - - +
-
PokeathlonStat (mapped class)
-
Pokedex (mapped class)
-
pokedex.db.tables (module)
-
Pokemon (mapped class)
-
PokemonAbility (mapped class)
-
PokemonColor (mapped class)
-
PokemonDexNumber (mapped class)
-
PokemonEggGroup (mapped class)
-
PokemonEvolution (mapped class)
-
PokemonForm (mapped class)
-
PokemonFormPokeathlonStat (mapped class)
-
-
PokemonGameIndex (mapped class)
-
PokemonHabitat (mapped class)
-
PokemonItem (mapped class)
-
PokemonMove (mapped class)
-
PokemonMoveMethod (mapped class)
-
PokemonShape (mapped class)
-
PokemonSpecies (mapped class)
-
PokemonSpeciesFlavorText (mapped class)
-
PokemonStat (mapped class)
-
PokemonType (mapped class)
-
+ +
+ +
PokeathlonStat (mapped class) +
+ + +
Pokedex (mapped class) +
+ + +
pokedex.db.tables (module) +
+ + +
Pokemon (mapped class) +
+ + +
PokemonAbility (mapped class) +
+ + +
PokemonColor (mapped class) +
+ + +
PokemonDexNumber (mapped class) +
+ + +
PokemonEggGroup (mapped class) +
+ + +
PokemonEvolution (mapped class) +
+ + +
PokemonForm (mapped class) +
+ + +
PokemonFormPokeathlonStat (mapped class) +
+ +
+ +
PokemonGameIndex (mapped class) +
+ + +
PokemonHabitat (mapped class) +
+ + +
PokemonItem (mapped class) +
+ + +
PokemonMove (mapped class) +
+ + +
PokemonMoveMethod (mapped class) +
+ + +
PokemonShape (mapped class) +
+ + +
PokemonSpecies (mapped class) +
+ + +
PokemonSpeciesFlavorText (mapped class) +
+ + +
PokemonStat (mapped class) +
+ + +
PokemonType (mapped class) +
+ +

R

- - +
-
Region (mapped class)
-
+
+ +
Region (mapped class) +
+ +

S

- - - +
-
Stat (mapped class)
-
StatHint (mapped class)
-
-
SuperContestCombo (mapped class)
-
SuperContestEffect (mapped class)
-
+ +
+ +
Stat (mapped class) +
+ + +
stat() (pokedex.db.tables.Pokemon method) +
+ + +
StatHint (mapped class) +
+ +
+ +
SuperContestCombo (mapped class) +
+ + +
SuperContestEffect (mapped class) +
+ +

T

- - - +
-
Type (mapped class)
-
-
TypeEfficacy (mapped class)
-
+ +
+ +
Type (mapped class) +
+ +
+ +
TypeEfficacy (mapped class) +
+ +

V

- - - +
-
Version (mapped class)
-
VersionGroup (mapped class)
-
-
VersionGroupRegion (mapped class)
-
+ +
+ +
Version (mapped class) +
+ + +
VersionGroup (mapped class) +
+ +
+ +
VersionGroupRegion (mapped class) +
+ +
@@ -257,7 +569,7 @@ \ No newline at end of file diff --git a/index.html b/index.html index dabf236..cd35a03 100644 --- a/index.html +++ b/index.html @@ -3,13 +3,16 @@ + - The pokedex documentation — pokedex v0.1 documentation + The pokedex documentation — pokedex 0.1 documentation + + - + @@ -38,7 +41,7 @@
  • next |
  • -
  • pokedex v0.1 documentation »
  • +
  • pokedex 0.1 documentation »
  • @@ -63,6 +66,10 @@
  • Using pokedex
  • The database schema \ No newline at end of file diff --git a/installing.html b/installing.html index e877dee..ea690f4 100644 --- a/installing.html +++ b/installing.html @@ -3,13 +3,16 @@ + - Installing the pokedex library — pokedex v0.1 documentation + Installing the pokedex library — pokedex 0.1 documentation + + - + @@ -42,7 +45,7 @@
  • previous |
  • -
  • pokedex v0.1 documentation »
  • +
  • pokedex 0.1 documentation »
  • @@ -57,7 +60,7 @@

    Quick startup with Ubuntu/Debian-like systems

    Run the following from an empty directory:

    \ No newline at end of file diff --git a/main-tables.html b/main-tables.html index a0f8171..f18780a 100644 --- a/main-tables.html +++ b/main-tables.html @@ -3,13 +3,16 @@ + - The pokédex tables — pokedex v0.1 documentation + The pokédex tables — pokedex 0.1 documentation + + - + @@ -39,7 +42,7 @@
  • previous |
  • -
  • pokedex v0.1 documentation »
  • +
  • pokedex 0.1 documentation »
  • The database schema »
  • @@ -51,40 +54,33 @@

    The pokédex tables

    -

    All the tables listed here are classes defined with SQLAlchemy’s -sqlalchemy.ext.declarative extension.

    -
    -
    -pokedex.db.tables.metadata
    -

    The SQLAlchemy sqlalchemy.schema.MetaData containing all the -tables.

    -
    - +

    The pokedex.db.tables module defines all of the tables in the Pokédex. +They are all defined with SQLAlchemy’s +declarative extension.

    +

    To introspect the tables programmatically, you can use the following:

    pokedex.db.tables.mapped_classes

    A list of all the classes you see below.

    -

    Each of these classes has a translation_classes attribute: a potentially +

    +
    +pokedex.db.tables.metadata
    +

    The SQLAlchemy MetaData containing all the +tables.

    +
    + +

    Each of the classes has a translation_classes attribute: a potentially empty list of translation classes. See pokedex.db.multilang for how these work.

    Many tables have these columns:

    -
      -
    • -
      id: An integer primary key. Sometimes it’s semantically meaningful, most
      -

      often it isn’t.

      -
      -
      -
    • -
    • -
      identifier: A string identifier of the class, and the preferred way to
      -

      access individual items.

      -
      -
      -
    • -
    • name: A name (uses the multilang functionality)

      -
    • +
        +
      • id: An integer primary key. Sometimes it’s semantically meaningful, most +often it isn’t.
      • +
      • identifier: A string identifier of the class, and the preferred way to +access individual items.
      • +
      • name: A name (uses the multilang functionality)

      Pokémon

      @@ -98,57 +94,96 @@ these work.

      (single: pokemon_species)

      Has id, identifier, and name via pokemon_species_names.

      -

      PokemonSpecies.generation_id (→ Generation.id):

      +

      Columns:

      +

      PokemonSpecies.generation (generation_id → Generation.id)

      -ID of the generation this species first appeared in
      +
      ID of the generation this species first appeared in

      PokemonSpecies.evolves_from_species_id (→ PokemonSpecies.id):

      -The species from which this one evolves
      -

      PokemonSpecies.evolution_chain_id (→ EvolutionChain.id):

      +
      The species from which this one evolves
      +

      PokemonSpecies.evolution_chain (evolution_chain_id → EvolutionChain.id)

      -ID of the species’ evolution chain (a.k.a. family)
      -

      PokemonSpecies.color_id (→ PokemonColor.id):

      +
      ID of the species’ evolution chain (a.k.a. family)
      +

      PokemonSpecies.color (color_id → PokemonColor.id)

      -ID of this Pokémon’s Pokédex color, as used for a gimmick search function in the games.
      -

      PokemonSpecies.shape_id (→ PokemonShape.id):

      +
      ID of this Pokémon’s Pokédex color, as used for a gimmick search function in the games.
      +

      PokemonSpecies.shape (shape_id → PokemonShape.id)

      -ID of this Pokémon’s body shape, as used for a gimmick search function in the games.
      -

      PokemonSpecies.habitat_id (→ PokemonHabitat.id):

      +
      ID of this Pokémon’s body shape, as used for a gimmick search function in the games.
      +

      PokemonSpecies.habitat (habitat_id → PokemonHabitat.id)

      -ID of this Pokémon’s habitat, as used for a gimmick search function in the games.
      +
      ID of this Pokémon’s habitat, as used for a gimmick search function in the games.

      PokemonSpecies.gender_rate (int):

      -The chance of this Pokémon being female, in eighths; or -1 for genderless
      +
      The chance of this Pokémon being female, in eighths; or -1 for genderless

      PokemonSpecies.capture_rate (int):

      -The base capture rate; up to 255
      +
      The base capture rate; up to 255

      PokemonSpecies.base_happiness (int):

      -The tameness when caught by a normal ball
      +
      The tameness when caught by a normal ball

      PokemonSpecies.is_baby (bool):

      -True iff the Pokémon is a baby, i.e. a lowest-stage Pokémon that cannot breed but whose evolved form can.
      +
      True iff the Pokémon is a baby, i.e. a lowest-stage Pokémon that cannot breed but whose evolved form can.

      PokemonSpecies.hatch_counter (int):

      -Initial hatch counter: one must walk 255 × (hatch_counter + 1) steps before this Pokémon’s egg hatches, unless utilizing bonuses like Flame Body’s
      +
      Initial hatch counter: one must walk 255 × (hatch_counter + 1) steps before this Pokémon’s egg hatches, unless utilizing bonuses like Flame Body’s

      PokemonSpecies.has_gender_differences (bool):

      -Set iff the species exhibits enough sexual dimorphism to have separate sets of sprites in Gen IV and beyond.
      -

      PokemonSpecies.growth_rate_id (→ GrowthRate.id):

      +
      Set iff the species exhibits enough sexual dimorphism to have separate sets of sprites in Gen IV and beyond.
      +

      PokemonSpecies.growth_rate (growth_rate_id → GrowthRate.id)

      -ID of the growth rate for this family
      +
      ID of the growth rate for this family

      PokemonSpecies.forms_switchable (bool):

      -True iff a particular individual of this species can switch beween its different forms.
      -

      PokemonSpecies.genus (unicode – plaintext) via pokemon_species_names:

      +
      True iff a particular individual of this species can switch beween its different forms.
      +

      Internationalized strings:

      +

      PokemonSpecies.genus (unicode – plaintext) via pokemon_species_names

      -The short flavor text, such as “Seed” or “Lizard”; usually affixed with the word “Pokémon”
      -

      PokemonSpecies.flavor_summary (unicode – plaintext) via pokemon_species_flavor_summaries:

      +
      The short flavor text, such as “Seed” or “Lizard”; usually affixed with the word “Pokémon”
      +

      PokemonSpecies.flavor_summary (unicode – plaintext) via pokemon_species_flavor_summaries

      -Text containing facts from all flavor texts, for languages without official game translations
      -

      PokemonSpecies.form_description (unicode – markdown) via pokemon_species_prose:

      +
      Text containing facts from all flavor texts, for languages without official game translations
      +

      PokemonSpecies.form_description (unicode – markdown) via pokemon_species_prose

      -Description of how the forms work
      +
      Description of how the forms work
      +

      Relationships:

      +

      PokemonSpecies.parent_species +(→ [PokemonSpecies])

      +
      +
      The species from which this one evolves
      +

      PokemonSpecies.evolutions +(→ [PokemonEvolution])

      +

      PokemonSpecies.flavor_text +(→ [PokemonSpeciesFlavorText])

      +
      +
      Ordered by: pokemon_species_flavor_text.version_id ASC
      +

      PokemonSpecies.egg_groups +(→ [EggGroup])

      +
      +
      Ordered by: pokemon_egg_groups.egg_group_id ASC
      +

      PokemonSpecies.forms +(→ [PokemonForm])

      +
      +
      Ordered by: pokemon_forms."order" ASC, pokemon_forms.form_identifier ASC
      +

      PokemonSpecies.default_form +(→ PokemonForm)

      +
      +
      A representative form of this species
      +

      PokemonSpecies.default_pokemon +(→ Pokemon)

      +

      PokemonSpecies.dex_numbers +(→ [PokemonDexNumber])

      +
      +
      Ordered by: pokemon_dex_numbers.pokedex_id ASC
      +

      PokemonSpecies.child_species +(→ [PokemonSpecies])

      +
      +
      The species to which this one evolves
      +

      PokemonSpecies.pokemon +(→ [Pokemon])

      +

      PokemonSpecies.triggered_evolutions +(→ [PokemonEvolution])

      @@ -157,34 +192,99 @@ Description of how the forms work
      pokedex.db.tables.Pokemon
      -

      A Pokémon. The core to this whole mess. - - This table defines “Pokémon” the same way the games do: a form with - different types, moves, or other game-changing properties counts as a - different Pokémon. For example, this table contains four rows for Deoxys, - but only one for Unown.

      +

      A Pokémon. The core to this whole mess.

      +

      This table defines “Pokémon” the same way the games do: a form with +different types, moves, or other game-changing properties counts as a +different Pokémon. For example, this table contains four rows for Deoxys, +but only one for Unown.

      Table name: pokemon (single: pokemon)

      Has id.

      -

      Pokemon.species_id (→ PokemonSpecies.id):

      +

      Columns:

      +

      Pokemon.species (species_id → PokemonSpecies.id)

      -ID of the species this Pokémon belongs to
      +
      ID of the species this Pokémon belongs to

      Pokemon.height (int):

      -The height of the Pokémon, in decimeters (tenths of a meter)
      +
      The height of the Pokémon, in decimeters (tenths of a meter)

      Pokemon.weight (int):

      -The weight of the Pokémon, in tenths of a kilogram (decigrams)
      +
      The weight of the Pokémon, in tenths of a kilogram (decigrams)

      Pokemon.base_experience (int):

      -The base EXP gained when defeating this Pokémon
      +
      The base EXP gained when defeating this Pokémon

      Pokemon.order (int):

      -Order for sorting. Almost national order, except families are grouped together.
      +
      Order for sorting. Almost national order, except families are grouped together.

      Pokemon.is_default (bool):

      -Set for exactly one pokemon used as the default for each species.
      +
      Set for exactly one pokemon used as the default for each species.
      +

      Relationships:

      +

      Pokemon.all_abilities +(→ [Ability])

      +
      +

      All abilities the Pokémon can have, including the Hidden Ability

      +

      Ordered by: pokemon_abilities.slot ASC

      +
      +

      Pokemon.abilities +(→ [Ability])

      +
      +

      Abilities the Pokémon can have in the wild

      +

      Ordered by: pokemon_abilities.slot ASC

      +
      +

      Pokemon.dream_ability +(→ Ability)

      +
      +
      The Pokémon’s Hidden Ability
      +

      Pokemon.forms +(→ [PokemonForm])

      +
      +
      Ordered by: pokemon_forms."order" ASC, pokemon_forms.form_identifier ASC
      +

      Pokemon.default_form +(→ PokemonForm)

      +
      +
      A representative form of this pokémon
      +

      Pokemon.items +(→ [PokemonItem])

      +
      +
      Info about items this pokémon holds in the wild
      +

      Pokemon.stats +(→ [PokemonStat])

      +
      +
      Ordered by: pokemon_stats.stat_id ASC
      +

      Pokemon.types +(→ [Type])

      +
      +
      Ordered by: pokemon_types.slot ASC
      +

      Pokemon.encounters +(→ [Encounter])

      +

      Pokemon.pokemon_moves +(→ [PokemonMove])

      +
      +
      +better_damage_class
      +

      Returns the MoveDamageClass that this Pokémon is best suited for, +based on its attack stats.

      +

      If the attack stats are about equal (within 5), returns None. The +value None, not the damage class called ‘None’.

      +
      + +
      +
      +name
      +

      Returns a name for this Pokémon, specifiying the form iff it +represents a specific PokemonForm.

      +
      + +
      +
      +stat(stat_identifier)
      +

      Returns a PokemonStat record for the given stat name (or Stat row +object). Uses the normal has-many machinery, so all the stats are +effectively cached.

      +
      +
    @@ -194,37 +294,54 @@ Set for exactly one pokemon used as the default for each species.
    pokedex.db.tables.PokemonForm

    An individual form of a Pokémon. This includes every variant (except - color differences) of every Pokémon, regardless of how the games treat - them. Even Pokémon with no alternate forms have one row in this table, to - represent their lone “normal” form.

    +color differences) of every Pokémon, regardless of how the games treat +them. Even Pokémon with no alternate forms have one row in this table, to +represent their lone “normal” form.

    Table name: pokemon_forms (single: pokemon_form)

    Has id.

    +

    Columns:

    PokemonForm.form_identifier (unicode – identifier):

    -An identifier of the form, uniue among a species. May be None for the default form of the species.
    -

    PokemonForm.pokemon_id (→ Pokemon.id):

    +
    An identifier of the form, uniue among a species. May be None for the default form of the species.
    +

    PokemonForm.pokemon (pokemon_id → Pokemon.id)

    -The ID of the base Pokémon for this form.
    +
    The ID of the base Pokémon for this form.

    PokemonForm.introduced_in_version_group_id (→ VersionGroup.id):

    -The ID of the version group in which this form first appeared.
    +
    The ID of the version group in which this form first appeared.

    PokemonForm.is_default (bool):

    -Set for exactly one form used as the default for each pokemon (not necessarily species).
    +
    Set for exactly one form used as the default for each pokemon (not necessarily species).

    PokemonForm.is_battle_only (bool):

    -Set iff the form can only appear in battle.
    +
    Set iff the form can only appear in battle.

    PokemonForm.order (int):

    -The order in which forms should be sorted. Multiple forms may have equal order, in which case they should fall back on sorting by name.
    -

    PokemonForm.form_name (unicode – plaintext) via pokemon_form_names:

    +
    The order in which forms should be sorted. Multiple forms may have equal order, in which case they should fall back on sorting by name.
    +

    Internationalized strings:

    +

    PokemonForm.form_name (unicode – plaintext) via pokemon_form_names

    -The full form name, e.g. ‘Sky Forme’, for pokémon with different forms
    -

    PokemonForm.pokemon_name (unicode – plaintext) via pokemon_form_names:

    +
    The full form name, e.g. ‘Sky Forme’, for pokémon with different forms
    +

    PokemonForm.pokemon_name (unicode – plaintext) via pokemon_form_names

    -The full pokémon name, e.g. ‘Sky Shaymin’, for pokémon with different forms
    +
    The full pokémon name, e.g. ‘Sky Shaymin’, for pokémon with different forms
    +

    Relationships:

    +

    PokemonForm.species: +species of self.pokemon

    +

    PokemonForm.version_group +(→ [VersionGroup])

    +

    PokemonForm.pokeathlon_stats +(→ [PokemonFormPokeathlonStat])

    +
    +
    Ordered by: PokemonFormPokeathlonStat.pokeathlon_stat_id
    +
    +
    +name
    +

    Name of this form: the form_name, if set; otherwise the species name

    +
    +
    @@ -237,9 +354,13 @@ The full pokémon name, e.g. ‘Sky Shaymin’, for pokémon with differ

    Table name: evolution_chains

    Has id.

    -

    EvolutionChain.baby_trigger_item_id (→ Item.id):

    +

    Columns:

    +

    EvolutionChain.baby_trigger_item (baby_trigger_item_id → Item.id)

    -Item that a parent must hold while breeding to produce a baby
    +
    Item that a parent must hold while breeding to produce a baby
    +

    Relationships:

    +

    EvolutionChain.species +(→ [PokemonSpecies])

    @@ -249,54 +370,57 @@ Item that a parent must hold while breeding to produce a baby
    pokedex.db.tables.PokemonEvolution

    A required action (“trigger”) and the conditions under which the trigger - must occur to cause a Pokémon to evolve. - - Any condition may be null if it does not apply for a particular Pokémon.

    +must occur to cause a Pokémon to evolve.

    +

    Any condition may be null if it does not apply for a particular Pokémon.

    Table name: pokemon_evolution

    Has id.

    -

    PokemonEvolution.evolved_species_id (→ PokemonSpecies.id):

    +

    Columns:

    +

    PokemonEvolution.evolved_species (evolved_species_id → PokemonSpecies.id)

    -The ID of the post-evolution species.
    +
    The ID of the post-evolution species.

    PokemonEvolution.evolution_trigger_id (→ EvolutionTrigger.id):

    -The ID of the evolution trigger.
    -

    PokemonEvolution.trigger_item_id (→ Item.id):

    +
    The ID of the evolution trigger.
    +

    PokemonEvolution.trigger_item (trigger_item_id → Item.id)

    -The ID of the item that must be used on the Pokémon.
    +
    The ID of the item that must be used on the Pokémon.

    PokemonEvolution.minimum_level (int):

    -The minimum level for the Pokémon.
    +
    The minimum level for the Pokémon.

    PokemonEvolution.gender (enum: [male, female]):

    -The Pokémon’s required gender, or None if gender doesn’t matter
    -

    PokemonEvolution.location_id (→ Location.id):

    +
    The Pokémon’s required gender, or None if gender doesn’t matter
    +

    PokemonEvolution.location (location_id → Location.id)

    -The ID of the location the evolution must be triggered at.
    -

    PokemonEvolution.held_item_id (→ Item.id):

    +
    The ID of the location the evolution must be triggered at.
    +

    PokemonEvolution.held_item (held_item_id → Item.id)

    -The ID of the item the Pokémon must hold.
    +
    The ID of the item the Pokémon must hold.

    PokemonEvolution.time_of_day (enum: [day, night]):

    -The required time of day.
    -

    PokemonEvolution.known_move_id (→ Move.id):

    +
    The required time of day.
    +

    PokemonEvolution.known_move (known_move_id → Move.id)

    -The ID of the move the Pokémon must know.
    +
    The ID of the move the Pokémon must know.

    PokemonEvolution.minimum_happiness (int):

    -The minimum happiness value the Pokémon must have.
    +
    The minimum happiness value the Pokémon must have.

    PokemonEvolution.minimum_beauty (int):

    -The minimum Beauty value the Pokémon must have.
    +
    The minimum Beauty value the Pokémon must have.

    PokemonEvolution.relative_physical_stats (int):

    -The required relation between the Pokémon’s Attack and Defense stats, as sgn(atk-def).
    -

    PokemonEvolution.party_species_id (→ PokemonSpecies.id):

    +
    The required relation between the Pokémon’s Attack and Defense stats, as sgn(atk-def).
    +

    PokemonEvolution.party_species (party_species_id → PokemonSpecies.id)

    -The ID of the species that must be present in the party.
    -

    PokemonEvolution.trade_species_id (→ PokemonSpecies.id):

    +
    The ID of the species that must be present in the party.
    +

    PokemonEvolution.trade_species (trade_species_id → PokemonSpecies.id)

    -The ID of the species for which this one must be traded.
    +
    The ID of the species for which this one must be traded.
    +

    Relationships:

    +

    PokemonEvolution.trigger +(→ [EvolutionTrigger])

    @@ -313,30 +437,75 @@ The ID of the species for which this one must be traded. (single: move)

    Has id, identifier, and name via move_names.

    -

    Move.generation_id (→ Generation.id):

    +

    Columns:

    +

    Move.generation (generation_id → Generation.id)

    -ID of the generation this move first appeared in
    +
    ID of the generation this move first appeared in
    +

    Move.type (type_id → Type.id)

    +
    +
    ID of the move’s elemental type
    +

    Move.power (int):

    +
    +
    Base power of the move
    +

    Move.pp (int):

    +
    +
    Base PP (Power Points) of the move, nullable if not applicable (e.g. Struggle and Shadow moves).
    +

    Move.accuracy (int):

    +
    +
    Accuracy of the move; NULL means it never misses

    Move.priority (int):

    -The move’s priority bracket
    -

    Move.target_id (→ MoveTarget.id):

    +
    The move’s priority bracket
    +

    Move.target (target_id → MoveTarget.id)

    -ID of the target (range) of the move
    -

    Move.damage_class_id (→ MoveDamageClass.id):

    +
    ID of the target (range) of the move
    +

    Move.damage_class (damage_class_id → MoveDamageClass.id)

    -ID of the damage class (physical/special) of the move
    -

    Move.contest_type_id (→ ContestType.id):

    +
    ID of the damage class (physical/special) of the move
    +

    Move.effect (effect_id → MoveEffect.id)

    -ID of the move’s Contest type (e.g. cool or smart)
    -

    Move.contest_effect_id (→ ContestEffect.id):

    +
    ID of the move’s effect
    +

    Move.effect_chance (int):

    -ID of the move’s Contest effect
    -

    Move.super_contest_effect_id (→ SuperContestEffect.id):

    +
    The chance for a secondary effect. What this is a chance of is specified by the move’s effect.
    +

    Move.contest_type (contest_type_id → ContestType.id)

    -ID of the move’s Super Contest effect
    -

    Move.flavor_summary (unicode – plaintext) via move_flavor_summaries:

    +
    ID of the move’s Contest type (e.g. cool or smart)
    +

    Move.contest_effect (contest_effect_id → ContestEffect.id)

    -Text containing facts from all flavor texts, for languages without official game translations
    +
    ID of the move’s Contest effect
    +

    Move.super_contest_effect (super_contest_effect_id → SuperContestEffect.id)

    +
    +
    ID of the move’s Super Contest effect
    +

    Internationalized strings:

    +

    Move.flavor_summary (unicode – plaintext) via move_flavor_summaries

    +
    +
    Text containing facts from all flavor texts, for languages without official game translations
    +

    Relationships:

    +

    Move.pokemon_moves +(→ [PokemonMove])

    +

    Move.triggered_evolutions +(→ [PokemonEvolution])

    +

    Undocumented:

    +

    Move.changelog

    +

    Move.contest_combo_first

    +

    Move.contest_combo_next

    +

    Move.contest_combo_prev

    +

    Move.contest_combo_second

    +

    Move.effect_map

    +

    Move.flags

    +

    Move.flavor_text

    +

    Move.machines

    +

    Move.meta

    +

    Move.meta_stat_changes

    +

    Move.move_effect

    +

    Move.move_flags

    +

    Move.short_effect

    +

    Move.short_effect_map

    +

    Move.super_contest_combo_first

    +

    Move.super_contest_combo_next

    +

    Move.super_contest_combo_prev

    +

    Move.super_contest_combo_second

    @@ -350,12 +519,17 @@ Text containing facts from all flavor texts, for languages without official game (single: move_effect)

    Has id.

    -

    MoveEffect.short_effect (unicode – markdown) via move_effect_prose:

    +

    Internationalized strings:

    +

    MoveEffect.short_effect (unicode – markdown) via move_effect_prose

    -A short summary of the effect
    -

    MoveEffect.effect (unicode – markdown) via move_effect_prose:

    +
    A short summary of the effect
    +

    MoveEffect.effect (unicode – markdown) via move_effect_prose

    -A detailed description of the effect
    +
    A detailed description of the effect
    +

    Undocumented:

    +

    MoveEffect.changelog

    +

    MoveEffect.move_changelog

    +

    MoveEffect.moves

    @@ -366,79 +540,49 @@ A detailed description of the effect pokedex.db.tables.MoveMeta

    Metadata for move effects, sorta-kinda ripped straight from the game

    Table name: move_meta

    -

    MoveMeta.move_id (→ Move.id):

    +

    Columns:

    +

    MoveMeta.move (move_id → Move.id)

    -A numeric ID
    +
    A numeric ID

    MoveMeta.meta_category_id (→ MoveMetaCategory.id):

    -ID of the move category
    +
    ID of the move category

    MoveMeta.meta_ailment_id (→ MoveMetaAilment.id):

    -ID of the caused ailment
    +
    ID of the caused ailment

    MoveMeta.min_hits (int):

    -Minimum number of hits per use
    +
    Minimum number of hits per use

    MoveMeta.max_hits (int):

    -Maximum number of hits per use
    +
    Maximum number of hits per use

    MoveMeta.min_turns (int):

    -Minimum number of turns the user is forced to use the move
    +
    Minimum number of turns the user is forced to use the move

    MoveMeta.max_turns (int):

    -Maximum number of turns the user is forced to use the move
    +
    Maximum number of turns the user is forced to use the move

    MoveMeta.recoil (int):

    -Recoil damage, in percent of damage done
    +
    Recoil damage, in percent of damage done

    MoveMeta.healing (int):

    -Healing, in percent of user’s max HP
    +
    Healing, in percent of user’s max HP

    MoveMeta.crit_rate (int):

    -Critical hit rate bonus
    +
    Critical hit rate bonus

    MoveMeta.ailment_chance (int):

    -Chance to cause an ailment, in percent
    +
    Chance to cause an ailment, in percent

    MoveMeta.flinch_chance (int):

    -Chance to cause flinching, in percent
    +
    Chance to cause flinching, in percent

    MoveMeta.stat_chance (int):

    -Chance to cause a stat change, in percent
    -
    - - -
    -

    MoveVersion

    -
    -
    -pokedex.db.tables.MoveVersion
    -

    History of changes to moves across main game versions.

    -

    Table name: move_versions

    -

    MoveVersion.move_id (→ Move.id):

    -
    -ID of the move this data is for
    -

    MoveVersion.version_group_id (→ VersionGroup.id):

    -
    -ID of the version group this data is for
    -

    MoveVersion.type_id (→ Type.id):

    -
    -Type of the move
    -

    MoveVersion.power (int):

    -
    -Base power of the move
    -

    MoveVersion.pp (int):

    -
    -PP of the move
    -

    MoveVersion.accuracy (int):

    -
    -Accuracy of the move
    -

    MoveVersion.effect_id (→ MoveEffect.id):

    -
    -ID of the move effect
    -

    MoveVersion.effect_chance (int):

    -
    -Effect chance
    +
    Chance to cause a stat change, in percent
    +

    Undocumented:

    +

    MoveMeta.ailment

    +

    MoveMeta.category

    @@ -455,27 +599,49 @@ Effect chance (single: item)

    Has id, identifier, and name via item_names.

    -

    Item.category_id (→ ItemCategory.id):

    +

    Columns:

    +

    Item.category (category_id → ItemCategory.id)

    -ID of a category this item belongs to
    +
    ID of a category this item belongs to

    Item.cost (int):

    -Cost of the item when bought. Items sell for half this price.
    +
    Cost of the item when bought. Items sell for half this price.

    Item.fling_power (int):

    -Power of the move Fling when used with this item.
    -

    Item.fling_effect_id (→ ItemFlingEffect.id):

    +
    Power of the move Fling when used with this item.
    +

    Item.fling_effect (fling_effect_id → ItemFlingEffect.id)

    -ID of the fling-effect of the move Fling when used with this item. Note that these are different from move effects.
    -

    Item.short_effect (unicode – markdown) via item_prose:

    +
    ID of the fling-effect of the move Fling when used with this item. Note that these are different from move effects.
    +

    Internationalized strings:

    +

    Item.short_effect (unicode – markdown) via item_prose

    -A short summary of the effect
    -

    Item.effect (unicode – markdown) via item_prose:

    +
    A short summary of the effect
    +

    Item.effect (unicode – markdown) via item_prose

    -Detailed description of the item’s effect.
    -

    Item.flavor_summary (unicode – plaintext) via item_flavor_summaries:

    +
    Detailed description of the item’s effect.
    +

    Item.flavor_summary (unicode – plaintext) via item_flavor_summaries

    -Text containing facts from all flavor texts, for languages without official game translations
    +
    Text containing facts from all flavor texts, for languages without official game translations
    +

    Relationships:

    +

    Item.required_for_evolutions +(→ [PokemonEvolution])

    +

    Item.triggered_evolutions +(→ [PokemonEvolution])

    +

    Undocumented:

    +

    Item.berry

    +

    Item.evolution_chains

    +

    Item.flags

    +

    Item.flavor_text

    +

    Item.game_indices

    +

    Item.machines

    +

    Item.pocket

    +

    Item.pokemon

    +
    +
    +appears_underground
    +

    True if the item appears underground, as specified by the appropriate flag

    +
    + @@ -484,39 +650,42 @@ Text containing facts from all flavor texts, for languages without official game
    pokedex.db.tables.Berry
    -

    A Berry, consumable item that grows on trees - - For data common to all items, such as the name, see the corresponding item entry.

    +

    A Berry, consumable item that grows on trees

    +

    For data common to all items, such as the name, see the corresponding item entry.

    Table name: berries

    Has id.

    -

    Berry.item_id (→ Item.id):

    +

    Columns:

    +

    Berry.item (item_id → Item.id)

    -The ID of the item that represents this Berry
    -

    Berry.firmness_id (→ BerryFirmness.id):

    +
    The ID of the item that represents this Berry
    +

    Berry.firmness (firmness_id → BerryFirmness.id)

    -The ID of this Berry’s firmness category
    +
    The ID of this Berry’s firmness category

    Berry.natural_gift_power (int):

    -Natural Gift’s power when used with this Berry
    -

    Berry.natural_gift_type_id (→ Type.id):

    +
    Natural Gift’s power when used with this Berry
    +

    Berry.natural_gift_type (natural_gift_type_id → Type.id)

    -The ID of the Type that Natural Gift has when used with this Berry
    +
    The ID of the Type that Natural Gift has when used with this Berry

    Berry.size (int):

    -The size of this Berry, in millimeters
    +
    The size of this Berry, in millimeters

    Berry.max_harvest (int):

    -The maximum number of these berries that can grow on one tree in Generation IV
    +
    The maximum number of these berries that can grow on one tree in Generation IV

    Berry.growth_time (int):

    -Time it takes the tree to grow one stage, in hours. Berry trees go through four of these growth stages before they can be picked.
    +
    Time it takes the tree to grow one stage, in hours. Berry trees go through four of these growth stages before they can be picked.

    Berry.soil_dryness (int):

    -The speed at which this Berry dries out the soil as it grows. A higher rate means the soil dries more quickly.
    +
    The speed at which this Berry dries out the soil as it grows. A higher rate means the soil dries more quickly.

    Berry.smoothness (int):

    -The smoothness of this Berry, used in making Pokéblocks or Poffins
    +
    The smoothness of this Berry, used in making Pokéblocks or Poffins
    +

    Undocumented:

    +

    Berry.berry_firmness

    +

    Berry.flavors

    @@ -533,12 +702,21 @@ The smoothness of this Berry, used in making Pokéblocks or Poffins (single: type)

    Has id, identifier, and name via type_names.

    -

    Type.generation_id (→ Generation.id):

    +

    Columns:

    +

    Type.generation (generation_id → Generation.id)

    -The ID of the generation this type first appeared in.
    -

    Type.damage_class_id (→ MoveDamageClass.id):

    +
    The ID of the generation this type first appeared in.
    +

    Type.damage_class (damage_class_id → MoveDamageClass.id)

    -The ID of the damage class this type’s moves had before Generation IV, null if not applicable (e.g. ???).
    +
    The ID of the damage class this type’s moves had before Generation IV, null if not applicable (e.g. ???).
    +

    Relationships:

    +

    Type.pokemon +(→ [Pokemon])

    +

    Undocumented:

    +

    Type.damage_efficacies

    +

    Type.move_changelog

    +

    Type.moves

    +

    Type.target_efficacies

    @@ -555,15 +733,27 @@ The ID of the damage class this type’s moves had before Generation IV, nul (single: ability)

    Has id, identifier, and name via ability_names.

    -

    Ability.generation_id (→ Generation.id):

    +

    Columns:

    +

    Ability.generation (generation_id → Generation.id)

    -The ID of the generation this ability was introduced in
    -

    Ability.effect (unicode – markdown) via ability_prose:

    +
    The ID of the generation this ability was introduced in
    +

    Internationalized strings:

    +

    Ability.effect (unicode – markdown) via ability_prose

    -A detailed description of this ability’s effect
    -

    Ability.short_effect (unicode – markdown) via ability_prose:

    +
    A detailed description of this ability’s effect
    +

    Ability.short_effect (unicode – markdown) via ability_prose

    -A short summary of this ability’s effect
    +
    A short summary of this ability’s effect
    +

    Relationships:

    +

    Ability.all_pokemon +(→ [Pokemon])

    +

    Ability.dream_pokemon +(→ [Pokemon])

    +

    Ability.pokemon +(→ [Pokemon])

    +

    Undocumented:

    +

    Ability.changelog

    +

    Ability.flavor_text

    @@ -580,18 +770,19 @@ A short summary of this ability’s effect (single: language)

    Has id, identifier, and name via language_names.

    +

    Columns:

    Language.iso639 (unicode – identifier):

    -The two-letter code of the country where this language is spoken. Note that it is not unique.
    +
    The two-letter code of the country where this language is spoken. Note that it is not unique.

    Language.iso3166 (unicode – identifier):

    -The two-letter code of the language. Note that it is not unique.
    +
    The two-letter code of the language. Note that it is not unique.

    Language.official (bool):

    -True iff games are produced in the language.
    +
    True iff games are produced in the language.

    Language.order (int):

    -Order for sorting in foreign name lists.
    +
    Order for sorting in foreign name lists.
    @@ -608,12 +799,22 @@ Order for sorting in foreign name lists. (single: generation)

    Has id, identifier, and name via generation_names.

    -

    Generation.main_region_id (→ Region.id):

    +

    Columns:

    +

    Generation.main_region (main_region_id → Region.id)

    -ID of the region this generation’s main games take place in
    -

    Generation.canonical_pokedex_id (→ Pokedex.id):

    +
    ID of the region this generation’s main games take place in
    +

    Generation.canonical_pokedex (canonical_pokedex_id → Pokedex.id)

    -ID of the Pokédex this generation’s main games use by default
    +
    ID of the Pokédex this generation’s main games use by default
    +

    Relationships:

    +

    Generation.species +(→ [PokemonSpecies])

    +

    Undocumented:

    +

    Generation.abilities

    +

    Generation.moves

    +

    Generation.types

    +

    Generation.version_groups

    +

    Generation.versions

    @@ -623,19 +824,27 @@ ID of the Pokédex this generation’s main games use by default pokedex.db.tables.VersionGroup

    A group of versions, containing either two paired versions (such as Red - and Blue) or a single game (such as Yellow.)

    +and Blue) or a single game (such as Yellow.)

    Table name: version_groups

    Has id.

    -

    VersionGroup.generation_id (→ Generation.id):

    +

    Columns:

    +

    VersionGroup.generation (generation_id → Generation.id)

    -The ID of the generation the games in this group belong to.
    -

    VersionGroup.pokedex_id (→ Pokedex.id):

    +
    The ID of the generation the games in this group belong to.
    +

    VersionGroup.pokedex (pokedex_id → Pokedex.id)

    -The ID of the regional Pokédex used in this version group.
    +
    The ID of the regional Pokédex used in this version group.

    VersionGroup.order (int):

    -Order for sorting changes between versions.
    +
    Order for sorting. Almost by date of release, except similar versions are grouped together.
    +

    Undocumented:

    +

    VersionGroup.ability_changelog

    +

    VersionGroup.move_changelog

    +

    VersionGroup.move_effect_changelog

    +

    VersionGroup.regions

    +

    VersionGroup.version_group_regions

    +

    VersionGroup.versions

    @@ -649,9 +858,15 @@ Order for sorting changes between versions. (single: version)

    Has id, identifier, and name via version_names.

    -

    Version.version_group_id (→ VersionGroup.id):

    +

    Columns:

    +

    Version.version_group (version_group_id → VersionGroup.id)

    -The ID of the version group this game belongs to.
    +
    The ID of the version group this game belongs to.
    +

    Relationships:

    +

    Version.encounters +(→ [Encounter])

    +

    Undocumented:

    +

    Version.generation

    @@ -665,12 +880,17 @@ The ID of the version group this game belongs to. (single: pokedex)

    Has id, identifier, and name via pokedex_prose.

    -

    Pokedex.region_id (→ Region.id):

    +

    Columns:

    +

    Pokedex.region (region_id → Region.id)

    -ID of the region this Pokédex is used in, or None if it’s global
    -

    Pokedex.description (unicode – plaintext) via pokedex_prose:

    +
    ID of the region this Pokédex is used in, or None if it’s global
    +

    Internationalized strings:

    +

    Pokedex.description (unicode – plaintext) via pokedex_prose

    -A longer description of the Pokédex
    +
    A longer description of the Pokédex
    +

    Undocumented:

    +

    Pokedex.canonical_for_generation

    +

    Pokedex.version_groups

    @@ -684,6 +904,12 @@ A longer description of the Pokédex (single: region)

    Has id, identifier, and name via region_names.

    +

    Undocumented:

    +

    Region.generation

    +

    Region.locations

    +

    Region.pokedexes

    +

    Region.version_group_regions

    +

    Region.version_groups

    @@ -700,9 +926,16 @@ A longer description of the Pokédex (single: location)

    Has id, identifier, and name via location_names.

    -

    Location.region_id (→ Region.id):

    +

    Columns:

    +

    Location.region (region_id → Region.id)

    -ID of the region this location is in
    +
    ID of the region this location is in
    +

    Relationships:

    +

    Location.triggered_evolutions +(→ [PokemonEvolution])

    +

    Undocumented:

    +

    Location.areas

    +

    Location.game_indices

    @@ -716,12 +949,18 @@ ID of the region this location is in (single: location_area)

    Has id, identifier, and name via location_area_prose.

    -

    LocationArea.location_id (→ Location.id):

    +

    Columns:

    +

    LocationArea.location (location_id → Location.id)

    -ID of the location this area is part of
    +
    ID of the location this area is part of

    LocationArea.game_index (int):

    -ID the games ude for this area
    +
    ID the games ude for this area
    +

    Relationships:

    +

    LocationArea.encounters +(→ [Encounter])

    +

    Undocumented:

    +

    LocationArea.encounter_rates

    @@ -732,18 +971,21 @@ ID the games ude for this area pokedex.db.tables.LocationAreaEncounterRate

    None

    Table name: location_area_encounter_rates

    -

    LocationAreaEncounterRate.location_area_id (→ LocationArea.id):

    +

    Columns:

    +

    LocationAreaEncounterRate.location_area (location_area_id → LocationArea.id)

    -ID of the area
    +
    ID of the area

    LocationAreaEncounterRate.encounter_method_id (→ EncounterMethod.id):

    -ID of the method
    +
    ID of the method

    LocationAreaEncounterRate.version_id (→ Version.id):

    -ID of the version
    +
    ID of the version

    LocationAreaEncounterRate.rate (int):

    -The encounter rate
    +
    The encounter rate
    +

    Undocumented:

    +

    LocationAreaEncounterRate.method

    @@ -752,48 +994,50 @@ The encounter rate
    pokedex.db.tables.Encounter
    -

    Encounters with wild Pokémon. - - Bear with me, here. - - Within a given area in a given game, encounters are differentiated by the - “slot” they are in and the state of the game world. - - What the player is doing to get an encounter, such as surfing or walking - through tall grass, is called a method. Each method has its own set of - encounter slots. - - Within a method, slots are defined primarily by rarity. Each slot can - also be affected by world conditions; for example, the 20% slot for walking - in tall grass is affected by whether a swarm is in effect in that area. - “Is there a swarm?” is a condition; “there is a swarm” and “there is not a - swarm” are the possible values of this condition. - - A slot (20% walking in grass) and any appropriate world conditions (no - swarm) are thus enough to define a specific encounter. - - Well, okay, almost: each slot actually appears twice.

    +

    Encounters with wild Pokémon.

    +

    Bear with me, here.

    +

    Within a given area in a given game, encounters are differentiated by the +“slot” they are in and the state of the game world.

    +

    What the player is doing to get an encounter, such as surfing or walking +through tall grass, is called a method. Each method has its own set of +encounter slots.

    +

    Within a method, slots are defined primarily by rarity. Each slot can +also be affected by world conditions; for example, the 20% slot for walking +in tall grass is affected by whether a swarm is in effect in that area. +“Is there a swarm?” is a condition; “there is a swarm” and “there is not a +swarm” are the possible values of this condition.

    +

    A slot (20% walking in grass) and any appropriate world conditions (no +swarm) are thus enough to define a specific encounter.

    +

    Well, okay, almost: each slot actually appears twice.

    Table name: encounters

    Has id.

    -

    Encounter.version_id (→ Version.id):

    +

    Columns:

    +

    Encounter.version (version_id → Version.id)

    -The ID of the version this applies to
    -

    Encounter.location_area_id (→ LocationArea.id):

    +
    The ID of the version this applies to
    +

    Encounter.location_area (location_area_id → LocationArea.id)

    -The ID of the location of this encounter
    +
    The ID of the location of this encounter

    Encounter.encounter_slot_id (→ EncounterSlot.id):

    -The ID of the encounter slot, which determines method and rarity
    -

    Encounter.pokemon_id (→ Pokemon.id):

    +
    The ID of the encounter slot, which determines method and rarity
    +

    Encounter.pokemon (pokemon_id → Pokemon.id)

    -The ID of the encountered Pokémon
    +
    The ID of the encountered Pokémon

    Encounter.min_level (int):

    -The minimum level of the encountered Pokémon
    +
    The minimum level of the encountered Pokémon

    Encounter.max_level (int):

    -The maxmum level of the encountered Pokémon
    +
    The maxmum level of the encountered Pokémon
    +

    Relationships:

    +

    Encounter.condition_value_map +(→ [EncounterConditionValueMap])

    +

    Encounter.condition_values: +condition_value of self.condition_value_map

    +

    Encounter.slot +(→ [EncounterSlot])

    @@ -807,6 +1051,8 @@ The maxmum level of the encountered Pokémon (single: encounter_condition)

    Has id, identifier, and name via encounter_condition_prose.

    +

    Undocumented:

    +

    EncounterCondition.values

    @@ -820,12 +1066,16 @@ The maxmum level of the encountered Pokémon (single: encounter_condition_value)

    Has id, identifier, and name via encounter_condition_value_prose.

    +

    Columns:

    EncounterConditionValue.encounter_condition_id (→ EncounterCondition.id):

    -The ID of the encounter condition this is a value of
    +
    The ID of the encounter condition this is a value of

    EncounterConditionValue.is_default (bool):

    -Set if this value is the default state for the condition
    +
    Set if this value is the default state for the condition
    +

    Undocumented:

    +

    EncounterConditionValue.condition

    +

    EncounterConditionValue.encounter_map

    @@ -839,6 +1089,8 @@ Set if this value is the default state for the condition (single: encounter_method)

    Has id, identifier, and name via encounter_method_prose.

    +

    Undocumented:

    +

    EncounterMethod.slots

    @@ -847,25 +1099,30 @@ Set if this value is the default state for the condition
    pokedex.db.tables.EncounterSlot
    -

    An abstract “slot” within a method, associated with both some set of conditions and a rarity. - - Note that there are two encounters per slot, so the rarities will only add - up to 50.

    +

    An abstract “slot” within a method, associated with both some set of conditions and a rarity.

    +

    Note that there are two encounters per slot, so the rarities will only add +up to 50.

    Table name: encounter_slots

    Has id.

    -

    EncounterSlot.version_group_id (→ VersionGroup.id):

    +

    Columns:

    +

    EncounterSlot.version_group (version_group_id → VersionGroup.id)

    -The ID of the version group this slot is in
    +
    The ID of the version group this slot is in

    EncounterSlot.encounter_method_id (→ EncounterMethod.id):

    -The ID of the method
    +
    The ID of the method

    EncounterSlot.slot (int):

    -This slot’s order for the location and method
    +
    This slot’s order for the location and method

    EncounterSlot.rarity (int):

    -The chance of the encounter as a percentage
    +
    The chance of the encounter as a percentage
    +

    Relationships:

    +

    EncounterSlot.encounters +(→ [Encounter])

    +

    Undocumented:

    +

    EncounterSlot.method

    @@ -879,12 +1136,16 @@ The chance of the encounter as a percentage pokedex.db.tables.ContestCombo

    Combo of two moves in a Contest.

    Table name: contest_combos

    +

    Columns:

    ContestCombo.first_move_id (→ Move.id):

    -The ID of the first move in the combo
    +
    The ID of the first move in the combo

    ContestCombo.second_move_id (→ Move.id):

    -The ID of the second and final move in the combo
    +
    The ID of the second and final move in the combo
    +

    Undocumented:

    +

    ContestCombo.first

    +

    ContestCombo.second

    @@ -898,18 +1159,22 @@ The ID of the second and final move in the combo (single: contest_effect)

    Has id.

    +

    Columns:

    ContestEffect.appeal (int):

    -The base number of hearts the user of this move gets
    +
    The base number of hearts the user of this move gets

    ContestEffect.jam (int):

    -The base number of hearts the user’s opponent loses
    -

    ContestEffect.flavor_text (unicode – gametext) via contest_effect_prose:

    +
    The base number of hearts the user’s opponent loses
    +

    Internationalized strings:

    +

    ContestEffect.flavor_text (unicode – gametext) via contest_effect_prose

    -The in-game description of this effect
    -

    ContestEffect.effect (unicode – plaintext) via contest_effect_prose:

    +
    The in-game description of this effect
    +

    ContestEffect.effect (unicode – plaintext) via contest_effect_prose

    -A detailed description of the effect
    +
    A detailed description of the effect
    +

    Undocumented:

    +

    ContestEffect.moves

    @@ -920,12 +1185,16 @@ A detailed description of the effect pokedex.db.tables.SuperContestCombo

    Combo of two moves in a Super Contest.

    Table name: super_contest_combos

    +

    Columns:

    SuperContestCombo.first_move_id (→ Move.id):

    -The ID of the first move in the combo.
    +
    The ID of the first move in the combo.

    SuperContestCombo.second_move_id (→ Move.id):

    -The ID of the second and last move.
    +
    The ID of the second and last move.
    +

    Undocumented:

    +

    SuperContestCombo.first

    +

    SuperContestCombo.second

    @@ -939,12 +1208,16 @@ The ID of the second and last move. (single: super_contest_effect)

    Has id.

    +

    Columns:

    SuperContestEffect.appeal (int):

    -The number of hearts the user gains.
    -

    SuperContestEffect.flavor_text (unicode – plaintext) via super_contest_effect_prose:

    +
    The number of hearts the user gains.
    +

    Internationalized strings:

    +

    SuperContestEffect.flavor_text (unicode – plaintext) via super_contest_effect_prose

    -A description of the effect.
    +
    A description of the effect.
    +

    Undocumented:

    +

    SuperContestEffect.moves

    @@ -961,6 +1234,8 @@ A description of the effect. (single: berry_firmness)

    Has id, identifier, and name via berry_firmness_names.

    +

    Undocumented:

    +

    BerryFirmness.berries

    @@ -974,12 +1249,17 @@ A description of the effect. (single: contest_type)

    Has id, identifier, and name via contest_type_names.

    -

    ContestType.flavor (unicode – plaintext) via contest_type_names:

    +

    Internationalized strings:

    +

    ContestType.flavor (unicode – plaintext) via contest_type_names

    -The name of the corresponding Berry flavor
    -

    ContestType.color (unicode – plaintext) via contest_type_names:

    +
    The name of the corresponding Berry flavor
    +

    ContestType.color (unicode – plaintext) via contest_type_names

    -The name of the corresponding Pokéblock color
    +
    The name of the corresponding Pokéblock color
    +

    Undocumented:

    +

    ContestType.hating_natures

    +

    ContestType.liking_natures

    +

    ContestType.moves

    @@ -988,13 +1268,15 @@ The name of the corresponding Pokéblock color
    pokedex.db.tables.EggGroup
    -

    An Egg group. Usually, two Pokémon can breed if they share an Egg Group. - - (exceptions are the Ditto and No Eggs groups)

    +

    An Egg group. Usually, two Pokémon can breed if they share an Egg Group.

    +

    (exceptions are the Ditto and No Eggs groups)

    Table name: egg_groups (single: egg_group)

    Has id, identifier, and name via egg_group_prose.

    +

    Relationships:

    +

    EggGroup.species +(→ [PokemonSpecies])

    @@ -1008,6 +1290,9 @@ The name of the corresponding Pokéblock color (single: evolution_trigger)

    Has id, identifier, and name via evolution_trigger_prose.

    +

    Relationships:

    +

    EvolutionTrigger.evolutions +(→ [PokemonEvolution])

    @@ -1021,9 +1306,17 @@ The name of the corresponding Pokéblock color (single: growth_rate)

    Has id, identifier, and name via growth_rate_prose.

    +

    Columns:

    GrowthRate.formula (unicode – latex):

    -The formula
    +
    The formula
    +

    Relationships:

    +

    GrowthRate.evolution_chains +(→ [PokemonSpecies])

    +

    Undocumented:

    +

    GrowthRate.experience_table

    +

    GrowthRate.max_experience

    +

    GrowthRate.max_experience_obj

    @@ -1037,25 +1330,12 @@ The formula (single: item_category)

    Has id, identifier, and name via item_category_prose.

    -

    ItemCategory.pocket_id (→ ItemPocket.id):

    +

    Columns:

    +

    ItemCategory.pocket (pocket_id → ItemPocket.id)

    -ID of the pocket these items go to
    - - - -
    -

    ItemFlag

    -
    -
    -pokedex.db.tables.ItemFlag
    -

    An item attribute such as “consumable” or “holdable”.

    -

    Table name: item_flags -(single: item_flag)

    -

    Has -id, identifier, and name via item_flag_prose.

    -

    ItemFlag.description (unicode – plaintext) via item_flag_prose:

    -
    -Short description of the flag
    +
    ID of the pocket these items go to
    +

    Undocumented:

    +

    ItemCategory.items

    @@ -1069,9 +1349,12 @@ Short description of the flag (single: item_fling_effect)

    Has id.

    -

    ItemFlingEffect.effect (unicode – plaintext) via item_fling_effect_prose:

    +

    Internationalized strings:

    +

    ItemFlingEffect.effect (unicode – plaintext) via item_fling_effect_prose

    -Description of the effect
    +
    Description of the effect
    +

    Undocumented:

    +

    ItemFlingEffect.items

    @@ -1085,6 +1368,8 @@ Description of the effect (single: item_pocket)

    Has id, identifier, and name via item_pocket_names.

    +

    Undocumented:

    +

    ItemPocket.categories

    @@ -1098,6 +1383,8 @@ Description of the effect (single: move_battle_style)

    Has id, identifier, and name via move_battle_style_prose.

    +

    Undocumented:

    +

    MoveBattleStyle.nature_preferences

    @@ -1111,9 +1398,14 @@ Description of the effect (single: move_damage_class)

    Has id, identifier, and name via move_damage_class_prose.

    -

    MoveDamageClass.description (unicode – plaintext) via move_damage_class_prose:

    +

    Internationalized strings:

    +

    MoveDamageClass.description (unicode – plaintext) via move_damage_class_prose

    -A description of the class
    +
    A description of the class
    +

    Undocumented:

    +

    MoveDamageClass.moves

    +

    MoveDamageClass.stats

    +

    MoveDamageClass.types

    @@ -1123,11 +1415,13 @@ A description of the class
    pokedex.db.tables.MoveMetaAilment

    Common status ailments moves can inflict on a single Pokémon, including - major ailments like paralysis and minor ailments like trapping.

    +major ailments like paralysis and minor ailments like trapping.

    Table name: move_meta_ailments (single: move_meta_ailment)

    Has id, identifier, and name via move_meta_ailment_names.

    +

    Undocumented:

    +

    MoveMetaAilment.move_meta

    @@ -1141,9 +1435,12 @@ A description of the class (single: move_meta_category)

    Has id and identifier.

    -

    MoveMetaCategory.description (unicode – plaintext) via move_meta_category_prose:

    +

    Internationalized strings:

    +

    MoveMetaCategory.description (unicode – plaintext) via move_meta_category_prose

    -A description of the category
    +
    A description of the category
    +

    Undocumented:

    +

    MoveMetaCategory.move_meta

    @@ -1157,9 +1454,12 @@ A description of the category (single: move_target)

    Has id, identifier, and name via move_target_prose.

    -

    MoveTarget.description (unicode – plaintext) via move_target_prose:

    +

    Internationalized strings:

    +

    MoveTarget.description (unicode – plaintext) via move_target_prose

    -A description
    +
    A description
    +

    Undocumented:

    +

    MoveTarget.moves

    @@ -1173,18 +1473,29 @@ A description (single: nature)

    Has id, identifier, and name via nature_names.

    -

    Nature.decreased_stat_id (→ Stat.id):

    +

    Columns:

    +

    Nature.decreased_stat (decreased_stat_id → Stat.id)

    -ID of the stat that this nature decreases by 10% (if decreased_stat_id is the same, the effects cancel out)
    -

    Nature.increased_stat_id (→ Stat.id):

    +
    ID of the stat that this nature decreases by 10% (if decreased_stat_id is the same, the effects cancel out)
    +

    Nature.increased_stat (increased_stat_id → Stat.id)

    -ID of the stat that this nature increases by 10% (if decreased_stat_id is the same, the effects cancel out)
    -

    Nature.hates_flavor_id (→ ContestType.id):

    +
    ID of the stat that this nature increases by 10% (if decreased_stat_id is the same, the effects cancel out)
    +

    Nature.hates_flavor (hates_flavor_id → ContestType.id)

    -ID of the Berry flavor the Pokémon hates (if likes_flavor_id is the same, the effects cancel out)
    -

    Nature.likes_flavor_id (→ ContestType.id):

    +
    ID of the Berry flavor the Pokémon hates (if likes_flavor_id is the same, the effects cancel out)
    +

    Nature.likes_flavor (likes_flavor_id → ContestType.id)

    -ID of the Berry flavor the Pokémon likes (if hates_flavor_id is the same, the effects cancel out)
    +
    ID of the Berry flavor the Pokémon likes (if hates_flavor_id is the same, the effects cancel out)
    +

    Undocumented:

    +

    Nature.battle_style_preferences

    +

    Nature.pokeathlon_effects

    +
    +
    +is_neutral
    +

    Returns True iff this nature doesn’t alter a Pokémon’s stats, +bestow taste preferences, etc.

    +
    + @@ -1198,6 +1509,9 @@ ID of the Berry flavor the Pokémon likes (if hates_flavor_id is the same, the e (single: pokemon_color)

    Has id, identifier, and name via pokemon_color_names.

    +

    Relationships:

    +

    PokemonColor.species +(→ [PokemonSpecies])

    @@ -1211,9 +1525,10 @@ ID of the Berry flavor the Pokémon likes (if hates_flavor_id is the same, the e (single: pokemon_move_method)

    Has id, identifier, and name via pokemon_move_method_prose.

    -

    PokemonMoveMethod.description (unicode – plaintext) via pokemon_move_method_prose:

    +

    Internationalized strings:

    +

    PokemonMoveMethod.description (unicode – plaintext) via pokemon_move_method_prose

    -A detailed description of how the method works
    +
    A detailed description of how the method works
    @@ -1223,14 +1538,18 @@ A detailed description of how the method works
    pokedex.db.tables.PokemonShape

    The shape of a Pokémon’s body. Used for flavor in generation IV and V - Pokédexes.

    +Pokédexes.

    Table name: pokemon_shapes (single: pokemon_shape)

    Has id, identifier, and name via pokemon_shape_prose.

    -

    PokemonShape.awesome_name (unicode – plaintext) via pokemon_shape_prose:

    +

    Internationalized strings:

    +

    PokemonShape.awesome_name (unicode – plaintext) via pokemon_shape_prose

    -A splendiferous name of the body shape
    +
    A splendiferous name of the body shape
    +

    Relationships:

    +

    PokemonShape.species +(→ [PokemonSpecies])

    @@ -1244,12 +1563,18 @@ A splendiferous name of the body shape (single: stat)

    Has id, identifier, and name via stat_names.

    -

    Stat.damage_class_id (→ MoveDamageClass.id):

    +

    Columns:

    +

    Stat.damage_class (damage_class_id → MoveDamageClass.id)

    -For offensive and defensive stats, the damage this stat relates to; otherwise None (the NULL value)
    +
    For offensive and defensive stats, the damage this stat relates to; otherwise None (the NULL value)

    Stat.is_battle_only (bool):

    -Whether this stat only exists within a battle
    +
    Whether this stat only exists within a battle
    +

    Undocumented:

    +

    Stat.decreasing_natures

    +

    Stat.hints

    +

    Stat.increasing_natures

    +

    Stat.move_meta_stat_changes

    @@ -1266,15 +1591,19 @@ Whether this stat only exists within a battle (single: ability_changelog)

    Has id.

    -

    AbilityChangelog.ability_id (→ Ability.id):

    +

    Columns:

    +

    AbilityChangelog.ability (ability_id → Ability.id)

    -The ID of the ability that changed
    +
    The ID of the ability that changed

    AbilityChangelog.changed_in_version_group_id (→ VersionGroup.id):

    -The ID of the version group in which the ability changed
    -

    AbilityChangelog.effect (unicode – markdown) via ability_changelog_prose:

    +
    The ID of the version group in which the ability changed
    +

    Internationalized strings:

    +

    AbilityChangelog.effect (unicode – markdown) via ability_changelog_prose

    -A description of the old behavior
    +
    A description of the old behavior
    +

    Undocumented:

    +

    AbilityChangelog.changed_in

    @@ -1288,15 +1617,62 @@ A description of the old behavior (single: move_effect_changelog)

    Has id.

    -

    MoveEffectChangelog.effect_id (→ MoveEffect.id):

    +

    Columns:

    +

    MoveEffectChangelog.effect (effect_id → MoveEffect.id)

    -The ID of the effect that changed
    +
    The ID of the effect that changed

    MoveEffectChangelog.changed_in_version_group_id (→ VersionGroup.id):

    -The ID of the version group in which the effect changed
    -

    MoveEffectChangelog.effect (unicode – markdown) via move_effect_changelog_prose:

    +
    The ID of the version group in which the effect changed
    +

    Internationalized strings:

    +

    MoveEffectChangelog.effect (unicode – markdown) via move_effect_changelog_prose

    -A description of the old behavior
    +
    A description of the old behavior
    +

    Undocumented:

    +

    MoveEffectChangelog.changed_in

    +

    MoveEffectChangelog.move_effect

    + + + +
    +

    MoveChangelog

    +
    +
    +pokedex.db.tables.MoveChangelog
    +

    History of changes to moves across main game versions.

    +

    Table name: move_changelog +(single: move_changelog)

    +

    Columns:

    +

    MoveChangelog.move (move_id → Move.id)

    +
    +
    ID of the move that changed
    +

    MoveChangelog.changed_in_version_group_id (→ VersionGroup.id):

    +
    +
    ID of the version group in which the move changed
    +

    MoveChangelog.type (type_id → Type.id)

    +
    +
    Prior type of the move, or NULL if unchanged
    +

    MoveChangelog.power (int):

    +
    +
    Prior base power of the move, or NULL if unchanged
    +

    MoveChangelog.pp (int):

    +
    +
    Prior base PP of the move, or NULL if unchanged
    +

    MoveChangelog.accuracy (int):

    +
    +
    Prior accuracy of the move, or NULL if unchanged
    +

    MoveChangelog.effect (effect_id → MoveEffect.id)

    +
    +
    Prior ID of the effect, or NULL if unchanged
    +

    MoveChangelog.effect_chance (int):

    +
    +
    Prior effect chance, or NULL if unchanged
    +

    Undocumented:

    +

    MoveChangelog.changed_in

    +

    MoveChangelog.effect_map

    +

    MoveChangelog.move_effect

    +

    MoveChangelog.short_effect

    +

    MoveChangelog.short_effect_map

    @@ -1311,18 +1687,19 @@ A description of the old behavior

    An in-game description of an item

    Table name: item_flavor_text (single: item_flavor_text)

    -

    ItemFlavorText.item_id (→ Item.id):

    +

    Columns:

    +

    ItemFlavorText.item (item_id → Item.id)

    -The ID of the item
    -

    ItemFlavorText.version_group_id (→ VersionGroup.id):

    +
    The ID of the item
    +

    ItemFlavorText.version_group (version_group_id → VersionGroup.id)

    -ID of the version group that sports this text
    -

    ItemFlavorText.language_id (→ Language.id):

    +
    ID of the version group that sports this text
    +

    ItemFlavorText.language (language_id → Language.id)

    -The language
    +
    The language

    ItemFlavorText.flavor_text (unicode – gametext):

    -The flavor text itself
    +
    The flavor text itself
    @@ -1333,18 +1710,19 @@ The flavor text itself pokedex.db.tables.AbilityFlavorText

    In-game flavor text of an ability

    Table name: ability_flavor_text

    -

    AbilityFlavorText.ability_id (→ Ability.id):

    +

    Columns:

    +

    AbilityFlavorText.ability (ability_id → Ability.id)

    -The ID of the ability
    -

    AbilityFlavorText.version_group_id (→ VersionGroup.id):

    +
    The ID of the ability
    +

    AbilityFlavorText.version_group (version_group_id → VersionGroup.id)

    -The ID of the version group this flavor text is taken from
    -

    AbilityFlavorText.language_id (→ Language.id):

    +
    The ID of the version group this flavor text is taken from
    +

    AbilityFlavorText.language (language_id → Language.id)

    -The language
    +
    The language

    AbilityFlavorText.flavor_text (unicode – gametext):

    -The actual flavor text
    +
    The actual flavor text
    @@ -1355,18 +1733,19 @@ The actual flavor text pokedex.db.tables.MoveFlavorText

    In-game description of a move

    Table name: move_flavor_text

    -

    MoveFlavorText.move_id (→ Move.id):

    +

    Columns:

    +

    MoveFlavorText.move (move_id → Move.id)

    -ID of the move
    -

    MoveFlavorText.version_group_id (→ VersionGroup.id):

    +
    ID of the move
    +

    MoveFlavorText.version_group (version_group_id → VersionGroup.id)

    -ID of the version group this text appears in
    -

    MoveFlavorText.language_id (→ Language.id):

    +
    ID of the version group this text appears in
    +

    MoveFlavorText.language (language_id → Language.id)

    -The language
    +
    The language

    MoveFlavorText.flavor_text (unicode – gametext):

    -The flavor text
    +
    The flavor text
    @@ -1377,18 +1756,19 @@ The flavor text pokedex.db.tables.PokemonSpeciesFlavorText

    In-game Pokédex descrption of a Pokémon.

    Table name: pokemon_species_flavor_text

    -

    PokemonSpeciesFlavorText.species_id (→ PokemonSpecies.id):

    +

    Columns:

    +

    PokemonSpeciesFlavorText.species (species_id → PokemonSpecies.id)

    -ID of the Pokémon
    -

    PokemonSpeciesFlavorText.version_id (→ Version.id):

    +
    ID of the Pokémon
    +

    PokemonSpeciesFlavorText.version (version_id → Version.id)

    -ID of the version that has this flavor text
    -

    PokemonSpeciesFlavorText.language_id (→ Language.id):

    +
    ID of the version that has this flavor text
    +

    PokemonSpeciesFlavorText.language (language_id → Language.id)

    -The language
    +
    The language

    PokemonSpeciesFlavorText.flavor_text (unicode – gametext):

    -The flavor text
    +
    The flavor text
    @@ -1402,15 +1782,16 @@ The flavor text pokedex.db.tables.BerryFlavor

    A Berry flavor level.

    Table name: berry_flavors

    -

    BerryFlavor.berry_id (→ Berry.id):

    +

    Columns:

    +

    BerryFlavor.berry (berry_id → Berry.id)

    -The ID of the berry
    -

    BerryFlavor.contest_type_id (→ ContestType.id):

    +
    The ID of the berry
    +

    BerryFlavor.contest_type (contest_type_id → ContestType.id)

    -The ID of the flavor
    +
    The ID of the flavor

    BerryFlavor.flavor (int):

    -The level of the flavor in the berry
    +
    The level of the flavor in the berry
    @@ -1421,12 +1802,32 @@ The level of the flavor in the berry pokedex.db.tables.EncounterConditionValueMap

    Maps encounters to the specific conditions under which they occur.

    Table name: encounter_condition_value_map

    -

    EncounterConditionValueMap.encounter_id (→ Encounter.id):

    +

    Columns:

    +

    EncounterConditionValueMap.encounter (encounter_id → Encounter.id)

    -The ID of the encounter
    +
    The ID of the encounter

    EncounterConditionValueMap.encounter_condition_value_id (→ EncounterConditionValue.id):

    -The ID of the encounter condition value
    +
    The ID of the encounter condition value
    +

    Undocumented:

    +

    EncounterConditionValueMap.condition_value

    +
    + + +
    +

    ItemFlag

    +
    +
    +pokedex.db.tables.ItemFlag
    +

    An item attribute such as “consumable” or “holdable”.

    +

    Table name: item_flags +(single: item_flag)

    +

    Has +id, identifier, and name via item_flag_prose.

    +

    Internationalized strings:

    +

    ItemFlag.description (unicode – plaintext) via item_flag_prose

    +
    +
    Short description of the flag
    @@ -1437,12 +1838,13 @@ The ID of the encounter condition value pokedex.db.tables.ItemFlagMap

    Maps an item flag to its item.

    Table name: item_flag_map

    +

    Columns:

    ItemFlagMap.item_id (→ Item.id):

    -The ID of the item
    +
    The ID of the item

    ItemFlagMap.item_flag_id (→ ItemFlag.id):

    -The ID of the item flag
    +
    The ID of the item flag
    @@ -1453,18 +1855,28 @@ The ID of the item flag pokedex.db.tables.Machine

    A TM or HM; numbered item that can teach a move to a Pokémon

    Table name: machines

    +

    Columns:

    Machine.machine_number (int):

    -Number of the machine for TMs, or 100 + the munber for HMs
    -

    Machine.version_group_id (→ VersionGroup.id):

    +
    Number of the machine for TMs, or 100 + the munber for HMs
    +

    Machine.version_group (version_group_id → VersionGroup.id)

    -Versions this entry applies to
    -

    Machine.item_id (→ Item.id):

    +
    Versions this entry applies to
    +

    Machine.item (item_id → Item.id)

    -ID of the corresponding Item
    -

    Machine.move_id (→ Move.id):

    +
    ID of the corresponding Item
    +

    Machine.move (move_id → Move.id)

    -ID of the taught move
    +
    ID of the taught move
    +

    Relationships:

    +

    Machine.pokemon_moves +(→ [PokemonMove])

    +
    +
    +is_hm
    +

    True if this machine is a HM, False if it’s a TM

    +
    +
    @@ -1478,9 +1890,10 @@ ID of the taught move (single: move_flag)

    Has id, identifier, and name via move_flag_prose.

    -

    MoveFlag.description (unicode – markdown) via move_flag_prose:

    +

    Internationalized strings:

    +

    MoveFlag.description (unicode – markdown) via move_flag_prose

    -A short description of the flag
    +
    A short description of the flag
    @@ -1491,12 +1904,15 @@ A short description of the flag pokedex.db.tables.MoveFlagMap

    Maps a move flag to a move

    Table name: move_flag_map

    -

    MoveFlagMap.move_id (→ Move.id):

    +

    Columns:

    +

    MoveFlagMap.move (move_id → Move.id)

    -ID of the move
    +
    ID of the move

    MoveFlagMap.move_flag_id (→ MoveFlag.id):

    -ID of the flag
    +
    ID of the flag
    +

    Undocumented:

    +

    MoveFlagMap.flag

    @@ -1507,15 +1923,16 @@ ID of the flag pokedex.db.tables.MoveMetaStatChange

    Stat changes moves (may) make.

    Table name: move_meta_stat_changes

    +

    Columns:

    MoveMetaStatChange.move_id (→ Move.id):

    -ID of the move
    -

    MoveMetaStatChange.stat_id (→ Stat.id):

    +
    ID of the move
    +

    MoveMetaStatChange.stat (stat_id → Stat.id)

    -ID of the stat
    +
    ID of the stat

    MoveMetaStatChange.change (int):

    -Amount of increase/decrease, in stages
    +
    Amount of increase/decrease, in stages
    @@ -1524,23 +1941,25 @@ Amount of increase/decrease, in stages
    pokedex.db.tables.NatureBattleStylePreference
    -

    Battle Palace move preference - - Specifies how likely a Pokémon with a specific Nature is to use a move of - a particular battl style in Battle Palace or Battle Tent

    +

    Battle Palace move preference

    +

    Specifies how likely a Pokémon with a specific Nature is to use a move of +a particular battl style in Battle Palace or Battle Tent

    Table name: nature_battle_style_preferences

    -

    NatureBattleStylePreference.nature_id (→ Nature.id):

    +

    Columns:

    +

    NatureBattleStylePreference.nature (nature_id → Nature.id)

    -ID of the Pokémon’s nature
    +
    ID of the Pokémon’s nature

    NatureBattleStylePreference.move_battle_style_id (→ MoveBattleStyle.id):

    -ID of the battle style
    +
    ID of the battle style

    NatureBattleStylePreference.low_hp_preference (int):

    -Chance of using the move, in percent, if HP is under ½
    +
    Chance of using the move, in percent, if HP is under ½

    NatureBattleStylePreference.high_hp_preference (int):

    -Chance of using the move, in percent, if HP is over ½
    +
    Chance of using the move, in percent, if HP is over ½
    +

    Undocumented:

    +

    NatureBattleStylePreference.battle_style

    @@ -1551,15 +1970,16 @@ Chance of using the move, in percent, if HP is over ½ pokedex.db.tables.NaturePokeathlonStat

    Specifies how a Nature affects a Pokéathlon stat

    Table name: nature_pokeathlon_stats

    +

    Columns:

    NaturePokeathlonStat.nature_id (→ Nature.id):

    -ID of the nature
    -

    NaturePokeathlonStat.pokeathlon_stat_id (→ PokeathlonStat.id):

    +
    ID of the nature
    +

    NaturePokeathlonStat.pokeathlon_stat (pokeathlon_stat_id → PokeathlonStat.id)

    -ID of the stat
    +
    ID of the stat

    NaturePokeathlonStat.max_change (int):

    -Maximum change
    +
    Maximum change
    @@ -1573,6 +1993,8 @@ Maximum change (single: pokeathlon_stat)

    Has id, identifier, and name via pokeathlon_stat_names.

    +

    Undocumented:

    +

    PokeathlonStat.nature_effects

    @@ -1583,18 +2005,19 @@ Maximum change pokedex.db.tables.PokemonAbility

    Maps an ability to a Pokémon that can have it

    Table name: pokemon_abilities

    +

    Columns:

    PokemonAbility.pokemon_id (→ Pokemon.id):

    -ID of the Pokémon
    +
    ID of the Pokémon

    PokemonAbility.ability_id (→ Ability.id):

    -ID of the ability
    +
    ID of the ability

    PokemonAbility.is_dream (bool):

    -Whether this is a Dream World ability
    +
    Whether this is a Dream World ability

    PokemonAbility.slot (int):

    -The ability slot, i.e. 1 or 2 for gen. IV
    +
    The ability slot, i.e. 1 or 2 for gen. IV
    @@ -1605,12 +2028,13 @@ The ability slot, i.e. 1 or 2 for gen. IV pokedex.db.tables.PokemonEggGroup

    Maps an Egg group to a species; each species belongs to one or two egg groups

    Table name: pokemon_egg_groups

    +

    Columns:

    PokemonEggGroup.species_id (→ PokemonSpecies.id):

    -ID of the species
    +
    ID of the species

    PokemonEggGroup.egg_group_id (→ EggGroup.id):

    -ID of the egg group
    +
    ID of the egg group
    @@ -1621,21 +2045,22 @@ ID of the egg group pokedex.db.tables.PokemonFormPokeathlonStat

    A Pokémon form’s performance in one Pokéathlon stat.

    Table name: pokemon_form_pokeathlon_stats

    -

    PokemonFormPokeathlonStat.pokemon_form_id (→ PokemonForm.id):

    +

    Columns:

    +

    PokemonFormPokeathlonStat.pokemon_form (pokemon_form_id → PokemonForm.id)

    -The ID of the Pokémon form.
    -

    PokemonFormPokeathlonStat.pokeathlon_stat_id (→ PokeathlonStat.id):

    +
    The ID of the Pokémon form.
    +

    PokemonFormPokeathlonStat.pokeathlon_stat (pokeathlon_stat_id → PokeathlonStat.id)

    -The ID of the Pokéathlon stat.
    +
    The ID of the Pokéathlon stat.

    PokemonFormPokeathlonStat.minimum_stat (int):

    -The minimum value for this stat for this Pokémon form.
    +
    The minimum value for this stat for this Pokémon form.

    PokemonFormPokeathlonStat.base_stat (int):

    -The default value for this stat for this Pokémon form.
    +
    The default value for this stat for this Pokémon form.

    PokemonFormPokeathlonStat.maximum_stat (int):

    -The maximum value for this stat for this Pokémon form.
    +
    The maximum value for this stat for this Pokémon form.
    @@ -1649,6 +2074,9 @@ The maximum value for this stat for this Pokémon form. (single: pokemon_habitat)

    Has id, identifier, and name via pokemon_habitat_names.

    +

    Relationships:

    +

    PokemonHabitat.species +(→ [PokemonSpecies])

    @@ -1659,24 +2087,30 @@ The maximum value for this stat for this Pokémon form. pokedex.db.tables.PokemonMove

    Record of a move a Pokémon can learn

    Table name: pokemon_moves

    -

    PokemonMove.pokemon_id (→ Pokemon.id):

    +

    Columns:

    +

    PokemonMove.pokemon (pokemon_id → Pokemon.id)

    -ID of the Pokémon
    -

    PokemonMove.version_group_id (→ VersionGroup.id):

    +
    ID of the Pokémon
    +

    PokemonMove.version_group (version_group_id → VersionGroup.id)

    -ID of the version group this applies to
    -

    PokemonMove.move_id (→ Move.id):

    +
    ID of the version group this applies to
    +

    PokemonMove.move (move_id → Move.id)

    -ID of the move
    +
    ID of the move

    PokemonMove.pokemon_move_method_id (→ PokemonMoveMethod.id):

    -ID of the method this move is learned by
    +
    ID of the method this move is learned by

    PokemonMove.level (int):

    -Level the move is learned at, if applicable
    +
    Level the move is learned at, if applicable

    PokemonMove.order (int):

    -A sort key to produce the correct ordering when all else is equal
    +
    A sort key to produce the correct ordering when all else is equal
    +

    Relationships:

    +

    PokemonMove.machine +(→ Machine)

    +

    PokemonMove.method +(→ [PokemonMoveMethod])

    @@ -1687,18 +2121,19 @@ A sort key to produce the correct ordering when all else is equal pokedex.db.tables.PokemonStat

    A stat value of a Pokémon

    Table name: pokemon_stats

    -

    PokemonStat.pokemon_id (→ Pokemon.id):

    +

    Columns:

    +

    PokemonStat.pokemon (pokemon_id → Pokemon.id)

    -ID of the Pokémon
    -

    PokemonStat.stat_id (→ Stat.id):

    +
    ID of the Pokémon
    +

    PokemonStat.stat (stat_id → Stat.id)

    -ID of the stat
    +
    ID of the stat

    PokemonStat.base_stat (int):

    -The base stat
    +
    The base stat

    PokemonStat.effort (int):

    -The effort increase in this stat gained when this Pokémon is defeated
    +
    The effort increase in this stat gained when this Pokémon is defeated
    @@ -1709,18 +2144,19 @@ The effort increase in this stat gained when this Pokémon is defeatedpokedex.db.tables.PokemonItem

    Record of an item a Pokémon can hold in the wild

    Table name: pokemon_items

    -

    PokemonItem.pokemon_id (→ Pokemon.id):

    +

    Columns:

    +

    PokemonItem.pokemon (pokemon_id → Pokemon.id)

    -ID of the Pokémon
    -

    PokemonItem.version_id (→ Version.id):

    +
    ID of the Pokémon
    +

    PokemonItem.version (version_id → Version.id)

    -ID of the version this applies to
    -

    PokemonItem.item_id (→ Item.id):

    +
    ID of the version this applies to
    +

    PokemonItem.item (item_id → Item.id)

    -ID of the item
    +
    ID of the item

    PokemonItem.rarity (int):

    -Chance of the Pokémon holding the item, in percent
    +
    Chance of the Pokémon holding the item, in percent
    @@ -1731,15 +2167,16 @@ Chance of the Pokémon holding the item, in percent pokedex.db.tables.PokemonType

    Maps a type to a Pokémon. Each Pokémon has 1 or 2 types.

    Table name: pokemon_types

    +

    Columns:

    PokemonType.pokemon_id (→ Pokemon.id):

    -ID of the Pokémon
    +
    ID of the Pokémon

    PokemonType.type_id (→ Type.id):

    -ID of the type
    +
    ID of the type

    PokemonType.slot (int):

    -The type’s slot, 1 or 2, used to sort types if there are two of them
    +
    The type’s slot, 1 or 2, used to sort types if there are two of them
    @@ -1749,17 +2186,18 @@ The type’s slot, 1 or 2, used to sort types if there are two of them pokedex.db.tables.TypeEfficacy

    The damage multiplier used when a move of a particular type damages a - Pokémon of a particular other type.

    +Pokémon of a particular other type.

    Table name: type_efficacy

    -

    TypeEfficacy.damage_type_id (→ Type.id):

    +

    Columns:

    +

    TypeEfficacy.damage_type (damage_type_id → Type.id)

    -The ID of the damaging type.
    -

    TypeEfficacy.target_type_id (→ Type.id):

    +
    The ID of the damaging type.
    +

    TypeEfficacy.target_type (target_type_id → Type.id)

    -The ID of the defending Pokémon’s type.
    +
    The ID of the defending Pokémon’s type.

    TypeEfficacy.damage_factor (int):

    -The multiplier, as a percentage of damage inflicted.
    +
    The multiplier, as a percentage of damage inflicted.
    @@ -1770,12 +2208,13 @@ The multiplier, as a percentage of damage inflicted. pokedex.db.tables.VersionGroupRegion

    Maps a version group to a region that appears in it.

    Table name: version_group_regions

    -

    VersionGroupRegion.version_group_id (→ VersionGroup.id):

    +

    Columns:

    +

    VersionGroupRegion.version_group (version_group_id → VersionGroup.id)

    -The ID of the version group.
    -

    VersionGroupRegion.region_id (→ Region.id):

    +
    The ID of the version group.
    +

    VersionGroupRegion.region (region_id → Region.id)

    -The ID of the region.
    +
    The ID of the region.
    @@ -1789,15 +2228,16 @@ The ID of the region. pokedex.db.tables.ItemGameIndex

    The internal ID number a game uses for an item

    Table name: item_game_indices

    -

    ItemGameIndex.item_id (→ Item.id):

    +

    Columns:

    +

    ItemGameIndex.item (item_id → Item.id)

    -The database ID of the item
    -

    ItemGameIndex.generation_id (→ Generation.id):

    +
    The database ID of the item
    +

    ItemGameIndex.generation (generation_id → Generation.id)

    -ID of the generation of games
    +
    ID of the generation of games

    ItemGameIndex.game_index (int):

    -Internal ID of the item in the generation
    +
    Internal ID of the item in the generation
    @@ -1808,15 +2248,16 @@ Internal ID of the item in the generation pokedex.db.tables.LocationGameIndex

    IDs the games use internally for locations

    Table name: location_game_indices

    -

    LocationGameIndex.location_id (→ Location.id):

    +

    Columns:

    +

    LocationGameIndex.location (location_id → Location.id)

    -Database ID of the locaion
    -

    LocationGameIndex.generation_id (→ Generation.id):

    +
    Database ID of the locaion
    +

    LocationGameIndex.generation (generation_id → Generation.id)

    -ID of the generation this entry to
    +
    ID of the generation this entry to

    LocationGameIndex.game_index (int):

    -Internal game ID of the location
    +
    Internal game ID of the location
    @@ -1827,15 +2268,16 @@ Internal game ID of the location pokedex.db.tables.PokemonDexNumber

    The number of a species in a particular Pokédex (e.g. Jigglypuff is #138 in Hoenn’s ‘dex)

    Table name: pokemon_dex_numbers

    -

    PokemonDexNumber.species_id (→ PokemonSpecies.id):

    +

    Columns:

    +

    PokemonDexNumber.species (species_id → PokemonSpecies.id)

    -ID of the species
    -

    PokemonDexNumber.pokedex_id (→ Pokedex.id):

    +
    ID of the species
    +

    PokemonDexNumber.pokedex (pokedex_id → Pokedex.id)

    -ID of the Pokédex
    +
    ID of the Pokédex

    PokemonDexNumber.pokedex_number (int):

    -Number of the Pokémon in that the Pokédex
    +
    Number of the Pokémon in that the Pokédex
    @@ -1846,15 +2288,16 @@ Number of the Pokémon in that the Pokédex pokedex.db.tables.PokemonGameIndex

    The number of a Pokémon a game uses internally

    Table name: pokemon_game_indices

    +

    Columns:

    PokemonGameIndex.pokemon_id (→ Pokemon.id):

    -Database ID of the Pokémon
    +
    Database ID of the Pokémon

    PokemonGameIndex.generation_id (→ Generation.id):

    -Database ID of the generation
    +
    Database ID of the generation

    PokemonGameIndex.game_index (int):

    -Internal ID the generation’s games use for the Pokémon
    +
    Internal ID the generation’s games use for the Pokémon
    @@ -1868,15 +2311,16 @@ Internal ID the generation’s games use for the Pokémon pokedex.db.tables.Experience

    EXP needed for a certain level with a certain growth rate

    Table name: experience

    -

    Experience.growth_rate_id (→ GrowthRate.id):

    +

    Columns:

    +

    Experience.growth_rate (growth_rate_id → GrowthRate.id)

    -ID of the growth rate
    +
    ID of the growth rate

    Experience.level (int):

    -The level
    +
    The level

    Experience.experience (int):

    -The number of EXP points needed to get to that level
    +
    The number of EXP points needed to get to that level
    @@ -1886,20 +2330,22 @@ The number of EXP points needed to get to that level
    pokedex.db.tables.StatHint

    Flavor text for genes that appears in a Pokémon’s summary. Sometimes - called “characteristics”.

    +called “characteristics”.

    Table name: stat_hints (single: stat_hint)

    Has id.

    -

    StatHint.stat_id (→ Stat.id):

    +

    Columns:

    +

    StatHint.stat (stat_id → Stat.id)

    -ID of the highest stat
    +
    ID of the highest stat

    StatHint.gene_mod_5 (int):

    -Value of the highest stat modulo 5
    -

    StatHint.message (unicode – plaintext) via stat_hint_names:

    +
    Value of the highest stat modulo 5
    +

    Internationalized strings:

    +

    StatHint.message (unicode – plaintext) via stat_hint_names

    -The text displayed
    +
    The text displayed
    @@ -1927,7 +2373,6 @@ The text displayed
  • Move
  • MoveEffect
  • MoveMeta
  • -
  • MoveVersion
  • Items
      @@ -1980,7 +2425,6 @@ The text displayed
    • EvolutionTrigger
    • GrowthRate
    • ItemCategory
    • -
    • ItemFlag
    • ItemFlingEffect
    • ItemPocket
    • MoveBattleStyle
    • @@ -1998,6 +2442,7 @@ The text displayed
    • Changelogs
    • Flavor text
        @@ -2010,6 +2455,7 @@ The text displayed
      • Association tables \ No newline at end of file diff --git a/objects.inv b/objects.inv index 585b1c175eea4acf38d4809909348614186aa878..d6885dbb619111647cc3dfee38bf80f2a82eba3c 100644 GIT binary patch delta 792 zcmV+z1Lypg28IWadw*}+Fbuu-R~Xo?F_vp@ZQ8U2nj&a|UIW@@WTE;n^wGuteo~}# z8QKAfn5!&O68ZS}XsJ7{I^0#(b=LwK6xC!}4dX=S4|VUP_)#r%=LJ?zap{Vo`o`$6 znk~{+i(uOR-;HT4Z(F4eOJI04=y!|`x~6u}2(;lM*D{^_tACQf)g-Ma+w^7fvzmOh zte+gpx!{W3Z@1XG=qYSS_SN*Ov+upUp|M=6LhF@-(u1EtF&|=5X#N7u8(fBUaJ|rq zaFg{ol-^>YKX46(p(8k$3t$Tv3Oz^|2JAMi0BaMTI&g5h{r!g)-USHE`d~nKMxp6V z!v%L^I9)Lmntv6#xmT_B%AuKQ)p1u2>02~roO2@;T3hHN!cvkjnWIvQ33RYW!P#h7 z`C%VIht`pJC5K?HjjR>OJvzWS!yE5TcXLFKC!ZX7u@pqR@OqA_JsZreRw@T;>s7nQ z-?Z{J5ZnoA4h-<2%^G(U3JdAtEwm%GfEMU_-OlVo5y&RP9w)X-c5&xx$*;O)m@KnPgXKy@pOJ z>MR$|A&QIz0=H$M7a-wFrA9n`soQrXB05&aMOdam7wU7UvaYfPl_SBJ{G2J%rfn|ISI&o_Hu- z#waQ`dzopWiTY{PL-7ntd_s&2n|0~N&NxF)%v#M)Pe$cYnKy4{qHQfrjfbrB^_7AWRW`fK+T%Q}b5b+0hHk4qN<%@>DG ztHX)3wL@@K^KoNZ8@3f`!v+LiwDtufKwZu~lnT3G$dyhv|9{CeNHa_8>1_Hk`<=}` zpPVoER`p(5vvpDkbP+1-NC4U8XSA8%2a!n#%UZqbrp4M2tl# zmGsAzg1vQHJWz4A#}=2novffba-XwC-`JXna_>>Elr$n(gBA5T54M6BnT10jLgY5Q zrSs7-Oe1(KBY&QLM%PV1P2%}S@V!F@1-L1i47djG6&C)eaN}@?4o!u;a1yQh*vPm%bTlwQey~$~-~=zV z&b2*Mfm-q#l%)_MTl z$m?D?A%7W<0O!{+3d*Qwm@JoLz#>EtMo z{hUfKQ;z7|7^ZsO{XCFw1cBL1(e)&H^G=dUp#!bnyPqF-LF0jGiY$q);L#$fg|eL1 zbTk?B{*SO+GQk|maOXeW<9c+HR(Ql<%y01}HzA + - Python Module Index — pokedex v0.1 documentation + Python Module Index — pokedex 0.1 documentation + + - + @@ -37,7 +40,7 @@
      • modules |
      • -
      • pokedex v0.1 documentation »
      • +
      • pokedex 0.1 documentation »
      @@ -55,11 +58,11 @@ - + - + @@ -79,7 +82,7 @@ \ No newline at end of file diff --git a/schema.html b/schema.html index 7a2a06b..21a7cfc 100644 --- a/schema.html +++ b/schema.html @@ -3,13 +3,16 @@ + - The database schema — pokedex v0.1 documentation + The database schema — pokedex 0.1 documentation + + - + @@ -42,7 +45,7 @@
    • previous |
    • -
    • pokedex v0.1 documentation »
    • +
    • pokedex 0.1 documentation »
    • @@ -68,7 +71,6 @@
    • Move
    • MoveEffect
    • MoveMeta
    • -
    • MoveVersion
    • Items \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 054ced9..7d9c888 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"pokedex.db.tables":{NaturePokeathlonStat:[2,1,1],SuperContestEffect:[2,1,1],PokemonHabitat:[2,1,1],PokemonDexNumber:[2,1,1],MoveFlavorText:[2,1,1],ContestCombo:[2,1,1],PokeathlonStat:[2,1,1],PokemonSpeciesFlavorText:[2,1,1],Machine:[2,1,1],PokemonSpecies:[2,1,1],Version:[2,1,1],EggGroup:[2,1,1],ItemFlingEffect:[2,1,1],mapped_classes:[2,2,1],PokemonAbility:[2,1,1],NatureBattleStylePreference:[2,1,1],PokemonMove:[2,1,1],Type:[2,1,1],GrowthRate:[2,1,1],MoveVersion:[2,1,1],MoveBattleStyle:[2,1,1],BerryFirmness:[2,1,1],MoveMetaStatChange:[2,1,1],Stat:[2,1,1],PokemonType:[2,1,1],PokemonFormPokeathlonStat:[2,1,1],ContestEffect:[2,1,1],Nature:[2,1,1],MoveTarget:[2,1,1],EncounterConditionValue:[2,1,1],EvolutionTrigger:[2,1,1],MoveEffect:[2,1,1],MoveMetaAilment:[2,1,1],PokemonEggGroup:[2,1,1],LocationArea:[2,1,1],ItemFlag:[2,1,1],PokemonItem:[2,1,1],EncounterSlot:[2,1,1],EncounterCondition:[2,1,1],MoveEffectChangelog:[2,1,1],AbilityFlavorText:[2,1,1],VersionGroupRegion:[2,1,1],MoveFlag:[2,1,1],Encounter:[2,1,1],EncounterConditionValueMap:[2,1,1],MoveDamageClass:[2,1,1],ItemGameIndex:[2,1,1],Language:[2,1,1],BerryFlavor:[2,1,1],MoveMetaCategory:[2,1,1],Region:[2,1,1],PokemonGameIndex:[2,1,1],StatHint:[2,1,1],Experience:[2,1,1],PokemonColor:[2,1,1],MoveMeta:[2,1,1],Berry:[2,1,1],SuperContestCombo:[2,1,1],PokemonMoveMethod:[2,1,1],ItemCategory:[2,1,1],Ability:[2,1,1],PokemonForm:[2,1,1],ItemPocket:[2,1,1],PokemonEvolution:[2,1,1],Item:[2,1,1],Generation:[2,1,1],VersionGroup:[2,1,1],TypeEfficacy:[2,1,1],Move:[2,1,1],ItemFlagMap:[2,1,1],AbilityChangelog:[2,1,1],EncounterMethod:[2,1,1],LocationGameIndex:[2,1,1],ItemFlavorText:[2,1,1],ContestType:[2,1,1],MoveFlagMap:[2,1,1],LocationAreaEncounterRate:[2,1,1],Pokedex:[2,1,1],EvolutionChain:[2,1,1],PokemonStat:[2,1,1],metadata:[2,2,1],Pokemon:[2,1,1],PokemonShape:[2,1,1],Location:[2,1,1]},"pokedex.db":{tables:[2,0,0]}},terms:{all:[1,2,3],code:[2,3],chain:2,type_id:2,queri:[],consum:2,pokemon_move_method_pros:2,yellow:2,language_id:2,four:2,tent:2,moveflagtyp:[],abil:[2,4],berry_firm:2,follow:3,lookup:3,hate:2,row:2,nature_id:2,whose:2,aria:[],palac:2,"pok\u00e9":2,program:3,certain:2,skip:3,locaion:2,introduc:2,awesome_nam:2,deactiv:3,sourc:3,everi:2,string:2,itemcategori:[2,4],util:[0,2],minimum_level:2,fall:2,veri:2,affect:2,pokemonflavortext:[],min_hit:2,cool:2,itempocket:[2,4],level:2,gender:2,effect_ch:2,max_harvest:2,list:[2,3],correct:2,item:[2,4],minimum_happi:2,sane:[],declar:2,print_item:[],quick:[1,3],movetarget:[2,4],pleas:[],height:2,work:[0,2,3],move_flag_pros:2,speci:2,natur:[2,3,4],request:[],jump:[1,2],rate:2,cost:2,decigram:2,habitat_id:2,download:3,even:[2,3],index:[1,2,3,4],what:[2,3],appear:2,mainlin:[],preserv:[],version_group_region:2,section:[],"while":2,anywai:3,current:3,version:[2,3,4],appeal:2,method:2,metadata:2,move_effect:2,evolved_pokemon_id:[],paralysi:2,displai:2,join:[],gener:[2,3,4],never:[],here:[0,2,3],bodi:2,abomasnow:[],let:3,contest_effect_id:2,ubuntu:[1,3],path:3,sinc:[],interpret:3,pokemon_species_pros:2,search:[1,2],versiongroup:[2,4],location_game_indic:2,evolution_chain:2,print_pokemon:[],loos:2,dri:2,prior:[],amount:2,orm:0,defeat:2,action:2,chang:[2,3],gene:2,chanc:2,encounter_slot:2,semant:2,via:[2,3],regardless:2,extra:[],move_flag_type_id:[],appli:2,prefer:2,apt:3,item_flag_map:2,item_id:2,itemflavortext:[2,4],api:[],encounter_condition_value_map:2,famili:2,sgn:2,instal:[1,3],gimmick:2,item_pocket:2,select:0,uniu:2,is_pokemon:[],from:[0,2,3],would:[],two:[2,3],next:3,few:[],wood:[],call:2,calm:2,supercontestcombo:[2,4],criteria:[],taken:2,type:[2,3,4],minor:2,more:[2,3],sort:2,frenzi:[],babi:2,relat:2,min_level:2,pokemonspeciesflavortext:[2,4],warn:[],sore:[],flag:2,form_base_pokemon_id:[],worri:[],particular:2,pokemon_form:2,egg_group_id:2,hold:2,effort:2,descrption:2,must:2,dex:2,none:2,word:2,sometim:2,hour:2,base_experi:2,setup:3,pokedex_db_engin:3,battl:2,uniqu:2,moveeffect:[2,4],histori:2,unique_pokemon_id:[],can:[2,3],learn:[0,2],under:2,male:2,firmness_id:2,def:2,versiongroupregion:[2,4],heart:2,sqlite:3,traceback:[],prompt:3,climat:3,give:[0,3],nature_nam:2,sudo:3,share:2,indic:1,locationgameindex:[2,4],critic:2,minimum:2,want:3,explos:[],struggl:[],occur:2,paleozo:[],alwai:3,differenti:2,cours:3,end:3,nature_pokeathlon_stat:2,turn:2,anoth:[0,3],contest_type_id:2,write:[0,3],how:[2,3],actual:[0,2],env:3,verifi:3,bit:3,growth_rat:2,simpl:0,distro:3,splendifer:2,map:[2,4],plant:[],locationareaencounterr:[2,4],evolution_trigg:2,trigger_item_id:2,mess:2,max:2,clone:3,earlier:3,variant:2,pokemon_habitat_nam:2,befor:[2,3],okai:2,beauti:2,language_nam:2,mai:2,multipl:2,stat_hint:2,data:[0,2,3],eighth:2,physic:2,naturepokeathlonstat:[2,4],time_of_dai:2,"short":2,is_babi:2,happi:[2,3],seriou:0,counter:2,favorit:3,correspond:[2,3],element:2,caus:2,inform:0,"switch":[2,3],environ:3,enter:2,tall:2,fallback:[],egg:2,order:2,includ:[2,3],move_battle_style_pros:2,minimum_stat:2,help:3,"_sqlalchemi":[],offici:2,move:[2,4],gender_r:2,becaus:3,meter:2,trade:2,increas:2,"_python":[],through:2,venusaur:[],abilityflavortext:[2,4],still:[],form_:[],testcod:[],multilang:2,style:2,group:2,item_flavor_text:2,pokemon_form_id:2,encounter_id:2,is_battle_onli:2,spoken:2,jigglypuff:2,crit_rat:2,encountercondit:[2,4],main:2,might:3,them:[2,3],good:[],"return":[],hates_flavor_id:2,thei:2,fling:2,python:[0,3],movemetaail:[2,4],pokeathlonstat:[2,4],move_flag_typ:[],dai:2,initi:2,nation:2,solarbeam:[],half:2,fling_pow:2,now:3,ability_flavor_text:2,pikachu:[],term:[],move_meta_ail:2,name:[0,2],anyth:3,move_flag_id:2,bonu:2,separ:2,iff:2,form_descript:2,trap:2,move_flag_map:2,each:2,found:[],went:3,is_dream:2,mean:[2,3],beween:2,"int":2,ailment:2,weight:2,individu:2,hard:2,idea:[],contest_type_nam:2,firer:2,"static":2,connect:[0,1],inflict:2,encounter_slot_id:2,leafgreen:2,our:3,meth:[],beyond:2,tenth:2,special:2,out:[0,2,3],variabl:3,"pok\u00e9dex":[0,1,2,4],ability_id:2,type_nam:2,virtualenv:3,goe:3,known_move_id:2,defend:2,berryflavor:[2,4],whoosh:3,categori:2,bonus:2,shaymin:2,extra_languag:[],print:0,formula:2,item_pocket_nam:2,defens:2,red:2,atuomat:3,pokemonevolut:[2,4],stat_nam:2,advanc:3,evolution_trigger_pros:2,move_battle_style_id:2,free:3,standard:2,wormadam:[],reason:3,base:2,ability_changelog:2,put:3,org:[],teach:2,pokemonformpokeathlonstat:[2,4],genesect:[],flare:[],could:2,omit:[],atk:2,color_id:2,filter:[],thing:3,footnot:3,region_nam:2,place:2,isn:2,pokemonstat:[2,4],encounterconditionvaluemap:[2,4],confus:3,think:3,first:[0,2],oper:3,minimum_beauti:2,rang:2,move_effect_changelog_pros:2,oppon:2,directli:3,feel:3,engine_prefix:[],number:2,yourself:[],anotherenv:3,instruct:3,relative_physical_stat:2,done:[1,2,3],messag:2,party_pokemon_id:[],item_fling_effect:2,miss:[],primari:2,size:2,prioriti:2,given:2,script:3,associ:[2,4],caught:2,breed:2,system:[1,3],construct:3,grow:2,kanto:2,swarm:2,attack:2,soil_dry:2,order_bi:[],move_id:2,storm:[],pokemonmovemethod:[2,4],conveni:[],"final":2,schema:[1,2,4],growth_tim:2,shell:3,option:3,move_target:2,movebattlestyl:[2,4],tool:3,copi:3,ability_pros:2,specifi:[2,3],main_region_id:2,pokemon_color_nam:2,part:2,egggroup:[2,4],whip:[],consult:[],move_battle_styl:2,exactli:2,than:[],wide:3,nature_battle_style_prefer:2,pokemon_shap:2,evolution_chain_id:2,whenev:3,tree:2,second:2,growthrat:[2,4],move_meta:2,matter:2,meta_category_id:2,pressur:2,flame:2,bind:[],pokeathlon_stat:2,danc:[],decimet:2,seri:2,exhibit:2,"function":2,comput:3,region_id:2,plaintext:2,encounter_method_pros:2,ani:[0,2],decreased_stat_id:2,generation_id:2,packag:3,item_flag_id:2,seed:[0,2],have:[2,3],tabl:[0,1,2,4],need:[0,2,3],ambigu:[],location_id:2,moveflagmap:[2,4],sell:2,engin:3,techniqu:2,zero:[],movevers:[2,4],item_fling_effect_pros:2,accuraci:2,note:2,also:[2,3],exampl:[0,2],super_contest_combo:2,take:2,which:2,hatch:2,pokemontyp:[2,4],min_turn:2,singl:2,item_categori:2,surf:2,blue:2,sure:3,unless:2,distribut:3,normal:2,multipli:2,price:2,berry_flavor:2,ability_nam:2,canonical_pokedex_id:2,most:[0,2,3],pokemon_typ:2,pokemon_mov:2,diglett:[],letter:2,millimet:2,pair:2,introduced_in_version_group_id:2,stat_hint_nam:2,pokemon_species_nam:2,sub:2,pokemon_nam:2,don:[0,3],flavor_text:2,pokemon_shape_id:[],dream:2,cover:0,uri:0,doe:[2,3],increased_stat_id:2,bracket:2,exp:2,movemeta:[2,4],recoil:2,unchang:[],moveflag:[2,4],fact:2,gain:2,deoxi:2,charmeleon:[],item_flavor_summari:2,show:[],text:[2,4],melodi:[],meloetta:[],type_efficaci:2,night:2,session:[0,3],moveeffectchangelog:[2,4],pokemonshap:[2,4],find:3,slot:2,pokemon_form_nam:2,onli:[2,3],explicitli:[],locat:[2,4],pretti:3,pokemonspeci:[0,2,4],categor:2,explain:[],configur:3,activ:3,cloak:[],should:[2,3],jam:2,order_by_nam:[],combo:2,gametext:2,flinch:2,over:2,game_index:2,info:0,hit:2,machine_numb:2,pokemonformgroup:[],get:[0,1,2,3],location_nam:2,form_identifi:2,express:[],target_id:2,stathint:[2,4],bear:2,secondari:[],pocket:2,session_arg:[],cannot:2,foremost:0,ability_changelog_pros:2,trade_pokemon_id:[],gen:2,requir:2,target:2,berry_id:2,item_pros:2,evolution_trigger_id:2,item_nam:2,organ:[],encounter_condition_value_pros:2,probabl:[],maxmum:2,encounter_method_id:2,twice:2,stuff:[2,4],common:2,encounterconditionvalu:[2,4],contain:[2,3],abilitychangelog:[2,4],pokemon_speci:2,engine_arg:[],bought:2,where:2,natural_gift_type_id:2,summari:2,pokemon_color:2,set:[2,3],modulo:2,knowledg:3,startup:[1,3],pokemonmov:[2,4],see:[2,3],full:[0,2],fling_effect_id:2,version_group_id:2,sport:2,hammer:[],onc:[],target_type_id:2,statu:[2,3],brave:2,parent:2,expert:3,pokemon_id:2,sorta:2,databas:[0,1,2,3,4],someth:[],encounter_condition_value_id:2,contest_typ:2,enough:[2,3],won:3,pokemonitem:[2,4],move_changelog:[],between:2,"import":0,experi:[2,4],across:2,contest_combo:2,attribut:2,altern:2,naturebattlestyleprefer:[2,4],johto:2,kei:2,numer:2,attempt:[],condit:2,pokemoncolor:[2,4],extens:2,pokedex_index_dir:3,succeed:3,pocket_id:2,pokemon_form_group_pros:[],meta_ailment_id:2,water:[],last:2,berri:[2,4],region:[2,4],"pok\u00e9block":2,equal:2,foreign:2,base_stat:2,etc:2,tutori:[],pokemon_species_flavor_summari:2,itemflingeffect:[2,4],pokemon:[0,2,4],testoutput:[],mani:[2,3],rariti:2,com:3,load:[0,1,3],among:2,pokeathlon_stat_nam:2,markdown:[2,3],pokemon_game_indic:2,point:2,color:2,had:2,contest_effect_pros:2,item_game_indic:2,written:3,differ:2,linux:3,cancel:2,assum:3,duplic:[],quit:[],baby_trigger_item_id:2,itemflagmap:[2,4],pokedex_numb:2,movechangelog:[],major:2,encounter_condition_pros:2,three:3,been:2,tutor:2,keldeo:[],trigger:2,contestcombo:[2,4],interest:3,basic:0,pokemon_flavor_summari:[],movemetastatchang:[2,4],quickli:2,firm:2,hoenn:2,ivysaur:[],sprite:2,pip:3,move_nam:2,xxx:0,great:[],argument:0,item_flag_pros:2,togeth:2,func:[],"pok\u00e9athlon":2,eeve:3,high_hp_prefer:2,countri:2,present:2,movedamageclass:[2,4],"case":[2,3],party_species_id:2,look:[],move_meta_ailment_nam:2,pokemon_habitat:2,straight:2,properti:2,empti:[2,3],encountermethod:[2,4],pokemon_move_method:2,defin:2,lizard:2,match:[],behavior:2,pokemon_shape_pros:2,wild:2,decreas:2,iso3166:2,pokedex:[0,1,2,3,4],pokemon_form_group:[],move_flavor_summari:2,genu:[0,2],translation_class:2,almost:2,soil:2,max_hit:2,non:2,rip:2,player:2,itself:2,pokemon_dex_numb:2,genderless:2,filter_bi:[],result:[],move_effect_changelog:2,pokemonhabitat:[2,4],"null":2,develop:3,berry_firmness_nam:2,author:3,perform:2,parti:2,make:[2,3],belong:2,expect:[],same:[2,3],mole:[],handl:[],html:[],global:2,document:[1,3],higher:2,species_id:2,ball:2,raichu:[],pokedex_pros:2,max_level:2,short_effect:2,pick:2,effect:2,second_move_id:2,move_vers:2,move_flavor_text:2,rais:[],user:[2,3],has_gender_differ:2,pokemon_item:2,changed_in_version_group_id:2,move_meta_stat_chang:2,berryfirm:[2,4],evolves_from_pokemon_id:[],recent:[],appropri:2,super_contest_effect:2,damage_factor:2,contesteffect:[2,4],natural_gift_pow:2,"pok\u00e9mon":[2,3,4],whole:2,thu:2,well:[2,3],game:2,effect_id:2,flinch_chanc:2,unalias:[],without:2,command:3,contesttyp:[2,4],thi:[0,2,3],english:[],forms_switch:2,gift:2,category_id:2,mic:[2,4],usual:2,identifi:2,munber:2,entri:2,rest:[0,3],detail:[2,3],shape:2,move_effect_pros:2,pokemondexnumb:[2,4],flavor:[2,4],speed:2,yet:3,languag:[2,3,4],characterist:2,nullabl:[],sky:2,except:2,add:2,held_item_id:2,move_damage_class:2,itemflag:[2,4],els:2,mod:[],smart:2,build:[],bin:3,applic:2,bicycl:2,pokemon_:2,format:0,read:0,big:3,version_nam:2,likes_flavor_id:2,veekun:3,form_nam:2,is_default:2,movemetacategori:[2,4],pokemon_move_method_id:2,dimorph:2,world:2,shadow:[],walk:2,typeefficaci:[2,4],pokemon_flavor_text:[],move_target_pros:2,supercontesteffect:[2,4],like:[1,2,3],specif:2,changelog:[2,4],pokemon_stat:2,integ:2,collect:2,either:[2,3],lose:2,evolutionchain:[2,4],anti:3,maximum_stat:2,soft:2,page:1,encount:[2,4],www:[],right:1,old:2,often:2,habitat:2,snatchabl:2,some:[0,2,3],back:2,percentag:2,whatev:2,damage_type_id:2,intern:2,growth:2,smoothli:3,small:0,guess:[],ailment_ch:2,librari:[0,1,3],gene_mod_5:2,autofunct:[],base_happi:2,charmand:[],both:2,pokemonegggroup:[2,4],item_category_pros:2,locationarea:[2,4],per:2,move_flag:2,when:2,evolv:2,leav:3,contact:2,encounterslot:[2,4],damage_class_id:2,egg_group:2,damag:2,machin:[2,4],core:2,object:0,run:[0,3],power:[0,2],contest_effect:2,"enum":[2,4],version_id:2,encounter_condition_id:2,argumenterror:[],step:2,relationship:[],prerequisit:[1,3],evolves_from_species_id:2,post:2,"super":2,unicod:2,stage:2,chapter:3,about:3,postgresql:3,column:2,holdabl:2,http:[],zweilou:[],unfortun:3,stat_chanc:2,encounter_condit:2,move_damage_class_pros:2,produc:2,encounter_method:2,own:[2,3],primarili:2,burmi:[],within:2,ditto:2,evolutiontrigg:[2,4],shape_id:2,your:3,item_flag:2,move_meta_category_pros:2,unown:2,git:3,fill:0,location_area:2,wai:2,area:2,aren:[],captur:2,lone:2,growth_rate_pros:2,tame:2,stamina:2,start:[],reli:[],much:3,franchis:2,move_meta_categori:2,pokemon_egg_group:2,max_turn:2,fish:2,treat:2,lowest:2,location_area_encounter_r:2,evolved_species_id:2,form:2,latex:2,forc:2,stat_id:2,heal:2,pokemonform:[2,4],low_hp_prefer:2,content:1,state:2,link:2,translat:[2,3],offens:2,line:3,highest:2,"true":2,version_group:2,count:2,iso639:2,max_chang:2,itemgameindex:[2,4],evolut:2,possibl:[2,3],whether:2,access:2,smooth:2,maximum:2,trade_species_id:2,growth_rate_id:2,record:2,below:2,taught:2,doc:0,mapped_class:2,otherwis:2,problem:3,grass:2,similar:[],super_contest_effect_id:2,pokedex_id:2,egg_group_pros:2,pokeathlon_stat_id:2,creat:[0,3],pokemon_species_flavor_text:2,generation_nam:2,"abstract":2,futur:[],doesn:[2,3],repres:2,pokemongameindex:[2,4],incomplet:[],exist:[2,3],file:3,valu:2,necessarili:2,attr:[],flavor_summari:2,check:3,pokemon_evolut:2,rainbow:[],know:[2,3],contest:[2,4],moveflavortext:[2,4],sexual:2,percent:2,ext:2,"default":[0,2,3],bulbasaur:0,other:[2,3],bool:2,encounter_condition_valu:2,pokemon_form_pokeathlon_stat:2,you:[0,2,3],first_move_id:2,capture_r:2,petal:[],pichu:[],stat:[2,4],potion:[],intend:0,determin:2,"class":2,sqlalchemi:[0,2,3],location_area_id:2,affix:2,poffin:2,meaning:2,hatch_count:2,kinda:2,sql:[],leaf:[],debian:[1,3],location_area_pros:2,outdat:3,femal:2,longer:2,directori:3,super_contest_effect_pros:2,descript:2,move_flag_type_pros:[],kilogram:2,tricki:[],pirouett:[],potenti:2,time:[2,3],fresh:[]},objtypes:{"0":"py:module","1":"py:dex-table","2":"py:data"},titles:["Using pokedex","The pokedex documentation","The pok\u00e9dex tables","Installing the pokedex library","The database schema"],objnames:{"0":"Python module","1":"dex-table","2":"Python data"},filenames:["usage","index","main-tables","installing","schema"]}) \ No newline at end of file +Search.setIndex({objects:{"pokedex.db.tables.Machine":{is_hm:[2,3,1,""]},"pokedex.db":{tables:[2,0,1,""],connect:[0,4,1,""]},"pokedex.db.tables.PokemonForm":{name:[2,3,1,""]},"pokedex.db.tables":{NaturePokeathlonStat:[2,1,1,""],SuperContestEffect:[2,1,1,""],PokemonHabitat:[2,1,1,""],PokemonDexNumber:[2,1,1,""],MoveFlavorText:[2,1,1,""],PokeathlonStat:[2,1,1,""],PokemonSpeciesFlavorText:[2,1,1,""],Machine:[2,1,1,""],PokemonSpecies:[2,1,1,""],Version:[2,1,1,""],EggGroup:[2,1,1,""],ItemFlingEffect:[2,1,1,""],mapped_classes:[2,2,1,""],PokemonAbility:[2,1,1,""],NatureBattleStylePreference:[2,1,1,""],PokemonMove:[2,1,1,""],Type:[2,1,1,""],GrowthRate:[2,1,1,""],ContestCombo:[2,1,1,""],VersionGroupRegion:[2,1,1,""],BerryFirmness:[2,1,1,""],MoveMetaStatChange:[2,1,1,""],Stat:[2,1,1,""],MoveMeta:[2,1,1,""],PokemonType:[2,1,1,""],Ability:[2,1,1,""],ContestEffect:[2,1,1,""],Nature:[2,1,1,""],EncounterConditionValue:[2,1,1,""],EvolutionTrigger:[2,1,1,""],MoveEffect:[2,1,1,""],ItemCategory:[2,1,1,""],PokemonEggGroup:[2,1,1,""],LocationArea:[2,1,1,""],ItemFlag:[2,1,1,""],PokemonItem:[2,1,1,""],EncounterSlot:[2,1,1,""],EncounterCondition:[2,1,1,""],PokemonEvolution:[2,1,1,""],AbilityFlavorText:[2,1,1,""],MoveBattleStyle:[2,1,1,""],MoveFlag:[2,1,1,""],MoveFlagMap:[2,1,1,""],metadata:[2,2,1,""],ItemGameIndex:[2,1,1,""],Language:[2,1,1,""],BerryFlavor:[2,1,1,""],MoveMetaCategory:[2,1,1,""],Region:[2,1,1,""],PokemonGameIndex:[2,1,1,""],StatHint:[2,1,1,""],Experience:[2,1,1,""],PokemonColor:[2,1,1,""],Item:[2,1,1,""],Berry:[2,1,1,""],SuperContestCombo:[2,1,1,""],MoveEffectChangelog:[2,1,1,""],EvolutionChain:[2,1,1,""],PokemonMoveMethod:[2,1,1,""],MoveTarget:[2,1,1,""],PokemonFormPokeathlonStat:[2,1,1,""],MoveMetaAilment:[2,1,1,""],PokemonForm:[2,1,1,""],ItemPocket:[2,1,1,""],MoveChangelog:[2,1,1,""],Generation:[2,1,1,""],VersionGroup:[2,1,1,""],TypeEfficacy:[2,1,1,""],Move:[2,1,1,""],ItemFlagMap:[2,1,1,""],Pokedex:[2,1,1,""],EncounterMethod:[2,1,1,""],LocationGameIndex:[2,1,1,""],EncounterConditionValueMap:[2,1,1,""],ItemFlavorText:[2,1,1,""],ContestType:[2,1,1,""],Encounter:[2,1,1,""],LocationAreaEncounterRate:[2,1,1,""],AbilityChangelog:[2,1,1,""],PokemonStat:[2,1,1,""],MoveDamageClass:[2,1,1,""],Pokemon:[2,1,1,""],PokemonShape:[2,1,1,""],Location:[2,1,1,""]},"pokedex.db.tables.Pokemon":{stat:[2,5,1,""],better_damage_class:[2,3,1,""],name:[2,3,1,""]},"pokedex.db.tables.Item":{appears_underground:[2,3,1,""]},"pokedex.db.tables.Nature":{is_neutral:[2,3,1,""]},"pokedex.db.util":{get:[0,4,1,""]}},terms:{all:[0,1,2,3],code:[2,3],chain:2,type_id:2,queri:[0,1],consum:2,pokemon_move_method_pros:2,yellow:2,four:2,hating_natur:2,abil:[2,4],eeve:[0,3],follow:[0,2,3],hate:2,row:2,content:1,system:[1,3],pokemon_shape_pros:2,"pok\u00e9":2,program:3,meta_stat_chang:2,encounter_r:2,locaion:2,introduc:2,awesome_nam:2,deactiv:3,sourc:3,everi:[0,2],string:2,without:2,fals:2,itemcategori:[2,4],util:[0,2],canonical_for_gener:2,minimum_level:2,fall:2,veri:2,affect:2,min_hit:2,cool:2,damage_typ:2,itempocket:[2,4],level:2,gender:2,effect_ch:2,max_harvest:2,list:[0,2,3],defens:2,item:[0,2,4],minimum_happi:2,form:2,contest_combo_second:2,print_item:0,quick:[1,3],super_contest_combo_second:2,movetarget:[2,4],trigger_item:2,height:2,work:[0,2,3],move_flag_pros:2,speci:[0,2],pokeathlon_effect:2,natur:[2,3,4],attribut:2,uniqu:2,jump:[1,2],rate:2,cost:[0,2],decigram:2,habitat_id:2,download:3,even:[2,3],index:[1,2,3,4],what:[0,2,3],appear:2,cover:0,introspect:2,brief:0,find:3,current:3,version:[2,3,4],appeal:2,method:[0,2],metadata:[0,2],move_effect:2,full:[0,2],pressur:2,whose:2,join:0,gener:[2,3,4],never:2,here:[0,2,3],bodi:2,mapped_class:2,abomasnow:0,let:3,contest_effect_id:2,ubuntu:[1,3],path:3,interpret:3,pokemon_species_pros:2,search:[1,2],relat:2,versiongroup:[2,4],genu:[0,2],bestow:2,print_pokemon:0,pokedex:[0,1,2,3,4],dri:2,prior:2,damage_class:2,base:[0,2],within:[0,2],defeat:2,action:2,chang:[2,3],gene:2,inflict:2,chanc:2,encounter_slot:2,semant:2,via:[2,3],regardless:2,appli:2,modul:2,prefer:2,apt:3,item_flag_map:2,put:3,itemflavortext:[2,4],api:[0,1],encounter_condition_value_map:2,famili:2,sgn:2,instal:[1,3],gimmick:2,should:[0,2,3],held_item:2,item_pocket:2,select:0,uniu:2,from:[0,2,3],internation:2,two:[2,3],next:3,few:0,jam:2,pokemon_egg_group:2,calm:2,supercontestcombo:[2,4],criteria:0,taken:2,decreased_stat:2,type:[0,2,3,4],minor:2,more:[0,2,3],sort:[0,2],frenzi:0,babi:2,under:2,line:3,about:[0,2,3],pokemonspeciesflavortext:[2,4],flag:2,particular:[0,2],pokemon_form:2,egg_group_id:2,hold:2,effort:2,cach:2,must:[0,2],dex:2,none:[0,2],gametext:2,word:2,hour:2,taught:2,base_experi:2,setup:3,pokedex_db_engin:3,battl:2,super_contest_combo_first:2,moveeffect:[2,4],histori:2,other:[0,2,3],whatev:2,learn:[0,2],male:2,firmness_id:2,def:[0,2],versiongroupregion:[2,4],heart:2,sqlite:[0,3],prompt:3,climat:3,give:[0,3],nature_nam:2,sudo:3,share:2,lizard:2,indic:1,locationgameindex:[2,4],critic:2,minimum:2,want:[0,3],explos:0,color_id:2,occur:2,alwai:[0,3],differenti:2,cours:3,end:3,nature_pokeathlon_stat:2,thing:[0,1,3],programmat:2,anoth:[0,3],contest_type_id:2,write:3,how:[0,2,3],forms_switch:2,env:3,is_neutr:2,verifi:3,bit:3,move_meta_ail:2,simpl:0,distro:3,splendifer:2,map:[2,4],plant:0,locationareaencounterr:[2,4],evolution_trigg:2,trigger_item_id:2,mess:2,max:2,game_indic:2,earlier:3,variant:2,pokemon_habitat_nam:2,befor:[2,3],okai:2,beauti:2,language_nam:2,mai:2,multipl:2,pokemon_evolut:2,stat_hint:2,data:[0,2,3],eighth:2,physic:2,naturepokeathlonstat:[2,4],time_of_dai:2,"short":2,is_babi:2,party_species_id:2,counter:2,favorit:3,correspond:[2,3],element:2,caus:2,condition_value_map:2,"switch":[2,3],environ:3,enter:2,tall:2,stat_hint_nam:2,egg:2,order:[0,2],includ:[2,3],move_battle_style_pros:2,help:3,offici:2,move:[0,2,4],gender_r:2,becaus:3,meter:2,trade:2,evolved_speci:2,through:2,pokemonformpokeathlonstat:[2,4],venusaur:0,abilityflavortext:[2,4],gift:2,multilang:2,oppon:2,style:2,parent_speci:2,group:2,primarili:2,treat:2,pokemon_form_id:2,encounter_id:2,is_battle_onli:2,feel:3,jigglypuff:2,crit_rat:2,whole:2,encountercondit:[2,4],super_contest_combo_next:2,hidden:2,main:2,might:3,alter:2,them:[0,2,3],good:0,"return":[0,2],hates_flavor_id:2,thei:2,fling:2,python:[0,3],movemetaail:[2,4],pokeathlonstat:[2,4],dai:2,initi:2,nation:2,pokemon_move_method_id:2,half:2,item_nam:2,now:3,ability_flavor_text:2,growth_rat:2,name:[0,2],anyth:3,increasing_natur:2,move_flag_id:2,bonu:2,separ:2,iff:2,exampl:[0,2],form_descript:2,trap:2,move_flag_map:2,each:2,found:0,went:3,is_dream:2,mean:[0,2,3],beween:2,ailment:2,weight:2,individu:2,hard:2,idea:0,contest_type_nam:2,locationarea:[2,4],meta:2,"static":2,connect:[0,1],pokeathlon_stat_id:2,encounter_slot_id:2,leafgreen:2,our:[0,3],beyond:2,sexual:2,whip:0,out:[0,2,3],variabl:3,"pok\u00e9dex":[0,1,2,4],type_nam:2,goe:3,miss:2,defend:2,berryflavor:[2,4],whoosh:3,categori:2,max_level:2,palac:2,itemflag:[2,4],print:0,formula:2,item_flag:2,item_pocket_nam:2,correct:2,red:2,atuomat:3,pokemonevolut:[2,4],encounterconditionvalu:[2,4],advanc:3,canonical_pokedex:2,pokemon_dex_numb:2,free:3,standard:2,asc:2,small:0,evolution_chain:2,orm:0,ability_changelog:2,second_move_id:2,pokemon_speci:2,item_id:2,teach:2,is_hm:2,document:[0,1,3],flare:0,could:2,omit:0,atk:2,struggl:2,filter:0,turn:2,"int":2,region_nam:2,place:2,isn:2,pokemonstat:[2,4],contest_combo_first:2,confus:3,think:3,first:[0,2],oper:[0,3],minimum_beauti:2,rang:2,move_effect_changelog_pros:2,genesect:0,directli:3,spoken:2,engine_prefix:0,number:[0,2],trade_species_id:2,evolut:[0,2],location_area_encounter_r:2,date:2,instruct:3,relative_physical_stat:2,done:[1,2,3],construct:3,item_fling_effect:2,known_move_id:2,primari:2,max_experi:2,size:2,prioriti:2,given:2,bonus:2,script:3,associ:[2,4],caught:2,breed:2,sometim:2,messag:2,grow:2,kanto:2,swarm:2,dimorph:2,necessarili:2,order_bi:0,storm:0,pokemonmovemethod:[2,4],locat:[2,4],"final":[0,2],schema:[1,4],shell:3,option:3,fling_effect:2,startup:[1,3],tool:3,copi:3,ability_pros:2,specifi:[0,2,3],all_pokemon:2,main_region_id:2,github:3,egggroup:[2,4],consult:0,move_battle_styl:2,exactli:2,than:0,wide:3,nature_battle_style_prefer:2,pokemon_shap:2,evolution_chain_id:2,whenev:3,tree:2,pokemonmov:[2,4],growthrat:[2,4],move_meta:2,matter:2,meta_category_id:2,paralysi:2,flame:2,lone:2,seriou:0,pokeathlon_stat:2,danc:0,decimet:2,seri:2,exhibit:2,lowest:2,comput:3,region_id:2,plaintext:2,encounter_method_pros:2,ani:[0,2],decreased_stat_id:2,generation_id:2,packag:[0,3],item_flag_id:2,seed:[0,2],have:[0,2,3],tabl:[0,1,2,4],need:[0,2,3],dream_abl:2,"null":2,location_id:2,moveflagmap:[2,4],species_id:2,flinch_chanc:2,engin:[0,3],relationship:[0,2],zero:0,inform:0,self:2,accuraci:2,note:2,also:[0,2,3],contact:2,super_contest_combo:2,take:2,which:2,hatch:2,pokemontyp:[2,4],properti:2,min_turn:2,singl:2,contesttyp:[2,4],surf:2,blue:2,sure:3,unless:[0,2],distribut:3,"enum":[2,4],normal:2,multipli:2,price:2,berry_flavor:2,ability_nam:2,canonical_pokedex_id:2,most:[0,2,3],pokemon_typ:2,pokemon_mov:2,diglett:0,letter:2,millimet:2,pair:2,nature_effect:2,"class":2,move_meta_categori:2,sub:2,pokemon_nam:2,don:[0,3],expert:3,flavor_text:2,dream:2,grass:[0,2],request:0,uri:0,doe:[2,3],increased_stat_id:2,bracket:2,exp:2,databas:[0,1,2,3,4],movemeta:[2,4],recoil:2,effect:2,usual:[0,2],moveflag:[2,4],fact:2,translat:[2,3],deoxi:2,charmeleon:0,set:[2,3],text:[2,4],meloetta:0,type_efficaci:2,area:2,session:[0,3],moveeffectchangelog:[2,4],pokemonshap:[2,4],anywai:3,default_pokemon:2,slot:2,pokemon_form_nam:2,onli:[2,3],bind:0,bicycl:2,pretti:3,pokemonspeci:[0,2,4],trigger:2,"true":2,configur:3,releas:2,state:2,short_effect_map:2,tame:2,liking_natur:2,wood:0,combo:2,footnot:3,flinch:2,over:2,pokemonitem:[2,4],count:2,hit:2,get:[0,1,2,3],location_nam:2,form_identifi:2,target_id:2,stathint:[2,4],bear:2,secondari:2,pocket:2,session_arg:0,cannot:2,foremost:0,ability_changelog_pros:2,increas:2,gen:2,requir:2,target:2,berry_id:2,item_pros:2,evolution_trigger_id:2,fling_pow:2,organ:0,encounter_condition_value_pros:2,all_abl:2,appears_underground:2,maxmum:2,encounter_method_id:2,twice:2,stuff:[2,4],common:[0,2],hates_flavor:2,contain:[0,2,3],abilitychangelog:[2,4],effect_id:2,bought:2,where:2,natural_gift_type_id:2,summari:2,pokemon_color:2,meta_ailment_id:2,modulo:2,pick:2,knowledg:3,baby_trigger_item:2,maximum:2,see:[0,2,3],fling_effect_id:2,version_group_id:2,sport:2,hammer:0,best:2,onc:0,target_type_id:2,statu:[2,3],brave:2,kei:2,pokemon:[0,2,4],pokemon_id:2,sorta:2,super_contest_combo_prev:2,default_form:2,yet:3,enough:[2,3],won:3,game_index:2,move_changelog:2,between:2,"import":0,experi:[2,4],across:2,contest_combo:2,tent:2,altern:2,naturebattlestyleprefer:[2,4],johto:2,parent:2,numer:2,attempt:0,condit:[0,2],pokemoncolor:[2,4],extens:2,pokedex_index_dir:3,succeed:3,effect_map:2,pocket_id:2,water:0,target_efficaci:2,move_nam:2,berri:[2,4],region:[2,4],"pok\u00e9block":2,equal:2,foreign:2,etc:2,tutori:0,pokemon_species_flavor_summari:2,itemflingeffect:[2,4],mani:[2,3],rariti:2,com:3,clone:3,among:2,pokeathlon_stat_nam:2,markdown:[2,3],undocu:2,can:[0,2,3],color:2,sky:2,format:0,contest_effect_pros:2,item_game_indic:2,written:3,differ:2,linux:3,cancel:2,assum:3,damag:2,quit:0,baby_trigger_item_id:2,itemflagmap:[2,4],second:2,encounter_condition_pros:2,three:3,been:2,tutor:2,keldeo:0,much:3,contestcombo:[2,4],interest:3,generation_nam:2,movemetastatchang:[2,4],quickli:2,pokedex_id:2,hoenn:2,ivysaur:0,sprite:2,pip:3,both:2,target_typ:2,better_damage_class:2,great:0,stat_id:2,argument:0,item_flag_pros:2,togeth:2,"pok\u00e9athlon":2,berry_firm:2,high_hp_prefer:2,countri:2,present:2,movedamageclass:[2,4],"case":[2,3],nature_prefer:2,look:0,move_meta_ailment_nam:2,pokemon_habitat:2,straight:2,item_fling_effect_pros:2,encountermethod:[2,4],pokemon_move_method:2,defin:[0,2],"while":2,smart:2,behavior:2,wild:2,exist:[2,3],iso3166:2,loos:2,move_flavor_summari:2,location_game_indic:2,encounter_condition_valu:2,translation_class:2,almost:2,petal:0,max_hit:2,required_for_evolut:2,rip:2,activ:3,player:2,itself:2,move_target:2,meaning:2,descript:2,filter_bi:0,result:0,pokemonhabitat:[2,4],develop:3,berry_firmness_nam:2,author:3,perform:2,parti:2,make:[0,2,3],belong:2,amount:2,same:[2,3],check:3,dex_numb:2,underground:2,postgresql:3,attack:2,higher:2,sell:2,ball:[0,2],pokedex_pros:2,battle_style_prefer:2,ability_id:2,short_effect:2,stat_nam:2,engine_arg:0,shaymin:2,move_flavor_text:2,rais:0,user:[2,3],has_gender_differ:2,pokemon_item:2,soil_dry:2,changed_in_version_group_id:2,move_meta_stat_chang:2,berryfirm:[2,4],move_id:2,techniqu:2,appropri:[0,2],super_contest_effect:2,machineri:2,contesteffect:[2,4],natural_gift_pow:2,"pok\u00e9mon":[0,2,3,4],entri:2,thu:2,well:[2,3],except:[0,2],know:[0,2,3],non:2,move_battle_style_id:2,location_area_id:2,solarbeam:0,command:3,item_categori:2,thi:[0,2,3],machine_numb:2,category_id:2,tast:2,mic:[2,4],battle_styl:2,unchang:2,load:[0,1,3],identifi:[0,2],munber:2,just:0,descrption:2,percent:2,rest:3,shape:2,move_effect_pros:2,pokemondexnumb:[2,4],part:2,pokemon_game_indic:2,flavor:[2,4],speed:2,contest_typ:2,languag:[0,2,3,4],characterist:2,hint:2,nullabl:2,point:2,had:2,encounter_condition_value_id:2,add:2,held_item_id:2,move_damage_class:2,reason:3,els:2,match:0,bin:3,applic:2,pokemon_:2,last:2,read:0,big:3,version_nam:2,supercontesteffect:[2,4],veekun:3,form_nam:[0,2],is_default:2,movemetacategori:[2,4],game:2,minimum_stat:2,world:2,shadow:2,walk:2,you:[0,2,3],like:[0,1,2,3],move_target_pros:2,likes_flavor_id:2,ditto:2,specif:2,changelog:[2,4],integ:2,collect:2,either:[2,3],lose:2,evolutionchain:[2,4],anti:3,specifii:2,maximum_stat:2,soft:2,page:1,encount:[2,4],right:1,old:2,often:2,habitat:2,snatchabl:2,poffin:2,back:2,percentag:2,global:2,damage_type_id:2,intern:2,growth:2,shape_id:2,ailment_ch:2,librari:[0,1,3],gene_mod_5:2,base_happi:2,charmand:0,pokemonegggroup:[2,4],item_category_pros:2,language_id:2,per:2,move_flag:2,when:2,evolv:2,leav:3,encounterslot:[2,4],damage_class_id:2,contest_effect:2,machin:[2,4],core:2,object:[0,2],run:[0,3],power:[0,2],post:2,night:2,version_id:2,evolutiontrigg:[2,4],party_speci:2,step:2,prerequisit:[1,3],evolves_from_species_id:2,major:[0,2],"super":2,unicod:2,condition_valu:2,stage:2,chapter:3,experience_t:2,min_level:2,actual:[0,2],movechangelog:[2,4],column:2,holdabl:2,zweilou:0,unfortun:3,stat_chanc:2,egg_group:2,encounter_condit:2,move_damage_class_pros:2,produc:2,encounter_method:2,own:[2,3],item_flavor_text:2,likes_flavor:2,increased_stat:2,empti:[2,3],child_speci:2,bool:2,your:3,base_stat:2,move_meta_category_pros:2,unown:2,git:3,location_area:2,wai:2,pokemon_color_nam:2,captur:2,soil:2,growth_rate_pros:2,happi:[2,3],stamina:2,start:0,reli:0,version_group_region:2,franchis:2,pokemon_species_nam:2,suit:2,call:[0,2],max_turn:2,fish:2,move_effect_changelog:2,"function":[0,2],evolution_trigger_pros:2,evolved_species_id:2,item_flavor_summari:2,latex:2,forc:2,conclud:0,heal:2,basic:0,femal:2,low_hp_prefer:2,sqlalchemi:[0,2,3],skip:3,gain:2,offens:2,nature_id:2,highest:2,categor:2,version_group:2,movebattlestyl:[2,4],info:[0,2],iso639:2,max_chang:2,itemgameindex:[2,4],triggered_evolut:2,possibl:[2,3],whether:2,access:2,smooth:2,displai:2,pokedex_numb:2,growth_rate_id:2,record:2,below:2,firer:2,doc:0,anotherenv:3,otherwis:2,problem:3,encounterconditionvaluemap:[2,4],similar:2,super_contest_effect_pros:2,super_contest_effect_id:2,firm:2,egg_group_pros:2,valu:2,creat:[0,3],contest_combo_next:2,pokemon_species_flavor_text:2,certain:2,"abstract":2,smoothli:3,changed_in:2,doesn:[2,3],repres:2,pokemongameindex:[2,4],decreas:2,file:3,some:[0,2,3],decreasing_natur:2,genderless:2,flavor_summari:2,mole:0,link:2,fill:0,max_experience_obj:2,rainbow:0,encounter_map:2,contest:[2,4],moveflavortext:[2,4],tenth:2,growth_tim:2,detail:[2,3],known_mov:2,"default":[0,2,3],bulbasaur:0,declar:2,lookup:3,special:2,pokemon_form_pokeathlon_stat:2,typeefficaci:[2,4],first_move_id:2,capture_r:2,virtualenv:3,stat:[2,4],potion:0,intend:0,determin:2,dream_pokemon:2,main_region:2,encounter_condition_id:2,affix:2,stat_identifi:2,introduced_in_version_group_id:2,natural_gift_typ:2,hatch_count:2,kinda:2,sql:0,leaf:0,damage_efficaci:2,trade_speci:2,location_area_pros:2,outdat:3,pokemonform:[2,4],longer:2,directori:[0,3],debian:[1,3],pokemon_stat:2,damage_factor:2,kilogram:2,contest_combo_prev:2,potenti:2,time:[2,3],fresh:0},objtypes:{"0":"py:module","1":"py:dex-table","2":"py:data","3":"py:attribute","4":"py:function","5":"py:method"},titles:["Using pokedex","The pokedex documentation","The pok\u00e9dex tables","Installing the pokedex library","The database schema"],objnames:{"0":["py","module","Python module"],"1":["py","dex-table","dex-table"],"2":["py","data","Python data"],"3":["py","attribute","Python attribute"],"4":["py","function","Python function"],"5":["py","method","Python method"]},filenames:["usage","index","main-tables","installing","schema"]}) \ No newline at end of file diff --git a/usage.html b/usage.html index 71209a1..4730d77 100644 --- a/usage.html +++ b/usage.html @@ -3,13 +3,16 @@ + - Using pokedex — pokedex v0.1 documentation + Using pokedex — pokedex 0.1 documentation + + - + @@ -42,7 +45,7 @@
    • previous |
    • -
    • pokedex v0.1 documentation »
    • +
    • pokedex 0.1 documentation »
    • @@ -54,7 +57,7 @@

      Using pokedex

      The pokédex is, first and foremost, a Python library. To get the most of it, -you’ll need to learn `Python`_ and `SQLAlchemy`_.

      +you’ll need to learn Python and SQLAlchemy.

      Here is a small example of using pokedex:

      from pokedex.db import connect, tables, util
       session = connect()
      @@ -70,14 +73,167 @@ you’ll need to learn `Py
       

      Connecting

      To get information out of the Pokédex, you will need to create a Session. To do that, use -pokedex.db.connect(). For simple uses, you don’t need to give it any +pokedex.db.connect(). For simple uses, you don’t need to give it any arguments: it the database that pokedex load fills up by default. If you need to select another database, give its URI as the first argument.

      -

      The object connect() gives you is actually a -sqlalchemy.orm.session.Session, giving you the +

      The object connect() gives you is actually a +SQLAlchemy session, giving you the full power of SQLAlchemy for working with the data. We’ll cover some basics here, but if you intend to do some serious work, do read SQLAlchemy’s docs.

      -

      XXX: write the rest of this

      +
      +
      +

      Pokédex tables

      +

      Data in the pokédex is organized in tables, defined in +pokedex.db.tables. +There is quite a few or them. To get you started, here are a few common ones:

      + +
      +
      +

      Getting things

      +

      If you know what you want from the pokédex, you can use the +pokedex.db.util.get() function. It looks up a thing in a table, based on +its identifier, name, or ID, and returns it.

      +
      def print_pokemon(pokemon):
      +    print u'{0.name}, the {0.genus} Pokemon'.format(pokemon)
      +
      +print_pokemon(util.get(session, tables.PokemonSpecies, identifier='eevee'))
      +print_pokemon(util.get(session, tables.PokemonSpecies, name=u'Ho-Oh'))
      +print_pokemon(util.get(session, tables.PokemonSpecies, id=50))
      +
      +def print_item(item):
      +    print u'{0.name}: ${0.cost}'.format(item)
      +
      +print_item(util.get(session, tables.Item, identifier='great-ball'))
      +print_item(util.get(session, tables.Item, name='Potion'))
      +print_item(util.get(session, tables.Item, id=30))
      +
      +
      +
      Eevee, the Evolution Pokemon
      +Ho-Oh, the Rainbow Pokemon
      +Diglett, the Mole Pokemon
      +Great Ball: $600
      +Potion: $300
      +Fresh Water: $200
      +
      +
      +
      +
      +

      Querying

      +

      So, how do you get data from the session? You use the session’s +query() method, and give it a pokédex +Table as an argument. This will give you a SQLAlchemy query.

      +
      +

      Ordering

      +

      As always with SQL, you should not rely on query results being in some +particular order – unless you have ordered the query first. This means that +you’ll want to sort just about every query you will make.

      +

      For example, you can get a list of all pokémon species, sorted by their +id, like so:

      +
      for pokemon in session.query(tables.PokemonSpecies).order_by(tables.PokemonSpecies.id):
      +    print pokemon.name
      +
      +
      +
      Bulbasaur
      +Ivysaur
      +Venusaur
      +Charmander
      +Charmeleon
      +...
      +Keldeo
      +Meloetta
      +Genesect
      +
      +
      +

      Or to order by name:

      +
      for pokemon in session.query(tables.PokemonSpecies).order_by(tables.PokemonSpecies.name):
      +    print pokemon.name
      +
      +
      +
      Abomasnow
      +...
      +Zweilous
      +
      +
      +
      +
      +

      Filtering

      +

      Another major operation on queries is filtering, using the query’s +filter() or +filter_by() methods:

      +
      for move in session.query(tables.Move).filter(tables.Move.power > 200):
      +    print move.name
      +
      +
      +
      Explosion
      +
      +
      +
      +
      +

      Joining

      +

      The final operation we’ll cover here is joining other tables to the query, +using the query’s join(). +You will usually want to join on a relationship, such as in the following +example:

      +
      query = session.query(tables.Move)
      +query = query.join(tables.Move.type)
      +query = query.filter(tables.Type.identifier == 'grass')
      +query = query.filter(tables.Move.power >= 100)
      +query = query.order_by(tables.Move.power)
      +query = query.order_by(tables.Move.name)
      +
      +print 'The most powerful Grass-type moves:'
      +for move in query:
      +    print u'{0.name} ({0.power})'.format(move)
      +
      +
      +
      The most powerful Grass-type moves:
      +Petal Dance (120)
      +Power Whip (120)
      +Seed Flare (120)
      +SolarBeam (120)
      +Wood Hammer (120)
      +Leaf Storm (140)
      +Frenzy Plant (150)
      +
      +
      +

      That concludes our brief tutorial. +If you need to do more, consult the SQLAlchemy documentation.

      +
      +
      +
      +

      API documentation

      +
      +
      +pokedex.db.connect(uri=None, session_args={}, engine_args={}, engine_prefix='')
      +

      Connects to the requested URI. Returns a session object.

      +

      With the URI omitted, attempts to connect to a default SQLite database +contained within the package directory.

      +

      Calling this function also binds the metadata object to the created engine.

      +

      See sqlalchemy.orm.session.Session for more documentation on the +returned object.

      +
      + +
      +
      +pokedex.db.util.get(session, table, identifier=None, name=None, id=None, language=None)
      +

      Get one object from the database.

      +

      session: The session to use (from pokedex.db.connect()) +table: The table to select from (such as pokedex.db.tables.Move)

      +

      identifier: Identifier of the object +name: The name of the object +id: The ID number of the object

      +

      language: A Language to use for name and form_name

      +

      All conditions must match, so it’s not a good idea to specify more than one +of identifier/name/id at once.

      +

      If zero or more than one objects matching the criteria are found, the +appropriate SQLAlchemy exception is raised.

      +
      +
      @@ -91,6 +247,15 @@ here, but if you intend to do some serious work, do read SQLAlchemy’s docs @@ -109,7 +274,7 @@ here, but if you intend to do some serious work, do read SQLAlchemy’s docs \ No newline at end of file
       
      - p
      + p
      pokedex