Saturday, August 31, 2013

Django-registration reset password templates not getting picked up

I am getting a bit of a problem with django-registration

django-registration was installed in a venv using pip. I have version 1.0 of django-registration and 1.5.1 of Django . I have the templates/registration directory with the templates for the pages that are to display the different pages. 
login, logout, register work fine. Proper templates get picked up - and I have modified them according to my needs. 

However, now I am trying to loop in the password reset functionality. However, when I hit the URL http://127.0.0.1:8000/accounts/password/reset/ it is picking up the default django admin reset url. I cant get this to pickup my templates. Following are my settings: 

in settings.py : 

INSTALLED_APPS = (
'registration',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
   ...
)

in urls.py 

urlpatterns = patterns('',
    #django-registration
    url(r'^accounts/',include('registration.backends.default.urls')),
    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
   ...
)

what else do i need to do ? As per the django-registration documentation, the auth_urls.py is supposed to be automatically included with the default backend. But apparently, there is some disconnect here. 

Regards,
Vibhu
--
Simplicity is the ultimate sophistication. - Leonardo da Vinci
Life is really simple, but we insist on making it complicated. - Confucius

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

[android-developers] Android push notification server for enterprise

Hi,
   I'm looking for implementing Push notification for our enterprise application.
I was unable to find any good solution other than GCM which is a 
google provided service & resides outside the enterprise.
   I would like to know whether there are any push notification servers
available that can be integrated with Jboss or any other application server
in the enterprise.

Thanks
Rosh

--
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 unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Re: [Rails] Basic doubt in MVC - RoR

just do google "rails tutorial", click on very first search result link ;-)

On Aug 31, 2013 7:25 PM, "Dheeraj Kumar" <a.dheeraj.kumar@gmail.com> wrote:
You would need a separate controller to handle the sign-in part, with its own views. When it's successful, it should redirect you to the A controller. This is how most apps do it.

-- 
Dheeraj Kumar

On Sunday 1 September 2013 at 3:48 AM, Rita Ferreira wrote:

Hi,
I'm with a very basic doubt in MVC in RoR. I'm new at RoR, I had never developed an app in Rails since the beggining, just few things separately.

I want to have a sign in page, like the first page the user see.
After sign in I will have another page where I have a menu where user can do the basis operations (new, edit, show, ...).

The stuture of the webpage is:
sign_in page -> page with basic operations -> operations

After creating the controller/views/model to do those operations, in which page should I put the sign in page?
I mean the sign in page is not related to the controller, so on /app/views should I create another file (see below), for instance called index.html.erb? 

If controller is named A, I will have the  following structure:

/app/controller
- A_controller.rb
/app/views/A
- edit.html.erb
- new.html.erb
- show.html.erb
- (index.html.erb) --------> for sign in page?
- (index_2.html.erb) --------> page with basic operations?


After do the sign in it will be redirected to the page where I will have buttons (for instance) with new, edit, show operations, this page should be another page created by me (again) on the app/views/A ?

How do you do it?
I don't know if you understand my problem. Please if not tell me, all help is welcome.

Thanks
Rita

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/8be98eb6-526b-4efe-ab4c-281b31e045a3%40googlegroups.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 unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/28EEB66C857F4808BB4748F49AE7FAB4%40gmail.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 unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAAVKU-O%3D3Z_C8TnSsTasEVr1u2Kb4e6O1uCtDvf_dQnaUBwdRA%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.

Re: [Rails] Basic doubt in MVC - RoR

You would need a separate controller to handle the sign-in part, with its own views. When it's successful, it should redirect you to the A controller. This is how most apps do it.

-- 
Dheeraj Kumar

On Sunday 1 September 2013 at 3:48 AM, Rita Ferreira wrote:

Hi,
I'm with a very basic doubt in MVC in RoR. I'm new at RoR, I had never developed an app in Rails since the beggining, just few things separately.

I want to have a sign in page, like the first page the user see.
After sign in I will have another page where I have a menu where user can do the basis operations (new, edit, show, ...).

The stuture of the webpage is:
sign_in page -> page with basic operations -> operations

After creating the controller/views/model to do those operations, in which page should I put the sign in page?
I mean the sign in page is not related to the controller, so on /app/views should I create another file (see below), for instance called index.html.erb? 

If controller is named A, I will have the  following structure:

/app/controller
- A_controller.rb
/app/views/A
- edit.html.erb
- new.html.erb
- show.html.erb
- (index.html.erb) --------> for sign in page?
- (index_2.html.erb) --------> page with basic operations?


After do the sign in it will be redirected to the page where I will have buttons (for instance) with new, edit, show operations, this page should be another page created by me (again) on the app/views/A ?

How do you do it?
I don't know if you understand my problem. Please if not tell me, all help is welcome.

Thanks
Rita

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/8be98eb6-526b-4efe-ab4c-281b31e045a3%40googlegroups.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 unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/28EEB66C857F4808BB4748F49AE7FAB4%40gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.

Re: [android-developers] Document

please banned this user, his gmail may have been compromised, and please don't enter any password to the asserted "Google Drive" website, the ip address is fake.


On Sun, Sep 1, 2013 at 10:11 AM, ravi garg <ravigarg27@gmail.com> wrote:
Hi,
Did you receive the documents which I have sent earlier?
If not, I have re-uploaded them on my Google drive.
Click Here, I will upload rest of the documents soon.

Regards,
--
Ravi Garg
3rd Year
MSc (hons) Biological Sciences
B.E (hons) Computer Science and Engineering
BITS Pilani KK Birla Goa Campus

--
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 unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
Regards,
Peter Teoh

--
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 unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

[android-developers] Document

Hi,
Did you receive the documents which I have sent earlier?
If not, I have re-uploaded them on my Google drive.
Click Here, I will upload rest of the documents soon.

Regards,
--
Ravi Garg
3rd Year
MSc (hons) Biological Sciences
B.E (hons) Computer Science and Engineering
BITS Pilani KK Birla Goa Campus

--
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 unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Re: MongoDB and Django

It is not supported by default.

Check django-nonrel and django-mongodb-engine projects. I am not sure if these projects are still available.


On 31 August 2013 05:22, Timothy Makobu <makobu.mwambiriro@gmail.com> wrote:
Hi,

Is MongoDB support coming to standard Django?

regards,
Tim

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



--
Christiano Anderson 

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

3akarat.com - للبيع 122 بحديقة خاصة باجهزة السبع عمارات 395 ألف فرصة

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

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

3akarat.com - شقة 70م2 سوبر لوكس بشارع محمد نجيب

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

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

Re: Django driving me nuts

Try the Django IRC channel for faster answers

https://code.djangoproject.com/wiki/IrcFAQ

If you are learning Python at the same time learning Django then it can be a tough climb

K


On Saturday, August 31, 2013 5:50:19 AM UTC-7, Gerd Koetje wrote:
Why is it so hard to get as a former php programmer.

anyone willing to help me over this part?

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

Re: Form validation number and text only no space mac 4 numbers

On 1/09/2013 2:11am, Gerd Koetje wrote:
> to explain myself a bit more:
>
> gerd12 = should be valid
> gerd1234 = should be valid
> gerd 1234 = should not be valid
> %$$%%#$ = should not be valid
> gerd123456 - should not be valid

You have just specified five cases for unit tests. Start there and
experiment with re until they all pass. Beautiful!

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

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

Re: New to Django and developing website based on a Framework. What is the best order to develop website?

Add features as you need them. If you are going to launch in multiple languages I'd add that early on. Adding the stock authorization is pretty safe as well.

Learn and use the testing framework as much as possible.

K


On Saturday, August 31, 2013 1:07:46 PM UTC-7, Mark Strickland wrote:
I am starting to develop a website using django and I am wondering if I should add all the extra modules (authorization, mutliLanguages, comments), at the beginning, or should I develop the basic pages (apps) and then go back and add in the requirements for the modules I want to add.


I am trying to develop a website using django, like my current website www.serviidb.com created in drupal.,

Any advice would be greatly appreciated.

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

[Rails] Basic doubt in MVC - RoR

Hi,
I'm with a very basic doubt in MVC in RoR. I'm new at RoR, I had never developed an app in Rails since the beggining, just few things separately.

I want to have a sign in page, like the first page the user see.
After sign in I will have another page where I have a menu where user can do the basis operations (new, edit, show, ...).

The stuture of the webpage is:
sign_in page -> page with basic operations -> operations

After creating the controller/views/model to do those operations, in which page should I put the sign in page?
I mean the sign in page is not related to the controller, so on /app/views should I create another file (see below), for instance called index.html.erb? 

If controller is named A, I will have the  following structure:

/app/controller
- A_controller.rb
/app/views/A
- edit.html.erb
- new.html.erb
- show.html.erb
- (index.html.erb) --------> for sign in page?
- (index_2.html.erb) --------> page with basic operations?


After do the sign in it will be redirected to the page where I will have buttons (for instance) with new, edit, show operations, this page should be another page created by me (again) on the app/views/A ?

How do you do it?
I don't know if you understand my problem. Please if not tell me, all help is welcome.

Thanks
Rita

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/8be98eb6-526b-4efe-ab4c-281b31e045a3%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

3akarat.com - الحق العرض وصيف دلوقتى بأجمل المناطق براس سدر و بأقل مقدم

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

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

3akarat.com - الحق العرض وامتلك شاليهك دلوقتى بقرية رويال بيتش بالساحل ومقدم قليل جدا

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

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

3akarat.com - ببرج العرب الجديده مصنع 400 متر بـ 180 الف جنيه فقط 01022235409

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

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

3akarat.com - امتلك شقتك والحق العرض والخصم على سعر المتر الكبير بالتجمع الخامس

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

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

(GugukluhayaT) Yapamadıkların ..- iiiiii - Sarışın kızların ülkesi (2012)-Litvanya-KEpps

 Sarışın kızların ülkesi (2012)-Litvanya-KEMALAĞA-ZZ.pps 4942K
  Yapamadıkların ..



bazen yapamamak hayırlı oluyor...





…Aşk diyorsun, ölçüsü olmaz ya, varsa da ölçüsü, neler yapabildiğin değil, neler yapamadığındır...

FROM-sevim durgun



 

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

(GugukluhayaT) sana yazdığım tüm şiirler - İİİİİİİ -he Thousand Islands-GÖRÜLESİ YERLER-




he Thousand Islands-GÖRÜLESİ YERLER-
       sana yazdığım tüm şiirler



sana yazdığım bütün şiirler
en nihayetinde başka bir kadının aklını çelebilir
hiç bir cümle de gizli özne olarak bile yerini alamayabilirsin
yada içten içe beklediğin mektup zarfının içi boş çıkabilir
hali hazırda gözlerin senden habersiz ağlayabilir
ağlama…

sana söylediğim bütün sözleri
en nihayetinde başka dudaklarda söyleyebilir
hiç bir söz diziliminde adlarımız yanyana gelemiyebilir
yada gen haritanı benden başkalarıda ezberleyebilir
hali hazırda gözlerin senden habersiz unutabilir
unutma…
bir meleğin başlattığı isyan devrim niteliği taşıyabilir
bunun akabinde insanlar o meleğe şeytan diyebilir
o şeytanın kulağına fısıldaması sonucu aklın karışabilir
ömrün başka dillerin anlamlarını öğrenmekle geçebilir
hali hazırda gözlerin senden habersiz yokluğuma alışabilir
alışma…
sonbaharı beklemeden yapraklar intihara teşebbüs edebilir
mevsimi gelmeden insanlar göç edebilir
ellerin olur olmadık zamanlarda beni teşhis edebilir
sana yazdığım bütün şiirler bütün sözlerimi
hali hazırda gözlerinin yardımıyla inkar edebilir.

G Akan

FROM-Melike KOÇAK

******************************************************************************************************************************************

Güven

Herkesin hayatında önem verdiği değerler vardır. Kimi parayı önemser fani dünyada, kimi sevgiyi, kimi saygı olmazsa olmaz der, bir diğeriyse anlayış diye ekler değerler listesinin sonuna…

Haklısınız bunların hepsi önemli ve teker teker çok büyük değer taşıyor. Bununla birlikte öyle bir “değer” var ki, onun olmaması ne evinizde, ne işinizde, hayatınızın hiçbir alanında huzuru, mutluluğu dai...
m kılamaz…

Güven…

Kendinize duyduğunuz güven, sevdikleriniz duyduğunuz güven ya da size duyulan güven…

Nasıl düşünürseniz düşünün… Güven duygusu bitti mi, ne tadınız kalır ne tuzunuz…

Kendinize duyduğunuz güven azsa ya da tamamen yok olduğunu düşünüyorsanız, içinizdeki potansiyeli açığa çıkaramazsınız, “Beş yıl sonra nerde, ne konumda olmak istersin?” sorusuna bile “… ama ben yapamam ki!...” diye biten cevaplar verirsiniz, enerjinizi boş yere tüketmiş olursunuz… Bir hazineyi yok sayarsınız. Bunun sonucunda da mutsuzluk başlar, kendinize küsersiniz adeta…

Ya da başkasına duyduğunuz güvenin azalması ya da tamamen bitmesi…

Hayatınızdaki bütün insanları düşünün. Artık güvenemediğiniz bir iş arkadaşınız, ailenizden biri, sevgiliniz, eşiniz, dostunuz….

Size söyledikleri her söz –iyi ya da kötü- arkasında bir soru işareti taşımaya başlar. “Acaba?”lar oluşmaya başlar kafanızda…

Artık daha farklı bir konumda yer alır sizin için. Anlamı, değeri azalır o insanın sizin gözünüzde..

Bundan sonra söyledikleri de eskisi gibi büyük anlamlar ifade etmez. Çünkü yalan söylüyor olabilir, bazı şeyleri saklıyor olabilir, çarpıtıyor olabilir, dersiniz içinizden.

Belki bu güvensizliği hak ediyordur, belki de tam tersi.

Ama süreç ne olursa olsun artık o sizin nazarınızda eski eşiniz, dostunuz değildir.

İçinizde bazı şeyler bitmeye yüz tutmuştur.

Ve sonuncusu, belki de en çok yaralayanı…

Sevdiğiniz insanın size olan güveninin bittiğini görmek. Belki de hiç oluşmamıştı, orasını bilemem. Ama sonuç olarak bugün söylediklerinizin bir anlam ve değer taşımaması.

İnsana en çok üzen ne biliyor musunuz?

Bu güvenin en çok değer verdiğiniz insanlardan birine ait olması. Ya da yitip giden güven desek daha doğru olur…

“Ne yani yalan mı söylüyorum?” sorusuna verilen “Evet” cevabıyla anladığınız acı gerçektir bu.

Sonra düşünmeye başlarsınız;

"Bunca yıldır kimseden duymadığım şeyleri şimdi, şu anda, en sevdiğim insanlardan birinin bu kadar rahat bir şekilde ifade etmesi normal mi? "

"Ben ne yaptım da bunca süredir, bunu sağlayamadım… "

Kararsız kalırsınız…. Kendinizi suçlamakla, karşıdakine kızmak arasında gidip gelirsiniz.

İçinizden sessizce geçirirsiniz: Hiç ummazdım…

Sizden başka kimsenin duymadığı, sessiz sedasız yapılan bir isyan gibi olur…

Hayatın gri rengidir bu işte. İstemediğiniz, hiçbir zaman da istemeyeceğiniz kadar acıdır bu durum.

Güven bir geminin dümeni gibidir. Hava sisli de olsa, kar fırtınasına da yakalansa o gemi dümeni sağlam olduğu sürece yol alacaktır. İlişkide de güven bir nevi dümen rolünü oynar. En karanlık anlarda, en zor durumlarda bile kişiler birbirine güveniyorsa işte o zaman her ilişki zamanı gelince tekrardan düzlüğe çıkar.





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

(GugukluhayaT) GÖRÜLESİ YERLER--FINLAND ( IMAGES )....&...GÖRÜLESİ KADINLAR....G

 GÖRÜLESİ YERLER--FINLAND ( IMAGES )....&..
  GÖRÜLESİ KADINLAR....



 

__._,_.___

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

3akarat.com - للبيع على البحر بقرية مصر سنين السخنة

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

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

(GugukluhayaT) "BEN" Deme Sakın...!-İİİİİİ-Vogel Modenschau-.pps...G




  "BEN" Deme Sakın...!
  Vogel Modenschau-KEMALAĞA.pps 2895K



Sakın kıyaslama kendini başkalarıyla!
“Ama ben..” “Ama benim şu kadar” Sakın sakın deme!
Şeytan da böyle demedi mi? “Ben!” dedi.. ”Üstünüm ondan!” dedi,
Kıyasladı kendini, gururlandı…
Ve kovulmuşlardan oldu!
Sen de, eğer böyle dersen; hidayeti için dua ettiklerin varsa mesela,
Asla kabul olmaz duaların!.. istersen gece-gündüz namazda,
Oruçta, ibadette ol, “Ben!” dediğin, başkaları hakkında hüküm verdiğin,
Kıyas yaptığın, O’nun makamına göz diktiğin müddetçe Hiçsin!
Çünkü O, “Ben” diyene değil,
“Sen” diyene, rahmet nazarıyla bakıyor..
O, önünde iki büklüm gözyaşlarıyla durana kapılarını açıyor..
Aşağıla nefsini! bil ki sen alçaldıkça yükseltirler seni..
Karı-koca ilişkilerinde olsun, tüm diğer beşeri ilişkilerde olsun,
Sakın kibirlenme!.. Gururlanma!.. Kendini üstün görme kimseden!..
Bil ki şeytan sana bu yolla yanaşır ve mağlup eder seni..
Perde olur, O’nunla arandaki rabıtaya..
Vuslatına eremezsin! Daim gurbetlerde kalırsın..
Sakın deme; “Ama benim şu kadar ibadetim var, o namaz bile kılmıyor”
O başını bile örtmüyor..” O cumaya bile gitmiyor..”
O böyle, ben böyle!.. Sakın! Anlasana, şeytanın oyunu bu!...
Ah bilsen ne sinsidir o! Böyle böyle kaydırır ayağını..
Bil ki Allah’ın en sevmediği şey; Tahkir etmek!
Kendi yarattığının, diğer mahlukları aşağılaması, hor görmesi..
Bir nev’i TANRILIK iddiası! Ah bilsen,
Bir hor bakış kaç namazı siler götürür! bir aşağılayış,
Kaç iyi ameli yok eder! duymadın mı, baksana “kötü” bilinen bir kadın,
Ayakkabısıyla bir köpeğe su içirdiği için cenneti kazandı!
Dün “şöyle-böyle” diye hor baktıkların, O’nun sevgilisi oldular!
O var ya O, bir “Ahhhh” için, yürekten ama, ızdırapla, pişmanlıkla, samimi,
İhlaslı bir ahhh için, günahla geçirilmiş bir ömrü siliyor!
Sanki yeni doğdun gibi.. Afuvv çünkü O (c.c.)..
Eskilerde, böyle bir “Ahhh” duyan bir gönül eri,
Muhatabına diyor ki; vefatından sonra rüyasında
Halini soran bir dostuna da; “İşte o “Ahhh”
Sebebine cennetlerdeyim!” der.
“Al benim tüm ibadetlerimin ecrini, o “ahhh”ını ver bana..”.
Var mı böyle bir ahhhın, iki büklüm o kapılarda?
Yoksa da amelin, var mı O’nun sevgisinden,
O’nun utancıyla, nedametle akıtılmış iki damla gözyaşın?
Var mı?... Varsa korkma hiç! burada da orda da

Sevgilisin...


FROM-GÖZDE TANYELİ
------------------------------------------------------------------------------------

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

(GugukluhayaT) 05-Karikatürler -






--

zaryop:jaro

Merak akil midesinin guruldamasidir....

Anonim Nasihat
- - - - - - - - - - - - - - - - - - - - - - - -
Kurmus oldugum gruba uye olun
Moderasyonsuz, sansursuz ve ozgur bir gruptur:
Ozgur_Gundem-subscribe@yahoogroups.com
Ayrilmak isterseniz de :
Ozgur_Gundem-unsubscribe@yahoogroups.com

Grup Sayfamız :
http://groups.yahoo.com/group/Ozgur_Gundem/
Arzu ederseniz bloguma da goz atabilirsiniz.
http://orajpoyraz.blogspot.



(GugukluhayaT) 05-Emine Kaplan - AKP'liler örtünmek istiyor

Kamusal alan tartışmaları döndü dolaştı bu noktaya geldi.
Artık alan falan yok.
Sonucun nasıl olacağını merak eden gitsin Fatih Belediyesine gitsin baksın.
Öyle olacak.
Örtünmeyeni ya öpecekler, ya da öpecekmiş gibi yapacaklar.
Sonuçta uysa da, uymasa da herkes örtünecek.
Erkekler bile.
Yakasız gömlek, cübbe, şalvar, takke ya da fes giyenlerin önü açılacak.
Gidin bakın, örneğini görün.
Nasıl bir dünya vaat ediliyor onu izleyin.

Oraj POYRAZ

Emine Kaplan - AKP'liler örtünmek istiyor

Başbakan Yardımcısı Arınç’ın açıklamalarının ardından bazı kadın vekiller, türban takmak istediklerini parti yönetimine iletti.

Başbakan Yardımcısı Bülent Arınç’ın türbanlı kadın milletvekili olabileceğini belirterek muhalefetin destek vermesi durumunda mevcut kadın milletvekillerinin genel seçim beklenmeden başlarını şimdiden örtebileceğine ilişkin açıklamalarının ardından gözlerin çevrildiği AKP’li kadın milletvekillerinden bazılarının gayri resmi olarak parti yöneticilerine bu yöndeki isteklerini ilettiği öğrenildi.
AKP yöneticileri, “Kendi iradeleridir, bizim lehte ya da aleyhte yönlendirmemiz söz konusu olmaz.
Ama TBMM İçtüzüğü’nde buna engel bir durum yok”
görüşünü dile getirdi.Başbakan Yardımcısı Arınç, muhalefet partilerinin “niye olmasın” demesi durumunda türbanlı kadın milletvekili olabileceğini belirterek “Aslında anayasal bazda da yasa bazında da açıkça bir hüküm yok ki bunu yasaklasın.
Sadece Anayasa Mahkemesi’nin bazı kararlarında atıflar var, bazı yönetmelikler var.
Bunların değiştirilmesi de mümkün olabilir.
Böyle bir anlayış yerleşirse 2015’e kadar yeni seçimi beklemeye gerek yok, parlamento içindeki bazı kadın milletvekillerimiz şimdiden başını örtebilir”
diyerek yeni bir tartışma başlatmış, gözler AKP’li 45 kadın milletvekiline çevrilmişti.Bazı AKP’li kadın milletvekillerinin başlarını örtmek istediği, bunun için gayri resmi olarak parti yöneticilerine bu yöndeki isteklerini ilettiği öğrenildi.
AKP’li bir yönetici, “Bu konuda bize gelen resmi bir başvuru yok.
Ancak bazı milletvekillerimizin bu yönde istekleri olduğunu biliyoruz.
Ama bu yeni bir şey değil.
2011 seçimlerinden sonra kişisel konuşmalarımızda başlarını örtmek istedikleri yönünde beyanları oldu.
Bizim milletvekillerimiz üzerinde lehte ya da aleyhte yönlendirmemiz olmaz.
Arkadaşlarımız kendi iradeleriyle böyle bir karar alırlarsa saygı duyarız”
dedi.
Türkiye’nin bu konuyu çözdüğünü kaydeden aynı yönetici, CHP de dahil hiçbir partinin bu konuda itirazı olmayacağını söyledi.
Arınç’ın açıklamalarından sonra türban takmak isteyen AKP’li vekillerin, önümüzdeki dönemde zaman ve zemine bağlı olarak böyle bir girişimde bulunabileceğine dikkat çekiliyor.


a45UyF587661-201307301451-05
^^^^^ - vvvvv
 

zaryop:jaro

Argumentum ad hominem
Tartismanin kalitesi, tartistigin kisinin kalitesine baglidir

Latin Atasozu
- - - - - - - - - - - - - - - - - - - - - - - -
Kurmus oldugum gruba uye olun
Moderasyonsuz, sansursuz ve ozgur bir gruptur:
Ozgur_Gundem-subscribe@yahoogroups.com
Ayrilmak isterseniz de :
Ozgur_Gundem-unsubscribe@yahoogroups.com

Grup Sayfamız :
http://groups.yahoo.com/group/Ozgur_Gundem/
Arzu ederseniz bloguma da goz atabilirsiniz.
http://orajpoyraz.blogspot.



(GugukluhayaT) 05-Selefi Şeyhi; “Kız kardeşle evlilik caiz”.. SURIYELI SUNNI MUCAHITLERI



Selefi Şeyhi; “Kız kardeşle evlilik caiz”.. SURIYELI SUNNI MUCAHITLERI

Şeyh Nasır el Ömer, Şia karşıtı yayınlar yapan “Visal” kanalında yaptığı açıklamada şunları söyledi;

Selefi Şeyhi Nasır el Ömer, Suriye’de “cihat nikahının kıyılması” ve yaygınlaştırılması için her yerde konuşmalar yapıyor.
Şimdi de Suriye’de savaşan muhaliflerin “kendi kız kardeşleri ve mahremleri ile nikâhlanabileceklerine dair bir fetva” yayinladi.

ŞAM- Selefi şeyh Nasır el Ömer, Şia karşıtı yayınlar yapan “Visal” kanalında yaptığı açıklamada şunları söyledi: Silahlı mücahitler, namahrem kadınlar bulamıyorlarsa, o zaman kendi mahremleri (ailesinden kadınlar) ile evlilik akdi kıysınlar…

Tekfirci Selefi Şeyh Nasır el Ömer, konuşmasını şöyle sürdürdü: Yorgunluk bilmeyen mücahitlerin küfür karşıtı ve Suriye – İran zulüm rejimlerine karşı savaştıkları için kendilerine teşekkür ediyorum.

Bazıları, Suriye’deki kardeş mücahitlerin hizmetine yönelik yayınlanan fetvaları eleştirmekte ve tepki göstermektedirler.
Ancak kadınların ve çocuklara yönelik cinayetlerden bahsetmiyorlar”

Selefi Şeyhi Nasır el Ömer daha önce de yayınladığı fetvasında Şia ve Alevi kızlarının esir alınarak cihatçı gruplar arasında adil bir şekilde paylaşılması fetvasını vermişti.

(Ahlulbeyt Haber Ajansı)

http://www.turkishnews.com/tr/content/2013/08/31/selefi-seyhi-kiz-kardesle-evlilik-caiz-suriyeli-sunni-mucahitleri/

a45UyF587661-201307301451-05
^^^^^ - vvvvv
 

zaryop:jaro

Birbirine aykiri olarak cagrilan iki yoldan biri mutlaka yanlistir.

Hz.Ali
- - - - - - - - - - - - - - - - - - - - - - - -
Kurmus oldugum gruba uye olun
Moderasyonsuz, sansursuz ve ozgur bir gruptur:
Ozgur_Gundem-subscribe@yahoogroups.com
Ayrilmak isterseniz de :
Ozgur_Gundem-unsubscribe@yahoogroups.com

Grup Sayfamız :
http://groups.yahoo.com/group/Ozgur_Gundem/
Arzu ederseniz bloguma da goz atabilirsiniz.
http://orajpoyraz.blogspot.



3akarat.com - امتلك شالية بالسخنة قرية مصر سنين

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

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


Real Estate