Skip to content

Commit c1a9fc5

Browse files
author
Robyn Speer
committed
Update my name
Also remove Sphinx configuration for forms of documentation that will never be built, like texinfo, and update the version number on the docs.
1 parent 711deee commit c1a9fc5

File tree

3 files changed

+9
-17
lines changed

3 files changed

+9
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ You can also clone this Git repository and install it with
136136

137137
## Who maintains ftfy?
138138

139-
I'm Rob Speer (rob@luminoso.com). I develop this tool as part of my
139+
I'm Robyn Speer (rspeer@luminoso.com). I develop this tool as part of my
140140
text-understanding company, [Luminoso](http://luminoso.com), where it has
141141
proven essential.
142142

docs/conf.py

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@
4141

4242
# General information about the project.
4343
project = u'ftfy'
44-
copyright = u'2017, Rob Speer'
44+
copyright = u'2018, Robyn Speer'
4545

4646
# The version info for the project you're documenting, acts as replacement for
4747
# |version| and |release|, also used in various other places throughout the
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '5.3'
51+
version = '5.5'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '5.3.0'
53+
release = '5.5.2'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.
@@ -185,10 +185,7 @@
185185

186186
# Grouping the document tree into LaTeX files. List of tuples
187187
# (source start file, target name, title, author, documentclass [howto/manual]).
188-
latex_documents = [
189-
('index', 'ftfy.tex', u'ftfy Documentation',
190-
u'Rob Speer', 'manual'),
191-
]
188+
latex_documents = []
192189

193190
# The name of an image file (relative to this directory) to place at the top of
194191
# the title page.
@@ -216,8 +213,7 @@
216213
# One entry per manual page. List of tuples
217214
# (source start file, name, description, authors, manual section).
218215
man_pages = [
219-
('index', 'ftfy', u'ftfy Documentation',
220-
[u'Rob Speer'], 1)
216+
('index', 'ftfy', 'ftfy Documentation', ['Robyn Speer'], 1)
221217
]
222218

223219
# If true, show URL addresses after external links.
@@ -229,11 +225,7 @@
229225
# Grouping the document tree into Texinfo files. List of tuples
230226
# (source start file, target name, title, author,
231227
# dir menu entry, description, category)
232-
texinfo_documents = [
233-
('index', 'ftfy', u'ftfy Documentation',
234-
u'Rob Speer', 'ftfy', 'One line description of project.',
235-
'Miscellaneous'),
236-
]
228+
texinfo_documents = []
237229

238230
# Documents to append as an appendix to all manuals.
239231
#texinfo_appendices = []

ftfy/fixes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ def unescape_html(text):
327327
"""
328328
Decode all three types of HTML entities/character references.
329329
330-
Code by Fredrik Lundh of effbot.org. Rob Speer made a slight change
330+
Code by Fredrik Lundh of effbot.org. Robyn Speer made a slight change
331331
to it for efficiency: it won't match entities longer than 8 characters,
332332
because there are no valid entities like that.
333333
@@ -659,7 +659,7 @@ def latin1_to_w1252(match):
659659
def w1252_to_utf8(match):
660660
"The function to apply when this regex matches."
661661
return match.group(0).encode('sloppy-windows-1252').decode('utf-8')
662-
662+
663663
text = C1_CONTROL_RE.sub(latin1_to_w1252, text)
664664
return PARTIAL_UTF8_PUNCT_RE.sub(w1252_to_utf8, text)
665665

0 commit comments

Comments
 (0)