Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/cookbook/examples/basic_create_shot.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ this dictionary represents. It does not correspond to any field in Flow Producti
Flow Production Tracking will *always* return the ``id`` and ``type`` keys in the dictionary when there are results
representing an entity.

The Complete Example
--------------------
The Complete Example for creating a Shot
----------------------------------------
::

#!/usr/bin/env python
Expand Down
4 changes: 2 additions & 2 deletions docs/cookbook/examples/basic_delete_shot.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ If the Shot was deleted successfully ``result`` will contain::

True

The Complete Example
--------------------
The Complete Example for deleting a Shot
----------------------------------------
::

#!/usr/bin/env python
Expand Down
4 changes: 2 additions & 2 deletions docs/cookbook/examples/basic_find_shot.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ easier to read. So we'll add that to the import section of our script.::
import shotgun_api3
from pprint import pprint # useful for debugging

The Complete Example
--------------------
The Complete Example for finding a Shot
---------------------------------------
::

#!/usr/bin/env python
Expand Down
4 changes: 2 additions & 2 deletions docs/cookbook/examples/basic_update_shot.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ It does not correspond to any field in Flow Production Tracking.
Flow Production Tracking will *always* return the ``id`` and ``type`` keys in the dictionary when there are results
representing an entity.

The Complete Example
--------------------
The Complete Example for updating a Shot
----------------------------------------
::

#!/usr/bin/env python
Expand Down
2 changes: 1 addition & 1 deletion docs/cookbook/examples/svn_integration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Explanation of selected lines:

- line ``14``: This should be the URL to your instance of Flow Production Tracking.
- lines ``15-16``: Make sure you get these values from the "Scripts" page in the Admin section of
the Flow Production Tracking web application. If you're not sure how to do this, check out :doc:`authentication`.
the Flow Production Tracking web application. If you're not sure how to do this, check out :ref:`authentication`.
- line ``17``: This is the address of Trac, our web-based interface that we use with Subversion.
You may use a different interface, or none at all, so feel free to adjust this line or ignore it
as your case may be.
Expand Down
4 changes: 2 additions & 2 deletions docs/cookbook/tasks/split_tasks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ How Do Splits Influence Dates And Dates Influence Splits
- In the case of a shorter duration splits, starting with the latest ones, will be either
removed or shortened until the new duration is met.

Examples
========
Examples for splitting Tasks
============================
Throughout the following examples, each successive one will build on the previous.

start_date, due_date and duration being ignored
Expand Down
6 changes: 3 additions & 3 deletions docs/cookbook/tasks/updating_tasks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ General Rules
first, then ``due_date`` (otherwise setting ``duration`` will change ``due_date`` after it is
set).

********
Examples
********
***************************
Examples for updating Tasks
***************************

The following examples show what the resulting Task object will look like after being run on the
initial Task object listed under the header of each section.
Expand Down
1 change: 0 additions & 1 deletion docs/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ The documentation for all of the methods you'll need in your scripts lives in he
Shotgun.close
Shotgun.authenticate_human_user
Shotgun.get_session_token
Shotgun.set_up_auth_cookie
Shotgun.add_user_agent
Shotgun.reset_user_agent
Shotgun.set_session_uuid
Expand Down