Skip to content

Commit c5e9e9d

Browse files
committed
Changed pygetdns to getdns in documentation
1 parent 99381e7 commit c5e9e9d

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

doc/conf.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# pygetdns documentation build configuration file, created by
3+
# getdns documentation build configuration file, created by
44
# sphinx-quickstart on Mon Apr 7 17:05:52 2014.
55
#
66
# This file is execfile()d with the current directory set to its containing dir.
@@ -40,7 +40,7 @@
4040
master_doc = 'index'
4141

4242
# General information about the project.
43-
project = u'pygetdns'
43+
project = u'getdns'
4444
copyright = u'2014, Verisign Labs, NLnet Labs'
4545

4646
# The version info for the project you're documenting, acts as replacement for
@@ -164,7 +164,7 @@
164164
#html_file_suffix = None
165165

166166
# Output file base name for HTML help builder.
167-
htmlhelp_basename = 'pygetdnsdoc'
167+
htmlhelp_basename = 'getdnsdoc'
168168

169169

170170
# -- Options for LaTeX output --------------------------------------------------
@@ -183,7 +183,7 @@
183183
# Grouping the document tree into LaTeX files. List of tuples
184184
# (source start file, target name, title, author, documentclass [howto/manual]).
185185
latex_documents = [
186-
('index', 'pygetdns.tex', u'pygetdns Documentation',
186+
('index', 'getdns.tex', u'getdns Documentation',
187187
u'Melinda Shore, Gowri Visweswaran', 'manual'),
188188
]
189189

@@ -213,7 +213,7 @@
213213
# One entry per manual page. List of tuples
214214
# (source start file, name, description, authors, manual section).
215215
man_pages = [
216-
('index', 'pygetdns', u'pygetdns Documentation',
216+
('index', 'getdns', u'getdns Documentation',
217217
[u'Melinda Shore, Gowri Visweswaran'], 1)
218218
]
219219

@@ -227,8 +227,8 @@
227227
# (source start file, target name, title, author,
228228
# dir menu entry, description, category)
229229
texinfo_documents = [
230-
('index', 'pygetdns', u'pygetdns Documentation',
231-
u'Melinda Shore, Gowri Visweswaran', 'pygetdns', 'One line description of project.',
230+
('index', 'getdns', u'getdns Documentation',
231+
u'Melinda Shore, Gowri Visweswaran', 'getdns', 'One line description of project.',
232232
'Miscellaneous'),
233233
]
234234

doc/functions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:mod:`pygetdns` function reference
1+
:mod:`getdns` function reference
22
==================================
33

44
.. module:: getdns

doc/index.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
.. pygetdns documentation master file, created by
1+
.. getdns documentation master file, created by
22
sphinx-quickstart on Mon Apr 7 17:05:52 2014.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
6-
pygetdns: Python bindings for getdns
6+
getdns: Python bindings for getdns
77
####################################
88

9-
"pygetdns" is an implementation of Python language bindings
9+
"getdns" is an implementation of Python language bindings
1010
for the `getdns <http://getdnsapi.net/>`_ API. getdns is a
1111
modern, asynchronous DNS API that simplifies access to
1212
advanced DNS features, including DNSSEC. The API
1313
`specification <http://www.vpnc.org/getdns-api/>`_ was
14-
developed by Paul Hoffman. pygetdns is built on top of the
14+
developed by Paul Hoffman. getdns is built on top of the
1515
getdns implementation developed as a joint project between
1616
`Verisign Labs
1717
<http://labs.verisigninc.com/en_US/innovation/verisign-labs/index.xhtml>`_
@@ -25,7 +25,7 @@ Python object design.
2525
Dependencies
2626
============
2727

28-
This version of pygetdns has been built and tested against Python
28+
This version of getdns has been built and tested against Python
2929
2.7. We also expect these other prerequisites to be
3030
installed:
3131

@@ -48,7 +48,7 @@ as follows:
4848
Building
4949
========
5050

51-
The code repository for pygetdns is available at:
51+
The code repository for getdns is available at:
5252
``<whatever``>. If you are building from source you will
5353
need the Python development package for Python 2.7. On
5454
Linux systems this is typically something along the lines of
@@ -66,13 +66,13 @@ build and install:
6666
python setup.py install
6767

6868

69-
Using pygetdns
69+
Using getdns
7070
==============
7171

7272
Contexts
7373
--------
7474

75-
All pygetdns queries happen within a *context*, and among
75+
All getdns queries happen within a *context*, and among
7676
the first tasks you'll need to do before issuing a query is
7777
to acquire one using getdns.context_create(). A context is
7878
an opaque data structure describing the environment within

doc/response.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:mod:`pygetdns` response data
1+
:mod:`getdns` response data
22
=============================
33

44
.. module:: getdns

0 commit comments

Comments
 (0)