Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
svn path=/trunk/lb/; revision=45009
  • Loading branch information
migueldeicaza committed May 25, 2005
1 parent 51463b0 commit 5ef141b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.xml
Expand Up @@ -3,7 +3,7 @@
Author="Miguel de Icaza (miguel@gnome.org)"
BlogDirectory="/home/miguel/activity"
BlogFileName="index.html"
BlogWebDirectory="http://tirania.org/blog"
BlogWebDirectory="http://tirania.org/blog/"
BlogImageBasedir="http://primates.ximian.com/~miguel"
Copyright="Miguel de Icaza"
Description="Miguel de Icaza's web log"
Expand Down
2 changes: 1 addition & 1 deletion lb.cs
Expand Up @@ -390,7 +390,7 @@ RssChannel MakeChannel ()
RssChannel c = new RssChannel ();

c.Title = config.Title;
c.Link = new Uri (config.BlogWebDirectory + config.BlogFileName);
c.Link = new Uri (config.BlogWebDirectory + "/" + config.BlogFileName);
c.Description = config.Description;
c.Copyright = config.Copyright;
c.Generator = "lb#";
Expand Down
2 changes: 1 addition & 1 deletion makefile
Expand Up @@ -13,7 +13,7 @@ clean:
push: b
chmod 644 archive/*/*.html
chmod 644 *html *rss2 *php
rsync -pr -v -v --rsh=ssh texts archive prettyprint.js \
rsync -pr -v --rsh=ssh texts archive prettyprint.js \
log-style.css *.rss2 *.php index.html all.html \
miguel@www.tirania.org:tirania/blog

Expand Down

0 comments on commit 5ef141b

Please sign in to comment.