Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Improved hyperlinking in the RSS feed. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
66d93f33d56adbd3b39d376a555a78b4 |
| User & Date: | drh 2011-01-18 14:43:56.842 |
References
|
2011-09-11
| ||
| 14:21 | • Fixed ticket [1a99e30dd4]: RSS link within the feed does not point to item matching the title plus 2 other changes artifact: 252ca94096 user: dmitry | |
Context
|
2011-01-18
| ||
| 18:36 | Remote the number of merge conflicts on an update. Ticket [769b4ed7b23e4cb7] check-in: 0b8aed945e user: drh tags: trunk | |
| 14:43 | Improved hyperlinking in the RSS feed. check-in: 66d93f33d5 user: drh tags: trunk | |
|
2011-01-17
| ||
| 23:49 | Fix an off-by-one error in stash_add_file_or_dir. Windows only. Ticket [d6132e4d66a7c994f9]. check-in: abdedb21da user: drh tags: trunk | |
Changes
Changes to src/rss.c.
| ︙ | ︙ | |||
125 126 127 128 129 130 131 |
zPrefix = "*MERGE* ";
}else if( nChild>1 ){
zPrefix = "*FORK* ";
}
@ <item>
@ <title>%s(zPrefix)%h(zCom)</title>
| | | | 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
zPrefix = "*MERGE* ";
}else if( nChild>1 ){
zPrefix = "*FORK* ";
}
@ <item>
@ <title>%s(zPrefix)%h(zCom)</title>
@ <link>%s(g.zBaseURL)/info/%s(zId)</link>
@ <description>%s(zPrefix)%h(zCom)</description>
@ <pubDate>%s(zDate)</pubDate>
@ <author>%h(zAuthor)</author>
@ <guid>%s(g.zBaseURL)/info/%s(zId)</guid>
@ </item>
free(zDate);
nLine++;
}
db_finalize(&q);
@ </channel>
|
| ︙ | ︙ |