Re: [fossil-users] A-B comparison of proposed timeline changes

2017-11-24 Thread Lutz Horn
Am 24.11.17 um 16:17 schrieb Richard Hipp:
> If the entire check-in comment is a hyperlink, that would make it
> difficult to have hyperlinks embedded within the check-in comment.

I totally agree. So far I only use ticket IDs that are automatically
linked but this is very important to me. If the whole commit ci comment
would be linked, this would not be possible.

Lutz
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] "Artifact '' does not exist in this repository."

2017-09-05 Thread Lutz Horn

I think your Nginx configuration could possibly be the cause of the
problem. Replace what you have with this:


I've added the headers which are always a good idea. Thanks for the 
input.


The real reason was the regular expression in `rewrite` which did not 
capture `/` in the path. The correct `rewrite` is:



rewrite /shortenyoururl(/.+) $1 break;


Now it works.

Lutz

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] "Artifact '' does not exist in this repository."

2017-09-05 Thread Lutz Horn

Hi,

using Fossil 2.3 I can not access any file in the web UI. Starting for 
example at


https://fossil.lhorn.de/shortenyoururl/dir?type=tree

any link to a file like

https://fossil.lhorn.de/shortenyoururl/artifact/a8aa85601605f9b2

results in


Artifact '' does not exist in this repository.


What could be the reason for this?

I am running Fossil as

$ fossil server --port  --localhost --baseurl 
https://fossil.lhorn.de/shortenyoururl shortenyoururl.fossil


and use Nginx:


   location ~ ^/shortenyoururl/?$ {
   return 301 https://fossil.lhorn.de/shortenyoururl/index;
   }

   location /shortenyoururl/ {
   rewrite/shortenyoururl(/[^/]+) $1 break;
   proxy_pass http://localhost:;
   proxy_set_header Host $host;
   }


Regards

Lutz


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users