[Bug 15856] New: [IndexedDB] Remove empty string as a possible version

https://www.w3.org/Bugs/Public/show_bug.cgi?id=15856

           Summary: [IndexedDB] Remove empty string as a possible version
           Product: WebAppsWG
           Version: unspecified
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Indexed Database API
        AssignedTo: dave.null@w3.org
        ReportedBy: odinho@opera.com
         QAContact: member-webapi-cvs@w3.org
                CC: mike@w3.org, public-webapps@w3.org


The spec references database version being the empty string. It's probably a
leftover from older versions of the spec. But now the version is a unsigned 
long, so it shouldn't be set to a string.


http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#object-store-concept

Change:
  When a new database is created it doesn't contain any object stores
  and has the empty string as version.
To:
  When a new database is created it doesn't contain any object stores.


http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#widl-IDBDatabaseSync-version

Change:
  This attribute has the empty string value when the connected database
  is first created.
To:
  This attribute is 0 when the connected database is first created.

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

Received on Thursday, 2 February 2012 16:37:45 UTC