kdeedu l10n

View: New views
10 Messages — Rating Filter:   Alert me  

kdeedu l10n

by Bugzilla from danishka@gmail.com :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

I can update the kdebase of the Sinhala svn repo, but i couldn't access the kdeedu.
what could be the issue.

svn ci -m "added few files"
svn: Commit failed (details follow):
svn: Authorization failed


--
Danishka Navin
http://danishkanavin.blogspot.com

Re: kdeedu l10n

by Albert Astals Cid-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

A Dissabte, 7 de novembre de 2009, Danishka Navin va escriure:
> Hi,
>
> I can update the kdebase of the Sinhala svn repo, but i couldn't access the
> kdeedu.
> what could be the issue.
>
> svn ci -m "added few files"
> svn: Commit failed (details follow):
> svn: Authorization failed

One reason could be that you did not check it out with your user but using
anonsvn?

Can you paste the output of doing "svn info" in that dir?

Albert

Re: kdeedu l10n

by Bugzilla from danishka@gmail.com :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



On Sat, Nov 7, 2009 at 7:49 PM, Albert Astals Cid <aacid@...> wrote:
A Dissabte, 7 de novembre de 2009, Danishka Navin va escriure:
> Hi,
>
> I can update the kdebase of the Sinhala svn repo, but i couldn't access the
> kdeedu.
> what could be the issue.
>
> svn ci -m "added few files"
> svn: Commit failed (details follow):
> svn: Authorization failed

One reason could be that you did not check it out with your user but using
anonsvn?

Can you paste the output of doing "svn info" in that dir?

svn info
Path: .
URL: svn://anonsvn.kde.org/home/kde/trunk/l10n-kde4/templates/messages/kdeedu
Repository Root: svn://anonsvn.kde.org/home/kde
Repository UUID: 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Revision: 904908
Node Kind: directory
Schedule: normal
Last Changed Author: scripty
Last Changed Rev: 904818
Last Changed Date: 2009-01-03 15:41:15 +0530 (Sat, 03 Jan 2009)
 

Albert



--
Danishka Navin
http://danishkanavin.blogspot.com (use Sinhala Unicode fonts)

Re: kdeedu l10n

by Bugzilla from andrew_coles@yahoo.co.uk :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.


Yes, so as Albert guessed, you're trying to commit to the anonymous SVN repository - you need to switch the base of your checkout to svn.kde.org using:

svn switch --relocate 'svn://anonsvn.kde.org' 'svn+ssh://svn.kde.org'

...or https rather than svn+ssh if you use that.

(Though looking at your svn info, you're in the templates directory for the kdeedu messages - are you sure you want to be committing files to there?)

Andrew



Re: kdeedu l10n

by Bugzilla from danishka@gmail.com :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



On Sat, Nov 7, 2009 at 8:22 PM, Danishka Navin <danishka@...> wrote:


On Sat, Nov 7, 2009 at 7:49 PM, Albert Astals Cid <aacid@...> wrote:
A Dissabte, 7 de novembre de 2009, Danishka Navin va escriure:
> Hi,
>
> I can update the kdebase of the Sinhala svn repo, but i couldn't access the
> kdeedu.
> what could be the issue.
>
> svn ci -m "added few files"
> svn: Commit failed (details follow):
> svn: Authorization failed

One reason could be that you did not check it out with your user but using
anonsvn?

Can you paste the output of doing "svn info" in that dir?

svn info
Path: .
URL: svn://anonsvn.kde.org/home/kde/trunk/l10n-kde4/templates/messages/kdeedu
Repository Root: svn://anonsvn.kde.org/home/kde
Repository UUID: 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Revision: 904908
Node Kind: directory
Schedule: normal
Last Changed Author: scripty
Last Changed Rev: 904818
Last Changed Date: 2009-01-03 15:41:15 +0530 (Sat, 03 Jan 2009)
 



i tried again with my account

messages]$ svn co svn+ssh://dnavin@.../home/kde/trunk/l10n-kde4/si/messages/kdeedu
svn: URL 'svn+ssh://dnavin@.../home/kde/trunk/l10n-kde4/si/messages/kdeedu' doesn't exist
 

yes, i never created kdeedu directory
then from where i should checkout the kdeedu  files?

Re: kdeedu l10n

by Burkhard Lück :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Am Samstag 07 November 2009 16:06:21 schrieb Danishka Navin:
>
> yes, i never created kdeedu directory
> then from where i should checkout the kdeedu  files?
>
You can not checkout these files as 10n-kde4/si/messages/kdeedu does not exist
on the server.

Type in konsole
"svn st path/to/si/messages/kdeedu"
and you should see:
"?     path/to/si/messages/kdeedu"

So you have to add this directory with its files to your svn checkout with:
"svn add path/to/si/messages/kdeedu/"
Output of this command is something like:
A         path/to/si/messages/kdeedu
A         path/to/si/messages/kdeedu/foo.po
....

Now you can commit your files with the command
"svn ci -m "insert your log message here" path/to/si/messages/kdeedu"

--
Burkhard Lück

Re: kdeedu l10n

by Bugzilla from danishka@gmail.com :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



On Sat, Nov 7, 2009 at 9:22 PM, Burkhard Lück <lueck@...> wrote:
Am Samstag 07 November 2009 16:06:21 schrieb Danishka Navin:
>
> yes, i never created kdeedu directory
> then from where i should checkout the kdeedu  files?
>
You can not checkout these files as 10n-kde4/si/messages/kdeedu does not exist
on the server.

Type in konsole
"svn st path/to/si/messages/kdeedu"
and you should see:
"?     path/to/si/messages/kdeedu"

So you have to add this directory with its files to your svn checkout with:
"svn add path/to/si/messages/kdeedu/"
Output of this command is something like:
A         path/to/si/messages/kdeedu
A         path/to/si/messages/kdeedu/foo.po
....

Now you can commit your files with the command
"svn ci -m "insert your log message here" path/to/si/messages/kdeedu"

--
Burkhard Lück

svn add kdeedu/
svn: warning: 'kdeedu' is already under version control


svn ci -m "added kdeedu" kdeedu/
svn: Commit failed (details follow):
svn: Authorization failed


--
Danishka Navin
http://danishkanavin.blogspot.com (use Sinhala Unicode fonts)

Re: kdeedu l10n

by Albert Astals Cid-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

A Dissabte, 7 de novembre de 2009, Danishka Navin va escriure:

> On Sat, Nov 7, 2009 at 8:22 PM, Danishka Navin <danishka@...> wrote:
> > On Sat, Nov 7, 2009 at 7:49 PM, Albert Astals Cid <aacid@...> wrote:
> >> A Dissabte, 7 de novembre de 2009, Danishka Navin va escriure:
> >> > Hi,
> >> >
> >> > I can update the kdebase of the Sinhala svn repo, but i couldn't
> >> > access
> >>
> >> the
> >>
> >> > kdeedu.
> >> > what could be the issue.
> >> >
> >> > svn ci -m "added few files"
> >> > svn: Commit failed (details follow):
> >> > svn: Authorization failed
> >>
> >> One reason could be that you did not check it out with your user but
> >> using anonsvn?
> >>
> >> Can you paste the output of doing "svn info" in that dir?
> >
> > svn info
> > Path: .
> > URL: svn://
> > anonsvn.kde.org/home/kde/trunk/l10n-kde4/templates/messages/kdeedu
> > Repository Root: svn://anonsvn.kde.org/home/kde
> > Repository UUID: 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
> > Revision: 904908
> > Node Kind: directory
> > Schedule: normal
> > Last Changed Author: scripty
> > Last Changed Rev: 904818
> > Last Changed Date: 2009-01-03 15:41:15 +0530 (Sat, 03 Jan 2009)
>
> i tried again with my account
>
> messages]$ svn co svn+ssh://
> dnavin@.../home/kde/trunk/l10n-kde4/si/messages/kdeedu
> svn: URL 'svn+ssh://
> dnavin@.../home/kde/trunk/l10n-kde4/si/messages/kdeedu' doesn't
> exist
>
>
> yes, i never created kdeedu directory
> then from where i should checkout the kdeedu  files?
>

I think you are having some kind of misunderstanding here, the templates for
the kdeedu files are located at
 svn.kde.org/home/kde/trunk/l10n-kde4/templates/messages/kdeedu
but you do have to commit then there, this directory is just for templates.
You have to commit them to the sinhala directory but it doesn't exist, so
that's probably why you are having problems.

You can do this:
 * Backup all your work
 * Download the whole sinhala directory
svn co svn+ssh://dnavin@.../home/kde/trunk/l10n-kde4/si/
 * Enter the sinhala messages dir
cd si/messages
 * Create the kdeedu folder
mkdir kdeedu
 * Tell subversion you want to add the kdeedu folder to the server
svn add kdeedu
 * Copy the kdeedu translated .po files to your new kdeedu folder
cp /some/path/file1.po kdeedu
cp /some/path/file2.po kdeedu
 * Tell subversion you want to add the translated files to the server
svn add kdeedu/file1.po
svn add kdeedu/file2.po
 * Commit your changes to the server
svn commit kdeedu


Albert

Re: kdeedu l10n

by Bugzilla from kde@opensource.sf-tec.de :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

>  * Create the kdeedu folder
> mkdir kdeedu
>  * Tell subversion you want to add the kdeedu folder to the server
> svn add kdeedu

Just for the records: this can be done as "svn mkdir kdeedu" in one step.

Eike


signature.asc (205 bytes) Download Attachment

Re: kdeedu l10n

by Bugzilla from danishka@gmail.com :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



On Sun, Nov 8, 2009 at 12:28 AM, Albert Astals Cid <aacid@...> wrote:
A Dissabte, 7 de novembre de 2009, Danishka Navin va escriure:
> On Sat, Nov 7, 2009 at 8:22 PM, Danishka Navin <danishka@...> wrote:
> > On Sat, Nov 7, 2009 at 7:49 PM, Albert Astals Cid <aacid@...> wrote:
> >> A Dissabte, 7 de novembre de 2009, Danishka Navin va escriure:
> >> > Hi,
> >> >
> >> > I can update the kdebase of the Sinhala svn repo, but i couldn't
> >> > access
> >>
> >> the
> >>
> >> > kdeedu.
> >> > what could be the issue.
> >> >
> >> > svn ci -m "added few files"
> >> > svn: Commit failed (details follow):
> >> > svn: Authorization failed
> >>
> >> One reason could be that you did not check it out with your user but
> >> using anonsvn?
> >>
> >> Can you paste the output of doing "svn info" in that dir?
> >
> > svn info
> > Path: .
> > URL: svn://
> > anonsvn.kde.org/home/kde/trunk/l10n-kde4/templates/messages/kdeedu
> > Repository Root: svn://anonsvn.kde.org/home/kde
> > Repository UUID: 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
> > Revision: 904908
> > Node Kind: directory
> > Schedule: normal
> > Last Changed Author: scripty
> > Last Changed Rev: 904818
> > Last Changed Date: 2009-01-03 15:41:15 +0530 (Sat, 03 Jan 2009)
>
> i tried again with my account
>
> messages]$ svn co svn+ssh://
> dnavin@.../home/kde/trunk/l10n-kde4/si/messages/kdeedu
> svn: URL 'svn+ssh://
> dnavin@.../home/kde/trunk/l10n-kde4/si/messages/kdeedu' doesn't
> exist
>
>
> yes, i never created kdeedu directory
> then from where i should checkout the kdeedu  files?
>

I think you are having some kind of misunderstanding here, the templates for
the kdeedu files are located at
 svn.kde.org/home/kde/trunk/l10n-kde4/templates/messages/kdeedu
but you do have to commit then there, this directory is just for templates.
You have to commit them to the sinhala directory but it doesn't exist, so
that's probably why you are having problems.

You can do this:
 * Backup all your work
 * Download the whole sinhala directory
 * Enter the sinhala messages dir
cd si/messages
 * Create the kdeedu folder
mkdir kdeedu
 * Tell subversion you want to add the kdeedu folder to the server
svn add kdeedu
 * Copy the kdeedu translated .po files to your new kdeedu folder
cp /some/path/file1.po kdeedu
cp /some/path/file2.po kdeedu
 * Tell subversion you want to add the translated files to the server
svn add kdeedu/file1.po
svn add kdeedu/file2.po
 * Commit your changes to the server
svn commit kdeedu


Albert


Thanks Albert it worked!

--
Danishka Navin
http://danishkanavin.blogspot.com