Details
Details
- Ticket Type
- Task
Status | Assigned | Task | ||
---|---|---|---|---|
Open | None | T67 Real-time Collaborative Document Editing | ||
Wontfix | Adityab | T623 Pagination in multi-page document | ||
Resolved | Adityab | T700 Investigate various methods for pagination |
Event Timeline
Comment Actions
- CSS Regions - these are not really usable right now until all browsers roll it out. But we could try using polyfills to see how performant this approach is.
- SVG <use> tags. Wrapping the entire document in an svg tag and rendering pages that aren't being worked on with <use> (a way to visually "reference" parts of an SVG without duplicating it), while displaying the "real" cropped SVG to show the current page. Not sure how doable this is, but it will let us do more tricks like arranging pages in different layouts (thumbnail bar for example)
- Parse ODF page breaking attributes and just add "spacer" elements within document content to make it look paginated. Does not let us do the above mentioned tricks but is probably "good enough" and a safe approach. When CSS regions are ready we can probably switch to those without too much work.