ThaDafinser / UserAgentParserComparison

Comparison results from UserAgentParser
http://thadafinser.github.io/UserAgentParserComparison/
MIT License
28 stars 6 forks source link

Lists only show 200 items #10

Closed NielsLeenheer closed 8 years ago

NielsLeenheer commented 8 years ago

The HTML files contains all the results, but only 200 items are shown at a time. This happens because you use list.js, which by defaults only shows the 200 first items in a list.

See the documentation at: http://www.listjs.com/docs/options

You can raise this by setting the page property to a higher number.

ThaDafinser commented 8 years ago

Thank you.

I already raised it to 1000 at some pages: view-source:http://thadafinser.github.io/UserAgentParserComparison/results/BrowscapPhp/grouped/browser.html

I need to introduce pagination with the next update, which will include your 1.000.000 useragent from whichbrowser.

Is that kind of viewing good, or do you think another kind of viewing would be better?

mimmi20 commented 8 years ago

@ThaDafinser Is it possible to download the lists of not found useragents?

ThaDafinser commented 8 years ago

@mimmi20 not directly currently, since i the sqlite database with the results was too large for github.

Currently you only execute localy all steps up to step 5) https://github.com/ThaDafinser/UserAgentParserComparison#step-5-fill-the-sqlite-database

and then query the database directly with a sqlite viewer.

// side note due too the amount of the data the next version will proably need another database (i will may use Doctrine for it, so the database can be choosen)

ThaDafinser commented 8 years ago

Solved