asvcs-developers Mailing List for A Simple Version Control System
Status: Beta
Brought to you by:
cspurrier
You can subscribe to this list here.
| 2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2010 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Craig S. <cr...@cr...> - 2010-02-08 02:45:47
|
Hello, I agree it is silly that ASVCS does not support Windows. ASVCS was originally designed for internal use in a Linux only environment. I never considered that ASVCS would be used by others, much less on Windows servers when I hard-coded the path separator. A new version is still in the works, currently slated for a late March release, and maybe a late February preview release. Patches are always welcome, at the moment diffs posted to the bug tracker or emailed are the preferred method. In the future, I would like to have ASVCS natively handle public repositories and patches, though this is almost definitely not going to be in the next version. Thanks for using ASVCS. I always enjoy hearing from ASVCS users. -Craig Spurrier On 2/7/2010 3:52 PM, Toby Teel wrote: > > Hey: > > I just downloaded asvcs and it seems like a great product for a > project I'm beginning to work on. > > Although my end platform is linux, it seems silly the program can't > support windows due to the forward slash. Is this currently in > development? If not, I wouldn't mind working on this. Speaking of > which, I imagine this project uses itself to track it's own changes. > If I were to create a patch, where should it go? > > Also, I saw talk (dating back quite a while) about a new version. Is > that in the works? Is there a release date goal? > > -Toby > > > > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > > > _______________________________________________ > ASVCS-developers mailing list > ASV...@li... > https://lists.sourceforge.net/lists/listinfo/asvcs-developers > |
|
From: Toby T. <tob...@to...> - 2010-02-07 21:18:52
|
Hey:
I just downloaded asvcs and it seems like a great product for a project I'm beginning to work on.
Although my end platform is linux, it seems silly the program can't support windows due to the forward slash. Is this currently in development? If not, I wouldn't mind working on this. Speaking of which, I imagine this project uses itself to track it's own changes. If I were to create a patch, where should it go?
Also, I saw talk (dating back quite a while) about a new version. Is that in the works? Is there a release date goal?
-Toby
|
|
From: Toby T. <tob...@ya...> - 2010-02-07 20:43:17
|
Hey:
I just downloaded asvcs and it seems like a great product for a project I'm beginning to work on.
Although my end platform is linux, it seems silly the program can't support windows due to the forward slash. Is this currently in development? If not, I wouldn't mind working on this. Speaking of which, I imagine this project uses itself to track it's own changes. If I were to create a patch, where should it go?
Also, I saw talk (dating back quite a while) about a new version. Is that in the works? Is there a release date goal?
-Toby
|
|
From: Craig S. <cr...@cr...> - 2009-12-11 03:37:00
|
Thanks for the patch. That is definitely a useful fix. The bug tracker
is broken right now, I hoping to get it replaced before the new year. In
the mean time, please feel free to send any bug reports or patches to me
directly or to this list. Thanks for using ASVCS.
-Craig Spurrer
ASVCS Lead developer
Eduardo Rodriguez wrote:
> Hi,
>
> I just started using asvcs, and found that when you want to download a
> file, the filename is always displaybin.php. That is a bit of a
> nuisance, so I have modified displaybin.php so that the actual
> filename is displayed instead.
>
> I've modified the query to get the filename plus the HTTP header:
> $db->query("SELECT bc.content, bc.filetype, tf.filename FROM
> binarycontent bc, trackedfiles tf WHERE bc.dataid = '$id' and
> bc.dataid=tf.latestrev");
> if ($db->nf() > 0) {
> $db->next_record();
> $filetype = $db->f('filetype');
> $content = $db->f('content');
> $filename = strip_tags($db->f('filename'));
> header("Content-type: $filetype");
> header("Content-Disposition: attachment;
> filename=\"$filename\"");
> echo $content;
> } else {
> echo "Error: content not found";
> }
>
>
> I do not think "Bug Tracker" is working, so I am attaching my version
> of displaybin.php in case you want to add it to a future build.
>
> Regards,
> Eduardo.
|
|
From: Eduardo R. <edu...@bi...> - 2009-12-10 23:23:26
|
Hi,
I just started using asvcs, and found that when you want to download a
file, the filename is always displaybin.php. That is a bit of a
nuisance, so I have modified displaybin.php so that the actual filename
is displayed instead.
I've modified the query to get the filename plus the HTTP header:
$db->query("SELECT bc.content, bc.filetype, tf.filename FROM
binarycontent bc, trackedfiles tf WHERE bc.dataid = '$id' and
bc.dataid=tf.latestrev");
if ($db->nf() > 0) {
$db->next_record();
$filetype = $db->f('filetype');
$content = $db->f('content');
$filename = strip_tags($db->f('filename'));
header("Content-type: $filetype");
header("Content-Disposition: attachment;
filename=\"$filename\"");
echo $content;
} else {
echo "Error: content not found";
}
I do not think "Bug Tracker" is working, so I am attaching my version of
displaybin.php in case you want to add it to a future build.
Regards,
Eduardo.
|
|
From: George S. <mr....@go...> - 2009-01-24 10:46:27
|
Hi people! Sorry if I don't hit the right words, I am not a native English speaker... I just wanted to tell you that I have started to experiment with your system, and this came out: http://grunz.bplaced.net/asvcs/ (Login: Guest / Password: guest). I think there could be something that makes sense to your development, i.e. the Mime Type Detection (because it didn't work on that hoster due to some strange security reasons) or the Syntax Highlighting... Kind regards, Syron |