** Changed in: webbrowser-app
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Apps bug tracking, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1204875

Title:
  Domain for a URL that was visited in the past doesn’t move to today
  when visited again

Status in Web Browser App:
  Fix Released
Status in “webbrowser-app” package in Ubuntu:
  Fix Released

Bug description:
  To reproduce reliably this issue, you may need to craft a navigation history 
database for the browser manually.
  The database can be edited with sqlite3 at 
"~/.local/share/webbrowser-app/history.sqlite".
  To insert an entry, do something like that:

      insert into history (url, title, visits, lastVisit)
  values("http://www.ubuntu.com/";, "Ubuntu", 2, 1371037050);

  To generate a timestamp in the past, you can use a command similar to
  this one:

      python -c "import datetime, time; print
  int(time.mktime((datetime.datetime.now() -
  datetime.timedelta(days=30)).timetuple()))"

  To reproduce the issue, start with a clean history database (just remove the 
history.sqlite file and let the app re-create it).
  Close the application, edit the history and add an entry for a given URL 
(e.g. "http://www.ubuntu.com/"; some time in the past (e.g. 30 days ago). Then 
start the application again, open the activity view to verify that your entry 
shows up under last month. Enter the same URL in the address bar and validate, 
and wait for the page to be fully loaded.

  Expected result: the domain entry (ubuntu.com) moves from the "last month" 
section to "Today".
  Current result: the domain entry remains in "last month".

To manage notifications about this bug go to:
https://bugs.launchpad.net/webbrowser-app/+bug/1204875/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntu-apps-bugs
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~ubuntu-apps-bugs
More help   : https://help.launchpad.net/ListHelp

Reply via email to