minor tweaks to doc

This commit is contained in:
Damien Elmes 2011-03-13 19:14:24 +09:00
parent e728d49232
commit b2f74b2591
3 changed files with 7 additions and 4 deletions

View file

@ -15,12 +15,16 @@ Get a due card:
Show the card: Show the card:
print card.q, card.a print card.q(), card.a()
Answer the card: Answer the card:
deck.sched.answerCard(card, ease) deck.sched.answerCard(card, ease)
Refresh after a change:
deck.reset()
Edit the card: Edit the card:
fact = card.fact() fact = card.fact()
@ -33,5 +37,5 @@ Save & close:
deck.close() deck.close()
""" """
version = "1.2.6" version = "1.99"
from anki.storage import Deck from anki.storage import Deck

View file

@ -6,7 +6,7 @@
Hooks - hook management and tools for extending Anki Hooks - hook management and tools for extending Anki
============================================================================== ==============================================================================
To find available hooks, grep for runHook in the source code. To find available hooks, grep for runHook and runFilter in the source code.
Instrumenting allows you to modify functions that don't have hooks available. Instrumenting allows you to modify functions that don't have hooks available.
If you call wrap() with pos='around', the original function will not be called If you call wrap() with pos='around', the original function will not be called

View file

@ -8,7 +8,6 @@ from anki.lang import _
# Models # Models
########################################################################## ##########################################################################
# GUI code should ensure no two fields have the same name.
defaultConf = { defaultConf = {
'sortf': 0, 'sortf': 0,