Forgive me,please!

2010-06-07 Thread 零魂
I just found I couldn't visit my google code project when I was logon a few months ago,then I'm aware of that it because myself. I once uploaded some exefiles for test reason,I just want a HTTP URL to download the exefiles by myself,and I didn't aware of that wasn't allowed at that time.

502 Bad Gateway day

2010-06-07 Thread Stian Soiland-Reyes
Hi! I'm getting repeated 502 Bad Gateway errors this morning: : st...@ralph ~/workspace/taverna-workbench-svn;svn update svn: Server sent unexpected return value (502 Bad Gateway) in response to OPTIONS request for 'https://taverna.googlecode.com/svn/taverna/ builds/taverna-workbench/trunk'

Re: delete a clone

2010-06-07 Thread IcemanX
@Marcel: great, thanks! -- You received this message because you are subscribed to the Google Groups Project Hosting on Google Code group. To post to this group, send email to google-code-host...@googlegroups.com. To unsubscribe from this group, send email to

Re: Forgive me,please!

2010-06-07 Thread Chris DiBona
Three projects, all non-oss and hackign tools. Why would we ever want you on this site? Chris On Mon, May 31, 2010 at 11:29 PM, 零魂 izeros...@gmail.com wrote: I just found I couldn't visit my google code project when I was logon a few months ago,then I'm aware of that it because myself. I

Re: Problem of updating my project (Mashups4JSF)

2010-06-07 Thread Hazem Saleh
ping? On Jun 6, 9:48 am, Hazem Saleh hazem.sa...@gmail.com wrote: Hello, I have the following problem while updating my project (Mashups4JSF):http://code.google.com/p/mashups4jsf *The error says: REPORT of '/svn/!svn/vcc/default': 200 OK (https://mashups4jsf.googlecode.com)* Can you

wiki page deleted but can't recover?

2010-06-07 Thread flibbertigibbet007
So I'm new to programming, let alone anything with versioning. I have started a new project, and wrote up a wiki, I've been messing with the settings in my project and figuring out exactly how I want it all configured. Somehow in the process I deleted my first wiki page, without any way to recover

How to set and use a custom googlecode.com password?

2010-06-07 Thread Amber Jain
Hello, It is very cumbersome to remember the googlecode.com password. Is there any way to set a password chosen by user and *not* automatically regenrating it using an option on Google Code website? If not, are there any plans inside google to support this feature request? Thanks, Amber Jain --

Re: How to set and use a custom googlecode.com password?

2010-06-07 Thread Nathaniel Manista
On Mon, Jun 7, 2010 at 10:13 AM, Amber Jain ithinkmi...@gmail.com wrote: It is very cumbersome to remember the googlecode.com password. Is there any way to set a password chosen by user and *not* automatically regenrating it using an option on Google Code website? If not, are there any plans

Re: request for svn quota increase for 'processing' project

2010-06-07 Thread Augie Fackler
We can give you more quota - just ask on this list when you need more. On Mon, Jun 7, 2010 at 11:13 AM, Ben Fry f...@processing.org wrote: Hi, We're in the midst of moving our project over to Google Code, but it looks like our SVN repository is about 1.7 GB (ten years of code, and for a

Re: wiki page deleted but can't recover?

2010-06-07 Thread Ben Collins-Sussman
Looking at your project, I see no history of you ever touching the wiki: http://code.google.com/p/ziibackup/source/list You've changed the subversion repository exactly once (revision 2), which added some files to /trunk. If you had ever created or deleted a wiki page, there would be

Re: wiki page deleted but can't recover?

2010-06-07 Thread flibbertigibbet007
Please take another look. http://code.google.com/p/ziibackup/updates/list Today 6 hours ago Todo Wiki page deleted by flibbertigibbet007 Revision r 6 hours ago r2 (Creating base files and folders for the project) committed by flibbertigibbet007 Creating base files and folders for the project 7

Re: Including closed-source binary dependency?

2010-06-07 Thread jwanagel
To clarify, by include, I mean including the closed-source binary in the source repository and/or downloads section hosted on Google Code (e.g. included in the zip or installer). -- You received this message because you are subscribed to the Google Groups Project Hosting on Google Code group.

Re: Problem of updating my project (Mashups4JSF)

2010-06-07 Thread Ben Collins-Sussman
I'm unable to reproduce the error. I can 'svn checkout' just fine. Where are you located? Have you tried the checkout/update from different computers or different networks? Are you able to checkout other projects on Google Code, such as 'unladen-swallow' (which is large). Is this a new

Re: wiki page deleted but can't recover?

2010-06-07 Thread Ben Collins-Sussman
Sorry for the delay, but there's something very ... strange ... about your case. Normally when you create or edit a wiki page, each time you 'save' it gets committed to your svn repository in the top-level /wiki directory. But as you pointed out, your activity stream shows the wiki edits (and

Re: wiki page deleted but can't recover?

2010-06-07 Thread Jacob Lee
Ok, we figured out what happened, and your wiki file is still there, don't worry. It looks like you started the project using the Mercurial version control system, edited a wiki page, and then switched the project over to Subversion, a different version control system. The wiki is stored in

[gcj] Re: post incrementation in JAVA... wierd

2010-06-07 Thread mtsay
The key issue is whether the side effects of the expression (n++) takes place before or after the value of the expression is assigned to n. C and C++ specification requires all side effects ( including assignment) of the current statement to take place before the next statement, but does not

Re: [gcj] Re: post incrementation in JAVA... wierd

2010-06-07 Thread Davi Costa
In my opinion the most intuitive result is the java one, but there are lot of examples of strange or undefined behavior on c/c++. I suggest always compile the code with -Wall, in the code presented it will warn you: operation on ‘n’ may be undefined On Mon, Jun 7, 2010 at 1:15 PM, mtsay

[gcj] Re: Broken Necklace problem

2010-06-07 Thread mtsay
Another thought: let N be the string recording the beads starting at any arbitrary position ( since it's circular ), then we are basically looking for the length of the longest sequence matching the pattern: (w*r(r*w*)*w*b(b*w*)*w*) | (w*b(b*w*)*w*r(r*w*)*w*) (where * is Kleene Closure, | is

[gcj] Re: post incrementation in JAVA... wierd

2010-06-07 Thread Reinier Zwitserloot
Eagle, that analysis doesn't work, because you're confused about operator precedence. In Java, as in C, the ++ operator has a higher precedence than assignment. So, the effect of the ++ is applied BEFORE the effect of the assignment. So, if n starts out as 10, first the ++ kicks in, making 'n' 11,

[gcj] Re: post incrementation in JAVA... wierd

2010-06-07 Thread mohan krishna
hi, hey eagle i agree with you... let me try to tell u in my way.. int n=10; n=n++; here first RHS value will be choosen where there is a post increment.. so it turns into n=n; next post increment i.e n++ will be calculate which turn n to increment leading to, n=11; -- You received this

Re: [gcj] ruan xi wants to chat

2010-06-07 Thread Nikhil Mishra
spam ... ? On Mon, Jun 7, 2010 at 5:08 PM, ruan xi washingto...@gmail.com wrote: --- ruan xi wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit:

Re: [gcj] ruan xi wants to chat

2010-06-07 Thread Nikhil Mishra
@ayman do what ? :-0 On Mon, Jun 7, 2010 at 5:15 PM, ayman bs ammoun2...@gmail.com wrote: Why did you do that? On Mon, Jun 7, 2010 at 1:38 PM, ruan xi washingto...@gmail.com wrote: --- ruan xi wants to stay in better

Re: [gcj] post incrementation in JAVA... wierd

2010-06-07 Thread karthik r
Hi friend , It depends on the compiler that you use .. can you give code how you have written so that i can give you the explantion On Sat, Jun 5, 2010 at 12:50 PM, Shoubhik sbos...@gmail.com wrote: Hello, in C, the following code: int n=10; n=n++ assigns 'n' a value of 11 . in

Re: [gcj] ruan xi wants to chat

2010-06-07 Thread Bartholomew Furrow
Yeah, I've set this guy to be moderated. On Mon, Jun 7, 2010 at 4:40 AM, Nikhil Mishra mishra00...@gmail.com wrote: spam ... ? On Mon, Jun 7, 2010 at 5:08 PM, ruan xi washingto...@gmail.com wrote: --- ruan xi wants to

Re: [gcj] Re: Command line submission tool?

2010-06-07 Thread Bartholomew Furrow
Awesome, thanks for taking this on! The csrfmiddlewaretoken is our way of stopping cross-site request forgery ( http://en.wikipedia.org/wiki/Cross-site_request_forgery). From memory (let me know if you need something more specific) it gets passed to you with the dashboard html and is unique to:

[gcj] Re: Command line submission tool?

2010-06-07 Thread Jorge Bernadas
Thanks for your answer, I just all tokens there. I'll extract them from there and use them. I'll be back when I fix that issue. On Jun 7, 4:33 pm, Bartholomew Furrow fur...@gmail.com wrote: Awesome, thanks for taking this on!  The csrfmiddlewaretoken is our way of stopping cross-site request

Re: [gcj] ruan xi wants to chat

2010-06-07 Thread Sarma Tangirala
Story of a lonely guy? :P On 6/8/10, Bartholomew Furrow fur...@gmail.com wrote: Yeah, I've set this guy to be moderated. On Mon, Jun 7, 2010 at 4:40 AM, Nikhil Mishra mishra00...@gmail.com wrote: spam ... ? On Mon, Jun 7, 2010 at 5:08 PM, ruan xi washingto...@gmail.com wrote:

[gcj] Re: Command line submission tool?

2010-06-07 Thread Jorge Bernadas
I just saw* all tokens there. I don't know what happens to me, sometimes I miss words. On Jun 7, 4:55 pm, Jorge Bernadas jberna...@gmail.com wrote: Thanks for your answer, I just all tokens there. I'll extract them from there and use them. I'll be back when I fix that issue. On Jun 7, 4:33 

Re: [gcj] ruan xi wants to chat

2010-06-07 Thread Lev Neiman
Hey, ASL? me == 40/male/your backyard. wanna cyber? - Lev. On Mon, Jun 7, 2010 at 8:27 PM, Sarma Tangirala tvssarma.ome...@gmail.comwrote: Story of a lonely guy? :P On 6/8/10, Bartholomew Furrow fur...@gmail.com wrote: Yeah, I've set this guy to be moderated. On Mon, Jun 7, 2010 at

[gcj] Re: Command line submission tool?

2010-06-07 Thread Jorge Bernadas
Done, now I retrieve the tokens automatically when initializing the tool and I store them in a config file for further use, as those tokens and the cookie last enough for one contest. I'll improve some other issues and then will make it public so people can test it before Round 3 and use it if