Broken INTERNAL link error emails on flat pages.

2012-03-23 Thread Arek
This is my first post here so hello everybody.

when SEND_BROKEN_LINK_EMAILS=True, every time flat page is visited
django-1.3.1 sends emails like this:

Referrer: http://example.com/
Requested URL: /contact/
User agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; 
.NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 
3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)
IP address: 11.22.333.444

anyone knows how to fix this? 

Cheers,
Arek





-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: default django admin theme

2010-12-23 Thread Arek
Hi,
take a look at django-admin-tools
it adds customized themes to admin interface.  And few other things.
it is lighter than grappelli.

On Thu, Dec 23, 2010 at 7:57 AM, Jos? Moreira  wrote:
> Hello,
> are there any plans to improve the default Django admin theme?
> I'm aware of projects like Grapelli, that the admin is intended to be
> customized by the developers and that the default theme is nice, clean and
> usable but the default theme could be improved a lot, from my perspective.
> I started thinking about this while i was browsing google analytics and the
> default django admin and i really like the analytics interface:
>
> - nice clear background
> - clear space around content and good black/white font contrasting
> - consistent and minimal color palette
> - menus on the right side which allow the content to expand indefinitely if
> required to the right
> and so on ...
> Of course this is all based on my personal opinion and also that:
> - grappelli attaches a number of dependencies to the project, which may lock
> the project in regard to django and other libraries versions
> - customizing the admin interface requires maintenance in regard of keeping
> track of changes brought by new django versions, which isn't that difficult
> it's one more thing a developer has to keep track of, especially for single
> developer's managing projects
> - having an improved and slicker interface by default would improve the
> commercial aspect, a lot
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

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



Re: ASK-TinyMCE

2010-12-23 Thread Arek
Hi Emmerling,

adding this in admin.py fixed the problem for me.

class YourModelOptions(admin.ModelAdmin):
  class Media:
   js =
['http://example.site/static/admin/tinymce/jscripts/tiny_mce/tiny_mce.js',

'http://example.site/static/admin/tinymce_setup/tinymce_setup.js',]


These files need to be served from the same domain as your admin pages.
check javascript console in your browser for error messages.


Arek

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