only read the first line of _darcs/third_party/darcsweb/* files
Mon Apr 16 09:13:34 UTC 2007 Alexandre Rossi <alexandre.rossi@gmail.com>
* only read the first line of _darcs/third_party/darcsweb/* files
{
hunk ./darcsweb.cgi 2235
- desc = open(dpath).read()
+ desc = open(dpath).readline().rstrip("\n")
hunk ./darcsweb.cgi 2245
- url = open(dpath).read()
+ url = open(dpath).readline().rstrip("\n")
hunk ./darcsweb.cgi 2255
- projurl = open(dpath).read()
+ projurl = open(dpath).readline().rstrip("\n")
}