Skip to content
  1. Sep 16, 2017
  2. Sep 15, 2017
  3. Aug 16, 2017
    • Karsten Loesing's avatar
      Start using a query response object. · b68c556e
      Karsten Loesing authored
      This is another prerequisite for changing queries towards making a
      single query per request (#16596) and towards splitting up ExoneraTor
      into front-end and back-end.
      b68c556e
    • Karsten Loesing's avatar
      Separate servlet into three steps. · f3f83f52
      Karsten Loesing authored
       1: Parse the request.
       2: Query the database.
       3: Write the response.
      
      This doesn't just clean up code, it's also a prerequisite for changing
      queries towards making a single query per request (#16596).
      f3f83f52
  4. Jul 04, 2017
  5. Jun 29, 2017
  6. Jun 21, 2017
  7. Jun 17, 2017
  8. Jun 07, 2017
  9. May 17, 2017
  10. Apr 26, 2017
  11. Apr 10, 2017
  12. Apr 03, 2017
  13. Mar 06, 2017
    • Karsten Loesing's avatar
      Avoid zero-width space in fingerprints. · dbf77782
      Karsten Loesing authored
      Apparently, the zero-width space character causes trouble when copying
      and pasting fingerprints.  Fortunately, we can let the fingerprint
      break anywhere using CSS.
      
      Fixes #17231.
      dbf77782
  14. Feb 24, 2017
  15. Feb 23, 2017
  16. Jan 13, 2017
  17. Jan 03, 2017
  18. Nov 02, 2016
  19. Nov 01, 2016
  20. Oct 08, 2016
    • Karsten Loesing's avatar
      Make two build improvements. · 4b013a1c
      Karsten Loesing authored
      Upgrade to metrics-lib 1.4.0 and include newly required logging .jar
      files.
      
      Include PostgreSQL .jar file in the .war file rather than relying on
      Tomcat to provide it.
      4b013a1c
  21. Sep 28, 2016
    • Karsten Loesing's avatar
      Display German text correctly. · 0e2a331f
      Karsten Loesing authored
      Turns out that resource bundles must be ISO 8859-1 encoded, so we'll
      have to convert the German file using:
      
        native2ascii -encoding UTF-8 old new
      
      Also make some minor changes to make UTF-8 encoding of the resulting
      web page more explicit, and correct the included language code.
      
      Fixes #19954.
      0e2a331f
  22. Sep 23, 2016
    • Karsten Loesing's avatar
      Tweak English text. · a1dd592a
      Karsten Loesing authored
      Fix typo "ant" to "and" and add   to the end of all sentences.
      
      Both tweaks suggested by John Lorenz.
      a1dd592a
  23. Aug 17, 2016
    • Karsten Loesing's avatar
      Remove unused fields from the database. · c9066215
      Karsten Loesing authored
      Required changes from previous schema:
       - CREATE OR REPLACE FUNCTION insert_statusentry [...];
       - CREATE OR REPLACE FUNCTION insert_exitlistentry [...];
       - ALTER TABLE statusentry DROP COLUMN descriptor;
       - ALTER TABLE exitlistentry DROP COLUMN rawexitlistentry;
      c9066215