| 
    ARLO Nester
    
   | 
 
Classes | |
| class | LaunchLibraryValidationForm | 
| class | StartNewLibraryForm | 
| Djangeo form for creating a new Library.  More... | |
Functions | |
| def | getUserLibraries (user) | 
| Return a list of a user's Libraries.  More... | |
| def | getLibraryMediaFiles (library) | 
| Get a list of media files in a Library.  More... | |
| def | createLibrary (user, name, notes) | 
| Create a new Library owned by 'user'.  More... | |
| def | userLibraries (request) | 
| Display all Libraries owned or accessible by a user (/tools/userLibraries).  More... | |
| def | startNewLibrary (request) | 
| Start a new Library.  More... | |
| def | libraryFiles (request, libraryId) | 
| Display all Files in a Library.  More... | |
| def | launchLibraryValidation (request) | 
| Launch a LibraryMediaFileValidation Task.  More... | |
| def workspace.tools.views.library.createLibrary | ( | user, | |
| name, | |||
| notes | |||
| ) | 
Create a new Library owned by 'user'.
| user | User object that owns the Library. | 
| name | The name of the new Library. | 
| notes | Notes stored along with the Library. | 
| def workspace.tools.views.library.getLibraryMediaFiles | ( | library | ) | 
Get a list of media files in a Library.
| library | A Library object | 
| def workspace.tools.views.library.getUserLibraries | ( | user | ) | 
Return a list of a user's Libraries.
| user | A User Object | 
| def workspace.tools.views.library.launchLibraryValidation | ( | request | ) | 
Launch a LibraryMediaFileValidation Task.
| request | The Django HTTP request object | 
| def workspace.tools.views.library.libraryFiles | ( | request, | |
| libraryId | |||
| ) | 
Display all Files in a Library.
| request | The Django HTTP request object | 
| libraryId | The database ID of the Library to display. | 
| def workspace.tools.views.library.startNewLibrary | ( | request | ) | 
Start a new Library.
GET request returns the create Form, POST processes it.
| request | The Django HTTP request object | 
| def workspace.tools.views.library.userLibraries | ( | request | ) | 
Display all Libraries owned or accessible by a user (/tools/userLibraries).
| request | The Django HTTP request object | 
 1.8.10