Skip to content

Commit c4fc095

Browse files
committed
Removing Buzz from comments in code
1 parent 58037ab commit c4fc095

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+224
-1154
lines changed

README

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
This is a prototype implementation of a client
2-
for discovery based APIs.
1+
This is python client library for Google's discovery based APIs.
32

43

54
Installation
@@ -9,24 +8,17 @@ To install, simply say
98

109
$ python setup.py install
1110

12-
If you want to do a "mock install" and simply extend your PYTHONPATH
13-
for the current shell to include this folder and the packages in it, do
14-
15-
$ source setpath.sh
16-
17-
from the root of the project directory.
18-
1911

2012
Running
2113
=======
2214

2315
After following the install directions (using setup.py or setpath.sh) you
24-
should be able to cd to samples/buzz and run buzz.py from there, which will use
25-
the apiclient library to retrieve the title of the most recent entry in Buzz
26-
and post a test message. The first time you run it you will be prompted to
27-
authorize the application to access your Buzz information.
16+
should be able to cd to samples/plus and run plus.py from there, which will use
17+
the apiclient library to retrieve a snippet of text from each entry in Google
18+
Plus. The first time you run it you will be prompted to authorize the
19+
application to access your plus information.
2820

29-
$ python samples/buzz/buzz.py
21+
$ python samples/plus/plus.py
3022

3123

3224
Third Party Libraries

apiclient/http.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,10 @@ class RequestMockBuilder(object):
136136
response = '{"data": {"id": "tag:google.c...'
137137
requestBuilder = RequestMockBuilder(
138138
{
139-
'chili.activities.get': (None, response),
139+
'plus.activities.get': (None, response),
140140
}
141141
)
142-
apiclient.discovery.build("buzz", "v1", requestBuilder=requestBuilder)
142+
apiclient.discovery.build("plus", "v1", requestBuilder=requestBuilder)
143143
144144
Methods that you do not supply a response for will return a
145145
200 OK with an empty string as the response content or raise an excpetion if

docs/apiclient.anyjson.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<font color="#ffffff" face="helvetica, arial"><big><strong>Modules</strong></big></font></td></tr>
2121

2222
<tr><td bgcolor="#aa55cc"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</td>
23-
<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="simplejson.html">simplejson</a><br>
23+
<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="django.utils.simplejson.html">django.utils.simplejson</a><br>
2424
</td><td width="25%" valign=top></td><td width="25%" valign=top></td><td width="25%" valign=top></td></tr></table></td></tr></table><p>
2525
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
2626
<tr bgcolor="#55aa55">

docs/apiclient.contrib.buzz.html

Lines changed: 0 additions & 21 deletions
This file was deleted.

docs/apiclient.contrib.html

Lines changed: 0 additions & 24 deletions
This file was deleted.

docs/apiclient.contrib.latitude.html

Lines changed: 0 additions & 21 deletions
This file was deleted.

docs/apiclient.contrib.moderator.html

Lines changed: 0 additions & 21 deletions
This file was deleted.

docs/apiclient.discovery.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<a href="mimetypes.html">mimetypes</a><br>
2727
<a href="os.html">os</a><br>
2828
</td><td width="25%" valign=top><a href="re.html">re</a><br>
29-
<a href="simplejson.html">simplejson</a><br>
29+
<a href="django.utils.simplejson.html">django.utils.simplejson</a><br>
3030
<a href="uritemplate.html">uritemplate</a><br>
3131
</td><td width="25%" valign=top><a href="urllib.html">urllib</a><br>
3232
<a href="urlparse.html">urlparse</a><br>

docs/apiclient.errors.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<font color="#ffffff" face="helvetica, arial"><big><strong>Modules</strong></big></font></td></tr>
2121

2222
<tr><td bgcolor="#aa55cc"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</td>
23-
<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="simplejson.html">simplejson</a><br>
23+
<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="django.utils.simplejson.html">django.utils.simplejson</a><br>
2424
</td><td width="25%" valign=top></td><td width="25%" valign=top></td><td width="25%" valign=top></td></tr></table></td></tr></table><p>
2525
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
2626
<tr bgcolor="#ee77aa">

0 commit comments

Comments
 (0)