An interesting aspect is if Google's treatment of these links incentivizes publishers to add them, then browsers (or browser extensions) will also be able to use them to defeat the purpose of pagination in the first place, e.g. by having something like Readability slurp all the pages into a view-all page.
Well, not just that. I imagine browsers implementing keyboard shortcuts that automatically go to the next or previous pages.
Pagination with rel=“next” and rel=“prev”
21–30 of 35 posts
Re: Pagination with rel=“next” and rel=“prev”
#22Earlier quoted context omitted.
Well, not just that. I imagine browsers implementing keyboard shortcuts that automatically go to the next or previous pages.
I've been hoping for this for many years. Without requiring new buttons or keys, an interesting strategy would be to make the "history forward" gesture/key/button follow the "next" link. Assuming sane use of next and previous this works well for viewers that start at the beginning. What to do for the "back" function is ambiguous when previous doesn't match to history, as in a case where a viewer lePt Ito the middle o…
Re: Pagination with rel=“next” and rel=“prev”
#23what i found was that opera started doing a pre-fetch on them as soon as i added the tags, so every time an opera user would visit the site, they would fetch two pages. i had to remove the tags to cut down on the resource usage.
Re: Pagination with rel=“next” and rel=“prev”
#24i implemented these on a site a while back after an opera user requested it, because apparently opera has a keyboard shortcut or something to automatically go to the next/previous pages that use these tags. what i found was that opera started doing a pre-fetch on them as soon as i added the tags, so every time an opera user would visit the site, they would fetch two pages. i had to remove the tags to cut down on the…
Re: Pagination with rel=“next” and rel=“prev”
#25If you aren't using infinite scrolling, chances are you're doing it wrong.
Re: Pagination with rel=“next” and rel=“prev”
#26i implemented these on a site a while back after an opera user requested it, because apparently opera has a keyboard shortcut or something to automatically go to the next/previous pages that use these tags. what i found was that opera started doing a pre-fetch on them as soon as i added the tags, so every time an opera user would visit the site, they would fetch two pages. i had to remove the tags to cut down on the…
What was your percentage of Opera users, if you don't mind me asking? If it's only a very small percentage, was the increase in resource usage really that significant?
Re: Pagination with rel=“next” and rel=“prev”
#27Re: Pagination with rel=“next” and rel=“prev”
#28i implemented these on a site a while back after an opera user requested it, because apparently opera has a keyboard shortcut or something to automatically go to the next/previous pages that use these tags. what i found was that opera started doing a pre-fetch on them as soon as i added the tags, so every time an opera user would visit the site, they would fetch two pages. i had to remove the tags to cut down on the…
There used to be proxies (Google Web Accelerator http://webaccelerator.google.com/support.html#basics2) that aggresively prefetched pages, but modern browsers don't prefetch unless you explicitly ask with rel=prefetch (or Chrome's own version of thereof).
Re: Pagination with rel=“next” and rel=“prev”
#29I haven't thought about rel="next" and rel="prev" since the middle of the last decade, but I recall that the blogging community used these attributes in semantically different way. Instead of marking parts of a single unit of content, rel="next" and rel="prev" were used to mark the next document in a chronological series . IMO, this latter usage is consistent with both HTML 4 and HTML5 semantics. I suppose Google's a…
The Google article talks mainly about paginated content and mentions that it comes in different forms. The examples given in the article suggest that here we have a sequence of pages where we should or could have only one document, like in the example of the forum thread: it may consist of many pages, ordered in a linear fashion, but individual pages of the thread might be somehow incomplete. The whole thread is the document. I think that this interpretation is different from the interpretation of next/prev indicating a chronologically ordered sequence.
The article mentions also "The first page":
>>The first page only contains rel=”next” and no rel=”prev” markup."The first page" means that there is only one. Could we have more than one first page as entry point into the sequence? Like a story with different possible beginnings converging to a common end?
Re: Pagination with rel=“next” and rel=“prev”
#30An interesting aspect is if Google's treatment of these links incentivizes publishers to add them, then browsers (or browser extensions) will also be able to use them to defeat the purpose of pagination in the first place, e.g. by having something like Readability slurp all the pages into a view-all page.
Well, not just that. I imagine browsers implementing keyboard shortcuts that automatically go to the next or previous pages.