Re: [Savannah-help-public] multiple hg repos?

2009-04-24 Thread Aleix Conchillo Flaqué

Sylvain Beucler wrote:

On Thu, Apr 23, 2009 at 09:04:49AM +0200, Aleix Conchillo Flaqué wrote:

Sylvain Beucler wrote:

On Wed, Apr 22, 2009 at 08:04:48AM +0200, Jaroslav Hajek wrote:

hello,

I'm one of the developers of the GNU Octave project, hosted on
Savannah. We have been recently heavily discussing future development
strategy of Octave and have come to the problem of hosting multiple
mercurial repositories on Savannah. Is it possible? What needs to be
done? We need a secondary "stable" repository. We have also considered
just using branches, but these don't solve the problem well (can't do
unsymmetric merges).

regards

--
RNDr. Jaroslav Hajek
computing expert & GNU Octave developer
Aeronautical Research and Test Institute (VZLU)
Prague, Czech Republic
url: www.highegg.matfyz.cz

Hi,

It seems to me that we envisionned sub-repositories when setting up
mercurial support through the following layout:

/srv/hg/octave/.hg # Main
/srv/hg/octave/subrepo1/.hg
/srv/hg/octave/subrepo2/.hg

Aleix, can you confirm? :)


Hi,

yes, that was the initial idea, but as no one needed at that time and,  
sincerely, I did not have much more time to work on it we just left it  
for the future.


I am quite busy until end of june, so until then I think, if Sylvain  
agrees, that we can do it by hand, at least for GNU Octave. I have  
tested it with a project of mine and works fine.


What do you think?


Sounds good.
I created /srv/hg/octave/stable/.hg/



Thanks, it needed some permission fixes though, I have already updated them.


I'm not sure hgweb supports this though?
http://hg.savannah.gnu.org/hgweb/octave/stable/ -> same as octave/



It does, but in Hg 1.2, that is,

[collections]
/srv/hg = /srv/hg/**

is sufficient (in /etc/mercurial/hgwebdir.conf).

By now, I have added an specific "paths" section:

[paths]
octave/stable = /srv/hg/octave/stable

So everything should work now.

Jaroslav, you should be able to work with octave/stable branch now. Let 
me know if you have any issue.


Cheers,

Aleix









Re: [Savannah-help-public] multiple hg repos?

2009-04-24 Thread Jaroslav Hajek
On Fri, Apr 24, 2009 at 8:37 AM, Aleix Conchillo Flaqué
 wrote:
> Sylvain Beucler wrote:
>>
>> On Thu, Apr 23, 2009 at 09:04:49AM +0200, Aleix Conchillo Flaqué wrote:
>>>
>>> Sylvain Beucler wrote:

 On Wed, Apr 22, 2009 at 08:04:48AM +0200, Jaroslav Hajek wrote:
>
> hello,
>
> I'm one of the developers of the GNU Octave project, hosted on
> Savannah. We have been recently heavily discussing future development
> strategy of Octave and have come to the problem of hosting multiple
> mercurial repositories on Savannah. Is it possible? What needs to be
> done? We need a secondary "stable" repository. We have also considered
> just using branches, but these don't solve the problem well (can't do
> unsymmetric merges).
>
> regards
>
> --
> RNDr. Jaroslav Hajek
> computing expert & GNU Octave developer
> Aeronautical Research and Test Institute (VZLU)
> Prague, Czech Republic
> url: www.highegg.matfyz.cz

 Hi,

 It seems to me that we envisionned sub-repositories when setting up
 mercurial support through the following layout:

 /srv/hg/octave/.hg # Main
 /srv/hg/octave/subrepo1/.hg
 /srv/hg/octave/subrepo2/.hg

 Aleix, can you confirm? :)

>>> Hi,
>>>
>>> yes, that was the initial idea, but as no one needed at that time and,
>>>  sincerely, I did not have much more time to work on it we just left it  for
>>> the future.
>>>
>>> I am quite busy until end of june, so until then I think, if Sylvain
>>>  agrees, that we can do it by hand, at least for GNU Octave. I have  tested
>>> it with a project of mine and works fine.
>>>
>>> What do you think?
>>
>> Sounds good.
>> I created /srv/hg/octave/stable/.hg/
>>
>
> Thanks, it needed some permission fixes though, I have already updated them.
>
>> I'm not sure hgweb supports this though?
>> http://hg.savannah.gnu.org/hgweb/octave/stable/ -> same as octave/
>>
>
> It does, but in Hg 1.2, that is,
>
> [collections]
> /srv/hg = /srv/hg/**
>
> is sufficient (in /etc/mercurial/hgwebdir.conf).
>
> By now, I have added an specific "paths" section:
>
> [paths]
> octave/stable = /srv/hg/octave/stable
>
> So everything should work now.
>
> Jaroslav, you should be able to work with octave/stable branch now. Let me
> know if you have any issue.
>
> Cheers,
>
> Aleix
>

Thanks a lot. We're still having a dispute how the future development
should continue, but hopefully we'll get somewhere eventually.

regards

-- 
RNDr. Jaroslav Hajek
computing expert & GNU Octave developer
Aeronautical Research and Test Institute (VZLU)
Prague, Czech Republic
url: www.highegg.matfyz.cz




[Savannah-help-public] Re: [sr #106709] Git commit mailing list for GNU Guile

2009-04-24 Thread Jim Meyering
Sylvain Beucler wrote:
> Follow-up Comment #6, sr #106709 (project administration):
>
>> Could you configure it so that diffs are shown as well?
>> Likewise, could the `[SCM]' string be removed from the subject line?
>
> I don't think that it's possible yet, there was some issues with diffs given
> the weird things you can do with git (push multiple commits, etc.).
>
> Jim, has this evolved recently?

Hi guys,

Ludo, if you want to try a different mail-sending hook, I can help.
For coreutils, I'm using the same one as you, but with these two added features:

  # hooks.commiturl
  #   If set, then use this as a printf-style format string assumed to have
  #   a single %s specifier, for which the SHA1 of the commit in question will
  #   be substituted.  The resulting string should be a valid URL referring to
  #   that same SHA1.
  # hooks.maildiffs
  #   If set, then include actual "diff" output, in addition to diffstats.

If you're interested, to make it send diffs, I'd just set the boolean

  git config hooks.maildiffs yes

and probably (if you'd like) set the commiturl format as well:

  git config hooks.commiturl \
'http://git.savannah.gnu.org/cgit/guile.git/commit/?id=%s'

If you like that or something similar, let me know and I'll
install it for guile.

Even with your existing hook, this setting will remove the [SCM] prefix:

  git config hooks.emailprefix ''




[Savannah-help-public] Re: [sr #106709] Git commit mailing list for GNU Guile

2009-04-24 Thread Jim Meyering
Ludovic Courtès wrote:
...
>> If you like that or something similar, let me know and I'll
>> install it for guile.
>
> OK for both.  Thank you!

Done.
And got rid of the [SCM] prefix.




[Savannah-help-public] Re: [sr #106709] Git commit mailing list for GNU Guile

2009-04-24 Thread Ludovic Courtès
Hello!

Jim Meyering  writes:

> If you're interested, to make it send diffs, I'd just set the boolean
>
>   git config hooks.maildiffs yes
>
> and probably (if you'd like) set the commiturl format as well:
>
>   git config hooks.commiturl \
> 'http://git.savannah.gnu.org/cgit/guile.git/commit/?id=%s'
>
> If you like that or something similar, let me know and I'll
> install it for guile.

OK for both.  Thank you!

I guess I may have to raise the message size limit on `guile-commits' so
that it can handle pushes with a "large" number of commits including
their diffs.

Thanks,
Ludo'.




[Savannah-help-public] [sr #106741] FTP: Access to /USERS/user fails

2009-04-24 Thread Hari Kandula

URL:
  

 Summary: FTP: Access to /USERS/user fails
 Project: Savannah Administration
Submitted by: harikk
Submitted on: Fri 24 Apr 2009 04:09:48 PM GMT
Category: Trackers (bugs, support, tasks...)
Priority: 5 - Normal
Severity: 4 - Important
  Status: None
 Assigned to: None
Originator Email: har...@gmail.com
Operating System: Microsoft Windows
 Open/Closed: Open
 Discussion Lock: Any

___

Details:

wget --no-host-directories --debug --mirror --ftp-user=abc --ftp-password=xyz
ftp://myftp.com/users/harikk

The above command fails with the following error message
550 Access is denied.
No such directory `users'.

I have access to /users/harikk folder but not to "users" folder. Looks like
wget is first trying change directory to "users" instead of going directly to 
"/users/harikk".

How do we force wget to go to  "/users/harikk".
Your help will be appreciated.





___

Reply to this item at:

  

___
  Message sent via/by Savannah
  http://savannah.gnu.org/