Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgaspar committed Mar 17, 2015
1 parent 71a4635 commit f735c55
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 8 deletions.
Binary file modified docs/_build/doctrees/api.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/_build/doctrees/quickhowto.doctree
Binary file not shown.
3 changes: 2 additions & 1 deletion docs/_build/html/_sources/quickhowto.txt
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ is case of success or errors, take a close look at the following table for a des
REST API
--------

This API is still BETA and will subject to change.
This API is still BETA and will be subject to change. In the future F.A.B. will probably use AngularJS
to display the UI interface using AJAX.

URL=/api
--------
Expand Down
Binary file modified docs/_build/html/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_build/html/py-modindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ <h1>Python Module Index</h1>
<tr class="cg-1">
<td></td>
<td>&nbsp;&nbsp;&nbsp;
<a href="quickhowto.html#module-flask.ext.appbuilder.baseviews"><code class="xref">flask.ext.appbuilder.baseviews</code></a></td><td>
<a href="views.html#module-flask.ext.appbuilder.baseviews"><code class="xref">flask.ext.appbuilder.baseviews</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
Expand Down
3 changes: 2 additions & 1 deletion docs/_build/html/quickhowto.html
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,8 @@ <h2>Exposed methods<a class="headerlink" href="#exposed-methods" title="Permalin
</div>
<div class="section" id="rest-api">
<h2>REST API<a class="headerlink" href="#rest-api" title="Permalink to this headline"></a></h2>
<p>This API is still BETA and will subject to change.</p>
<p>This API is still BETA and will be subject to change. In the future F.A.B. will probably use AngularJS
to display the UI interface using AJAX.</p>
</div>
<div class="section" id="url-api">
<h2>URL=/api<a class="headerlink" href="#url-api" title="Permalink to this headline"></a></h2>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/searchindex.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/quickhowto.rst
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ is case of success or errors, take a close look at the following table for a des
REST API
--------

This API is still BETA and will subject to change. In the future F.A.B. will probably be using AngularJS
to display the UI interface using JSON request to this API.
This API is still BETA and will be subject to change. In the future F.A.B. will probably use AngularJS
to display the UI interface using AJAX.

URL=/api
--------
Expand Down
2 changes: 1 addition & 1 deletion flask_appbuilder/baseviews.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ def wrap(f):
f._urls = []
f._urls.append((url, methods))
return f

return wrap



class BaseView(object):
"""
All views inherit from this class. it's constructor will register your exposed urls on flask as a Blueprint.
Expand Down
1 change: 0 additions & 1 deletion flask_appbuilder/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,6 @@ def api(self):
response.headers['Content-Type'] = "application/json"
return response


@has_access_api
@permission_name('list')
@expose('/api/read', methods=['GET'])
Expand Down

0 comments on commit f735c55

Please sign in to comment.