sl
51e19b2266
bin/{corehandlers.rc, werc.rc, werclib.rc}: handle .gmi and .gem
2025-06-14 23:46:57 +00:00
Stanley Lieber
58d2576455
bin/werc.rc: don't hardcode default header template. move it into werc_exec_request and use fn get_lib_file to prefer a site-specific headers.tpl, just like other .tpl files
2020-06-09 20:42:37 -04:00
Stanley Lieber
a99fa8b44f
initial import of changes from 9front bikeshedding; bundle rc-httpd
2016-02-04 15:05:05 -05:00
Uriel
6d3bcc867c
Be a bit more careful before we redirect to plain files when we get a trailing / and can't find a dir.
2012-08-19 01:16:10 +02:00
Uriel
99fdff82ef
Fix stupid typo in comment.
2011-02-05 16:50:47 +00:00
Uriel
e461972e8d
Add commented out stderr debug command. This is provides functionality similar to werc_errlog_wrap.rc but it is easier to enable without changing the http server configuration.
2011-02-05 16:49:29 +00:00
Uriel
cbcfb4e6a3
Handle https urls consistently in redirects.
2010-05-24 23:35:08 +00:00
Uriel
0c8f22d035
Add sitemap.xml to dirfilter so it doesn't show up in dir listings when no index exists in site root.
2010-04-25 11:58:40 +00:00
Uriel
83f6fdb7c5
By default don't include the site's title | sub-title in the <title> of pages from which we were able to extract a title.
2010-01-19 00:30:24 +00:00
Uriel
9a65fb1b4e
For HEAD request, only quit after we send the new line that ends the headers section. This was making nginx unhappy. Thanks arg for reporting, tracking it down and fixing this bug!
2009-08-09 18:39:54 +02:00
Uriel
d797533863
Remove superfluous debug print that was commited by mistake.
2009-07-29 01:21:24 +02:00
Uriel
2d8ce10389
New context var 'local_file' that will point to the on-disk-file that represents the main content of a given page request (if such exists, otherwise it is '' or ()).
...
Move title extracting functions from sitemap.tpl to werclib.rc.
Rewrite .md title extraction code to only match first lines when 'underlines' with =.
Use the changes above to generate better page titles when possible.
2009-07-28 20:28:35 +02:00
Uriel
01876141f3
Properly handle dashes in paths the same way we treated underscores when generating page titles. This includes sitemaps, sidebar nav trees and the page title header itself.
2009-07-19 08:01:42 +02:00
Uriel
4345888b7f
When using a path element to generate a page title, replace '[a-z]-[a-z]' with '[a-z] [a-z]', this allows us to use dashes in paths that are more SEO-friendly than underscores.
2009-07-19 07:42:45 +02:00
Uriel
0b05539176
Urldecode '_' (ie., %5F) in request paths to make stackoverflow.com links happy.
2009-06-10 02:58:36 +02:00
Uriel
64f9c5d208
Add missing new line separating http headers from body, thanks Nsz and Arg for pointing this regresion.
2009-03-21 21:08:49 +01:00
Uriel
588c035b3b
Rewrite redirect handling code with nested lists.
...
New ll_addh to add items to the head of a nested list (use with care!).
2009-03-14 00:28:34 +01:00
Uriel
673bdaf664
Reorg headers, http headers now are echo-ed from werc.rc instead of being part of headers.tpl.
...
This fixes some bugs in the handling HEAD and makes things a bit more clear.
2009-03-13 13:04:25 +01:00
Uriel
e10ba023ba
Remove trailing / from path elements to make nsz happy
2009-03-06 16:58:51 +00:00
Uriel
ebfd6561cf
First draft of wman app to browse and display manpages.
2009-03-06 16:32:33 +00:00
Uriel
c9b9e4e9bf
Preserve ifs when calling other functions after temporary altering it. Fixes a couple of minor bugs.
...
Added difs env var that can be used anywhere to restore default ifs.
2009-03-03 20:23:00 +00:00
Uriel
d12c13ee25
Further cleanup and simplification of redirect code.
2009-03-03 13:15:46 +00:00
Uriel
c31e6f176a
Allow : and , in urls, but strip them and redirect them if they are last char. This fixes some autogenerated links in other sites that will include . and , if they follow an url in an email for example.
2009-02-23 05:25:08 +00:00
Uriel
001037ee32
Minor TODO notoe: maybe we should treat relative and absolute url redirect arguments differently.
2009-02-21 00:05:30 +00:00
Uriel
b58dcb96ed
Correct dirfilter matching of /sitemap.txt and /robots.txt, note that we match them even if not in site root.
2009-02-14 07:26:52 +00:00
Uriel
7ba725cf92
Don't execute perm_redirects directly from conf_perm_redirect to avoid tripping over sitemaps and other code that sources config files but doesn't want to actually *do* anything. Also hide paths with simple or pattern redirects from sitemaps.
2009-02-14 07:09:27 +00:00
Uriel
2e1f0dd32f
Convert fltr_cache into a function. Enable output buffering which had been commented out for unknwon reasons.
2009-02-06 22:09:32 +01:00
Uriel
e084b89cae
Reorg code in five source files: werc.rc, cgilib.rc, corehandlers.rc, wercconf.rc and werclib.rc.
2009-02-01 20:06:51 +01:00
Uriel
7702c8ed9b
Fix txt_handler that was broken due to idiotic overzealous 'optimization', thanks mycroftiv for finding and fixing this!
2009-01-30 16:19:48 +01:00
Uriel
590816c6d4
Replace $redirectPermanent with new conf_perm_redirect function. New notices_handler for error/note/success notification boxes. Rename hide_paths to conf_hide_paths. Reorder variable setting, all req-specifc vars are set after initrc and app sourcing, moved request handling code to its own function, this makes us ready to do scgi and other optimizations.
2009-01-30 16:18:07 +01:00
Uriel
55d12e5dac
Handle dir listing of site root.
2009-01-26 04:51:06 +01:00
Uriel
316d4c4e57
Various changes:
...
- New generic http_redirect function, and two shortcuts for 303: post_redirect and 301: perm_redirect
- Allow get_lib_file to take a default value, and change where master_template is set.
- Fix bugs in auth code and properly trim ^M from post data.
- Other cosmetic/minor improvements.
2009-01-25 13:56:53 +01:00
Uriel
f87339e98b
Add some comments and replace get_post_args with load_post_args
2009-01-24 07:11:39 +01:00
Uriel
ce23320a4d
Two minor handler changes: tpl_handler now can take multiple templates, md_handler can only take one .md file.
2009-01-23 17:51:23 +01:00
Uriel
0884966b4e
Fix minor cosmetic bug in dir listing by passing req_path instead of local_path.
2009-01-23 17:48:09 +01:00
Uriel
d7bb2ec271
Fix and simplify config loading process.
2009-01-23 16:46:48 +01:00
Uriel
04f6550a53
Merge in werc.cat-v.org updates and css changes.
2009-01-22 09:24:10 +01:00
Uriel
efac1136d0
Change app loading to be done in two passes, first source app files, then call init for enabled apps.
...
This makes it possible to call app functions at config time.
Provide $conf_wd variable at config time, which can in turn be used by apps to determine where in the tree we are at config/setup time.
2009-01-22 09:22:15 +01:00
Uriel
ca6eb56a79
Add comment about minnor bug.
2009-01-21 09:26:13 +00:00
Uriel
034de66bd8
Fix debug printing of main handler.
2009-01-20 09:05:57 +00:00
Uriel
a20b90f0cd
Allow to set optional dir listing sorting (ls) options with the config var: dir_listing_ls_opts
2009-01-20 06:55:17 +01:00
Uriel
ec151a9902
Make left sidebar into a list of handlers.
2009-01-17 03:05:19 +01:00
Uriel
9cb8bf97c9
Add comment on future issue for apps with 'synthetic' dirs.
2009-01-16 03:18:10 +01:00
Uriel
1f8874c269
Proper 404 for dirs too
2009-01-16 01:24:58 +01:00
Uriel
6e66e649b1
Fix handling of static /pub/ files.
2009-01-16 01:08:54 +01:00
Uriel
9d9bca8023
Add handling of static files for /pub/*
2009-01-14 00:36:32 +01:00
Uriel
96a115b37b
Get rid of response_format which was only used by blagh feeds anyway, and we can emulate by setting $headers to nil plus adding a $res_tail var.
2009-01-13 03:18:19 +01:00
Uriel
ae20a466a3
Various small cleanups: remove unused code, clarity and reliability fixes here and here, move code to more appropriate locations, improve some comments.
2009-01-12 02:07:31 +01:00
Uriel
70d30f4375
Move misplaced comment
2009-01-11 07:13:25 +01:00
Uriel
889e844d73
Fix blah to work with new handler interfaces.
...
Remove outdated app-framework code.
Clanup some of the fallback handler setting code.
2009-01-11 04:40:40 +01:00