Re: GWT Indexing for search

2010-12-06 Thread RPB
You can get Google to index a GWT site using this specification: http://code.google.com/web/ajaxcrawling/docs/getting-started.html -R On Dec 6, 3:27 pm, ravi ranjaabhis...@gmail.com wrote: Hi, I read in a blog that GWT websites are not shown in search results as they are not indexed by

Re: Entire Site in GWT?

2010-11-14 Thread RPB
the 'Making GWT crawlable' documentation which has already been linked to. I have a PHP/MySQL backend and have had no problems communicating with GWT via REST. Overall, definitely go for GWT! -RPB On Nov 8, 4:49 pm, mike.cann mike.c...@gmail.com wrote: Hi Guys, First post on this list. I have

Re: Showing facebook like button using GWT code

2010-11-05 Thread RPB
Hi Aditya, The problem is that you can't call a script src=.../script widget tag inside of an existing script/script enclosure (i.e. the GWT generated js code). See this thread for more details:

Re: SEO Question.

2010-10-28 Thread RPB
://www.asual.com/jquery/address/ On Oct 27, 11:43 am, RPB robbol...@gmail.com wrote: Hi Subhro, You need to create a PHP page which will serve static information if it detects _escaped_fragment_= or just the normal GWT page otherwise. Something like this: if(isset($_GET['_escaped_fragment_

Re: SEO Question.

2010-10-27 Thread RPB
Hi Subhro, You need to create a PHP page which will serve static information if it detects _escaped_fragment_= or just the normal GWT page otherwise. Something like this: if(isset($_GET['_escaped_fragment_'])) { echo Static Version of my page } else { echo script type=\text/javascript\

Re: Advice for site design

2010-10-06 Thread RPB
! You're site won't look as good and just won't be able to do as much :) Good luck, RPB On Oct 5, 10:45 pm, nick kov nickko...@gmail.com wrote: I'm creating a site which will have a sign up screen, a login system, and then interaction with the site once you login. My question is, can I mix GWT

Re: SimplePanel can only contain one child widget

2010-08-25 Thread RPB
On first inspection, the code seems ok. Perhaps the problem is in the TNSInformationPanel UIBinder file? Can you post that? Also, as an aside, you might consider using FlowPanel instead of VerticalPanel to prevent future layout problems:

Re: A little help

2010-07-28 Thread RPB
Just start with the google tutorials and go from there: http://code.google.com/webtoolkit/doc/latest/tutorial/gettingstarted.html If you can write Java, you'll be surprised how far you can go! -Rob Diego Venuzka wrote: Hello guys! I'm going to do a work for my course, and i will use GWT+Ajax

Re: GWT app looks ugly in IE6

2010-07-22 Thread RPB
To any who might be interested, these statistics on browser usage are normally kept quite up to date: http://www.w3schools.com/browsers/browsers_stats.asp On Jul 22, 8:32 am, Stefan Bachert stefanbach...@yahoo.de wrote: Hi, I would not spend the time. IE6 is primary used by companies using

Re: Password Strength Widget?

2010-07-20 Thread RPB
Here is the code I use, you can tweak it to fit with your standards. public class ValidationUtils { private final static String EMAIL_VALIDATION_REGEX = [a-zA-Z0-9!#$ %'*+/=?^_`{|}~-]+(?:\\.[a-zA-Z0-9!#$%'*+/=?^_`{|}~-]+)*@(?:[a-zA-

Re: A couple of (probably) simple questions about using _escaped_fragment_ / ajax crawl-able.

2010-07-19 Thread RPB
? then it would make the site browsable for people with JavaScript turned of too. -Thomas On Jul 14, 10:05 am, RPB robbol...@gmail.com wrote: Hi darkflame, Not sure I fully understand your second question, but you should be able to just use $param= $_GET['_escaped_fragment_']; and then process

Re: $_POST is empty when request made using RequestBuilder

2010-07-19 Thread RPB
Apologies if this is a double-post, the thread didn't seem to update the first time. I don't see anything in particular that is wrong with your code, but the following works for me if you want to give it a try: public void postPHPRequest(String url, String postData){ url =

Re: $_POST is empty when request made using RequestBuilder

2010-07-19 Thread RPB
Although I can't see anything obviously incorrect with your code, the following code snippet successfully sends a POST request in my code: public void postPHPRequest(String url, String postData){ url = URL.encode(url); RequestBuilder builder = new

Re: A couple of (probably) simple questions about using _escaped_fragment_ / ajax crawl-able.

2010-07-14 Thread RPB
Hi darkflame, Not sure I fully understand your second question, but you should be able to just use $param= $_GET['_escaped_fragment_']; and then process the code as normal. Also, the 'Fetch with googlebot' tool in Webmaster tools is very helpful, showing you exactly what google will actually be

Re: GWT Popup is not centered

2010-06-28 Thread RPB
I see the exact same behaviour in my application, and would appreciate any ideas with this issue. The popup is not centered for the first time only, and afterwards popup.center() works fine. I am using GWT 2.0.3. Here is some sample code: public class LoginForm extends PopupPanel { public

Re: Bikeshed project

2010-05-26 Thread RPB
Hi Karel, I haven't heard of the BikeShed project, but if you're just looking for examples of GWT in action, have a look at the GWT gallery: http://gwtgallery.appspot.com/ or, if you're just looking to see what widgets are available, the showcase may be more appropriate:

Re: Possible to set style for ScrollPanel?

2010-03-24 Thread RPB
Have a look at this thread: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/cad105fb7b33c745/3ae25f73b841777e#3ae25f73b841777e The scrollbar CSS will only work in Internet Explorer. There is no support for the other browsers. -Rob On Mar 24, 5:46 am, jayalakshmi

Re: Sending HTTP GET request not working!

2010-03-19 Thread RPB
, Jon On 18 March 2010 22:16, RPB robbol...@gmail.com wrote: If you're using GWT 2.0: -Open 'Debug configurations' in eclipse -Uncheck 'Run built-in server' -Set the port number to your localhost port -Run Also, GWT.getModuleBaseURL is useful to use if you need to reference the URL

Re: Sending HTTP GET request not working!

2010-03-19 Thread RPB
I might not be understanding the problem correctly. Let me give you an example of what my site does (which sounds vaguely similar to what you want to do): -GWT sends a GET request to my server -My server sends a request to Amazon (or equivalent), which sends back information in XML format -My

Re: Sending HTTP GET request not working!

2010-03-18 Thread RPB
If you're using GWT 2.0: -Open 'Debug configurations' in eclipse -Uncheck 'Run built-in server' -Set the port number to your localhost port -Run Also, GWT.getModuleBaseURL is useful to use if you need to reference the URL from your java code (as you ensure you are using the exact same URL so are

Re: gwt Popup is not centered

2010-03-15 Thread RPB
Hi mariyan, Did you manage to resolve this issue? I see the exact same behaviour on my application - the popup is not centered for the first time only, and afterwards popup.center() works fine. I am using GWT 2.0.3. Here is some sample code - I really can't see why this is happening. Thanks in

Re: Supported Browsers

2010-03-08 Thread RPB
Here is a useful link which is kept reasonably up to date: http://www.w3schools.com/browsers/browsers_stats.asp My GWT site works all of these browsers except IE6, which gives me some problems. Hope this helps, Rob www.bookwhack.com On Mar 7, 4:28 am, Ken evotur...@gmail.com wrote: I know this

Can't add to GWT Appspot Gallery

2010-03-05 Thread RPB
. Is there an approval process this has to go through, or should we just try re-submitting? Thanks, RPB www.bookwhack.com -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com

Re: Can't add to GWT Appspot Gallery

2010-03-05 Thread RPB
Yep, I can see it now, thanks for the help. -R On Mar 5, 2:30 pm, Chris Ramsdale cramsd...@google.com wrote: Check again, it should be up now. On Mar 5, 2010 5:12 AM, RPB robbol...@gmail.com wrote: Hello, My colleague tried to add our site to the appspot gallery a couple of days ago

Re: requestbuilder xml response - empty document

2010-03-01 Thread RPB
I don't see anything obviously wrong with your code, but here is a snippet of my code which does the same thing and works fine. Note I use RequestBuilder.GET and have a couple of extra error checks - might help point to a problem. == url = URL.encode(url);

Re: A Sexy/Slick GWT Application?

2010-03-01 Thread RPB
Hi Andy, My GWT site uses animation: http://www.bookwhack.com/ and I like to think it's sexy/slick too! It's built in GWT 2.0 and uses the GWT-FX library http://code.google.com/p/gwt-fx/ If anyone's interested I can post further details (without giving the whole game away :) -Rob

Re: requestbuilder xml response - empty document

2010-03-01 Thread RPB
It could be the SOP problem. Is the php running on a different server to GWT? If so, your messages aren't getting through because of SOP. You can fix this by going to debug configurations in eclipse- unchecking 'Run built in server' and matching the port number to your localhost. -Rob

Re: Help with GWT FlowPanel and other Panel Styles!

2010-02-23 Thread RPB
and your suggestion worked out well. I didn't want to use HorizontalPanel because I'm doing an e-Commerce site so i want it to flow well. I'm not using UiBinder though, any advantages in using that? Thank you! On Sat, Feb 20, 2010 at 5:00 PM, RPB robbol...@gmail.com wrote: You need to apply

Re: Help with GWT FlowPanel and other Panel Styles!

2010-02-20 Thread RPB
, it doesn't work. What am I probably doing wrong? Thanks again! On Fri, Feb 19, 2010 at 8:40 PM, RPB robbol...@gmail.com wrote: A FlowPanel will act like a vertical panel (since block-level elements will naturally stack up vertically) unless you change the CSS property of it's children

Re: Help with GWT FlowPanel and other Panel Styles!

2010-02-19 Thread RPB
A FlowPanel will act like a vertical panel (since block-level elements will naturally stack up vertically) unless you change the CSS property of it's children to float:left; Have a look at this for further info: http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html On Feb 19,

ScrollPanel (scrollbar) CSS

2010-02-12 Thread RPB
Hello, Does anyone know how to change the scrollpanel CSS (specifically I want to make the scrollbar a different colour). Any example CSS or tips would be much appreciated (it's not in the GWT showcase). Thanks -- You received this message because you are subscribed to the Google Groups

Re: ScrollPanel (scrollbar) CSS

2010-02-12 Thread RPB
scrollbar. Finally, you change the css as you wish. Christian On Fri, Feb 12, 2010 at 11:38 AM, RPB robbol...@gmail.com wrote: Hello, Does anyone know how to change the scrollpanel CSS (specifically I want to make the scrollbar a different colour). Any example CSS or tips would

Re: I need SOP disabled in GWT 2.0 built-in web server.

2010-02-08 Thread RPB
This works for me in GWT 2.0: -Open 'Debug configurations' in eclipse -Uncheck 'Run built-in server' -Set the port number to your localhost port -Run Good luck, Rob On Feb 7, 4:51 am, Tatchan tatcha...@gmail.com wrote: Hi all, I have to make http request (but not RPC)  to a service which

Re: Overriding DecoratedTabPanel CSS does not seem to change the look of the Tabs

2010-01-08 Thread RPB
Thanks for the tip, but I'm not quite ready to switch to standards mode (required for TabLayoutPanel) as it will involve a rework of some of the other elements on my website. I found that I am able to apply custom stylings if I first specifically remove the defaults :

Overriding DecoratedTabPanel CSS does not seem to change the look of the Tabs

2009-12-28 Thread RPB
Hi all, I am seeing a strange problem when trying to alter the CSS for a DecoratedTabPanel. I don't have the problem for any other widgets, which change as I would expect. Here is what I have tried so far: a) Copy all of the CSS from the GWT showcase tabPanel example (http://

Re: RequestBuilder returning empty argument result?

2009-11-10 Thread RPB
Could you be running into the SOP (same origin policy) problem? If your GWT and CGI script are running on different hosts the GET/POST requests won't work. See: http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=FAQ_SOP

XMLParser cannot parse the £ symbol

2009-11-10 Thread RPB
Hello, I am retrieving XML data from the Amazon UK api which returns XML including a £ (GBP) sign. I found that XMLParser.parse(xmlText) will throw an exception (com.google.gwt.xml.client.impl.DOMParseException: Failed to parse ) unless i remove the £ signs from the XML. I am hoping someone can

Re: XMLParser cannot parse the £ symbol

2009-11-10 Thread RPB
file wasn't UTF-8 encoded. Fixing this fixed the problem. I will keep in mind these factors in the future. Cheers, Rob On Nov 10, 3:04 pm, Bill Michell bill.mich...@googlemail.com wrote: On 9 Nov 2009, at 17:00, RPB wrote: Hello, I am retrieving XML data from the Amazon UK api which