Overview
Comment: | [graphspell] new date format for consistency with the DB |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | graphspell | comdic |
Files: | files | file ages | folders |
SHA3-256: |
ef6ea473b6bd59c704d9fa7e62d2ff71 |
User & Date: | olr on 2019-01-23 16:03:08 |
Other Links: | branch diff | manifest | tags |
Context
2019-01-28
| ||
22:17 | [fx] get dictionaries list, download dictionaries check-in: a0890eba14 user: olr tags: fx, comdic | |
2019-01-23
| ||
16:03 | [graphspell] new date format for consistency with the DB check-in: ef6ea473b6 user: olr tags: graphspell, comdic | |
2019-01-22
| ||
10:12 | [build][fx] Firefox Nightly has a new installation folder check-in: 3fc5e58719 user: olr tags: build, fx, comdic | |
Changes
Modified graphspell-js/dawg.js from [8cf9f1314b] to [f4d9319997].
︙ | |||
416 417 418 419 420 421 422 | 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 | + - + | _getDate () { let oDate = new Date(); let sMonth = (oDate.getMonth() + 1).toString().padStart(2, "0"); // Month+1: Because JS always sucks somehow. let sDay = (oDate.getDate()).toString().padStart(2, "0"); let sHours = (oDate.getHours()).toString().padStart(2, "0"); let sMinutes = (oDate.getMinutes()).toString().padStart(2, "0"); let sSeconds = (oDate.getSeconds()).toString().padStart(2, "0"); |
︙ |
Modified graphspell/dawg.py from [12eff6a146] to [0043f035e5].
︙ | |||
556 557 558 559 560 561 562 | 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 | - + | hDst.write(self.oRoot.convToBytes3(self.nBytesArc, self.nBytesNodeAddress, self.nBytesOffset)) for oNode in self.lSortedNodes: hDst.write(oNode.convToBytes3(self.nBytesArc, self.nBytesNodeAddress, self.nBytesOffset)) if bDebug: self._writeNodes(sPathFile, nCompressionMethod) def _getDate (self): |
︙ |