Re: Why does GWT use UserAgent Sniffing?

2010-02-23 Thread خليل بولو
كنت اود ان تكون الرسالة الي ولاكن لم تكن ذالك
مارتن انت لم تبعث الرسالة الي
انني اريد منك توجية؟ Thanks for the reply Martin,

OK, I think you maybe misunderstood my question though.

I understand what Deferred Binding is and why it's a good thing - what
I wanted to know was why does GWT sniff use the navigator.useragent
string e.g.

 var ua = navigator.userAgent.toLowerCase();

 if (ua.indexOf("opera") != -1) {
   return "opera";
 } else if (ua.indexOf("webkit") != -1) {
   return "safari";
 } else if (ua.indexOf("msie") != -1) {
   if (document.documentMode >= 8) {
 return "ie8";
   } else {
 var result = /msie ([0-9]+)\.([0-9]+)/.exec(ua);

etc, etc...

when it's well documented/considered best practise to not sniff the
useragent string because browsers can lie...?

Cheers,
Dave

On Feb 22, 1:37 pm, Martin Trummer  wrote:
> because it's much 
> better:http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideCodin...

--
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.
To unsubscribe from this group, send email to
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.


رد | الرد على الكل | إعادة توجيه | طباعة | حذف | إظهار الأصلية


  Eric   22 فبراير, 2010 07:11 م
رد على: google-web-toolkit@googlegroups.com
إلى: Google Web Toolkit 
رد | الرد على الكل | إعادة توجيه | طباعة | حذف | إظهار الأصلية


On Feb 22, 11:45 am, DaveC 
wrote:
> Thanks for the reply Martin,
>
> OK, I think you maybe misunderstood my question though.
>
> I understand what Deferred Binding is and why it's a good thing - what
> I wanted to know was why does GWT sniff use the navigator.useragent
> string e.g.
>
>   var ua = navigator.userAgent.toLowerCase();
>
>   if (ua.indexOf("opera") != -1) {
> return "opera";
>   } else if (ua.indexOf("webkit") != -1) {
> return "safari";
>   } else if (ua.indexOf("msie") != -1) {
> if (document.documentMode >= 8) {
>   return "ie8";
> } else {
>   var result = /msie ([0-9]+)\.([0-9]+)/.exec(ua);
>

I would like to write in my module.gwt.xml file code like

 
   
   
 

instead of

 
   
   
 

I've written a RequiredText class for work; for IE6 and hosted mode,
it produces
two InlineLabels, one a red asterisk and the other bold text.  For
other browsers,
it uses CSS 2.1 :before to place the asterisk and color it red. If GWT
had my
theoretical  feature, it would be a lot
cleaner; however,
I don't know if it's even possible.

Respectfully,
Eric Jablow

- عرض النص المقتبس -

ية

2010/2/22, Eric :
>
>
> On Feb 22, 11:45 am, DaveC 
> wrote:
>> Thanks for the reply Martin,
>>
>> OK, I think you maybe misunderstood my question though.
>>
>> I understand what Deferred Binding is and why it's a good thing - what
>> I wanted to know was why does GWT sniff use the navigator.useragent
>> string e.g.
>>
>>       var ua = navigator.userAgent.toLowerCase();
>>
>>       if (ua.indexOf("opera") != -1) {
>>         return "opera";
>>       } else if (ua.indexOf("webkit") != -1) {
>>         return "safari";
>>       } else if (ua.indexOf("msie") != -1) {
>>         if (document.documentMode >= 8) {
>>           return "ie8";
>>         } else {
>>           var result = /msie ([0-9]+)\.([0-9]+)/.exec(ua);
>>
>
> I would like to write in my module.gwt.xml file code like
>
>class="com.erjablow.required.RequiredText.RequiredTextImplNonCss">
>  class="com.erjablow.required.RequiredText.RequiredTextImp"/>
> 
>   
>
> instead of
>
>class="com.erjablow.required.RequiredText.RequiredTextImplNonCss">
>  class="com.erjablow.required.RequiredText.RequiredTextImp"/>
> 
>   
>
> I've written a RequiredText class for work; for IE6 and hosted mode,
> it produces
> two InlineLabels, one a red asterisk and the other bold text.  For
> other browsers,
> it uses CSS 2.1 :before to place the asterisk and color it red. If GWT
> had my
> theoretical  feature, it would be a lot
> cleaner; however,
> I don't know if it's even possible.
>
> Respectfully,
> Eric Jablow
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>


-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http

Re: Best Practices for Testing?

2010-02-23 Thread خليل بولو
لماذا الحوار بينكم ولم تكن في المقابل لأنني اتلقىرسائلك وانتم تتحاورون
هل من الممكن تفصحو لي الشيفرة التيتتكلمون بها كوني انا المتلقي
وما هية جافا مرض السحايا ؟
ال تكن هية جافاسكريت التي تتحدثنعنة ؟
انني اود ان اشارك في الموضوع
اريد الوضوح
www.abuawad.com

2010/2/22, Trevis :
> When I started my project I had GWT based testing but befor I got very
> far I went to an MVP based archetecture and. At that point I all but
> quit using the gwt based tests and just test everything as pure java.
>
> On Feb 22, 3:05 am, Thomas Broyer  wrote:
>> On Feb 21, 2:31 pm, FKereki  wrote:
>>
>> > I'm trying to work out the consensus as to the best way of structuring
>> > a project for testing.
>>
>> > For client side code, you have two kinds of tests:
>>
>> > * pure unit tests, based on JUnit (and, thanks to MVP, applying to
>> > most of your code)
>> > * integration tests, based on GWTTestCase
>>
>> > What's the optimum project structure? Would you need new gwt.xml
>> > files? How would you configure it?
>>
>> Have you looked
>> athttp://groups.google.com/group/google-web-toolkit/t/7a62294ddc615c3f
>> ?
>> ...and the "Contacts" MVP sample from Google?
>> ...and of course GWT itself?
>>
>> I'm using a gwt-test for GWTTestCase and a test for "pure Java" JUnit
>> tests; this makes it easier (compared to the Contacts sample) to run
>> only pure-Java tests, as you can use a wildcard and just have to
>> exclude gwt-test from the classpath.
>> All test cases are on the same package as the classes under test, so
>> there's no need for an additional gwt.xml (except when you *need* one:
>> test-only ,  or and/or )
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>


-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



تحذير من القطط والادوات تحجب

2010-02-24 Thread خليل بولو
ان من المفروض ان يكون لي اداء مترجم
الان مساعدة جوجل الادوات
حين اذيوشك ان ينهار
لم افهم ماذا افعل

-- 
www.abuawad.com


It is supposed to be my interpreter's performance
Online help Google Gadgets
While Azyushk collapse
I do not understand what to do
هاذا ما فعلتة في الترجمة
تبين القط يأخذالجبن

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Fwd: Where GWT 2.0 takes default browser from?

2010-02-24 Thread خليل بولو
-- Forwarded message --
From: Paweł Stawicki 
Date: 2010/2/24
Subject: Where GWT 2.0 takes default browser from?
To: Google Web Toolkit ‫google-web-tool...@googlegroups.com‬


Hello,

I am using GWT 2.0.3. I can start GWT Development Mode and there is
nice button "Launch Default Browser". When I press it, it launches
Firefox, which is NOT my default browser. My system is Ubuntu 9.10. I
looked into System->Preferences->Preferred Applications and there is
"Google Chrome".

--
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.
To unsubscribe from this group, send email to
google-web-toolkit+unsubscr...@googlegroups.com
.
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.

اتلقى رسائل عديدة من هاذا النوع ولم تكنمن لغتي
من الصعب الفهم هكذا غير لغتي
ولطالما ان جوجل كوم هوة الذي يرسل الرسائل ان يتوخى غير لغتي
ويبدو من الخادم هوة الذي لايصيطر على الاتجاه


-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt 2.0.2: FileUpload and set(Visible/Enabled)

2010-02-24 Thread خليل بولو
اتلقى رسائل عديدة من هاذا النوع ولم تكنمن لغتي
من الصعب الفهم هكذا غير لغتي
ولطالما ان جوجل كوم هوة الذي يرسل الرسائل ان يتوخى غير لغتي
ويبدو من الخادم هوة الذي لايصيطر على الاتجاه

2010/2/24 BimboJones 

> Hi,
>
> The FileUpload widget is very picky for security reasons, have you
> tried to setEnabled to false before adding the FileUpload to the form/
> panel, just to see if there is a problem with your radio button code?
>
>
> On 23 Fev, 23:07, "seven.reeds"  wrote:
> > Hi,
> >
> > I am using a FileUpload widget for the first time.  It is in a place
> > where I want to allow the visitor to either do the FileUpload or enter
> > a URL in a TextBox.  I have set up a RadioButton group to toggle
> > between the two choices.  In the onClick method for the RadioButtons I
> > can setEnabled or setVisible the TextBox to true/false as needed.
> >
> > The FileUpload widget just seems to ignore these requests.  Should it?
> >
> > I will add that the FileUpload Button and TextBox components both stay
> > visible in any "set" state.  The button always stays Enabled the
> > TextBox always appears to be grey'd out/disabled.
> >
> > ideas?
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
> اتلقى رسائل عديدة من هاذا النوع ولم اتكمن لغتي 
من الصعب الفهم هكذا غير لغتي
ولطالما ان جوجل كوم هوة الذي يرسل الرسائل ان يتوخى غير لغتي
ويبدو من الخادم هوة الذي لايصيطر على الاتجاه

-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



يريد/تريد خليل بولو الدردشة معك

2010-03-06 Thread خليل بولو
---
هناك رغبة من خليل بولو  في البقاء على اتصال بشكل أفضل باستخدام أبرع
منتجات Google الجديدة.

فإذا كان لديك Gmail أو برنامج Google Talk من قبل، فانتقل إلى الرابط:
http://mail.google.com/mail/b-cb010344a9-ecffe9fc29-9be8e426d454e351
يجب النقر على هذا الرابط كي تتمكن من الدردشة مع خليل بولو .

للحصول على Gmail - وهو حساب مجاني للبريد الإلكتروني من Google بسعة
تخزينية تزيد عن 2800 ميغابايت - والدردشة مع خليل بولو ، فانتقل إلى
الرابط:
http://mail.google.com/mail/a-cb010344a9-ecffe9fc29-9be8e426d454e351

يقدم Gmail:
- المراسلة الفورية مباشرةً من داخل التطبيق Gmail
- حماية قوية ضد الرسائل غير المرغوب فيها
- بحث مدمج للعثور على الرسائل وطريقة للمساعدة في تنظيم
  الرسائل الإلكترونية إلى "محادثات"
- لا ظهور لإعلانات النوافذ المنبثقة أو إعلانات بانر غير المستهدفة -
فقط ستظهر الإعلانات النصية والمعلومات ذات الصلة
  المتعلقة بمحتوى رسائلك

مع كل هذه الميزات، يتم تقديم هذا المنتج لك مجانًا. ولكن انتظر، فهناك
المزيد! إذا فتحت حسابًا في Gmail
، فستتمكن كذلك من الدخول إلى برنامج Google Talk، وإلى خدمة المراسلة
الفورية من Google:

http://www.google.com/talk/

يقدم Google Talk:
- دردشة عبر الويب يمكنك إجراؤها من أي مكان، بدون أية عملية تنزيل
- قائمة جهات اتصال تتم مزامنتها مع حساب Gmail
- مكالمات هاتفية من كمبيوتر إلى كمبيوتر بالمجان تتسم بجودتها العالية
أثناء تنزيلك برنامج
  Google Talk

نحن نعمل بجد لإضافة ميزات جديدة وإجراء تحسينات، لذلك قد نطلب الحصول
على عن تعليقاتك واقتراحاتك بشكل دوري أيضًا. ونحن نقدر مساعدتك في تحسين
أداء منتجاتنا!

شكرًا,
فريق Google

لمعرفة المزيد عن Gmail وGoogle Talk، انتقل إلى:
http://mail.google.com/mail/help/intl/ar/about.html
http://www.google.com/talk/about.html

(إذا لم ينجح النقر على عناوين URL في هذه الرسالة، فانسخها والصقها في
شريط العناوين بمتصفحك).

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: JsonpRequestBuilder and inherits?

2010-03-07 Thread خليل بولو
   بلرغم انك موقع عربي
او اميل عربي وتستخدم في النص المرسل
غيرالعربيفي  اللغة

2010/3/7 A. Kong 

> Seems like I have found out the answer myself
>
> I just need to add this line to the gwt.xml
>
>  
>
> Cheers
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Why and How does GWT extract these subset of the core Java class libraries ?

2010-03-14 Thread خليل بولو
لولى انني ترجملم افهم الرسالة والكلمة جافا سكريت والخادم لدي ولم اعرف العمل
على وشك الهروب تمنياتي لكم وشكرآهتمامكم

2010/3/12 Olostan 

> Result of GWT compiling is JavaScript code. So to convert your Java
> code to JavaScript GWT need those classes if you use them. That was
> 'why'. How? I am not sure, but as it is 'emulation' library, these
> classes are not extracted, but or hard-coded in JavaScript directly or
> wrote in Java but especially for GWT.
>
> Best practice depends on your project purpose. General ways are
> described in GWT manual (look
>
> http://code.google.com/intl/uk-UA/webtoolkit/doc/latest/DevGuideServerCommunication.html
> )
>
> Good luck!
>
> On 11 Бер, 10:51, mousedolly2002  wrote:
> > I have worked with GWT for a while.
> > And I want to know why and how does GWT extract  these subset of the
> > core Java class libraries ?
> > ashttp://code.google.com/intl/ja/webtoolkit/doc/latest/RefJreEmulation..
> ..
>  > anyone can tell me.
> >
> > And, I want to know if there is any best practice or rules about how
> > split code between server side and client side.
> >
> > thanks a lot!
> > OI will appreciate your reply.
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: .jsp page will not compile in hosted mode

2010-03-16 Thread خليل بولو
  google-web-toolkit@googlegroups.com
ان جميع ابرسائل التي تتوجه لي لانني مشترك في جوجل في غير لغتي
ارجو  من حضرتكم ان تكون الرسائل في الغة العربية ليتسنى لنا فهم المحتوى
وبرغم من ذالك الخطأليس موجود الترجمة انا من البديهي ان اكون متعون مع المعلم
جوجل الرسالة من غير لغتي تسبب الخطأ

فهمwww.abuawad@gmail.com <فهمww.abuawad@gmail.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Getting error $doc.getBoxObjectFor is not a function in Firefox 3.6

2010-03-16 Thread خليل بولو
2010/3/16 hriess hriess.chemn...@t-online.de
الترجمة

مثل ج. ي ، موقعنا هو غير قابل للاستخدام مع 3.6 فرنك فرنسي. نحن نستخدم GWT
2.0.3
جنبا إلى جنب مع البرنامج المساعد الكسوف. للأسف ، أنا لست من ذوي الخبرة
بما فيه الكفاية ، لترجمة المشروع مع الملفات التي تم تغييرها GWT المصدر -- في
كسوف المساعد يستخدم gwt - user.jar (؟). لن يكون هناك حل ل
هذه المشكلة في الايام المقبلة؟ أم أن هناك شخص يمكن ان تشرح كيف
لاستخدام مصادر GWT مع كسوف الشمس؟

2010/3/16 hriess 

> Like JY, our website is unusable with FF 3.6. We are using GWT 2.0.3
> together with the Eclipse plugin. Unfortunately, I am not experienced
> enough, to compile the project with changed GWT source files - the
> Eclipse plugin uses the gwt-user.jar (?). Will there be a solution for
> this problem in the next days? Or is there someone who can explain how
> to use the GWT sources with Eclipse?
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: java.io, java.nio emulation?

2010-04-24 Thread خليل بولو
google-web-toolkit@googlegroups.com
كنت في الماضي القريب اناقش واتصفح ونشاط حاسم ولاكن بعد الشريط الامن لم
اتمكن من رؤية البريد الوارد ليكن اختلاط بين القياسين وغير امن
لطفا منكم ان تساعدني وهاذة رسالة اعتبرها انضمام الى مجموعتكم للاطلاع
على ملفاتكم
www.abuawad@gmail.com

2010/4/24, David Given :
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> I have a requirement to parse MIME email messages on the client. I've
> found a nice Java library to do this --- mime4j --- but it has
> dependencies on java.io (string and byte buffer based streams and
> readers) and java.nio (character set conversion).
>
> Does anyone know of any emulation packages for these that will work in GWT?
>
> I've seen a few references to people who've written their own, and would
> rather not reinvent the wheel...
>
> - --
> ┌─── dg@cowlark.com ─ http://www.cowlark.com ─
> │
> │ "In the beginning was the word.
> │ And the word was: Content-type: text/plain" --- Unknown sage
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.9 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>
> iD8DBQFL0fvqf9E0noFvlzgRArlbAKDOi/dlPsnan9dHGMqkMqafEBu8SwCggTx2
> f6UrJBR1nVEsk86SetQCLss=
> =cPec
> -END PGP SIGNATURE-
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>


-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Customising the behaviour of uibinder code generation during GWT compilation

2010-05-02 Thread خليل بولو
لم يتجاوب معي وكل ما ابحث عنة هو الفهم من النص الرسالة الغير مترجمة
للغتي ولم يستجب لي المترجم

2010/5/2 Blessed Geek :
> Could someone point me to literature or give me a few pointers.
>
> For example, I wish to extend TabLayout into SuperDuperTabLayout, but
> GWT compiler would not recognise the child nodes of
> SuperDuperTabLayout.
>
>   xmlns:ui="urn:ui:com.google.gwt.uibinder"
>  xmlns:gz="urn:import:holymoly.gwt.widgets.client.ui">
>  
>    
>       Hullo
>       
>         blah ... blah
>       
>    
>  
> 
>
> GWT compiler says it cannot find the class tab as denoted by the
> prefix gz. I know the reason why, of course. But, I wish to know how
> to write my own extension to the compiler so that it recognises my
> classes during uibinder code generation phase, where it generates a
> temporary java class for the template.
>
> --
> 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.
> To unsubscribe from this group, send email to 
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>



-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: خدمات رجال الأعمال

2010-05-02 Thread خليل بولو
 بتاريخ 02 مايو, 2010 02:33 ص، جاء من KAZZA CENTER :

>  Trouble viewing this email? Read it 
> online
>
>
>
> You are currently subscribed to *Click Jordan* newsletter as:
> wwwabuawad...@gmail.com
> click-to-unsubscribe from our mailing 
> list|
>  Manage
> your 
> subscription|
>  To
> invite a 
> friend
>
> *Email marketing by
> *
>
>
> 
>
>
>


-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



يريد/تريد خليل بولو الدردشة معك

2010-05-07 Thread خليل بولو
---
هناك رغبة من خليل بولو  في البقاء على اتصال بشكل أفضل باستخدام أبرع
منتجات Google الجديدة.

فإذا كان لديك Gmail أو برنامج Google Talk من قبل، فانتقل إلى الرابط:
http://mail.google.com/mail/b-cb010344a9-2c2bfba9c9-BAFLFiZxkW3j__zs0Qewh-T0lPY
يجب النقر على هذا الرابط كي تتمكن من الدردشة مع خليل بولو .

للحصول على Gmail - وهو حساب مجاني للبريد الإلكتروني من Google بسعة
تخزينية تزيد عن 2800 ميغابايت - والدردشة مع خليل بولو ، فانتقل إلى
الرابط:
http://mail.google.com/mail/a-cb010344a9-2c2bfba9c9-BAFLFiZxkW3j__zs0Qewh-T0lPY

يقدم Gmail:
- المراسلة الفورية مباشرةً من داخل التطبيق Gmail
- حماية قوية ضد الرسائل غير المرغوب فيها
- بحث مدمج للعثور على الرسائل وطريقة للمساعدة في تنظيم
  الرسائل الإلكترونية إلى "محادثات"
- لا ظهور لإعلانات النوافذ المنبثقة أو إعلانات بانر غير المستهدفة -
فقط ستظهر الإعلانات النصية والمعلومات ذات الصلة
  المتعلقة بمحتوى رسائلك

مع كل هذه الميزات، يتم تقديم هذا المنتج لك مجانًا. ولكن انتظر، فهناك
المزيد! إذا فتحت حسابًا في Gmail
، فستتمكن كذلك من الدخول إلى برنامج Google Talk، وإلى خدمة المراسلة
الفورية من Google:

http://www.google.com/talk/

يقدم Google Talk:
- دردشة عبر الويب يمكنك إجراؤها من أي مكان، بدون أية عملية تنزيل
- قائمة جهات اتصال تتم مزامنتها مع حساب Gmail
- مكالمات هاتفية من كمبيوتر إلى كمبيوتر بالمجان تتسم بجودتها العالية
أثناء تنزيلك برنامج
  Google Talk

نحن نعمل بجد لإضافة ميزات جديدة وإجراء تحسينات، لذلك قد نطلب الحصول
على عن تعليقاتك واقتراحاتك بشكل دوري أيضًا. ونحن نقدر مساعدتك في تحسين
أداء منتجاتنا!

شكرًا,
فريق Google

لمعرفة المزيد عن Gmail وGoogle Talk، انتقل إلى:
http://mail.google.com/mail/help/intl/ar/about.html
http://www.google.com/talk/about.html

(إذا لم ينجح النقر على عناوين URL في هذه الرسالة، فانسخها والصقها في
شريط العناوين بمتصفحك).

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



يريد/تريد خليل بولو الدردشة معك

2010-05-10 Thread خليل بولو
---
هناك رغبة من خليل بولو  في البقاء على اتصال بشكل أفضل باستخدام أبرع
منتجات Google الجديدة.

فإذا كان لديك Gmail أو برنامج Google Talk من قبل، فانتقل إلى الرابط:
http://mail.google.com/mail/b-cb010344a9-a6d85e5d1a-op34LybyWWXKvLfDL2X9x-HVhnw
يجب النقر على هذا الرابط كي تتمكن من الدردشة مع خليل بولو .

للحصول على Gmail - وهو حساب مجاني للبريد الإلكتروني من Google بسعة
تخزينية تزيد عن 2800 ميغابايت - والدردشة مع خليل بولو ، فانتقل إلى
الرابط:
http://mail.google.com/mail/a-cb010344a9-a6d85e5d1a-op34LybyWWXKvLfDL2X9x-HVhnw

يقدم Gmail:
- المراسلة الفورية مباشرةً من داخل التطبيق Gmail
- حماية قوية ضد الرسائل غير المرغوب فيها
- بحث مدمج للعثور على الرسائل وطريقة للمساعدة في تنظيم
  الرسائل الإلكترونية إلى "محادثات"
- لا ظهور لإعلانات النوافذ المنبثقة أو إعلانات بانر غير المستهدفة -
فقط ستظهر الإعلانات النصية والمعلومات ذات الصلة
  المتعلقة بمحتوى رسائلك

مع كل هذه الميزات، يتم تقديم هذا المنتج لك مجانًا. ولكن انتظر، فهناك
المزيد! إذا فتحت حسابًا في Gmail
، فستتمكن كذلك من الدخول إلى برنامج Google Talk، وإلى خدمة المراسلة
الفورية من Google:

http://www.google.com/talk/

يقدم Google Talk:
- دردشة عبر الويب يمكنك إجراؤها من أي مكان، بدون أية عملية تنزيل
- قائمة جهات اتصال تتم مزامنتها مع حساب Gmail
- مكالمات هاتفية من كمبيوتر إلى كمبيوتر بالمجان تتسم بجودتها العالية
أثناء تنزيلك برنامج
  Google Talk

نحن نعمل بجد لإضافة ميزات جديدة وإجراء تحسينات، لذلك قد نطلب الحصول
على عن تعليقاتك واقتراحاتك بشكل دوري أيضًا. ونحن نقدر مساعدتك في تحسين
أداء منتجاتنا!

شكرًا,
فريق Google

لمعرفة المزيد عن Gmail وGoogle Talk، انتقل إلى:
http://mail.google.com/mail/help/intl/ar/about.html
http://www.google.com/talk/about.html

(إذا لم ينجح النقر على عناوين URL في هذه الرسالة، فانسخها والصقها في
شريط العناوين بمتصفحك).

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: PHP servlet in memory database

2010-05-10 Thread خليل بولو
الترجمة الى العربية

2010/5/4 Muhammad Saifullah :
> i have some problem noticed below.
>
> i need to load data as array to memory in PHP.but in PHP if i write $array=
> array("1","2"); in test.php then this $array variable is initialized every
> time user requests.if we request test.php 100 times by clicking 100 times
> browser refresh button then this $array variable will be executed 100 times.
>
> but i need to execute the $array variable only one time for first time
> request and subsequent request of test.php must not execute the $array
> variable.but only use that memory location.how can i do that in PHP.
>
> but in JAVA SEVRVLET it is easy to execute,just write the $array variable in
> one time execution of init() method of servlet lifecycle method and
> subsequent request of that servlet dont execute init() method but service()
> method but service() method always uses that $array memeory location.
>
> all i want to initilize $array variable once but use that memory loc from
> subsequent request in PHP.is there any possiblity in PHP?
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

لقد لاحظت بعض المشاكل أدناه.


انا بحاجة لتحميل البيانات إلى الذاكرة ومجموعة في PHP.but في بي لو كنت
أكتب $ مجموعة صفيف = ("1" ، "2") ؛ في test.php ثم هذا المتغير الصفيف $
تتم تهيئة كل requests.if المستخدم الوقت ونحن طلب test.php 100 مرة عن
طريق النقر 100 مرة زر تحديث المتصفح ثم سيتم تنفيذ هذا المتغير مجموعة
100 دولار مرة.
ولكن انا بحاجة الى تنفيذ مجموعة متغير $ مرة واحدة فقط لطلب أول مرة ،
وطلب لاحق من test.php يجب أن يتم تنفيذ مجموعة variable.but دولارا فقط
استخدام هذه الذاكرة location.how أستطيع أن أفعل ذلك في بي.
ولكن في SEVRVLET جافا فمن السهل لتنفيذ والكتابة فقط متغير الصفيف دولار
في وقت واحد من تنفيذ الحرف الأول () طريقة طريقة دورة حياة بريمج وطلب
لاحق من ذلك لا بريمج تنفيذ الحرف الأول () ولكن طريقة خدمة الأسلوب ()
ولكن (الخدمية) الأسلوب يستخدم دائما أن مجموعة $ موقع memeory.
كل ما أريد initilize $ صفيف متغير مرة واحدة ولكن استخدام هذا الموضع
الذاكرة من طلب لاحق في PHP.is هناك أي امكانية في بي؟
--

-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Fwd: إجابات Google: إجابة جديدة عن السؤال الذي اشتركت فيه: هل الجوا ب العفوي مسموح في اجابات جوجل

2010-05-13 Thread خليل بولو
كيف اتصرف في هذة الرسالة اطلب الارشاد او الحل

-- الرسالة المعاد توجيهها --
من: إجابات Google 
التاريخ: 13 مايو, 2010 07:13 م
الموضوع: إجابات Google: إجابة جديدة عن السؤال الذي اشتركت فيه: هل الجواب
العفوي مسموح في اجابات جوجل
إلى: ‫www.abuawad@gmail.com‬


 عزيزنا مستخدم إجابات Google
لقد اشتركت في تحديثات السؤال في إجابات
Google
: هل الجواب العفوي مسموح في اجابات جوجل




*والإجابة هي:*



المستخدم:☻‎☻‭☻


بارك الله بكما
عرض هذه الإجابة
وتقييمها
اختيار هذه الإجابة كأفضل
إجابة

*تنبيه: هذه الإجابات هي من مستخدمين آخرين، فالرجاء مراعاة الحذر عند
استخدامها.*

*إجابات Google أجاب عن الأسئلة ذات الصلة أدناه، هل تحتاج إلى مساعدة؟*

هل تضاءلت مساحة الحب العفوي اليوم
؟
مارايكم بالشخص العفوي
؟؟؟
كم سؤال مسموح سؤاله في اليوم الواحد في جوجل اجابات
؟
لماذا بعض مشتركي قوقل اجابات لا يردون على الاسئلة ويكتفون
بالقراءة؟
ياليت رابط 
الكلام


سيتم إبلاغك عبر إجابات Google بالتحديثات الجديدة لهذا السؤال.
يمكنك أيضًا:إلغاء الاشتراك في التنبيهات بالبريد
الإلكتروني
إضافة خلاصة
RSS

يمكنك تسجيل 
الدخولللتعرف
على مزيد من الأسئلة والإجابات.

شكرًا لتجربة إجابات Google.



-- 
www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



المشاركة والتفعيل

2010-05-13 Thread خليل بولو
-- 

انا صاحب مجموعة من مجموعات لكنني لا استطيع استقبال رسائل البريد الإلكتروني
من
المجموعة. وأنا قادرة على إدارة ومشاركة أعضاء كالمعتاد. في 'الأعضاء
إعدادات 'المنطقة ، في إطار التسليم ...
المجموعات
الاهداف النبيلة
الوحدة العربي
زراعة الريف


http://www.abuawad.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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.