List of commits:
Subject Hash Author Date (UTC)
Store case status and filedDate when available e0d7a3d44e4560e04133e777bdc0697bec57a8d4 Luigi Bai 2020-09-16 20:38:15
Clean up data xfer. Use TRUNCATE TABLE instead of DELETE FROM. e407788ccd1fb9ace1ca7cad4b0a1acd0189c799 Luigi Bai 2020-09-16 02:37:15
Clean up code. 3036e8ca177024179b3a6e391876121e526cd213 Luigi Bai 2020-09-16 02:36:42
Add bulkExtract importer. 0da4130e3e3a3e2e855f2ef28c4194fb6b5dfe10 Luigi Bai 2020-09-16 02:36:02
Add court related data 20f13f9ef9885794eddb2470bd57a9207dc7af20 Luigi Bai 2020-09-12 21:47:34
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
Commit e0d7a3d44e4560e04133e777bdc0697bec57a8d4 - Store case status and filedDate when available
Author: Luigi Bai
Author date (UTC): 2020-09-16 20:38
Committer name: Luigi Bai
Committer date (UTC): 2020-09-16 20:38
Parent(s): e407788ccd1fb9ace1ca7cad4b0a1acd0189c799
Signing key:
Tree: 6a14ef91d78fd06011c19274bbc4a0559f4ec405
File Lines added Lines deleted
lib/Case.class.js 3 1
lib/sqlDAO.js 1 1
File lib/Case.class.js changed (mode: 100644) (index 81e809b..73af805)
... ... class Case {
367 367 let ctlCase = new DAO.CaseCtlr(database); let ctlCase = new DAO.CaseCtlr(database);
368 368 ctlCase.insert({ ctlCase.insert({
369 369 $cnum: caseObj.caseNumber, $cnum: caseObj.caseNumber,
370 $curl: caseObj.URL
370 $curl: caseObj.URL,
371 $cstat: caseObj.caseStatus,
372 $fd: caseObj.filedDate
371 373 }); });
372 374 ctlCase.finalize(); ctlCase.finalize();
373 375
File lib/sqlDAO.js changed (mode: 100644) (index e1dbeab..340734a)
... ... module.exports = {
128 128 super(); super();
129 129 this.stmts.insert = this.prepare( this.stmts.insert = this.prepare(
130 130 database, database,
131 "INSERT INTO cases (casenumber, case_URL) VALUES ($cnum, $curl)"
131 "INSERT INTO cases (casenumber, case_URL, case_status, filed_Date) VALUES ($cnum, $curl, $cstat, $fd)"
132 132 ); );
133 133 }; };
134 134 }, },
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