Access Not Allowed

2010-06-03 Thread 残情
MY ID  canq...@gmail.com
if i sign in canq...@gmail.com . My favorites
http://code.google.com/u/canqing/ 
Prompt:Access Not Allowed
if sign out.i can Landing  http://code.google.com/u/canqing/
WHY
I Sign in MY google code
Access Not Allowed
What happened?
You are not allowed to access this service.
Please contact us if you believe that you should be able to access this service.
Your options: 
Participate in the open source community through other websites. 
Sign out and access this site as an anonymous user. 
Contact us for further assistance. 

2010-06-03 



残情 

-- 
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 
google-code-hosting+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-code-hosting?hl=en.



Re: custom domain url rewriting

2010-06-03 Thread zwetan


 Any ideas?


if you run apache on your domain you can try something like that

ServerName www.mockito.org
DocumentRoot /path/to/www/htdocs

RewriteEngine on
RewriteRule ^/$ /code/ [R]
RewriteRule ^/p/mockito/(.*) /code/$1 [R]

ProxyRequests On
ProxyPreserveHost Off
SetEnv force-proxy-request-1.0 1
ProxyPass /code/ http://code.google.com/p/mockito/
ProxyPassReverse /code/ http://code.google.com/p/mockito/


from the top of my head

it should get you going ;)

cheers,
zwetan

-- 
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 
google-code-hosting+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-code-hosting?hl=en.



Re: Access Not Allowed

2010-06-03 Thread Nathaniel Manista
On Thu, Jun 3, 2010 at 4:42 AM, 残情 canq...@gmail.com wrote:

  MY ID  canq...@gmail.com
  if i sign in canq...@gmail.com . My favorites
 http://code.google.com/u/canqing/
 Prompt:Access Not Allowed
  if sign out.i can Landing  http://code.google.com/u/canqing/
  WHY
  I Sign in MY google code
  Access Not Allowed
  What happened?
 You are not allowed to access this service.

 Please contact us if you believe that you should be able to access this 
 service.
 Your options:
 Participate in the open source community through other websites.
 Sign out and access this site as an anonymous user.
 Contact us for further assistance.

You used your project canqing as a generic file host. Project Hosting at
Google Code is intended for the development of open source software
projects, not as a web storage drive for arbitrary files.
-Nathaniel

-- 
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 
google-code-hosting+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-code-hosting?hl=en.



I'd like to request the name 'simpla' but its occupied by a 10 year inactive SF project

2010-06-03 Thread Jacob Nordfalk
Dear project hosting admins,

I'd like to request the name 'simpla' but the name is occupied by a 10
year inactive project in Sourceforge.

https://sourceforge.net/projects/simpla/ (please have a look you can
see this project was last active 10 years ago).

Ive written several times during the last 14 days to the owner
theg...@users.sourceforge.net (Greg Webster) and requested him to
approve that I use this name, but he has not replied.

Each time I have CC'ed google-code-hosting-
reservati...@googlegroups.com but they have not replied at all.

Could you please approve my project, or at least confirm that someone
have recieved email and will reply with an approval or disapproval in
the near future?

I'd really like to get started now, after waiting two weeks
thanks!!

Jacob


Below is a draft of the project description.



Simple coding on Google Android

This project enables you to do 'easy Java coding' on the Android
platform.




As a teacher I started to look at the Android platform for as an
exiting new platform for teaching programming.
Even if I am experienced programmer and author of 3 Java programming
books (http://javabog.dk) I felt the platform was hard to get started
with. Ive therefore started to develop a small framework with four
purposes:

- People who are learning Java can create a program in Android,
without too much prior knowledge

- Wrapping stuff up so you don't have to care too much about thread
safety

- To maintain a number of methods with the stuff you would typically
want to do (send an SMS, look up an address etc etc)

- Experienced programmers can get started with Android with a soft
start where they can get started and, as they get experience,
gradually free themselves from the framework


The framework is mainly for teaching basic Java and object oriented
programming on an exiting new platform.
It is not suitable for effective production code and should probably
not be used in any apps distributed on Android Market. It has nothing
to do with 'simple' (http://code.google.com/p/simple/ - which is for
coding in BASIC on the Android platform), apart from the similarity in
the name.

The word 'simpla' means 'simple' in Esperanto, an auxilliary and easy
to lean language that can be used as a stepping stone to help people
get started on foreign language learning.



Here is a sample program snippet


public class MyProgram extends Program {

public void run(Simpla simpla) throws Exception {

TextView tv=simpla.createTextView(Hi there);
tv.append(This is a simple test\n);
tv.append(of simpla!);
simpla.setContentView(tv);

simpla.sleep(500);
simpla.sendSms(26206512, Hej fra Android SMS-system);

String reply = simpla.showAlertDialog(Do you like cofee?, 
yes,
no);

simpla.sleep(5000);

simpla.showToast(here is a toast);

simpla.showUrl(http://javabog.dk;);
simpla.vibrate(100);

-- 
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 
google-code-hosting+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-code-hosting?hl=en.



403 Error (Missing required fields)

2010-06-03 Thread Shadowfax
Latelly I'm receiving this message over and over again:


Forbidden
Your client does not have permission to get URL /upload/vncrepeater
from this server. (Client IP address: xxx.xxx.xxx.xxx)

Missing required fields



From time to time it will allow me to upload a file to the downloads
list but most of the time it will reject my upload with the message
stated above. I fill in the same fields every time. Any way to solve
this issue?

-- 
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 
google-code-hosting+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-code-hosting?hl=en.