doc: update :func: to :py:func: for modern Sphinx.
authorW. Trevor King <wking@tremily.us>
Fri, 26 Oct 2012 12:12:08 +0000 (08:12 -0400)
committerW. Trevor King <wking@tremily.us>
Fri, 26 Oct 2012 12:16:38 +0000 (08:16 -0400)
doc/conf.py
doc/hacking.txt
libbe/comment.py
libbe/storage/util/config.py
libbe/ui/util/user.py
libbe/util/utility.py

index a115ce4865a7dbc4b7fa20407bd1f090a90856b4..8b3fcfa4bb5fbbe917b37bc1e9d7d0426a133bf4 100644 (file)
@@ -75,7 +75,7 @@ exclude_trees = ['.build']
 # The reST default role (used for this markup: `text`) to use for all documents.
 #default_role = None
 
-# If true, '()' will be appended to :func: etc. cross-reference text.
+# If true, '()' will be appended to :py:func: etc. cross-reference text.
 #add_function_parentheses = True
 
 # If true, the current module name will be prepended to all description
index 941dfde1e83292b4cded127bdf38f0d1f378b99e..2684597a5ee12b5d2c292e0dcc6e1326b2da3461 100644 (file)
@@ -72,7 +72,7 @@ execution + childrens' times)::
     $ python -c "import pstats; p=pstats.Stats('profile'); p.sort_stats('cumulative').print_stats(20)"
 
 If you want to find out who's calling your expensive function
-(e.g. :func:`libbe.util.subproc.invoke`), try::
+(e.g. :py:func:`libbe.util.subproc.invoke`), try::
 
     $ python -c "import pstats; p=pstats.Stats('profile'); p.sort_stats('cumulative').print_callers(20)"
 
index c1813b437c29e6dff7f4c67bbc79159e83e5e512..cdcb694659d7941e5d3abcff8ce1cd903de75e54 100644 (file)
@@ -199,7 +199,7 @@ class Comment (Tree, settings_object.SavedSettingsObject):
         if ``from_storage==False`` (the default).  When
         ``from_storage==True``, they are loaded from the bug database.
         ``content_type`` decides if the body should be run through
-        :func:`util.id.short_to_long_text` before saving.  See
+        :py:func:`util.id.short_to_long_text` before saving.  See
         :meth:`_set_comment_body` for details.
 
         ``in_reply_to`` should be the uuid string of the parent comment.
index 7f1e33cae02011c8bc5c9ce12c4352722401de9d..7e14b5d3f1d7b2559bcf73994e3c4be7a716be2a 100644 (file)
@@ -18,7 +18,7 @@
 # You should have received a copy of the GNU General Public License along with
 # Bugs Everywhere.  If not, see <http://www.gnu.org/licenses/>.
 
-"""Create, save, and load the per-user config file at :func:`path`.
+"""Create, save, and load the per-user config file at :py:func:`path`.
 """
 
 import ConfigParser
@@ -35,7 +35,7 @@ if libbe.TESTING == True:
 default_encoding = libbe.util.encoding.get_text_file_encoding()
 """Default filesystem encoding.
 
-Initialized with :func:`libbe.util.encoding.get_text_file_encoding`.
+Initialized with :py:func:`libbe.util.encoding.get_text_file_encoding`.
 """
 
 def path():
index edd8501bd7b13447ac9921166dc2ab6a9046c528..63d7d7f9e847f652971f21562caeb810067597a1 100644 (file)
@@ -127,7 +127,7 @@ def get_user_id(storage=None):
 
     1. Global BE configuration [#]_ (default section, setting 'user').
     2. `storage.get_user_id`, if that function is defined.
-    3. :func:`get_fallback_username` and :func:`get_fallback_email`.
+    3. :py:func:`get_fallback_username` and :py:func:`get_fallback_email`.
 
     .. [#] See :mod:`libbe.storage.util.config`.
 
index e68d46b294592c2a5db3e8b03fd63fcc7098a1e8..ecebfb09150d191cf33b68dfb342dd1ae5112413 100644 (file)
@@ -103,8 +103,8 @@ class Dir (object):
         return self.path
 
 RFC_2822_TIME_FMT = "%a, %d %b %Y %H:%M:%S +0000"
-"""RFC 2822 [#]_ format string for :func:`time.strftime` and
-:func:`time.strptime`.
+"""RFC 2822 [#]_ format string for :py:func:`time.strftime` and
+:py:func:`time.strptime`.
 
 .. [#] See `RFC 2822`_, sections 3.3 and A.1.1.
 .. _RFC 2822: http://www.faqs.org/rfcs/rfc2822.html
@@ -116,7 +116,7 @@ def time_to_str(time_val):
     Parameters
     ----------
     time_val : float
-      Float seconds since the Epoc, see :func:`time.time`.
+      Float seconds since the Epoc, see :py:func:`time.time`.
       Note that while `time_val` may contain sub-second data,
       the output string will not.
 
@@ -168,13 +168,13 @@ def str_to_time(str_time):
 def handy_time(time_val):
     """Convert a time number into a useful localtime.
 
-    Where :func:`time_to_str` returns GMT +0000, `handy_time` returns
+    Where :py:func:`time_to_str` returns GMT +0000, `handy_time` returns
     a string in local time.  This may be more accessible for the user.
 
     Parameters
     ----------
     time_val : float
-      Float seconds since the Epoc, see :func:`time.time`.
+      Float seconds since the Epoc, see :py:func:`time.time`.
     """
     return time.strftime("%a, %d %b %Y %H:%M", time.localtime(time_val))