Skip to content
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mprins committed Jul 4, 2019
1 parent a401115 commit 5e7acbb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/sql/create_kad_zak_recht.sql
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,4 @@ order by kadsleutel,criterium_type,criterium_zakelijkrecht,criterium_aandeel,cri
;

-- maak de index waar we mee joinen
CREATE INDEX ON wdd.kad_zak_recht (sc_kad_identif );
CREATE INDEX ON wdd.kad_zak_recht (sc_kad_identif);
2 changes: 1 addition & 1 deletion src/main/webapp/index.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<ul>
<li><code>curl --user mutaties:mutaties "${contextService}${contextPath}/rest/mutaties?van=2019-01-01" --verbose --output test.zip</code></li>
<li><code>wget --http-user=mutaties --http-password=mutaties "${contextService}${contextPath}/rest/mutaties?van=2019-01-01" -O test.zip</code></li>
<li><code>wget --http-user=mutaties --http-password=mutaties "${contextService}${contextPath}/rest/mutaties?van=2019-01-01" -O test.zip;unzip -oq test.zip</code> Om bestanden meteen met 7-zip uit te pakken</li>
<li><code>wget --http-user=mutaties --http-password=mutaties "${contextService}${contextPath}/rest/mutaties?van=2019-01-01&f=csv" -O test.zip;unzip -oq test.zip</code> Om bestanden meteen met 7-zip uit te pakken</li>
</ul>
<h3>Beveiliging</h3>
<p>De REST endpoints zijn afgeschermd met BASIC authenticatie, in tegenstelling tot de web applicatie / GUI die middels
Expand Down
2 changes: 1 addition & 1 deletion src/site/markdown/updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ALTER TABLE tax.belastingplichtige ADD COLUMN aanduiding2 CHARACTER VARYING(24);
COMMENT ON COLUMN tax.belastingplichtige.aanduiding2 IS 'Koppelsleutel, door software gevuld';
CREATE INDEX belastingplichtige_aanduiding2_idx ON tax.belastingplichtige (aanduiding2);
UPDATE tax.belastingplichtige SET aanduiding2 = TRIM(LEADING '0' from gemeentecode) || ' ' || TRIM(sectie) || ' ' || trim(LEADING '0' from perceelnummer) || ' ' || coalesce(trim(LEADING '0' from appartementsindex), '');
VACUUM FULL ANALYZE tax.belastingplichtige;
```

Er is een index nodig op kolom `sc_kad_identif` van tabel `kad_zak_recht` in schema `wdd`:
Expand Down

0 comments on commit 5e7acbb

Please sign in to comment.