├── .github └── ISSUE_TEMPLATE.md └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 | (describe you use case in a sentence or two) 4 | 5 | ## Variation(s) 6 | 7 | (do you know of, or can you imagine, similar use cases?) 8 | 9 | ## Proposed Solutions 10 | 11 | (any ideas about how your use case might be supported) 12 | 13 | ## Additional Background 14 | 15 | (more about your perspective, existing work, etc. goes here.) 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IIIF User Stories 2 | 3 | _See the [issues](https://github.com/IIIF/iiif-stories/issues) associated with this repository._ 4 | 5 | The intention is to collect user stories that will drive the development of [IIIF specifications](http://iiif.io/technical-details.html). Please: 6 | 7 | * Check the current set of user stories before creating a new one. If a similar story exists then add comments instead of creating a new one. 8 | * Use a reasonably short titles but be sure to repeat any information in the title in the initial comment (because the title might be changed later). 9 | * Feel free to use the tradition user story template ("As a _role_, I want _goal/desire_ so that _benefit_") or a use case style as you see fit. Include links to any useful examples or supporting material. 10 | * Assign one or more labels to help categorize the story. 11 | * Be prepared to help clarify or expand the story if others comment on it. 12 | 13 | Issues should be [closed](https://github.com/IIIF/iiif-stories/issues?q=is%3Aclosed%20is%3Aissue) with an appropriate label when they are either: 14 | 15 | * [`supported`](https://github.com/IIIF/iiif-stories/issues?q=is%3Aissue%20label%3Asupported) - current published specifications support the use case. 16 | * [`client-issue`](https://github.com/IIIF/iiif-stories/issues?q=is%3Aissue%20label%3Aclient-issue) - use case describes client-side issue rather than a IIIF specification issue. 17 | * [`wontfix`](https://github.com/IIIF/iiif-stories/issues?q=is%3Aissue%20label%3Awontfix) - use case will not be addressed in IIIF work, perhaps because it is [`outofscope?`](https://github.com/IIIF/iiif-stories/issues?q=is%3Aissue%20label%3Aoutofscope%3F%20) or [`invalid`](https://github.com/IIIF/iiif-stories/issues?q=is%3Aissue%20label%3Ainvalid%20) 18 | --------------------------------------------------------------------------------