Re: subversion ouch

2006-06-30 Thread Lior Kaplan
You usually create a group that has r/w access to the repository files,
and a subversion user to the run server daemon.

each repository has it own group (just to make clear, it's a normal
group in /etc/group not something internal to subversion).

running a server is easy using this command:
svnserve -d -r /srv/subversion/repositories/

-d for daemon mode, and -r to repositories path

authentication can be done using ssh+svn protocol.

[EMAIL PROTECTED] wrote:
 Hi all,
 
 for various reasons I have been using subversion at work.
 
 This has worked fine for me when I was the only one using the repository.
 I started a project where I am working with a coworker who has agreed to use
 subversion.
 
 
 Now I see things are not working correctly.
 
 I of course set up subversion locally, duh and now I gather there is no way to
 add users.
 
 I put the repository on the companies remote server, to get this working must 
 I
 have a server installed there?
 
 If not can I continue as I have been and somehow fix something.
 
 Right now the problems I see are that while each of us can update and commit 
 we
 don't see each others work.
 
 What must I do to get this working?
 
 Thanks,
 Aaron
 
 
 
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]
 
 
 

-- 

Lior Kaplan
[EMAIL PROTECTED]
http://www.Guides.co.il

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: optimization guidelines required for C.

2006-06-30 Thread Shlomi Fish
On Friday 30 June 2006 01:12, Michael Vasiliev wrote:
 On Thursday June 29 2006 23:14, Diego Iastrubni wrote:

 [Isn't your kmail supposed to insert the right quote phrase depending on
 the language you wrote this email in?]

WARNING: Computer viruses can be transmitted via email. The recipient
should check this email and any attachments for the presence of
viruses. The company accepts no liability for any damage caused by
any virus transmitted by this email.
  
   How obvious. With such stupid and embarrassing signatures automatically
   appended to their employees mail, would you believe they could choose
   a less vulnerable operating system?
 
  Which reminds me... wine is still a piece of garbage. I tried on one of
  those viruses a few days ago... nothing.  Well, even if they are
  transmitted, they cant do a thing.

 Yeah, looks like wine is still not up to running the latest in viral
 fashion line. :)  You'll have to run you know what OS in a virtual machine
 to test and dissect the latest virus you got in your mail. I recommend to
 dig the most ancient version you have to go and surprise the little wormy.
 Hours of fun.

 --
 Sincerely Yours,
 Michael Vasiliev

 .. Any resemblance between the above views and those of my employer, my
 terminal, or the view out my window are purely coincidental.  Any
 resemblance between the above and my own views is non-deterministic.  The
 question of the existence of views in the absence of anyone to hold them is
 left as an exercise for the reader.  The question of the existence of the
 reader is left as an exercise for the second god coefficient.  (A
 discussion of
 non-orthogonal, non-integral polytheism is beyond the scope of this
 article.)

Hi Michael!

Is this signature yours? Or did you take it from somewhere?

I'd like to add it to my fortunes files:

http://www.shlomifish.org/Vipe/humour/fortunes/

Regards,

Shlomi Fish

-
Shlomi Fish  [EMAIL PROTECTED]
Homepage:http://www.shlomifish.org/

95% of the programmers consider 95% of the code they did not write, in the
bottom 5%.

To unsubscribe, 
send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Shlomi Fish
On Friday 30 June 2006 08:21, [EMAIL PROTECTED] wrote:
 Hi all,

 for various reasons I have been using subversion at work.

 This has worked fine for me when I was the only one using the repository.
 I started a project where I am working with a coworker who has agreed to
 use subversion.


 Now I see things are not working correctly.

 I of course set up subversion locally, duh and now I gather there is no way
 to add users.

I strongly recommend that you set up a networked service (if you want you can 
firewall it from outside the organisation). There's HTTP/S (over 
WebDAV/DeltaV) and there's the Subversion custom protocol (svn://), and they 
are both popular. HTTP/S is more customisable, but svn:// does not require 
Apache2, so it may be easier to set up.

All of this of course, is less of an issue if you're using your distro's 
Subversion packages.


 I put the repository on the companies remote server, to get this working
 must I have a server installed there?

You should.


 If not can I continue as I have been and somehow fix something.

 Right now the problems I see are that while each of us can update and
 commit we don't see each others work.

I don't understand what the problem is exactly, but you may need to either use 
a networked Subversion repository or alternatively use svn st (short 
for svn status) to make sure there are no leftover files in the working 
copy.

Note that Gabor Szabo ( http://www.pti.co.il/ ) gives Subversion consulting, 
but he's become extremely busy lately. I'm also a Subversion expert, (and 
past contributor to the Subversion core) but I am working full-time and also 
don't have an Osek Mursheh status yet.

See also:

http://svnbook.red-bean.com/

And you can also find some tutorials online.

Regards,

Shlomi Fish

-
Shlomi Fish  [EMAIL PROTECTED]
Homepage:http://www.shlomifish.org/

95% of the programmers consider 95% of the code they did not write, in the
bottom 5%.

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Shachar Shemesh

Lior Kaplan wrote:


You usually create a group that has r/w access to the repository files,
and a subversion user to the run server daemon.

each repository has it own group (just to make clear, it's a normal
group in /etc/group not something internal to subversion).

running a server is easy using this command:
svnserve -d -r /srv/subversion/repositories/

-d for daemon mode, and -r to repositories path

authentication can be done using ssh+svn protocol.
  

If you authenticate using the svn+ssh protocol, you don't need a server.

  Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting ltd.
Have you backed up today's work? http://www.lingnu.com/backup.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Shachar Shemesh

[EMAIL PROTECTED] wrote:


I of course set up subversion locally, duh and now I gather there is no way to
add users.

I put the repository on the companies remote server, to get this working must I
have a server installed there?
  

No.

There are two courses of action you can take. One is to install a 
subversion server on the remote machine. This can be a standalone 
server, or something running as part of Apache. I actually believe that 
this list is non-exhaustive of the types of services SVN offers.


Another option, which is the only I usually opt for, is to create a new 
group (say, SVN), and then:

cd svnroot
chgrp -R svn db
find db -type d -exec chmod g+s \{\} \;
chmod -R g+w db

After you do that, any member of the group svn can use the svn+ssh 
protocol (assuming svn and ssh are installed on the machine) to perform 
SVN actions on the repository.

Right now the problems I see are that while each of us can update and commit we
don't see each others work.
  

Hmm.

In what way does your coworker connect to your repository? What DB type 
did you choose (bdb or fsfs)?

What must I do to get this working?
  
Since Shlomi brought up the matter of payed consulting, we offer 
commercial SVN support as well.


 Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting ltd.
Have you backed up today's work? http://www.lingnu.com/backup.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Kernel I/O Errors

2006-06-30 Thread Shachar Shemesh

ik wrote:


OK, I replaced the Hard drive for a new one,

It does not have any bad blocks or FS on it when I checked (using a
live cd and bad blocks like before), now when I install either debian
stable with 2.6.8 or Fedora Core 5, I'm getting
dma_intr: status=0x51 {DriveReady SeekComplete Error }

Then I re-run the same live cd with bad blocks, and still no bad
blocks where found ...

Hmm.

Are you sure that the errors you report are for your HD and not, say, 
your CD rom?


 Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting ltd.
Have you backed up today's work? http://www.lingnu.com/backup.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Kernel I/O Errors

2006-06-30 Thread ik

On 6/30/06, Shachar Shemesh [EMAIL PROTECTED] wrote:

ik wrote:

 OK, I replaced the Hard drive for a new one,

 It does not have any bad blocks or FS on it when I checked (using a
 live cd and bad blocks like before), now when I install either debian
 stable with 2.6.8 or Fedora Core 5, I'm getting
 dma_intr: status=0x51 {DriveReady SeekComplete Error }

 Then I re-run the same live cd with bad blocks, and still no bad
 blocks where found ...
Hmm.

Are you sure that the errors you report are for your HD and not, say,
your CD rom?


Well, yes because there is no cd inside after first boot (and second
etc..), so the cd is not mounted, and the only other storage device is
the hard drive.

I now tried to install ubuntu 6.06, and when it comes to prationing,
the installer just stop to react, and only cancel is the option that
will act for me then.

O.T. I found out that gnome become really cool wm ;) but I'm still
waiting for the new enlightenment ...



  Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting ltd.
Have you backed up today's work? http://www.lingnu.com/backup.html





Ido

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Kernel I/O Errors

2006-06-30 Thread Henry Ficher

Hi Ido,


You may need to upgrade your mobo's BIOS


ik wrote:


On 6/30/06, Shachar Shemesh [EMAIL PROTECTED] wrote:


ik wrote:

 OK, I replaced the Hard drive for a new one,

 It does not have any bad blocks or FS on it when I checked (using a
 live cd and bad blocks like before), now when I install either debian
 stable with 2.6.8 or Fedora Core 5, I'm getting
 dma_intr: status=0x51 {DriveReady SeekComplete Error }

 Then I re-run the same live cd with bad blocks, and still no bad
 blocks where found ...





=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



AJP packet query

2006-06-30 Thread Madhav Sathe

hi all,

i need one help, im tryin to the the AJP request format, the problem is 
its a binary protocol..

(ajp it used to send data from Apache to App servers)
im using AJP13...i want to ping AJP port with some request..
for example, the way we could do it for http
GET http://locahost/index.html

thanks in advance...

regards,
madhav

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Kernel I/O Errors

2006-06-30 Thread ik

Hi,

Thank you all for your answers.

I turned off the dma support using:
/sbin/hdparm -d0 /dev/hda
and the errors ended...

Now, how can I make it permanently off in linux boot (what parameter
should I give for grub) ?

Ido

On 6/30/06, Henry Ficher [EMAIL PROTECTED] wrote:

Hi Ido,


You may need to upgrade your mobo's BIOS


ik wrote:

 On 6/30/06, Shachar Shemesh [EMAIL PROTECTED] wrote:

 ik wrote:

  OK, I replaced the Hard drive for a new one,
 
  It does not have any bad blocks or FS on it when I checked (using a
  live cd and bad blocks like before), now when I install either debian
  stable with 2.6.8 or Fedora Core 5, I'm getting
  dma_intr: status=0x51 {DriveReady SeekComplete Error }
 
  Then I re-run the same live cd with bad blocks, and still no bad
  blocks where found ...





=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



ktouch in hebrew

2006-06-30 Thread Micha Silver
We've been using ktouch (on FC3) for a while with a hebrew typing lesson 
I cobbled together. As soon as the hebrew lesson was loaded the cursor 
in the typing row shifted to the right.


I did a yum update (I have kde-redhat in my yum.conf list, in addition 
to the regular stuff), and after that the cursor stays on the left, 
regardless of which lesson is loaded. Same behavior for different users 
using both the English and Hebrew KDE interface.


What can I do to get it to shift to the RTL direction for hebrew?

Thanks,

Micha


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: ktouch in hebrew

2006-06-30 Thread Diego Iastrubni
ביום שישי, 30 ביוני 2006, 17:25, כתבת:
 We've been using ktouch (on FC3) for a while with a hebrew typing lesson
 I cobbled together. As soon as the hebrew lesson was loaded the cursor
 in the typing row shifted to the right.

 I did a yum update (I have kde-redhat in my yum.conf list, in addition
 to the regular stuff), and after that the cursor stays on the left,
 regardless of which lesson is loaded. Same behavior for different users
 using both the English and Hebrew KDE interface.

 What can I do to get it to shift to the RTL direction for hebrew?
complain to some kde developer

Which KDE version (and ktouch) are you using? Same for Qt.

If I can reproduce the problem, I will try to fix it.

-- 
diego, kde-il translation team

Please avoid sending me Word or PowerPoint attachments.
See http://www.fsf.org/philosophy/no-word-attachments.html

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Shlomi Fish
On Friday 30 June 2006 12:13, Shachar Shemesh wrote:
  What must I do to get this working?

 Since Shlomi brought up the matter of payed consulting, we offer
 commercial SVN support as well.


Seeing this thread I decided to start a Consulting directory on the Linux-IL 
wiki:

http://www.iglu.org.il/wiki/index.php/Consulting

Subversion consulting with PTI, Lingnu and myself added can be found here:

http://www.iglu.org.il/wiki/index.php/Consulting/Subversion

Regards,

Shlomi Fish

-
Shlomi Fish  [EMAIL PROTECTED]
Homepage:http://www.shlomifish.org/

95% of the programmers consider 95% of the code they did not write, in the
bottom 5%.

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Andre Bar'yudin

Nice idea...

--
Andre Bar'yudin
http://www.baryudin.com/

On 6/30/06, Shlomi Fish [EMAIL PROTECTED] wrote:

On Friday 30 June 2006 12:13, Shachar Shemesh wrote:
  What must I do to get this working?

 Since Shlomi brought up the matter of payed consulting, we offer
 commercial SVN support as well.


Seeing this thread I decided to start a Consulting directory on the Linux-IL
wiki:

http://www.iglu.org.il/wiki/index.php/Consulting

Subversion consulting with PTI, Lingnu and myself added can be found here:

http://www.iglu.org.il/wiki/index.php/Consulting/Subversion

Regards,

Shlomi Fish

-
Shlomi Fish  [EMAIL PROTECTED]
Homepage:http://www.shlomifish.org/

95% of the programmers consider 95% of the code they did not write, in the
bottom 5%.

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]




=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Shlomi Fish
On Friday 30 June 2006 19:35, Andre Bar'yudin wrote:
 Nice idea...

Yes, thanks. I forgot to add that anyone should feel free to add more 
categories or himself or his friend (or foes.). Note that I feel that we 
should keep a Neutral Point of View here (NPOV). If you want to comment on 
one of the alternatives feel free to use the Discussions page.

Regards,

Shlomi Fish

-
Shlomi Fish  [EMAIL PROTECTED]
Homepage:http://www.shlomifish.org/

95% of the programmers consider 95% of the code they did not write, in the
bottom 5%.

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: ktouch in hebrew

2006-06-30 Thread Micha Silver

Diego Iastrubni wrote:


ביום שישי, 30 ביוני 2006, 17:25, כתבת:
  

We've been using ktouch (on FC3) for a while with a hebrew typing lesson
I cobbled together. As soon as the hebrew lesson was loaded the cursor
in the typing row shifted to the right.

I did a yum update (I have kde-redhat in my yum.conf list, in addition
to the regular stuff), and after that the cursor stays on the left,
regardless of which lesson is loaded. Same behavior for different users
using both the English and Hebrew KDE interface.

What can I do to get it to shift to the RTL direction for hebrew?


complain to some kde developer

Which KDE version (and ktouch) are you using? Same for Qt.

If I can reproduce the problem, I will try to fix it.
  

[EMAIL PROTECTED] ~]$ ktouch --version
Qt: 3.3.6
KDE: 3.5.3-4.1.fc3.kde
KTouch: 1.5.3

Thanks

.

.


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Shachar Shemesh

Shlomi Fish wrote:

On Friday 30 June 2006 12:13, Shachar Shemesh wrote:
  

What must I do to get this working?
  

Since Shlomi brought up the matter of payed consulting, we offer
commercial SVN support as well.




Seeing this thread I decided to start a Consulting directory on the Linux-IL 
wiki:


http://www.iglu.org.il/wiki/index.php/Consulting
  

Are we sure we want ANOTHER directory of service providers in Israel?
I don't think the competition is quite fierce enough to trigger cross 
sabotage just yet, but isn't a Wiki the wrong platform for such a list?

Subversion consulting with PTI, Lingnu and myself added can be found here:

http://www.iglu.org.il/wiki/index.php/Consulting/Subversion
  
Wouldn't that be IT/Subversion? I'm sure most people need help 
installing and maintaining, not hacking, subversion.

Regards,

Shlomi Fish


--
Shachar Shemesh
Lingnu Open Source Consulting ltd.
Have you backed up today's work? http://www.lingnu.com/backup.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Andre Bar'yudin

What's the official repository for OS and Linux freelancers, then?

--
Andre Bar'yudin
http://www.baryudin.com/

On 6/30/06, Shachar Shemesh [EMAIL PROTECTED] wrote:

Shlomi Fish wrote:
 On Friday 30 June 2006 12:13, Shachar Shemesh wrote:

 What must I do to get this working?

 Since Shlomi brought up the matter of payed consulting, we offer
 commercial SVN support as well.



 Seeing this thread I decided to start a Consulting directory on the Linux-IL
 wiki:

 http://www.iglu.org.il/wiki/index.php/Consulting

Are we sure we want ANOTHER directory of service providers in Israel?
I don't think the competition is quite fierce enough to trigger cross
sabotage just yet, but isn't a Wiki the wrong platform for such a list?
 Subversion consulting with PTI, Lingnu and myself added can be found here:

 http://www.iglu.org.il/wiki/index.php/Consulting/Subversion

Wouldn't that be IT/Subversion? I'm sure most people need help
installing and maintaining, not hacking, subversion.
 Regards,

   Shlomi Fish

--
Shachar Shemesh
Lingnu Open Source Consulting ltd.
Have you backed up today's work? http://www.lingnu.com/backup.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]




=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Muli Ben-Yehuda
On Fri, Jun 30, 2006 at 11:15:49PM +0100, Andre Bar'yudin wrote:

 What's the official repository for OS and Linux freelancers, then?

google, of course.

Cheers,
Muli

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Andre Bar'yudin

Third link on the search query freelancer israel returns a Microsoft page :-)

On 6/30/06, Muli Ben-Yehuda [EMAIL PROTECTED] wrote:

On Fri, Jun 30, 2006 at 11:15:49PM +0100, Andre Bar'yudin wrote:

 What's the official repository for OS and Linux freelancers, then?

google, of course.

Cheers,
Muli



--
Andre Bar'yudin
http://www.baryudin.com/

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: subversion ouch

2006-06-30 Thread Shachar Shemesh

Andre Bar'yudin wrote:


What's the official repository for OS and Linux freelancers, then?

It used to be, and this is also the link you get from http://iglu.org.il 
(for which Shlomi is the primary maintainer), 
http://www.iglu.org.il/consultants/. The place still exists, and is a 
fairly horrid interface.


I'm not saying we shouldn't replace it, or even that the new site 
doesn't look way friendlier than the old one. I'm just saying that 
having too many repositories is also a bad idea, esp. if two of those 
are ON THE SAME SERVER.


 Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting ltd.
Have you backed up today's work? http://www.lingnu.com/backup.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]