Friday, August 31, 2012

3akarat.com - فرصة لن تتكرر بأهم مناطق حلمية الزيتون

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

Re: Syncdb Error With Oracle Database - IntegrityError Exception

Thanks, Ian, I did miss that. Bookmarked for future reference.

On Saturday, September 1, 2012 3:16:38 PM UTC+10, Ian wrote:
On Fri, Aug 31, 2012 at 10:03 PM, Jon Blake <jc.b...@gmail.com> wrote:
> Querying column timestamp of view user_objects for tables, sequences and
> triggers appears to confirm my understanding of what base.py does. I'll drop
> and recreate my user account, and try again. I'll advise how this goes. Does
> the Django doco have any specific documentation for the Oracle back end? If
> so, I missed it! I'm happy to provide specific doco for the Oracle back end
> if that would assist...

Yes, please see:

https://docs.djangoproject.com/en/1.4/ref/databases/#oracle-notes

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/cs7WQZmkJGQJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

[Rails] Basic Paypal

Hi all i am following this like for basic paypal http://railscasts.com/episodes/141-paypal-basics
and i got this error


View:

<%= link_to "Checkout", @cart.paypal_url() %>

undefined method `paypal_url' for nil:NilClass
despite i have this code in my model called Card

Cart Model:

class Cart < ActiveRecord::Base





def paypal_url(return_url)
values = {
:business => '',
:cmd => '_cart',
:upload => 1,
:return => return_url,
:invoice => id
}
line_items.each_with_index do |item, index|
values.merge!({
"amount_#{index+1}" => 500,
"item_name_#{index+1}" => car,
"item_number_#{index+1}" => 5,
"quantity_#{index+1}" => 1
})
end
"https://www.sandbox.paypal.com/cgi-bin/webscr?" + values.to_query
end


end

it is unable to identify it

what is the problem


Cheers


--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/ph2CGAAof2cJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Re: What does this code do? Also, testing decorator via terminal?

On Fri, Aug 31, 2012 at 9:17 PM, Micky Hulse <rgmicky@gmail.com> wrote:
> I'd like to add:
> if objects.status_code != 200:
> return objects
> ... which is found via this code:
> <https://gist.github.com/871954>

Doh! After a bit of trial and error, I given up on trying to merge
those two code snippets.

I'd still like to know what `if isinstance(objects, HttpResponse)` is doing?

I've RTM'd:

<http://docs.python.org/library/functions.html#isinstance>

and

<https://code.djangoproject.com/wiki/HttpResponse>

... but what doe these bits of code accomplish when working together?

Thanks for listening. :)

M

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

Re: Syncdb Error With Oracle Database - IntegrityError Exception

On Fri, Aug 31, 2012 at 10:03 PM, Jon Blake <jc.blake3@gmail.com> wrote:
> Querying column timestamp of view user_objects for tables, sequences and
> triggers appears to confirm my understanding of what base.py does. I'll drop
> and recreate my user account, and try again. I'll advise how this goes. Does
> the Django doco have any specific documentation for the Oracle back end? If
> so, I missed it! I'm happy to provide specific doco for the Oracle back end
> if that would assist...

Yes, please see:

https://docs.djangoproject.com/en/1.4/ref/databases/#oracle-notes

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

What does this code do? Also, testing decorator via terminal?

Hello,

Silly question, but...

What does this code do:

if isinstance(objects, HttpResponse):
return objects

... full code found here:

<https://github.com/julian-amaya/django-decorators/blob/master/django_decorators/decorators.py#L37-38>

I'd like to add:

if objects.status_code != 200:
return objects

... which is found via this code:

<https://gist.github.com/871954>

In other words, the final code would look like so (untested):

<https://gist.github.com/3563671>

I just don't fully understand what the `isinstance()` bit is doing. :(

Also, how can I test decorators via the python shell?

Sorry if noob questions.

Thanks!
M

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

Re: admin save_model parameter 'change' is always true

On 31-8-2012 11:16, armagan wrote:

> I'm trying to use admin save_model method. I have a model called 'Project'
> and in admin.py 'Project' has a method save_model. I added a project to my
> admin panel then I try to save again without changing. But the parameter
> 'change' of save_model method is always 'true'. Why?

The change parameter does not mean "has a field changed?" it means "is a
new object added to the database or an existing object changed?".
A form has some methods that can be queried to find out if a form field
itself has changed or if there are any changes in the form. I haven't
used these much, so you'll have to look around django/forms to or the
docs to find them.
--
Melvyn Sopacua

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

Re: [Rails] Newbie Q: How to find the user that the question belongs_to

Hai!

  This tutorials is help for you ...

   http://guides.rubyonrails.org/association_basics.html


by
bdeveloper01

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Re: [Rails] Delayed Job Question

DelayedJob just creates anotar thread and a send the email or execute the method on parallel without stop the ruby thread! You can set a delay to call the method but it does not works as you throught!

;)

Sent from my iPhone

On 31/08/2012, at 23:47, Karthikeyan A k <lists@ruby-forum.com> wrote:

> Hello People,
>
> I just want to know how the delay job gem works. I am confused how it
> detects when the server is having less load and does computing intensive
> job at that time.
>
> Or it just tries to do some thing, if it fails, waits for random time
> and does it again?
>
> --
> Posted via http://www.ruby-forum.com/.
>
> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
> To post to this group, send email to rubyonrails-talk@googlegroups.com.
> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

[Rails] Delayed Job Question

Hello People,

I just want to know how the delay job gem works. I am confused how it
detects when the server is having less load and does computing intensive
job at that time.

Or it just tries to do some thing, if it fails, waits for random time
and does it again?

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Re: How to do a DISTINCT find but also return more than 1 field

I thought I'd post back with my solution.  I seem to magically figure it out 2 minutes after posting, but never before hand haha. 

I just used the 'group' key instead and that seemed to do the trick returning only distinct IP rows while bringing back data for all fields that I needed:

$DistinctIp = $this->Log->find('all', array(
'conditions'=>array(
'last_usage_human >'=>date('Y-m-d H:i:s', strtotime('-15 minutes'))
),
'fields'=>array('Log.ip', 'Log.user_agent', 'Log.ip_name', 'Log.last_usage_human'),
'limit'=>333,
                        'group'=>'Log.ip'
));

On Friday, August 31, 2012 6:32:20 PM UTC-7, andrewperk wrote:
Hello,

When trying to do a DISTINCT find with only 1 field being returned everything works fine. But if I want more than just that 1 field of data returned it's no longer distinct. How can I do this?

$DistinctIp = $this->Log->find('all', array(
'conditions'=>array(
'last_usage_human >'=>date('Y-m-d H:i:s', strtotime('-15 minutes'))
),
'fields'=>array('DISTINCT Log.ip', 'Log.user_agent', 'Log.ip_name', 'Log.last_usage_human'),
'limit'=>333
));

This does not work, it's returning everything, it's no longer DISTINCT. 

Here you can see I want only rows with the DISTINCT ip field to be returned. But I want the data that's returned from more than just that field such as the: ip_name, last_usage_human fields as well. But when I do this it returns everything and doesn't constrain it to the DISTINCT.

Thanks,


Andrew

--
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
 
 

3akarat.com - للبيع محل 27م مدينة 6 أكتوبر الحي الثامن مساكن البنك

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

How to do a DISTINCT find but also return more than 1 field

Hello,

When trying to do a DISTINCT find with only 1 field being returned everything works fine. But if I want more than just that 1 field of data returned it's no longer distinct. How can I do this?

$DistinctIp = $this->Log->find('all', array(
'conditions'=>array(
'last_usage_human >'=>date('Y-m-d H:i:s', strtotime('-15 minutes'))
),
'fields'=>array('DISTINCT Log.ip', 'Log.user_agent', 'Log.ip_name', 'Log.last_usage_human'),
'limit'=>333
));

This does not work, it's returning everything, it's no longer DISTINCT. 

Here you can see I want only rows with the DISTINCT ip field to be returned. But I want the data that's returned from more than just that field such as the: ip_name, last_usage_human fields as well. But when I do this it returns everything and doesn't constrain it to the DISTINCT.

Thanks,


Andrew

--
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
 
 

Re: any chance to get FF15 dev plugin

The missing plugin page is updated now.

http://gwt.google.com/missing-plugin/MissingPlugin.html

On Friday, August 31, 2012 10:18:48 AM UTC-7, Brian Slesinsky wrote:

I still need to update the missing plugin page.

On Thursday, August 30, 2012 5:20:37 PM UTC-7, Brian Slesinsky wrote:
Thanks everyone. Our release process is surprisingly cumbersome, but it should be up soon.

- Brian

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/5ySdoW3bhXYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Using different ports in views?

Hello gang, I would like to have some of my django views send the
response to a different ports.
Is it possible to specify which port to use in the views?
--
Bust0ut, Surgemcgee: Systems Engineer ---
surgemcgee.com
BudTVNetwork.com
RadioWeedShow.com
"Bringing entertainment to Unix"

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

{smartbroker}

[android-developers] Re: Android Noob howto undeploy an app

Hi Bob, thnx 4 the reply.

Sorry about the sloppy details.

Yes, I mean the HonyCombGallery.

I probably should learn the adb but IDEA is easy.

I found emulator is much like the real device and I was able to uninstall the phone app by pressing and holding a mouse click on the apps' icon.

Thanks for the feedback all.

On Friday, August 31, 2012 3:25:11 PM UTC-5, bob wrote:

I don't think there is such a sample.  Are you talking about HoneycombGallery?


On Thursday, August 30, 2012 6:49:53 PM UTC-5, David Brown wrote:
Hi Droid devs all,

  • Currently, I am studying the SDK 4.1 sample called: HoneyComb.
  • Previously, this app was working but now I'm getting an odd exception logged in DDMS.
  • I think I need to undeploy the old app completely before I see any useful changes.
  • Howto undeploy an Android app?
  • Particulars follow:
    • OS: ubuntu 12.04
    • Android SDK: 4.1
    • IDE: Intellij
    • Emulator: NexusAndroid

Please advise, David.


--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: ManyToManyField and get_or_create

Bump?

Almost exactly 4 years later, I've ran into this exact same issue in Django 1.4. Attempting to use get_or_create through a ManyToMany field results in an integrity error if the object already exists but is not yet associated with the parent object. To use the OP's example, if a Tag with name "foo" exists but is not yet associated with a given Thing instance, using .tags.get_or_create(name='foo') will indeed raise an IntegrityError:

foo_tag = Tag(name='foo')
foo_tag.save()

a_thing = Thing(name='a')
a_thing.save() 
a_thing.tags.get_or_create(name='foo')

Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/django/db/models/fields/related.py", line 616, in get_or_create
    super(ManyRelatedManager, self.db_manager(db)).get_or_create(**kwargs)
  File "/usr/local/lib/python2.7/dist-packages/django/db/models/manager.py", line 134, in get_or_create
    return self.get_query_set().get_or_create(**kwargs)
  File "/usr/local/lib/python2.7/dist-packages/django/db/models/query.py", line 449, in get_or_create
    obj.save(force_insert=True, using=self.db)
  File "/usr/local/lib/python2.7/dist-packages/django/db/models/base.py", line 463, in save
    self.save_base(using=using, force_insert=force_insert, force_update=force_update)
  File "/usr/local/lib/python2.7/dist-packages/django/db/models/base.py", line 551, in save_base
    result = manager._insert([self], fields=fields, return_id=update_pk, using=using, raw=raw)
  File "/usr/local/lib/python2.7/dist-packages/django/db/models/manager.py", line 203, in _insert
    return insert_query(self.model, objs, fields, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/django/db/models/query.py", line 1576, in insert_query
    return query.get_compiler(using=using).execute_sql(return_id)
  File "/usr/local/lib/python2.7/dist-packages/django/db/models/sql/compiler.py", line 910, in execute_sql
    cursor.execute(sql, params)
  File "/usr/local/lib/python2.7/dist-packages/django/db/backends/util.py", line 40, in execute
    return self.cursor.execute(sql, params)
  File "/usr/local/lib/python2.7/dist-packages/django/db/backends/sqlite3/base.py", line 337, in execute
    return Database.Cursor.execute(self, query, params)
IntegrityError: column name is not unique

I've traced the problem to being that the ManyRelatedManager includes its core_filters in its get_query_set method. This results in the "get" portion of get_or_create to only return a hit if the Tag exists and is already associated to the calling Thing instance. Given the nature of a many-to-many relationship, it should not be a requirement that a Tag already be linked to the calling Thing for get_or_create to find it; it should be enough that the Tag simply exists. All that should happen in that scenario is that the (existing) Tag's relationship with the calling Thing be created/saved.

On Monday, September 1, 2008 8:04:00 PM UTC-7, Cap wrote:
I'm having problems using get_or_create with a ManyToManyField and I'm
not sure whether the problem is me or Django.

I have two models:

class Tag(models.Model):
    name = models.CharField(max_length=256, unique=True)

class Thing(models.Model):
    name = models.CharField(max_length=256)
    tags = models.ManyToManyField(Tag)

When I try to add a tag that already exists, as:

a = Thing(name='a')
a.save()
a.tags.get_or_create(name='foo')

I get sqlite3.IntegrityError: column name is not unique.

But when I do it like so:

a = Thing(name='a')
a.save()
foo, created = Tag.objects.get_or_create(name='foo')
a.tags.add(foo)

I have no problems.

I noticed that http://code.djangoproject.com/ticket/3121 seemed to
address something like this, so I pulled the latest Django (8834), but
the problems remains.

Am I doing it wrong?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/rHntcOgBMAMJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

3akarat.com - إغتنم فرصة حقيقية خلف حديقة بدر لفترة محدودة

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

3akarat.com - For sale:Twinhouse, Dreamland, 6th October, Cairo

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

3akarat.com - انهاء كافة الاجراءات الادارية للكهرباء والمياة وتسليم الفيلات بالتجمع الخامس

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

settings.py DEBUG crash

Hello people!
I'm learning Django and have a doubt.
When I set DEBUG=False in settings.py, Dajngo Admin looses CSS theme, it crashes layout and show only HTML.
Why it happens? I did something wrong?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/QZCqSHkbXDQJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

Re: [Rails] How can an rspec test for a view pass if there's no action for the view in the controller?

On Aug 31, 2012, at 4:10 PM, 7stud -- wrote:

> Thanks for the response. Here is my routes.rb:
>
>
> SampleApp25::Application.routes.draw do
> get "static_pages/home"
> get "static_pages/help"
> get "static_pages/about"
> get "static_pages/contact"


Yup. I can confirm that with a similar route here in an otherwise entirely empty controller and a matching view in the correct folder, this just works without any logic at all. Let's hear it for convention over configuration!

Walter

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

[Rails] Re: How can an rspec test for a view pass if there's no action for the view in the controller?

Thanks for the response. Here is my routes.rb:


SampleApp25::Application.routes.draw do
get "static_pages/home"
get "static_pages/help"
get "static_pages/about"
get "static_pages/contact"


# The priority is based upon order of creation:
# first created -> highest priority.

# Sample of regular route:
# match 'products/:id' => 'catalog#view'
# Keep in mind you can assign values other than :controller and
:action

# Sample of named route:
# match 'products/:id/purchase' => 'catalog#purchase', :as =>
:purchase
# This route can be invoked with purchase_url(:id => product.id)

# Sample resource route (maps HTTP verbs to controller actions
automatically):
# resources :products

# Sample resource route with options:
# resources :products do
# member do
# get 'short'
# post 'toggle'
# end
#
# collection do
# get 'sold'
# end
# end

# Sample resource route with sub-resources:
# resources :products do
# resources :comments, :sales
# resource :seller
# end

# Sample resource route with more complex sub-resources
# resources :products do
# resources :comments
# resources :sales do
# get 'recent', :on => :collection
# end
# end

# Sample resource route within a namespace:
# namespace :admin do
# # Directs /admin/products/* to Admin::ProductsController
# # (app/controllers/admin/products_controller.rb)
# resources :products
# end

# You can have the root of your site routed with "root"
# just remember to delete public/index.html.
# root :to => 'welcome#index'

# See how all your routes lay out with "rake routes"

# This is a legacy wild controller route that's not recommended for
RESTful applications.
# Note: This route will make all actions in every controller
accessible via GET requests.
# match ':controller(/:action(/:id))(.:format)'
end

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

Hi Hilco,

thx for the advice ...

I am anything but a maven expert, this is a 3rd party project I am trying to include.

Can you give me some pointers on how to do that ?

or a sample of a GWT maven project done right ?

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/L2kweiqYcQoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

adding this :

<plugin>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.4.0</version>
</plugin>

to the plugin section, does not help.

Still seeing this :

[INFO] --- gwt-maven-plugin:2.5.0-rc1:compile (default) @ chosen-sample ---


MFG !!! (you do not want to know what that acronym means !)

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/ryyl1IScsnQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

3akarat.com - شقة 3 غرف للبيع

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

Re: [android-developers] Help: My app has violated the spam provisions of the Content Policy

On Fri, Aug 31, 2012 at 2:23 PM, TreKing <trekingapp@gmail.com> wrote:
> On Fri, Aug 31, 2012 at 1:33 AM, Terry <terboel@gmail.com> wrote:
>>
>> Yes, there are some keywords, but the same number of keywords - and even
>> more - can be found in most apps (?)
>
>
> The fact that other apps also do the wrong thing does not somehow excuse you
> from also doing the wrong thing.
>

+1 it's pretty annoying to have people complain here (remember, this
forum can in *no way* help get your app reinstated!) along the lines
of

"hey I was wrong but these other people were too and they didn't get
caught why did I?"

kris

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] apk should reviewed prior get available to PLAY

I think you're asking:

if my google play account gets banned, will my other google services
(email) get banned too?

The answer is no.

If you're planning to get banned (i.e., spamming or putting up
fraudulent apps) then you shouldn't be here in the first place...

kris

On Fri, Aug 31, 2012 at 6:41 AM, lselwd <webmaster@poliscarhire.com> wrote:
> Well you suggest open a PLAY DEV & CHECKOUT ACs with email gmail/googleAC i
> use for other services by google? what if google PLAY or checkout sometime
> delete me this should delete ALL AC ALL SERVICES GENERALLY BY GOOGLE, or...?
>
> On Thursday, August 30, 2012 7:46:12 PM UTC+3, Kristopher Micinski wrote:
>>
>> I hate to tell you this, but your english is poor enough to be
>> incomprehensible.
>>
>> Google play cannot test your app on every device automatically,
>> because of a number of reasons, instead you should test on your own
>> before deployement.
>>
>> And yes, users can get a refund after a certain amount of time and
>> uninstall the app.
>>
>> Please rephrase your question in proper english, perhaps by asking a
>> friend to translate,
>>
>> kris
>>
>> On Thu, Aug 30, 2012 at 11:59 AM, lselwd <webm...@poliscarhire.com> wrote:
>> > After a buyer buy an App from PLAY, how much time has to try it and
>> > refunded
>> > if do not want it & uninstall it?
>> >
>> > May have differ google account for Play a/c and Merchant a/c linked
>> > together? Name/email required be the same?
>> >
>> > May install official signed (ready submit to PLAY) APK App file, to my
>> > phone
>> > or, needed debug signed to install in my phone?
>> >
>> > Just to test my submission to Play, I must download from a phone from
>> > play
>> > or exist other way? apk should reviewed prior get available?
>> >
>> > --
>> > You received this message because you are subscribed to the Google
>> > Groups "Android Developers" group.
>> > To post to this group, send email to android-d...@googlegroups.com
>> > To unsubscribe from this group, send email to
>> > android-developers+unsubscribe@googlegroups.com
>> > For more options, visit this group at
>> > http://groups.google.com/group/android-developers?hl=en
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Issue while adding event on inbuit Calender application on Motorola droid razr

Hi,

I'm trying to use Gallery and Calender (Inbuilt applications) in my android application. It seems to be working fine on all android devices except Motorola droidRazr 4.0.4 and Nexus.

Could anybody help me what is an issue with above devices 4.0.4

Thank you in advance.

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: any chance to get FF15 dev plugin

This is live at: https://dl-ssl.google.com/gwt/plugins/firefox/gwt-dev-plugin.xpi

I still need to update the missing plugin page.

On Thursday, August 30, 2012 5:20:37 PM UTC-7, Brian Slesinsky wrote:
Thanks everyone. Our release process is surprisingly cumbersome, but it should be up soon.

- Brian

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/Dr11A2FEYiIJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

3akarat.com - مدينة نصر، شارع عباس العقاد

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

Re: Hard time debugging an strange problem

I'd like to see some of your management commands' code.

It smells somewhat like you're running a shell subprocess and not
waiting for it to be done before going on to the next thing

--
"The whole of Japan is pure invention. There is no such country, there
are no such people" --Oscar Wilde

|_|0|_|
|_|_|0|
|0|0|0|

(\__/)
(='.'=)This is Bunny. Copy and paste bunny
(")_(") to help him gain world domination.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

[Google Maps API v2] Re: how to use esri shp file as google map overlay ?

http://bit.ly/NGTPIn

Try this.

--
You received this message because you are subscribed to the Google Groups "Google Maps API V2" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-api/-/e6sWJCOr60AJ.
To post to this group, send email to google-maps-api@googlegroups.com.
To unsubscribe from this group, send email to google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.

Re: [Render problem] 5s to render any view

On Fri, Aug 31, 2012 at 3:44 PM, Alexandre Vasconcelos
<ops.rio@gmail.com> wrote:
> - I commented <?php echo $this->fetch('content'); ?> in my default layout -
> the problem stopped

What is the content that you are fetching? Where are you setting that variable?

Mike.

--
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.

Re: GwtChosen: make your select boxes much more user-friendly

Awesome. I was fearing I'd have to roll my own like I did for ExtJs. Great work.

Sincerely,
Joseph

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/1CI3ljBo2kEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: GWT Maps V3 Api, clearing directions

Jonas,

Can you please posit your issue on the GitHub tracker and we'll look into it. :)

https://github.com/branflake2267/GWT-Maps-V3-Api/issues?direction=desc&sort=created&state=open


Sincerely,
Joseph

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/JXG2vP3LIf0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: [android-developers] Register my Android C2DM application with Google

https://developers.google.com/android/c2dm/

Hint: Read the text in the big red box.

Larry

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

3akarat.com - للييع بيت بالمشروع الأمريكي بحلوان

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

[Rails] Question1 Cucumber Rails

can we write multiple background in one feature file....?
can we write multiple feature in one feature file.....?

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/KoIuuRV_AN4J.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

[android-developers] Re: C2DM problem

GCM replaces C2DM and uses Google broader API control mechanisms.

I suggest you start here:

http://support.google.com/googleplay/android-developer/bin/answer.py?hl=en&answer=2663268

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] gridview onItemClick gets executed even on empty space after the last item

Hmmm.... I don't really see anything wrong with your code.  What version of Android are you testing this on?  Did you test it on multiple versions?

One thing I can think of is this:  Rather than setting a click listener on your gridview, try putting a click listener on each photo in the gridview... It is less than ideal, but it might help you work around the issue.

Thanks,
Justin Anderson
MagouyaWare Developer
http://sites.google.com/site/magouyaware


On Fri, Aug 31, 2012 at 4:32 AM, Narendra Singh Rathore <nsr.curious@gmail.com> wrote:
findViewById

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: if statement

just in case you are unaware in core.php

Configure::write('debug', 2);

--
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
 
 

GWT Maps V3 Api, clearing directions

I'm using the GWT Maps V3 Api from https://github.com/branflake2267/GWT-Maps-V3-Api

After finding directions on the map, I'm trying to clear the previous ones before finding new.

In DirectionsRenderer:

  /**
   * This method specifies the map on which directions will be rendered. Pass null to remove the directions from the map.
   * @param mapWidget
   */
  public final void setMap(MapWidget mapWidget) {
    setMapImpl(mapWidget.getJso());
  }

  private final native void setMapImpl(MapImpl map) /*-{
    this.setMap(map);
  }-*/;

I'm trying to pass:

directionsDisplay.setMap(null);

which results in NPE:

Caused by: java.lang.NullPointerException: null
    at com.google.gwt.maps.client.services.DirectionsRenderer$.setMap$(DirectionsRenderer.java:50)

Anyone used this API and knows how to clear directions from the map widget?

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/DXDDte5-o3wJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Javascript Image Hollover In Django

When a user place his mouse or click on any image thumbnails, I want
the particular thumbnail image to display in large size above the set
of thumbnails images on the same page in my django template. I tried
the below Javascript code but it's not working. I'm a noob in
javascript. If there's any way I can do it in jquery please let me
know.

{% block content %}
<script type="text/javascript">
$(function() {
$('.slideshow').hover(
function() { $('.slides').cycle('resume'); },
function() { $('.slides').cycle('pause'); }
);

$('.slides').cycle({
fx: 'fade',
speed: .3,
timeout: 280,
next: '#next',
prev: '#prev'
}).cycle("pause");
});
</script>



<p><center><a href="{{ MEDIA_URL }}/{{post.main_view}}"><img
src="{{post.thumbnail_1.url}}" width="83" height="78"></a>

<a href="{{ MEDIA_URL }}/{{post.side_view}}"><img
src="{{post.thumbnail_2.url}}" width="83" height="78"> </a>


<a href="{{ MEDIA_URL }}/{{post.sitting_view}}"><img
src="{{post.thumbnail_3.url}}" width="83" height="78"></a>

<a href="{{ MEDIA_URL }}/{{post.rook_view}}"><img
src="{{post.thumbnail_4.url}}" width="83" height="78"></a>

{% if Meekme.thumbnail_5 %} <a href="{{ MEDIA_URL }}/
{{post.rook_2_view}}"><img src="{{post.thumbnail_5.url}}" width="83"
height="78"></a>{% endif %}

{% if Meekme.thumbnail_6 %}<a href="{{ MEDIA_URL }}/
{{post.rook_3_view}}"><img src="{{post.thumbnail_6.url}}" width="83"
height="78"></a>{% endif %}
</center></p>

{% endblock %}

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

Re: new to django


thanks kurtis
 

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/Iw461RspM4sJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

Re: [android-developers] how to zoom webpage in webview android except scaling

no jayakumar by program on cliking of one gui button zoomin i have to do the zooming /scaling without default zoomin/out

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: if statement

Hi,

It means that either the word you are searching is in first position, that's why  its echoing 0 or (in_array($var_get, $word ) is empty ,meaning $var_get is not inside the array $word.




--
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
 
 

How sitemaps used in the Django

Please help me in generating site maps for app. which is in django.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/ZLpW-xn_TEYJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

Thursday, August 30, 2012

[Rails] Extracting information out of a database column

Hi All,

I'm new to rails and am trying to tackle a problem that I can't seem to
find the right solution for.

I have an existing database that im building a rails app on top of. One
of my columns 'message' is a long string that I would like to be able to
query and split into various attributes to then be able to display each
of those attributes in a view.

I'm trying to implement this into the controller, but don't seem to be
getting any where.

Can you please let me know how I can achieve this within rails?

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

[android-developers] 【android-developers】 AndroidManifest.xml android:icon

im japanese programer.



<service android:name=".Service"

android:icon="@drawable/aaa">
<intent-filter>
<action android:name="****" />
</intent-filter>
</service>


android:icon="@drawable/aaa"  

Where is the icon set up here used?

help me.

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Help: My app has violated the spam provisions of the Content Policy

Here is a link to the app: https://play.google.com/store/apps/details?id=com.terboel.sarf


kl. 07:28:48 UTC+2 fredag 31. august 2012 skrev Terry følgende:
I just received an email from the Google Play Team, starting as follows:

"This is a notification that your application, Secret Audio Recording Free, with package ID com.xxxx.sarf, is currently in violation of our developer terms.

REASON FOR WARNING: Violation of the spam provisions of the Content Policy.
  • Do not post repetitive content.
  • Product descriptions should not be misleading or loaded with keywords in an attempt to manipulate ranking or relevancy in the store's search results.
Your application will be removed if you do not make modifications to your application's description to bring it into compliance within 7 days"

I would like to change the product description as fast as possible, but I DO NOT KNOW WHAT TO CHANGE!

It would make it simpler if Google could have been more explisit, or that some examples of such violations could have been listed somewhere, but I cannot find any.
I guess that many other developers have the same problem understanding this.

The app in question is "Secret Audio Recording Free", by terboel.

I shall appreciate all good advice.

Regards Terry

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: how to zoom webpage in webview android except scaling

its urgent please send me your solutions fast,thanks

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] how to zoom webpage in webview android except scaling

i am working with HTML webpages in web-view android so here i want to zoom the page on click of zoom button(i.e zoom level 30%,100%,200% ,300% etc) but i am not finding any function to zoom the page in webview upon the value i am passing like 30 for 30% etc.
   So i used scaling in web-view ,i set the setScaleX() and setScaleY() to a particular value like 1.0 for normal 1.5 for 150% and 2.0 for 200% but after scaling the horizontal scroll bar is disappear ,i am not able to scroll and if i added a custom TwoDScrollview so i am not able to scroll the complete content of html page.Like after scale the content cuts for each end only limited content we can see and every times on scale increase the visible content remain in same scroll range as previous so we can not able to see the full content of webpage  i.e the full html page data.So please tell me any way or send me some code or description so solve this issue,thanks in advance

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

GWT plugin does not load in Chrome Canary build.

I'm using Chrome Canary build (Version 23.0.1251.1 canary). When I try to load a dev mode plugin chrome fails to load it. I keep getting message "Could not load GWT dev mode plugin" and in the console I get following errors

[24444:-1391222080:127017415849516:ERROR:webplugin_delegate_proxy.cc(407)] PluginMsg_Init returned false
[24444:-1391222080:127017509838691:ERROR:webplugin_impl.cc(269)] Couldn't initialize plug-in

Btw I used "--enable-easy-off-store-extension-install" flag to be able to install the plugin....

/Applications/Google\ Chrome\ Canary.app/Contents/MaS/Google\ Chrome\ Canary --enable-easy-off-store-extension-install --user-data-dir=~/.test

Has anyone been able to get GWT dev mode working in latest canary build?


--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/hq1UzIYHhfkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

[android-developers] Re: Hindi Fonts coming incorrectly

Can anyone help me out ???

On Tuesday, August 28, 2012 3:47:43 PM UTC+5:30, Durgesh wrote:

I'm using following code to print Hindi charactors in textview.

final Typeface customF = Typeface.createFromAsset(this.getAssets(), "Akshar.ttf");

final TextView textV=new TextView(this);

textV.setTextSize(20);

textV.setTypeface(customF);

textV.setText("श्रीगुरु चरण सरोज रज, निज मनु मुकुर सुधारि");

setContentView(textV);

 

But when I run application on emulator text is coming like

 

Can anyone please tell me what I'm doing wrong?

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] imac g5 ppc 12,1

Are you sure it's worth the effort to bother with a PPC Mac?

For $200US, you can pick up a refurbished PC clone and run ubuntu on
it. It will work for sure and perform better.

Larry

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: complex find()

Forgot to add
$this->User->Behaviors->attach('Containable');

wouldn't work without it

--
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
 
 

How to package a django application

Hi,

I am new to python and django development and have developed a simple email based authentication form as a part of an exercise. Now, i have two questions

1: The requirement from me for this exercise was to create it without any frameworks but i started it with django so its easier initially and indeed it was.So, can someone please tell how to move from this point. I mean if the email authentication has to be done purely in Python (so that it works like "python server.py") how difficult it is and what could be a few good resources to get start with that.
2: I also have a time deadline for this. So if i am not able to do it purely with python which packages/files/folders should i send to the teacher and what instructions shall i wrote in the readme to make sure that my application run on his machine with the least fuss.

Thanks !

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/dtLK6gqKiHYJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

Re: [Lovers India] [Narendra Jobs] Fermenter Supervisor - Fresher @ Tex Biosciences (P) Ltd (Chennai)

hii


On 12/12/11, ziya ziyavudeen <ziyauulhuk2011@gmail.com> wrote:
> plz stop sending mails to my id. If it happins agin i have to fail fir
> on this mail.....
>
> On 12/12/11, Rakesh Kumar (West Zone - HO) <rakesh.kumar@delhiassam.com>
> wrote:
>> UNSUBSCRIBE
>>
>> On Mon, Dec 12, 2011 at 4:10 PM, narendra <jobs@narendrajobs.info> wrote:
>>
>>> Narendra Jobs has posted a new item, 'Fermenter Supervisor - Fresher @
>>> Tex
>>> Biosciences (P) Ltd (Chennai)'
>>>
>>> Fermenter Supervisor - Fresher - 1yr expby Tex Biosciences (P) Ltd in
>>> ChennaiExperience: 0 to 1 yrs. | Opening(s): 1 Job Description Production
>>> Supervisor is a shop level management position that involves supervising
>>> productional activities...
>>>
>>> You may view the latest post at
>>>
>>> http://www.narendrajobs.info/fermenter-supervisor-fresher-tex-biosciences-p-ltd-chennai/
>>>
>>> You received this e-mail because you asked to be notified when new
>>> updates
>>> are
>>> posted.
>>> Best regards,
>>> narendra
>>> jobs@narendrajobs.info
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Lovers India" group.
>>> To post to this group, send email to loversindia@googlegroups.com
>>> To unsubscribe from this group, send email to
>>> loversindia+unsubscribe@googlegroups.com
>>> http://groups.google.co.in/group/loversindia
>>>
>>
>>
>>
>> --
>> Thanks & Regards
>> Rakesh Kumar
>> West Zone (HO) Hisar
>> Fwp 01662315912
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Lovers India" group.
>> To post to this group, send email to loversindia@googlegroups.com
>> To unsubscribe from this group, send email to
>> loversindia+unsubscribe@googlegroups.com
>> http://groups.google.co.in/group/loversindia
>>
>
>
> --
> Thanks and Regards
>
> Ziyauulhuk.K
>
> --
> You received this message because you are subscribed to the Google
> Groups "Lovers India" group.
> To post to this group, send email to loversindia@googlegroups.com
> To unsubscribe from this group, send email to
> loversindia+unsubscribe@googlegroups.com
> http://groups.google.co.in/group/loversindia
>

--
You received this message because you are subscribed to the Google
Groups "Lovers India" group.
To post to this group, send email to loversindia@googlegroups.com
To unsubscribe from this group, send email to
loversindia+unsubscribe@googlegroups.com
http://groups.google.co.in/group/loversindia

Re: GwtChosen: make your select boxes much more user-friendly

+1 looks great

On Wednesday, August 29, 2012 8:59:51 AM UTC+10, Chris Lercher wrote:
Very useful. Great widget.

On Tuesday, August 28, 2012 10:34:09 PM UTC+2, Julien Dramaix wrote:
Dear community, 

I just released the first version of GwtChosen. GwtChosen is the 
entire rewritte in Google Web Toolkit of the Chosen component 
(http://harvesthq.github.com/chosen/) making this nice component 
available for all GWT developers. 

It is available as a +GwtQuery plugin or as a widget. 

Check the example and doc : http://jdramaix.github.com/gwtchosen/ 

Julien 

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/l9VgVEEOjU4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: complex find()

ok figured it out now..
thanks lowpass

robert

--
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
 
 

[Google Maps API v2] Re: Fastest method of finding items inside a bounding box

agree John, For a rough geographical search eg within 20k's, even down here in NZ where we have a big difference between a degree of lat and one of long, this seems to be the fastest search ( in sql)
Having trouble understanding why mysql does not support a simple radius search. 

On Tuesday, April 3, 2007 4:59:27 PM UTC+12, JCamp...@gmail.com wrote:
If you want a really simple solution and don't mind a "rectangular"
search radius instead of a round one.  Just make sure lat,lng are
indexed and write the query like:

SELECT fish_name WHERE lat > $low_lat AND lat < $high_lat AND lng >
$low_lng AND lng < $high_lng

This query is fast because it can use the index.  If you do a distance
computation in SQL, you have to do it on every row.

A lazy way to compute the $low_lat,$high_lat, etc. is to just assume 1
degree ~= 40,000/360 km.

-John Campbell

--
You received this message because you are subscribed to the Google Groups "Google Maps API V2" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-api/-/w-kfMflSZ0EJ.
To post to this group, send email to google-maps-api@googlegroups.com.
To unsubscribe from this group, send email to google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.

Model ChoiceField?

Hi,

I was just wondering if there was any noticeable difference between
the models.ChoiceField() and the models.CharField(max_length=x,)?

In the documentation I have (offline, Django v1.4) a reference to:

/path/django-docs-1.4-en/ref/forms/fields.html#django.forms.ChoiceField.choices

But in the example given at
/path/django-docs-1.4-en/ref/models/fields.html#field-choices they use
the CharField() method.

Is there a discernible difference or is it just for clarity?

cheers
L.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

3akarat.com - للمطاعم والتوكيلات التجاريه والتوكيلات الكبرى فقط

إعلان جديد من عقارات دوت كوم تفاصيل الأعلان : تفاصيل الإعلان . . .

عقارات دوت كوم
----------------------------------------------------------------------------------------

Re: [android-developers] Route Google Maps

Sorry, check this image to see if it helps.

 
After Google changed the api, I just can not generate more routes properly, he does it with points, and not consider the streets

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Cakephp Print pdf

Dear All,

I have problem with creating autocomplete field my my customer id, which i use on invoice form add. I want user to type customer name and it will autocomplete when the name is choose the actual value that store in table invoice is customer_id.

- Printing Pdf I want user to be able to print pdf the page view.
- Printing Excel because the user want to get query record from database and with cakephp and be able to print to excel format.
- Print Preview: On my invoice form I have button called print preview when the user click on the button where will be pop up page of invoice

I hope that anyone can help me because this is urgent.

Best Hope!

--
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
 
 

Re: complex find()

No, you need to run the find on Attendance because your condition is
on that model. User should be in the contain array.

However, your contain syntax is also wrong. It should be like:

$this->find(
'all',
array(
'contain' => array(
'ContainedModelName' => array(
'conditions' => array(
// some conditions
)
)
)
)
);

But, again, you don't want to be doing that here because it would
fetch ALL Users, along with an Attendance array for each User record.
That array would be empty for those Attendance records that don't
match the conditions. What you want instead is to run a find on
Attendance to grab those the conditions match. Containable will then
subsequently grab all the matching Users.

On Thu, Aug 30, 2012 at 6:52 PM, Robert Gravel <rockbust@gmail.com> wrote:
> Hmm does not seem to work. This is now what I am working on.
>
> As a test I ran this on my User Controller that has the related Attendance
>
> $users = $this->User->find('all', array('contain' => 'Attendance.school_id =
> "2"'));
>
> Instead of returning all user records that related Attendance.school_id =
> "2" it gives me every user in the database.
> And oddly for the records that do have attendance records the attendance is
> blank in every record.
> example:
>
> [86] => Array
> (
> [User] => Array
> (
> [id] => 960
> [group_id] => 2
> [last_name] => Camier
> [school_id] => 1
> )
>
> [Attendance] => Array
> (
> )
>
> )
>
> [87] => Array
> (
> [User] => Array
> (
> [id] => 961
> [group_id] => 2
> [last_name] => Miccio
> [school_id] => 1
> )
>
> [Attendance] => Array
> (
> )
>
> )
>
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com.
> To unsubscribe from this group, send email to
> cake-php+unsubscribe@googlegroups.com.
> Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
>
>

--
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.

Re: complex find()

Hmm does not seem to work.  This is now what I am working on.

As a test I ran this on my User Controller that has the related Attendance

$users = $this->User->find('all', array('contain' => 'Attendance.school_id = "2"'));

Instead of returning all user records that related Attendance.school_id = "2" it gives me every user in the database.
And oddly for the records that do have attendance records the attendance is blank in every record.
example:
    [86] => Array          (
[User] => Array ( [id] => 960 [group_id] => 2 [last_name] => Camier [school_id] => 1 ) [Attendance] => Array ( ) ) [87] => Array ( [User] => Array ( [id] => 961 [group_id] => 2 [last_name] => Miccio [school_id] => 1 ) [Attendance] => Array ( ) )



--
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
 
 

[android-developers] Using SyncAdapter without creating an account

My app allows people to use and manage their data regardless they're logged in. Though, as I uniquely identify each device, I want to sync data from my anonymous users (not logged ones) as well. So, I was wondering if it is a good practice to create an anonymous account in this case, since SyncAdapters only work with accounts.

Should I create an account for my anonymous users or should I sync their data with threads/AsyncTasks/Loaders? In particular, is there any way to make ContentResolver.requestSync() work without the need of an account?

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

How to get combobox from handler change event method?

I have several GXT SimpleComboBoxes to which I've added a ValueChangeHandler.  
        combo1.addValueChangeHandler( new ValueChangeHandler<String>() {                  @Override              public void onValueChange( ValueChangeEvent<String> event ) {                  ...              }          });

Is there a way to get the combo box (here, "combo1") that the handler is responding to from within onValueChange() ?  Basically, I'm going to be adding the same handler to many combo boxes, and I want to be able to figure out which one I have and do stuff to them after the user makes a selection.

Thanks for any suggestions.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/vu12MjvH4LAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.


Real Estate