aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-24Make 'Connection: Close' handling HTTP 1.1 compliant. Closes #133Jarno Elonen
2015-05-23Merge pull request #186 from philippwiesemann/fix-core-gzipelonen
Fix working on Android < 4.4 and Java < 7
2015-05-23Fix working on Android < 4.4 and Java < 7Philipp Wiesemann
A not yet available constructor of GZIPOutputStream was used.
2015-05-23Merge pull request #184 from AlbinTheander/gzipRichard van Nieuwenhoven
Added support for gzip
2015-05-23try for #159 to allow the start method be called in the android uiritchie
thread.
2015-05-23use jdk7 for maven and tests but real 1.6 to compileritchie
2015-05-23next try to use a real jdk 1.6ritchie
2015-05-23use explicit email adressesritchie
2015-05-23use openjdk6 because eol of oracle jdk6ritchie
2015-05-23fix jdk to 1.6ritchie
2015-05-19Added support for gzipAlbin Theander
When the request contains the accept-encoding header with a value containing 'gzip', the response is gzipped by default.
2015-05-18Merge pull request #180 from NanoHttpd/faster-boundary-findelonen
Faster getBoundaryPositions() with block reads
2015-05-17Rebase faster-boundary-findJarno Elonen
2015-05-17Require HTTP version 1.1, throw an exception otherwise. Closes #46Elonen
2015-05-16Removed non-generic hard-coded path testelonen
The uri.startsWith("src/main") || uri.endsWith("src/main") test is not useful in general cases, but potentially a bug.
2015-05-16Merge branch 'philippwiesemann-fix-webserver-index-dirs'Elonen
2015-05-16Fix webserver serving folder named like index filePhilipp Wiesemann
If there was a directory named like an index file (e.g. "index.html"), other index files registered later (e.g. "index.htm") were ignored and the directory was served instead (or an index file in the directory). This was fixed by now checking if the index file is not a directory.
2015-05-16Windowed/buffered getBoundaryPositions() for faster uploads of big filesJarno Elonen
2015-05-16Merge pull request #178 from philippwiesemann/fix-core-temp-deleteelonen
Fix no warning in log if temp file was not deleted
2015-05-15Fix no warning in log if temp file was not deletedPhilipp Wiesemann
The method delete() of interface TempFile should message a failed delete by throwing an Exception. For the default implementation DefaultTempFile no Exceptions were thrown because the used method delete() of File does not throw an Exception on failure but returns false instead. The problem was fixed by checking the return value and throwing an Exception for it.
2015-05-14try agrigaring jacoco resultsritchie
2015-05-14wait a little longer durring testingritchie
2015-05-14first set of unit tests for the webserverritchie
2015-05-14prepaire for webserver unit testsritchie
2015-05-14fixed #117ritchie
2015-05-14some cleanup and mergig for #122 also long as resquest size addedritchie
2015-05-14give access to the async runner #128ritchie
2015-05-14timeout now optionalritchie
2015-05-14reponces now created by factorymethods that can be overwritten, solvesritchie
#94
2015-05-14Merge branch 'local' into response-constructor-fixritchie
2015-05-14Merge branch 'master' of https://github.com/NanoHttpd/nanohttpd.git into localritchie
2015-05-14anonymous classes to named classes #57ritchie
2015-05-12Exposed new protected Response constructor to allow inheritanceJarno Elonen
2015-05-12Splitting Response() constructor into NewFixedLengthResponse() and ↵Jarno Elonen
NewChunkedResponse()
2015-05-10Fix potential truncating of POST body. Closes #153Jarno Elonen
2015-05-10#131 socket timeout configurableritchie
2015-05-10config and jacoco instead of cubertura ritchie
2015-05-10letting eclipse cleanup the coderitchie
2015-05-10after the last pull request in this series the formatter is now activeritchie
2015-05-10logging improved and all print stacktraces moved to loggingritchie
2015-05-10Merge pull request #176 from NanoHttpd/SingleClassWebsocketServerelonen
Combine the websocket server into one class like NanoHttpd.
2015-05-10scope addedritchie
2015-05-10websocket testritchie
2015-05-10cobertura also on the web pageritchie
2015-05-10Merge branch 'master' of https://github.com/NanoHttpd/nanohttpd.git into localritchie
2015-05-10#175 missinh header version fixedritchie
2015-05-10Rebased NanoWebSocketServer class aggregation from #166Jarno Elonen
2015-05-10Replace spurious accessors and exposed rootDirs as protected. Closes #161, #162Jarno Elonen
2015-05-09try to activate test coverage over travis ritchie
2015-05-08Merge pull request #107 from eighthave/masterelonen
Merge HTTPS support to master.