Re: [google-appengine] Is this doable with Appspot servlets?

2014-04-30 Thread Will Pittenger
On Wednesday, April 30, 2014 12:13:47 PM UTC-5, Vinny P wrote:
>
> On Wed, Apr 30, 2014 at 6:31 AM, Will Pittenger 
> 
> > wrote:
>
>> 3. I don't have one yet.  I examined the Google Drive API, but I don't 
>> know it or ReSTful.  Too many hurdles.  If it can be done via the 
>> application's own storage, problem solved.  I can probably figure a way to 
>> read that from within a servlet.
>> 4. The SVGs have already been exported to PNG by Inkscape.  As for 
>> dynamic conversion, there's always BATIK
>>
>
> 3. You're better off using Google Cloud Storage (GCS), which can be used 
> as the application's personal file store. See the overview at 
> https://developers.google.com/appengine/docs/java/googlecloudstorageclient/. 
> GCS also offers a free 
> quota if you use the application default 
> bucket<https://developers.google.com/appengine/docs/quotas#Default_Gcs_Bucket>
> .
>
> 4. You can't use Batik in App Engine, that was my original point. Batik 
> uses java.awt.*, which is not whitelisted on the App Engine JRE 
> whitelist<https://developers.google.com/appengine/docs/java/jrewhitelist>
> .
> You'll have to either supply the PNGs yourself, or if you want dynamic 
> conversion you can run Batik within a Compute Engine 
> machine<https://cloud.google.com/products/compute-engine/>or a Managed 
> VM <https://developers.google.com/cloud/managed-vms>.
>

That's the stuff I didn't really want to have to take the time to learn.  I 
also have no idea what I would be able to do about a forum.  Can phpBB be 
installed?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Unable to remove myself from disabled dead project

2014-04-30 Thread Will Pittenger
It isn't a project I own.  I just want to leave the project.  I don't care 
if it's deleted or not.

On Wednesday, April 30, 2014 12:16:21 PM UTC-5, Vinny P wrote:
>
> On Tue, Apr 29, 2014 at 8:25 PM, Will Pittenger 
> 
> > wrote:
>
>> I'm part of u3e-selenium.appspot.com and want to leave it since it's 
>> been disabled.  The developer who created it since left the project without 
>> assigning management to someone else.  But when I try to remove myself from 
>> the Permissions page, I get an unspecified server error.  What options do I 
>> have?
>>
>
>
> You can leave it disabled; it won't impact your app quota or otherwise 
> cause you issues. If you absolutely must have the application removed, file 
> a ticket <https://code.google.com/p/googleappengine/issues/list>.
>  
>  
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Is this doable with Appspot servlets?

2014-04-30 Thread Will Pittenger
On Wednesday, April 30, 2014 3:16:56 AM UTC-5, Vinny P wrote:
>
> On Tue, Apr 29, 2014 at 8:36 PM, Will Pittenger 
> 
> > wrote:
>
>> Key requirements for the gallery:
>>
>>1. Support for SVG as images rather than mere documents
>>2. Unlimited depth of nested folders
>>3. Updating the gallery by synching the remote files with those local
>>4. Ability to allow downloading the maps in PNG, SVG, SVGZ, zipped 
>>(both PNG and SVG), and 7z (both PNG and SVG) 
>>5. Ability to allow downloading entire folders of maps (which are 
>>categories) in 7z or zip format
>>
>> 1. That seems more like a client side issue than a server-side issue. Is 
> there any special treatment you need for SVG?
> 2. Nested folders in terms of data storage or the serving path? Both are 
> doable.
> 3. Where is the remote source being synced to? Depending on the sync 
> method you prefer and the size of the files, this may be problematic, but 
> fixable.
> 4. Allowing downloads is easy enough to do. If you want to dynamically 
> convert your SVG files to PNG though, you might have a problem; a lot of 
> the libraries that are capable of the conversion can't run on App Engine 
> due to the sandbox.
> 5. Again, allowing downloads is easy to do, regardless of format type.
>


3. I don't have one yet.  I examined the Google Drive API, but I don't know 
it or ReSTful.  Too many hurdles.  If it can be done via the application's 
own storage, problem solved.  I can probably figure a way to read that from 
within a servlet.
4. The SVGs have already been exported to PNG by Inkscape.  As for dynamic 
conversion, there's always BATIK.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Is this doable with Appspot servlets?

2014-04-29 Thread Will Pittenger

I have a site, http://wlps-ge-stuff.ucoz.com/, that I'd like to replace 
without loosing the forum, FAQs, blog (the new section), or the gallery.  I 
know Java servlets but don't really feel like learning tons of new 
languages or APIs.

Key requirements for the gallery:

   1. Support for SVG as images rather than mere documents
   2. Unlimited depth of nested folders
   3. Updating the gallery by synching the remote files with those local
   4. Ability to allow downloading the maps in PNG, SVG, SVGZ, zipped (both 
   PNG and SVG), and 7z (both PNG and SVG)
   5. Ability to allow downloading entire folders of maps (which are 
   categories) in 7z or zip format


I also want to provide support for downloading KMZ files.  Again, these 
need to support unlimited folder depth.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Unable to remove myself from disabled dead project

2014-04-29 Thread Will Pittenger
I'm part of u3e-selenium.appspot.com and want to leave it since it's been 
disabled.  The developer who created it since left the project without 
assigning management to someone else.  But when I try to remove myself from 
the Permissions page, I get an unspecified server error.  What options do I 
have?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Accessing application logs from Selenium?

2013-08-20 Thread Will Pittenger
Never mind.  I already had it, but I was looking in the wrong place. :p

On Tuesday, August 20, 2013 9:55:53 PM UTC-5, Will Pittenger wrote:
>
> It would really help to know which jars to include in the project in order 
> to get the log classes.  I don't want all the jars in that SDK in the 
> project.
>
> On Tuesday, August 20, 2013 9:31:05 PM UTC-5, Will Pittenger wrote:
>>
>> Now I'm trying to find jars that provide com.google.appengine.api.log.*.  
>> That isn't on 
>> https://developers.google.com/appengine/docs/java/javadoc/index?com/google/appengine/api/log/AppLogLine.htmlor
>>  
>> https://developers.google.com/appengine/docs/java/logs/. :(
>>
>> On Tuesday, August 20, 2013 9:00:28 PM UTC-5, Vinny P wrote:
>>>
>>> On Tue, Aug 20, 2013 at 8:45 PM, Will Pittenger wrote:
>>>
>>>> Well, I had to download the entire SDK, but that gave me the required 
>>>> jars and (I think) source.  But the appropriate JavaDoc files are missing. 
>>>>  
>>>> Are they online somewhere?  My Google search turned up nothing.
>>>>
>>>  
>>>  
>>> There's no documentation needed. Install the Remote API using the 
>>> instructions on this page: 
>>> https://developers.google.com/appengine/docs/java/tools/remoteapi#Configuring_Remote_API_on_the_Client
>>>  and 
>>> then make the standard logging calls from the Logs API: 
>>> https://developers.google.com/appengine/docs/java/logs/ . 
>>>
>>>
>>> On Tue, Aug 20, 2013 at 8:50 PM, Will Pittenger wrote:
>>>
>>>> No source available that I can find in that SDK file.
>>>>
>>>  
>>> Here's the source code for the Remote API: 
>>> https://code.google.com/p/googleappengine/source/browse/#svn%2Ftrunk%2Fjava%2Fsrc%2Fmain%2Fcom%2Fgoogle%2Fappengine%2Ftools%2Fremoteapi
>>>  
>>>  
>>>
>>>  
>>>  
>>> -
>>> -Vinny P
>>> Technology & Media Advisor
>>> Chicago, IL
>>>
>>> App Engine Code Samples: http://www.learntogoogleit.com
>>>   
>>>  
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [google-appengine] Accessing application logs from Selenium?

2013-08-20 Thread Will Pittenger
It would really help to know which jars to include in the project in order 
to get the log classes.  I don't want all the jars in that SDK in the 
project.

On Tuesday, August 20, 2013 9:31:05 PM UTC-5, Will Pittenger wrote:
>
> Now I'm trying to find jars that provide com.google.appengine.api.log.*.  
> That isn't on 
> https://developers.google.com/appengine/docs/java/javadoc/index?com/google/appengine/api/log/AppLogLine.htmlor
>  
> https://developers.google.com/appengine/docs/java/logs/. :(
>
> On Tuesday, August 20, 2013 9:00:28 PM UTC-5, Vinny P wrote:
>>
>> On Tue, Aug 20, 2013 at 8:45 PM, Will Pittenger wrote:
>>
>>> Well, I had to download the entire SDK, but that gave me the required 
>>> jars and (I think) source.  But the appropriate JavaDoc files are missing.  
>>> Are they online somewhere?  My Google search turned up nothing.
>>>
>>  
>>  
>> There's no documentation needed. Install the Remote API using the 
>> instructions on this page: 
>> https://developers.google.com/appengine/docs/java/tools/remoteapi#Configuring_Remote_API_on_the_Client
>>  and 
>> then make the standard logging calls from the Logs API: 
>> https://developers.google.com/appengine/docs/java/logs/ . 
>>
>>
>> On Tue, Aug 20, 2013 at 8:50 PM, Will Pittenger wrote:
>>
>>> No source available that I can find in that SDK file.
>>>
>>  
>> Here's the source code for the Remote API: 
>> https://code.google.com/p/googleappengine/source/browse/#svn%2Ftrunk%2Fjava%2Fsrc%2Fmain%2Fcom%2Fgoogle%2Fappengine%2Ftools%2Fremoteapi
>>  
>>  
>>
>>  
>>  
>> -
>> -Vinny P
>> Technology & Media Advisor
>> Chicago, IL
>>
>> App Engine Code Samples: http://www.learntogoogleit.com
>>   
>>  
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [google-appengine] Accessing application logs from Selenium?

2013-08-20 Thread Will Pittenger
Now I'm trying to find jars that provide com.google.appengine.api.log.*.  
That isn't on 
https://developers.google.com/appengine/docs/java/javadoc/index?com/google/appengine/api/log/AppLogLine.html
 
or https://developers.google.com/appengine/docs/java/logs/. :(

On Tuesday, August 20, 2013 9:00:28 PM UTC-5, Vinny P wrote:
>
> On Tue, Aug 20, 2013 at 8:45 PM, Will Pittenger wrote:
>
>> Well, I had to download the entire SDK, but that gave me the required 
>> jars and (I think) source.  But the appropriate JavaDoc files are missing.  
>> Are they online somewhere?  My Google search turned up nothing.
>>
>  
>  
> There's no documentation needed. Install the Remote API using the 
> instructions on this page: 
> https://developers.google.com/appengine/docs/java/tools/remoteapi#Configuring_Remote_API_on_the_Client
>  and 
> then make the standard logging calls from the Logs API: 
> https://developers.google.com/appengine/docs/java/logs/ . 
>
>
> On Tue, Aug 20, 2013 at 8:50 PM, Will Pittenger wrote:
>
>> No source available that I can find in that SDK file.
>>
>  
> Here's the source code for the Remote API: 
> https://code.google.com/p/googleappengine/source/browse/#svn%2Ftrunk%2Fjava%2Fsrc%2Fmain%2Fcom%2Fgoogle%2Fappengine%2Ftools%2Fremoteapi
>  
>  
>
>  
>  
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>   
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [google-appengine] Accessing application logs from Selenium?

2013-08-20 Thread Will Pittenger
The project is NetBeans based, not Eclipse.  I like that IDE better.

On Tuesday, August 20, 2013 8:49:40 PM UTC-5, Vinny P wrote:
>
> On Tue, Aug 20, 2013 at 7:38 PM, Will Pittenger wrote:
>
>> Where do I get the JARs for that?  I don't see any download links 
>> anywhere.
>>
>
>  
> The JARs for the Remote API are shipped with the Java SDK.
>  
> If you have the Eclipse plugin for GAE, look in the GAE plugin folder 
> within the Eclipse install, and search for a file named 
> appengine-remote-api.jar.
>   
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>  
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [google-appengine] Accessing application logs from Selenium?

2013-08-20 Thread Will Pittenger
No source available that I can find in that SDK file.

On Monday, August 12, 2013 10:37:28 PM UTC-5, Vinny P wrote:
>
> On Mon, Aug 12, 2013 at 1:11 AM, Will Pittenger wrote:
>
>> I've been tasked with accessing our application's logs from our 
>> regression testing program which is based on Selenium and its 
>> FirefoxDriver.  This application won't be running on the server, but on a 
>> client.  Will it be able to retrieve the logs via an API?
>>
>   
> Yes. You can install the Remote API on your application ( 
> https://developers.google.com/appengine/docs/java/tools/remoteapi ), 
> which allows you access to your app's GAE services from another computer 
> (for example, your local computer, build server, another App Engine 
> application, etc). Then you can use the Logs API ( 
> https://developers.google.com/appengine/docs/java/logs/ ) to search 
> through the logs and retrieve the stored information.
>   
> You can also use appcfg to download logs: see 
> https://developers.google.com/appengine/docs/java/tools/uploadinganapp#Downloading_Logs
>  
>   
>  
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [google-appengine] Accessing application logs from Selenium?

2013-08-20 Thread Will Pittenger
Well, I had to download the entire SDK, but that gave me the required jars 
and (I think) source.  But the appropriate JavaDoc files are missing.  Are 
they online somewhere?  My Google search turned up nothing.

On Monday, August 12, 2013 10:37:28 PM UTC-5, Vinny P wrote:
>
> On Mon, Aug 12, 2013 at 1:11 AM, Will Pittenger wrote:
>
>> I've been tasked with accessing our application's logs from our 
>> regression testing program which is based on Selenium and its 
>> FirefoxDriver.  This application won't be running on the server, but on a 
>> client.  Will it be able to retrieve the logs via an API?
>>
>   
> Yes. You can install the Remote API on your application ( 
> https://developers.google.com/appengine/docs/java/tools/remoteapi ), 
> which allows you access to your app's GAE services from another computer 
> (for example, your local computer, build server, another App Engine 
> application, etc). Then you can use the Logs API ( 
> https://developers.google.com/appengine/docs/java/logs/ ) to search 
> through the logs and retrieve the stored information.
>   
> You can also use appcfg to download logs: see 
> https://developers.google.com/appengine/docs/java/tools/uploadinganapp#Downloading_Logs
>  
>   
>  
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [google-appengine] Accessing application logs from Selenium?

2013-08-20 Thread Will Pittenger
Where do I get the JARs for that?  I don't see any download links anywhere.

On Monday, August 12, 2013 10:37:28 PM UTC-5, Vinny P wrote:
>
> On Mon, Aug 12, 2013 at 1:11 AM, Will Pittenger wrote:
>
>> I've been tasked with accessing our application's logs from our 
>> regression testing program which is based on Selenium and its 
>> FirefoxDriver.  This application won't be running on the server, but on a 
>> client.  Will it be able to retrieve the logs via an API?
>>
>   
> Yes. You can install the Remote API on your application ( 
> https://developers.google.com/appengine/docs/java/tools/remoteapi ), 
> which allows you access to your app's GAE services from another computer 
> (for example, your local computer, build server, another App Engine 
> application, etc). Then you can use the Logs API ( 
> https://developers.google.com/appengine/docs/java/logs/ ) to search 
> through the logs and retrieve the stored information.
>   
> You can also use appcfg to download logs: see 
> https://developers.google.com/appengine/docs/java/tools/uploadinganapp#Downloading_Logs
>  
>   
>  
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [google-appengine] Accessing application logs from Selenium?

2013-08-20 Thread Will Pittenger
Well, he wants me to compare the values from within my Jar.  So a simple 
download won't do.  But the other option you gave may well work.  I'll look 
into it.  Thanks.

On Monday, August 12, 2013 10:37:28 PM UTC-5, Vinny P wrote:
>
> On Mon, Aug 12, 2013 at 1:11 AM, Will Pittenger wrote:
>
>> I've been tasked with accessing our application's logs from our 
>> regression testing program which is based on Selenium and its 
>> FirefoxDriver.  This application won't be running on the server, but on a 
>> client.  Will it be able to retrieve the logs via an API?
>>
>   
> Yes. You can install the Remote API on your application ( 
> https://developers.google.com/appengine/docs/java/tools/remoteapi ), 
> which allows you access to your app's GAE services from another computer 
> (for example, your local computer, build server, another App Engine 
> application, etc). Then you can use the Logs API ( 
> https://developers.google.com/appengine/docs/java/logs/ ) to search 
> through the logs and retrieve the stored information.
>   
> You can also use appcfg to download logs: see 
> https://developers.google.com/appengine/docs/java/tools/uploadinganapp#Downloading_Logs
>  
>   
>  
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


[google-appengine] Accessing application logs from Selenium?

2013-08-12 Thread Will Pittenger
I've been tasked with accessing our application's logs from our regression 
testing program which is based on Selenium and its FirefoxDriver.  This 
application won't be running on the server, but on a client.  Will it be 
able to retrieve the logs via an API?  Or do I need to visit the log page 
with a WebDriver and retrieve the data that way?  This is my first 
experience with appspot.com, so please bear with me.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.