can't commit into quarks?

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

can't commit into quarks?

by James Harkins-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Huh? I tried to commit the one remaining fix to MarkovSetN just now and it tells me:

Authentication realm: <https://quarks.svn.sourceforge.net:443> SourceForge Subversion area
Password for 'jamshark70':
subversion/libsvn_client/commit.c:873: (apr_err=175002)
svn: Commit failed (details follow):
subversion/libsvn_ra_dav/util.c:296: (apr_err=175002)
svn: MKACTIVITY of '/svnroot/quarks/!svn/act/d305ab79-143b-0410-9092-8af09e2763f6': 403 Forbidden (https://quarks.svn.sourceforge.net)

???

(BTW, Julian, MarkovSetN:embedSpyInStream is still broken. Could you, or someone, commit this corrected method?)

// modified by hjh to support populating the set by event-responses
embedSpyInStream { arg pattern, repeats=inf, inval;
var stream, item, buffer;

  stream = pattern.asStream;

// // fill up the buffer incrementally on the first few incoming values
buffer = Array.fill(order, {
(item = stream.next(inval)).isNil.if({ ^inval });
inval = item.yield;
item
});

// now we have enough info to begin populating the set
repeats.do {
item = stream.next(inval);
if(item.notNil) {
this.read(buffer, item);
(buffer = buffer.copy).removeAt(0);
buffer.add(item);
}{
^inval
};
inval = item.yield;
  };
}

hjh


: H. James Harkins

: jamshark70@...

: http://www.dewdrop-world.net

.::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:


"Come said the Muse,

Sing me a song no poet has yet chanted,

Sing me the universal."  -- Whitman



_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by Julian Rohrhuber :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



>Huh? I tried to commit the one remaining fix to MarkovSetN just now
>and it tells me:
>
>Authentication realm:
><<https://quarks.svn.sourceforge.net:443>https://quarks.svn.sourceforge.net:443>
>SourceForge Subversion area
>Password for 'jamshark70':
>subversion/libsvn_client/commit.c:873: (apr_err=175002)
>svn: Commit failed (details follow):
>subversion/libsvn_ra_dav/util.c:296: (apr_err=175002)
>svn: MKACTIVITY of
>'/svnroot/quarks/!svn/act/d305ab79-143b-0410-9092-8af09e2763f6': 403
>Forbidden
>(<https://quarks.svn.sourceforge.net>https://quarks.svn.sourceforge.net)
>
>???

maybe you haven't updated the subversion path change ?

from the swiki :
"If you already have supercollider installed and simply fail to
update your code from svn, you probably have to switch the url to the
new sf svn directory:
svn switch --relocate
https://svn.sourceforge.net/svnroot/supercollider/trunk 
https://supercollider.svn.sourceforge.net/svnroot/supercollider/trunk
"


>
>(BTW, Julian, MarkovSetN:embedSpyInStream is still broken. Could
>you, or someone, commit this corrected method?)



ok, thanks!
committed.

--





.
_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by James Harkins-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

No, I don't think that's it. I have:

known = Dictionary[
"https://quarks.svn.sourceforge.net/svnroot/quarks" -> (Platform.userAppSupportDir ++ "/quarks"),
"https://svn.sonenvir.at/svnroot/SonEnvir/trunk/src/quarks-sonenvir" -> (Platform.userAppSupportDir ++ "/quarks-sonenvir")
];

Plus I can do svn update within the quarks directory and it executes correctly.

I think it has to do with write permissions.

hjh

On Sep 27, 2007, at 4:33 AM, Julian Rohrhuber wrote:

maybe you haven't updated the subversion path change ?

from the swiki :
"If you already have supercollider installed and simply fail to update your code from svn, you probably have to switch the url to the new sf svn directory:
"


: H. James Harkins

: jamshark70@...

: http://www.dewdrop-world.net

.::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:


"Come said the Muse,

Sing me a song no poet has yet chanted,

Sing me the universal."  -- Whitman



_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by Dan Stowell :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

To me it looks like one of those little glitches that sourceforge
sometimes has - looks like the permissions problem is interrupting the
SVN server's commit process. Usually if you wait about 24 hours that
kind of thing goes away... if it persists, send a support request to
SF.net.

Dan

2007/9/27, James Harkins <jamshark70@...>:

>
> No, I don't think that's it. I have:
>
>  known = Dictionary[
>  "https://quarks.svn.sourceforge.net/svnroot/quarks" ->
> (Platform.userAppSupportDir ++ "/quarks"),
> "https://svn.sonenvir.at/svnroot/SonEnvir/trunk/src/quarks-sonenvir"
> -> (Platform.userAppSupportDir ++ "/quarks-sonenvir")
>  ];
>
> Plus I can do svn update within the quarks directory and it executes
> correctly.
>
> I think it has to do with write permissions.
>
> hjh
>
> On Sep 27, 2007, at 4:33 AM, Julian Rohrhuber wrote:
>
> maybe you haven't updated the subversion path change ?
>
> from the swiki :
> "If you already have supercollider installed and simply fail to update your
> code from svn, you probably have to switch the url to the new sf svn
> directory:
> svn switch --relocate
> https://svn.sourceforge.net/svnroot/supercollider/trunk
> https://supercollider.svn.sourceforge.net/svnroot/supercollider/trunk
> "
>
>
>
>
>
> : H. James Harkins
>
> : jamshark70@...
>
> : http://www.dewdrop-world.net
>
> .::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:
>
>
>
>
> "Come said the Muse,
>
> Sing me a song no poet has yet chanted,
>
> Sing me the universal."  -- Whitman
>
> _______________________________________________
> Sc-devel mailing list
> Sc-devel@...
> http://www.create.ucsb.edu/mailman/listinfo/sc-devel
>
>


--
http://www.mcld.co.uk
_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by James Harkins-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Sep 27, 2007, at 8:11 AM, Dan Stowell wrote:

To me it looks like one of those little glitches that sourceforge
sometimes has - looks like the permissions problem is interrupting the
SVN server's commit process. Usually if you wait about 24 hours that
kind of thing goes away... if it persists, send a support request to
SF.net.


No, definitely not that. It's been more than 24 hours and I still can't commit.


Now I'm trying to add dewdrop_lib into the repository. I did all the svn add commands, then commit fails with:


dewdrops-computer:~/Library/Application Support/SuperCollider/quarks dewdrop$ svn commit --message "dewdrop_lib initial checkin" --username jamshark70
Authentication realm: <https://quarks.svn.sourceforge.net:443> SourceForge Subversion area
Password for 'jamshark70':
subversion/libsvn_client/commit.c:873: (apr_err=175002)
svn: Commit failed (details follow):
subversion/libsvn_ra_dav/util.c:296: (apr_err=175002)
svn: MKACTIVITY of '/svnroot/quarks/!svn/act/e3b8201c-613b-0410-beb0-d7bd908b3909': 403 Forbidden (https://quarks.svn.sourceforge.net)

I know I entered my password correctly (tried twice).

I'll contact sf. This is quite frustrating.

hjh




: H. James Harkins

: jamshark70@...

: http://www.dewdrop-world.net

.::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:


"Come said the Muse,

Sing me a song no poet has yet chanted,

Sing me the universal."  -- Whitman



_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by Julian Rohrhuber :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

have you done a fresh checkout from commandline with your username?
if you check out via sc as anonymous you can't check anything in.

>On Sep 27, 2007, at 8:11 AM, Dan Stowell wrote:
>
>>To me it looks like one of those little glitches that sourceforge
>>sometimes has - looks like the permissions problem is interrupting the
>>SVN server's commit process. Usually if you wait about 24 hours that
>>kind of thing goes away... if it persists, send a support request to
>>SF.net.
>>
>
>No, definitely not that. It's been more than 24 hours and I still
>can't commit.
>
>
>Now I'm trying to add dewdrop_lib into the repository. I did all the
>svn add commands, then commit fails with:
>
>
>dewdrops-computer:~/Library/Application Support/SuperCollider/quarks
>dewdrop$ svn commit --message "dewdrop_lib initial checkin"
>--username jamshark70
>Authentication realm:
><<https://quarks.svn.sourceforge.net:443>https://quarks.svn.sourceforge.net:443>
>SourceForge Subversion area
>Password for 'jamshark70':
>subversion/libsvn_client/commit.c:873: (apr_err=175002)
>svn: Commit failed (details follow):
>subversion/libsvn_ra_dav/util.c:296: (apr_err=175002)
>svn: MKACTIVITY of
>'/svnroot/quarks/!svn/act/e3b8201c-613b-0410-beb0-d7bd908b3909': 403
>Forbidden
>(<https://quarks.svn.sourceforge.net>https://quarks.svn.sourceforge.net)
>
>I know I entered my password correctly (tried twice).
>
>I'll contact sf. This is quite frustrating.
>
>hjh
>
>
>
>
>: H. James Harkins
>
>: <mailto:jamshark70@...>jamshark70@...
>
>: <http://www.dewdrop-world.net>http://www.dewdrop-world.net
>
>.::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:
>
>
>"Come said the Muse,
>
>Sing me a song no poet has yet chanted,
>
>Sing me the universal."  -- Whitman
>
>
>
>_______________________________________________
>Sc-devel mailing list
>Sc-devel@...
>http://www.create.ucsb.edu/mailman/listinfo/sc-devel


--





.
_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by James Harkins-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Sep 30, 2007, at 6:19 PM, Julian Rohrhuber wrote:

have you done a fresh checkout from commandline with your username? if you check out via sc as anonymous you can't check anything in.


I did re-checkout everything as my username -- no difference.


I put in a SF help request. But they won't get to it for another day or two, or three. In the meantime, could one of the quarks project admins verify my permissions?


hjh



: H. James Harkins

: jamshark70@...

: http://www.dewdrop-world.net

.::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:


"Come said the Muse,

Sing me a song no poet has yet chanted,

Sing me the universal."  -- Whitman



_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by James Harkins-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Sep 30, 2007, at 8:53 PM, James Harkins wrote:

On Sep 30, 2007, at 6:19 PM, Julian Rohrhuber wrote:

have you done a fresh checkout from commandline with your username? if you check out via sc as anonymous you can't check anything in.

I did re-checkout everything as my username -- no difference.

I put in a SF help request. But they won't get to it for another day or two, or three. In the meantime, could one of the quarks project admins verify my permissions?


Anybody...?


Sorry to be a pest, but this is pretty annoying. SourceForge is three or four days behind support requests, and between the time I checked this morning and now, it doesn't look like very many issues have even gotten assigned. I think I'm about #70 in the queue.


Thanks,

hjh



: H. James Harkins

: jamshark70@...

: http://www.dewdrop-world.net

.::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:


"Come said the Muse,

Sing me a song no poet has yet chanted,

Sing me the universal."  -- Whitman



_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by James Harkins-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Sep 30, 2007, at 8:53 PM, James Harkins wrote:

On Sep 30, 2007, at 6:19 PM, Julian Rohrhuber wrote:

have you done a fresh checkout from commandline with your username? if you check out via sc as anonymous you can't check anything in.

I did re-checkout everything as my username -- no difference.

I put in a SF help request. But they won't get to it for another day or two, or three. In the meantime, could one of the quarks project admins verify my permissions?

Okay, I hope this will be my last post on this. Sourceforge is faster than I anticipated -- I awoke this morning to find a support message, with the following content:

There is currently a bug that is affecting the Subversion member
permission: it displays as enabled (with a checkmark), but it is not really
enabled.  A project admin should go to the Admin / Members page, select the
name of your user, toggle the Subversion developer access checkbox off
(submit that) and back on (submit that), wait a little bit, and that should
clear up the problem.

Can someone take care of this? Thanks.
hjh


: H. James Harkins
.::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:

"Come said the Muse,
Sing me a song no poet has yet chanted,
Sing me the universal."  -- Whitman


_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by James Harkins-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Last post... hah! *roll eyes* :)

Apple Mail told me the message send failed, but it seems gmail did it anyway.

Next time I'll check gmail before assuming that Apple Mail is not lying :)

Sorry about the repeat posts.
hjh


--
James Harkins /// dewdrop world
jamshark70@...
http://www.dewdrop-world.net

"Come said the Muse,
Sing me a song no poet has yet chanted,
Sing me the universal."  -- Whitman
_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by Julian Rohrhuber :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

>On Sep 30, 2007, at 8:53 PM, James Harkins wrote:
>
>>On Sep 30, 2007, at 6:19 PM, Julian Rohrhuber wrote:
>>
>>>have you done a fresh checkout from commandline with your
>>>username? if you check out via sc as anonymous you can't check
>>>anything in.
>>>
>>
>>I did re-checkout everything as my username -- no difference.
>>
>>I put in a SF help request. But they won't get to it for another
>>day or two, or three. In the meantime, could one of the quarks
>>project admins verify my permissions?
>>
>
>Okay, I hope this will be my last post on this. Sourceforge is
>faster than I anticipated -- I awoke this morning to find a support
>message, with the following content:
>
>>There is currently a bug that is affecting the Subversion member
>>permission: it displays as enabled (with a checkmark), but it is not really
>>enabled.  A project admin should go to the Admin / Members page, select the
>>name of your user, toggle the Subversion developer access checkbox off
>>(submit that) and back on (submit that), wait a little bit, and that should
>>clear up the problem.



try again now.
--





.
_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Parent Message unknown Re: can't commit into quarks?

by felix-38 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I just went to check it and found jh, adc, rohan and mullmusik
all set to NO svn permissions for quarks.

I set them to on.
this is 1.5 hrs after jr said "try it again"

switch to google code ? ;)



On 10/2/07, Julian Rohrhuber <rohrhuber@...> wrote:

> >>There is currently a bug that is affecting the Subversion member
> >>permission: it displays as enabled (with a checkmark), but it is not really
> >>enabled.  A project admin should go to the Admin / Members page, select the
> >>name of your user, toggle the Subversion developer access checkbox off
> >>(submit that) and back on (submit that), wait a little bit, and that should
> >>clear up the problem.
>
> try again now.
_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by James Harkins-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Fortunately I'm at work, so you guys have about 7 more hours to fix it
:)   (after the commute home, eat dinner, clean up, then I can start
to think about sc again)

hjh

On 10/2/07, felix <felix@...> wrote:
> I just went to check it and found jh, adc, rohan and mullmusik
> all set to NO svn permissions for quarks.
>
> I set them to on.
> this is 1.5 hrs after jr said "try it again"
>
> switch to google code ? ;)


--
James Harkins /// dewdrop world
jamshark70@...
http://www.dewdrop-world.net

"Come said the Muse,
Sing me a song no poet has yet chanted,
Sing me the universal."  -- Whitman
_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by James Harkins-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Excellent, it's all committed now.

I also took the liberty of adding page forward and backward buttons to the Quarks GUI. My additions make the list too large to fit on one screen, so it needed some mechanism to browse through. I saw in the list archives that Till wanted to use a scroll view for the list, but we're a bit hamstrung because SwingOSC's class interface isn't compatible on this point yet.

When it becomes possible to use the scroll view, I think that's a better solution than mine, but I thought a stopgap measure needed to be added.

I'm not sure why, but the paging buttons don't work with SwingOSC -- looks like a lot of messages get lost between SC and the Java app. It's beyond me to fix it at the moment. Maybe later I'll put in a routine to spread out the messages over time.

Thanks for your help --
hjh


On Oct 2, 2007, at 1:46 PM, James Harkins wrote:

Fortunately I'm at work, so you guys have about 7 more hours to fix it
:)   (after the commute home, eat dinner, clean up, then I can start
to think about sc again)

hjh

On 10/2/07, felix <felix@...> wrote:
I just went to check it and found jh, adc, rohan and mullmusik
all set to NO svn permissions for quarks.

I set them to on.
this is 1.5 hrs after jr said "try it again"

switch to google code ? ;)


: H. James Harkins

: jamshark70@...

: http://www.dewdrop-world.net

.::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..:


"Come said the Muse,

Sing me a song no poet has yet chanted,

Sing me the universal."  -- Whitman



_______________________________________________
Sc-devel mailing list
Sc-devel@...
http://www.create.ucsb.edu/mailman/listinfo/sc-devel

Re: can't commit into quarks?

by Fredrik Olofsson :: Rate this Message: