From ddda32b77e2e272efbc9ba1a3b5428d8a5bf05e6 Mon Sep 17 00:00:00 2001 From: Anna Puddles <113144806+annapuddles@users.noreply.github.com> Date: Wed, 4 Dec 2024 10:42:59 -0500 Subject: [PATCH] Add description to prim-dns file server.lsl --- file server/prim-dns file server.lsl | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/file server/prim-dns file server.lsl b/file server/prim-dns file server.lsl index 3c37b14..3f9c3b1 100644 --- a/file server/prim-dns file server.lsl +++ b/file server/prim-dns file server.lsl @@ -1,11 +1,15 @@ -/* prim-dns file server, version 1.0.0 */ - -/* The prefix for scripts which will act as caches for the file server. */ -string cache_prefix = "prim-dns file server cache"; +/* prim-dns file server v1.1.0 + * + * This script is a request handler script which will serve specially-named + * notecards in the prim's inventory as "files". + */ /* The name used for the index notecard in each "directory". Note: XHTML is preferred because HTML can only be used by the internal SL browser, and only works for the owner of the linkset. */ string index_notecard = "index.xhtml"; +/* The prefix for scripts which will act as caches for the file server. */ +string cache_prefix = "prim-dns file server cache"; + /* A list of cached notecards, the contents of which are stored in the cache scripts. */ list cached_notecards;