List of commits:
Subject Hash Author Date (UTC)
Try to avoid errors where information may be missing. 3410e49ba53bd7ebb417ee9bac7db1cf9e0e8808 Luigi Bai 2020-09-09 17:08:59
Don't put status information into console.log. 19dab8ff60a0256f9511391d4088c1b8f88ac3db Luigi Bai 2020-09-09 17:06:24
Add more info to README. 9708b396b887bab284e0ad2c2d996ea2db0ff4d4 Luigi Bai 2020-09-09 12:37:24
Add info to README. 79672fad423a570d7eb05c4891dfabb511db5ab3 Luigi Bai 2020-09-09 00:20:23
Fixed searchNames. Now you can load cases where you know one of the parties. 0ad812704e27341a481a6de18c88a4f38bb61700 Luigi Bai 2020-09-08 23:43:48
Apparently updating addresses works, as long as you don't ask for more than 10 per minute. That seems to be working so far. 9276b2acb2cc3067c53fc16317a8960db3f6fcca Luigi Bai 2020-09-08 22:44:24
More information about how to use the software. Not much, yet. Enough to get started, I think. 393fce58bbcfeaee947cb2b0e17d81d16da49612 Luigi Bai 2020-09-08 22:31:02
Don't write to console.err if there's a rejectionFunction. 630b8ec76a21733a6bb93d98ca54563aadd61da4 Luigi Bai 2020-09-08 22:30:29
Remove trailing comma on all rows. e7605fa152a841eefc7fcab6bb7cfd64daf28b17 Luigi Bai 2020-09-07 22:43:36
Allow passing in query for Case.sqlAllCases() 346862c0720ef9054426048cc95caa8f6b068868 Luigi Bai 2020-09-07 22:43:09
This version works in MS-SQL. 4e3f33f464173c91c3f4ac4b6acb0235ed2d6720 Luigi Bai 2020-09-07 19:11:54
Add headers. 4da1ccbdb2e3e852050de3460bc9ac9ba061ed7a Luigi Bai 2020-09-07 16:28:52
loadDockets now works to local. 96ba8f7419f63be6612fe1efd3e24d5d30eaf20a Luigi Bai 2020-09-06 20:59:06
Fix for new column names. 5791d77e19585c494e51c6062ab45440e5af0903 Luigi Bai 2020-09-06 20:44:50
Add headers 32cb7264c06b28dc0404b715f24fd2d82b66633b Luigi Bai 2020-09-06 20:44:29
Have a working version of xfer - now transfers data to MS SQL Server from SQLITE3. 428e493bcc5b7f718a741db046d08905f47d0f1c Luigi Bai 2020-09-05 22:11:55
Stupid MS SQL Server assumes case insensitive collation for text/char columns. Who does that? 2700846d8c1233d27664fb74b582293ddb8cb32a Luigi Bai 2020-09-05 21:11:17
Fixed MS schema - 4096 too big for varchar. ca3870f7e244d83e58d74c7f231baacbc19ba8fa Luigi Bai 2020-09-04 17:04:05
Remove interstitial console.log 19481f6692d9f93e75aa173bee9716261ef54db0 Luigi Bai 2020-09-04 12:07:33
Added license/copyright info. Added shim for Promise. Rewrote xferData with await and shim. 3930998d32fb2a19239e63b1b07bf1804c7ea46e Luigi Bai 2020-09-04 12:04:32
Commit 3410e49ba53bd7ebb417ee9bac7db1cf9e0e8808 - Try to avoid errors where information may be missing.
Author: Luigi Bai
Author date (UTC): 2020-09-09 17:08
Committer name: Luigi Bai
Committer date (UTC): 2020-09-09 17:08
Parent(s): 6b98d2c5adb9aed83fbacec0e736edbc1c620b51
Signing key:
Tree: 3f01136f094e707d5557b181dc751adf5301abb3
File Lines added Lines deleted
lib/OdysseyInfo.class.js 11 5
updateAddress.js 8 6
File lib/OdysseyInfo.class.js changed (mode: 100644) (index 741a005..fa6c951)
... ... function getCaseInfoParser(oiObj, callback, errFN) {
108 108 }).join(" ").trim(); }).join(" ").trim();
109 109
110 110 // pDivs[1]: Address // pDivs[1]: Address
111 party.address = du.filter((node) => {
112 return ("text" === node.type);
113 }, pDivs[1]).map((val) => {
114 return val.data;
115 });
111 if (pDivs[1]) {
112 try {
113 party.address = du.filter((node) => {
114 return ("text" === node.type);
115 }, pDivs[1]).map((val) => {
116 return val.data;
117 });
118 } catch (e) {
119 console.error("OI 111", pDivs[1], e);
120 }
121 }
116 122
117 123 oiObj.parties.push(party); oiObj.parties.push(party);
118 124 }); });
File updateAddress.js changed (mode: 100644) (index 7d2bdf3..5c47ea9)
... ... opts.connectCallback = (database) => {
55 55 }); });
56 56 // Store the party addresses // Store the party addresses
57 57 oi.parties.forEach(party => { oi.parties.forEach(party => {
58 pDao.update({
59 $pa: party.address.join(" "),
60 $cnum: oi.caseNumber,
61 $pr: party.role,
62 $pn: party.name
63 });
58 if (party.address) {
59 pDao.update({
60 $pa: party.address.join(" "),
61 $cnum: oi.caseNumber,
62 $pr: party.role,
63 $pn: party.name
64 });
65 }
64 66 }); });
65 67 }) })
66 68 .catch(err => { .catch(err => {
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/datajams-lbai/datajams-evictions

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/datajams-lbai/datajams-evictions

Clone this repository using git:
git clone git://git.rocketgit.com/user/datajams-lbai/datajams-evictions

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main