| TaskLog | ${task:getTaskLogInBook(String, String, String)} |
Gets the task log given a book, page and task. |
| TaskLog | ${task:getTaskLog(String, String)} |
Gets the task log given a page and task. |
| TaskLog$Entry | ${task:getMostRecentEntry(TaskLog, String)} |
Gets the most recent task log entry with the given comma-separated status(es) or |
| StatusResult | ${task:getStatus(Task)} |
Gets the status for the given task. |
| Map<Task, StatusResult> | ${task:getMultipleStatuses(Collection<? extends Task>)} | Gets the status for each of the provided tasks. |
| List<Task> | ${task:getDoAfters(Task)} |
Finds all tasks that must be done after this task. |
| Map<Task, List<Task>> | ${task:getMultipleDoAfters(Collection<? extends Task>)} | Finds all tasks that must be done after each of the provided tasks. |
| String | ${task:getUser()} | Gets the user for the current request. |
| SortedSet<String> | ${task:getAllUsers(SortedSet<String>, Iterable<? extends Task>)} | Gets all users found in all assignments for the given tasks. |
| List<Task> | ${task:prioritizeTasks(Collection<? extends Task>, boolean)} | Prioritizes tasks by schedule and priority. |
| List<Task> | ${task:getAllTasks(Page, String)} | Gets all tasks for a page and all sub-pages. |
| boolean | ${task:hasAssignedTask(Page, String)} | Checks if the given page or any of its child pages has at least one task assigned to the given user. |
| List<Task> | ${task:getReadyTasks(Page, String)} | Gets all tasks for a page and all sub-pages that are ready to be done at the current moment in time. |
| List<Task> | ${task:getBlockedTasks(Page, String)} | Gets all tasks for a page and all sub-pages that are should done at the current moment in time but are waiting for another task. |
| List<Task> | ${task:getFutureTasks(Page, String)} | Gets all tasks for a page and all sub-pages that will be done at a future moment in time. |
| String | ${task:formatDate(LocalDate)} |
Formats a date. |
| LocalDate | ${task:parseDate(String)} |
Parses a date. |
| LocalDate | ${task:getToday()} |
Gets today's date. |