[viewvc-users] RSS feed ; questions
Jean-Yves Avenard <[email protected]>
| Newsgroups | gmane.comp.version-control.cvs.viewcvs.user |
|---|---|
| Message-ID | <[email protected]> |
Hi
I have created the mysql database as described in the INSTALL doc.
Ran the svndbadmin script ...
All changesets were imported fine it seems.
When I look at the RSS feed however, it only shows 2-3 revisions ;
this varies depending of the path.
Like I have a repo, the current revision # is 884.
Even at the root of the repo ; the RSS link only contains one change
the last one: 884
In other path is shows none...
Am I missing something ?
One issue with the make-database scrip.
It runs mysql command without first quoting the arguments ; in my case
I had a ( in the password and it would fail because of it.
cmd = "mysql --user=%s --password=%s'%s "\
% (username, password, host_option)
Should be changed to:
cmd = "mysql --user=%s --password='%s' %s "\
% (username, password, host_option)
Thanks
Jean-Yves
------------------------------------------------------
http://viewvc.tigris.org/ds/viewMessage.do?dsForumId=4255&dsMessageId=2523188
To unsubscribe from this discussion, e-mail: [[email protected]].