File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 41
41
42
42
# General information about the project.
43
43
project = u'Scripter2: The Scripting Engine for Scribus'
44
- copyright = u'2012 , Scribus Team'
44
+ copyright = u'2013 , Scribus Team'
45
45
46
46
# The version info for the project you're documenting, acts as replacement for
47
47
# |version| and |release|, also used in various other places throughout the
91
91
92
92
# The theme to use for HTML and HTML Help pages. See the documentation for
93
93
# a list of builtin themes.
94
- html_theme = 'default '
94
+ html_theme = 'sphinxdoc '
95
95
96
96
# Theme options are theme-specific and customize the look and feel of a theme
97
97
# further. For a list of options available for each theme, see the
Original file line number Diff line number Diff line change 32
32
33
33
.. py :attribute :: DocumentAPI.margins
34
34
35
+ Return an object of type :class: `Margins `
36
+
35
37
.. py :attribute :: DocumentAPI.modified
36
38
39
+ This attribute is used to check whether the document is modified or not. It can also be used to set a document as modified.::
40
+
41
+ >>> doc = Scripter.activeDocument
42
+ >>> doc.modified
43
+ False
44
+ >>> doc.modified = True
45
+ >>> doc.modified
46
+ True
47
+ >>>
48
+
37
49
.. py :attribute :: DocumentAPI.activePage
38
50
39
51
.. py :attribute :: DocumentAPI.pageCount
You can’t perform that action at this time.
0 commit comments