Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
69425c0
Migrate hackathon playground code into new branch for inclusion in CoGo
alexmmiller Nov 20, 2025
66dc8a2
Delete compiled class files after execution, fix hard-coded pathing
alexmmiller Nov 20, 2025
862aa17
Merge branch 'stage' of github.com:appdevforall/CodeOnTheGo into fix/…
alexmmiller Dec 4, 2025
cc58341
Fix header parsing, URL encoding, QoL improve the server response
alexmmiller Dec 4, 2025
7f92c44
Web server playground feature compiler/execution\ timeouts
alexmmiller Dec 8, 2025
9c292ba
Handling timeouts and truncation for submitted playground programs. S…
alexmmiller Dec 12, 2025
0126fd2
Remove deprecated code that was commented out, update language in som…
Dec 16, 2025
7f68edc
Pass the application files directory path directly to the WebServer c…
alexmmiller Dec 19, 2025
fc26f13
Remove unused application context variable
alexmmiller Dec 19, 2025
cbd5ca3
Remove commented declaration of unused variable and unnecessary comme…
alexmmiller Dec 23, 2025
e6bdd94
Merge branch 'stage' into fix/ADFA-1284
alexmmiller Dec 23, 2025
bf6300d
Restrict the playground so it's only accessible at one endpoint, vali…
alexmmiller Dec 29, 2025
4cb4848
Lint
alexmmiller Dec 29, 2025
7391ab6
Cosmetic changes per David's thoughts posted on Confluence. 3px red b…
Feb 16, 2026
0ee127f
Merge branch 'stage' into fix/ADFA-1284
alexmmiller Feb 16, 2026
153f9dd
Update MainActivity and WebServer with non-experimental changes from …
Feb 16, 2026
48f85b3
Delete stale .java files after compilation, set a cap on Content-Leng…
Feb 16, 2026
ffdedcc
Fix merge conflict with stage
Feb 16, 2026
da1bf61
Move sendHtmlResponse() definition inside the WebServer class
Feb 17, 2026
6bf200f
Add the equals sign to the field name prefix that gets checked when p…
Feb 17, 2026
596a42d
Throw exception if java or javac binaries are missing
Feb 17, 2026
a374e52
Return '405 - Method not allowed' when POSTing to an endpoint that is…
Feb 17, 2026
be5df17
Refactor playground response HTML generation for readability, fix dis…
Feb 17, 2026
1fe0818
Merge branch 'stage' into fix/ADFA-1284
alexmmiller Feb 17, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ class MainActivity : EdgeToEdgeIDEActivity() {
try {
val dbFile = Environment.DOC_DB
log.info("Starting WebServer - using database file from: {}", dbFile.absolutePath)
val server = WebServer(ServerConfig(databasePath = dbFile.absolutePath))
val server = WebServer(ServerConfig(databasePath = dbFile.absolutePath, fileDirPath = this@MainActivity.filesDir.absolutePath))
webServer = server
server.start()
} catch (e: Exception) {
Expand Down
Loading