| 193 | } |
| 194 | |
| 195 | StatusEntries |
| 196 | Client::status(const char * path, |
| 197 | const bool descend, |
| 198 | const bool get_all, |
| 199 | const bool update, |
| 200 | const bool no_ignore, |
| 201 | const bool ignore_externals) |
| 202 | { |
| 203 | if (Url::isValid(path)) |
| 204 | { |
| 205 | StatusEntries entries; |
| 206 | remoteStatus(this, path, descend, entries, m_context); |
| 207 | return entries; |
| 208 | } |
| 209 | else |
| 210 | return localStatus(path, descend, get_all, update, |
| 211 | no_ignore, m_context, ignore_externals); |
| 212 | } |
| 213 | |
| 214 | struct StatusFilter; |
| 215 |