From 4345888b7f74db5135690da44d1b988cdd281fa7 Mon Sep 17 00:00:00 2001 From: Uriel Date: Sun, 19 Jul 2009 07:42:45 +0200 Subject: [PATCH] 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. --- bin/werc.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/werc.rc b/bin/werc.rc index 08ea7cc..9dc2176 100755 --- a/bin/werc.rc +++ b/bin/werc.rc @@ -70,7 +70,7 @@ fn werc_exec_request { perm_redirect $req_path^'/' if(! ~ $#args 0) - pageTitle=`{ echo $args|sed -e 's/ / - /g' -e 's/_/ /g' } + pageTitle=`{ echo $args|sed -e 's/([a-z])-([a-z])/\1 \2/g' -e 's/ / - /g' -e 's/_/ /g' } cd $sitedir req_paths_list='/' # Note: req_paths_list doesn't include 'stnythetic' dirs.