Re: I need some feedback about bookmarklet with gwt

2011-05-21 Thread KeremTiryaki
Hello, I added a new feature. translet.co remembers your language setting On May 20, 12:28 am, KeremTiryaki keremtiry...@gmail.com wrote: Here is my bookmarklet,http://www.translet.co/it's a tool for translation. I have used gwt and google translate api. Its Features: 1. Auto detect your

I need some feedback about bookmarklet with gwt

2011-05-19 Thread KeremTiryaki
Here is my bookmarklet, http://www.translet.co/ it's a tool for translation. I have used gwt and google translate api. Its Features: 1. Auto detect your browsers language. 2. Gets the mouse selections automatically for translate. (If you don't want, you can set it OFF) 3. If you want to write your

Re: Bookmarklet with GWT

2010-06-13 Thread KeremTiryaki
On Jun 12, 7:17 pm, Sky myonceinalifet...@gmail.com wrote: I quickly checked out the link tohttp://translatebookmarklet.appspot.com/ I have not tried using the actual app yet, but I see several things that could be improved from the start. The bookmarklet code: javascript:(function(){

Re: Bookmarklet with GWT

2010-06-13 Thread KeremTiryaki
I want to write my own bookmarklet in gwt and I didn't found any good tutorial online. This guy managed to do so, I want to know why. And yes, most browsers support bookmarklets 5 months ago, I wrote a tutorial http://keremt.blogspot.com/2010/01/making-bookmarklet-with-gwt-20-and.html but

Re: Cross Site XML-HTTP?

2010-06-12 Thread KeremTiryaki
I think you should check here:https://developer.mozilla.org/En/ HTTP_access_control because you can not make a request to other domains directly. There are some method to overcome this kind of problems. iframe : http://developer.apple.com/internet/webcontent/iframe.html JSONP :

Re: difference between hosted mode and development mode

2010-05-21 Thread KeremTiryaki
and I want to add something... Development mode doesn't care about optimization, It is showing the results as quick as possible Production mode makes all the optimization process and it is producing fully optimized JS+HTML+.. codes. On May 21, 1:41 pm, José González Gómez

Re: UiBinder question about uixml directory

2010-04-27 Thread KeremTiryaki
And I think that code can help to you. When you want to define them in your java codes. public class HelloWorld extends UIObject { // Could extend Widget instead @UiTemplate(widget/resources/HelloWorld.ui.xml) interface MyUiBinder extends UiBinderDivElement, HelloWorld {} private static

Re: how to use Comet on Gwt?

2010-02-02 Thread KeremTiryaki
yep it is just a little open sourced demo :) you can check it from http://code.google.com/p/iflag/ On Feb 1, 11:56 am, mariyan nenchev nenchev.mari...@gmail.com wrote: Is this game opensourced :). On Sun, Jan 31, 2010 at 7:48 PM, KeremTiryaki keremtiry...@gmail.comwrote: check instant

Re: how to use Comet on Gwt?

2010-01-31 Thread KeremTiryaki
check instant messeger application's source from http://gwtapps.com/ it is a book web site... I think it is very good. I used that book when I was developing this: http://tr.im/iflagame -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Problem with deploy gadget on iGoogle

2010-01-21 Thread KeremTiryaki
I think you should check this article http://code.google.com/webtoolkit/doc/latest/tutorial/Xsite.html. Your problem may be about ajax request security (it is defined here https://developer.mozilla.org/En/HTTP_access_control ) On Jan 20, 10:58 pm, Vitaly Parfonov vitaly.parfo...@exoplatform.com