Skip to content

Commit

Permalink
minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
spier committed Feb 4, 2012
1 parent 6109e2c commit 7d3d95d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions programmableweb/README.md
Expand Up @@ -17,6 +17,5 @@ This is an incomplete set of YQL tables for the [ProgrammableWeb API](http://api
## Retrieve Data of Multiple ProgrammableWeb Members

SELECT * FROM pw.members
WHERE
(username="jmusser" OR username="duvander" OR username="spier")
WHERE (username="jmusser" OR username="duvander" OR username="spier")
AND apikey="YOUR_API_KEY"
2 changes: 1 addition & 1 deletion programmableweb/pw.apis.xml
Expand Up @@ -23,7 +23,7 @@
<key id="alt" type="xs:string" paramType="query" default="xml" const="true"/>
<!-- fix the version to 1.0 -->
<key id="version" type="xs:string" paramType="query" default="1.0" const="true"/>

<!-- the apikey to use. username/password could be used for authentication as well but is not recommended as they would be sent in plain text -->
<key id="apikey" type="xs:string" paramType="query" required="true"/>

<key id="q" type="xs:string" paramType="query"/>
Expand Down
2 changes: 1 addition & 1 deletion programmableweb/pw.members.xml
Expand Up @@ -5,7 +5,7 @@
<description></description>
<documentationURL>http://api.programmableweb.com/apireference</documentationURL>
<sampleQuery>SELECT * FROM {table}</sampleQuery>
<sampleQuery>SELECT * FROM {table} WHERE q="spier"</sampleQuery>
<sampleQuery>SELECT * FROM {table} WHERE username="spier"</sampleQuery>
<sampleQuery>SELECT * FROM {table} WHERE q="San Francisco"</sampleQuery>
</meta>
<bindings>
Expand Down
2 changes: 1 addition & 1 deletion programmableweb/pw.widgets.xml
Expand Up @@ -23,7 +23,7 @@
<key id="alt" type="xs:string" paramType="query" default="xml" const="true"/>
<!-- fix the version to 1.0 -->
<key id="version" type="xs:string" paramType="query" default="1.0" const="true"/>

<!-- the apikey to use. username/password could be used for authentication as well but is not recommended as they would be sent in plain text -->
<key id="apikey" type="xs:string" paramType="query" required="true"/>

<key id="q" type="xs:string" paramType="query"/>
Expand Down

0 comments on commit 7d3d95d

Please sign in to comment.