docs: change inner link color in the pdf to orange as well + several minor fixes

This commit is contained in:
Christopher Denter 2011-03-17 20:48:47 +01:00
parent 3036c1f391
commit e3d13a692f
7 changed files with 9 additions and 8 deletions

View File

@ -178,7 +178,7 @@ latex_documents = [
latex_elements = {
'fontpkg': r'\usepackage{mathpazo}',
'papersize': 'a4paper',
'pointsize': '8pt',
'pointsize': '10pt',
'preamble': r'\usepackage{kivystyle}'
}
latex_additional_files = ['kivystyle.sty', 'logo.pdf']

View File

@ -1,6 +1,6 @@
\definecolor{TitleColor}{rgb}{0,0,0}
\definecolor{InnerLinkColor}{rgb}{0,0,0}
% Make links the same color as links on the website
\definecolor{InnerLinkColor}{rgb}{0.875,0.392,0.133}
\definecolor{OuterLinkColor}{rgb}{0.875,0.392,0.133}
% TODO Find a way not to have this active when printing the file

View File

@ -11,7 +11,7 @@ by the core abstraction. Always try to use our providers first.
In case we are missing a feature or method, please let us know by
opening a new Bug report instead of relying on your library.
**Note:**
.. warning::
These are **not** widgets! These are just abstractions of the respective
functionality. For example, you cannot add a core image to your window.
You have to use the image **widget** class instead. If you're really

View File

@ -106,8 +106,9 @@ cdef tuple hsv_to_rgb(float h, float s, float v):
if i == 5: return v, p, q
# Cannot get here
cdef class Color(ContextInstruction):
'''Instruction to set the color state for any vetices being drawn after it
'''Instruction to set the color state for any vertices being drawn after it
'''
def __init__(self, *args, **kwargs):
ContextInstruction.__init__(self, **kwargs)

View File

@ -435,7 +435,7 @@ cdef class Canvas(CanvasBase):
self.canvas.add(Color(1., 1., 0))
self.canvas.add(Rectangle(size=(50, 50)))
Usage of Canvas with the "with" statement::
Usage of Canvas with Python's ``with`` statement::
with self.canvas:
Color(1., 1., 0)

View File

@ -65,7 +65,7 @@ cdef class Line(VertexInstruction):
'''Property for getting/settings points of the triangle
.. warning::
This will always reconstruct the whole graphics from the new points
list. It can be very CPU expensive.
'''
@ -510,7 +510,7 @@ cdef class BorderImage(Rectangle):
cdef class Ellipse(Rectangle):
'''A 2d ellipse.
'''A 2D ellipse.
:Parameters:
`segments`: int, default to 180

View File

@ -289,7 +289,7 @@ class Widget(EventDispatcher):
Example usage::
def my_x_callback(obj, value):
print 'on object', obj', 'x changed to', value
print 'on object', obj, 'x changed to', value
def my_width_callback(obj, value):
print 'on object', obj, 'width changed to', value
self.bind(x=my_x_callback, width=my_width_callback)