Hi,
Gary Wilson schrieb:
> SmileyChris wrote:
>> On Jan 19, 2:29 am, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote:
(At least, I cannot reopen from closed/invalid)
>>> Very interesting - it looks like that action is being hidden from
>>> non-authenticated users... I'll investigate.
>> How's th
Is it possible to just block attachments on the pages completely? I
know that there are valid ones out there, but the vast majority seem to
be spam (& because it's not apparent how attachements can be removed
from the wiki, they just sit there forever).
Anyway - while we're talking about the wiki
SmileyChris wrote:
> On Jan 19, 2:29 am, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote:
> > > (At least, I cannot reopen from closed/invalid)
> > Very interesting - it looks like that action is being hidden from
> > non-authenticated users... I'll investigate.
>
> How's the investigation going? I'm
On 1/23/07, Adrian Holovaty <[EMAIL PROTECTED]> wrote:
>
> Could somebody provide some unit tests that isolate the problem? I've
> never mucked with the GenericForeignKey code -- perhaps Jacob or
> Russell could chime in here for the fix?
I've never really played with GenericRelations, so I don't
On 1/22/07, SmileyChris <[EMAIL PROTECTED]> wrote:
> Deletion of objects with a GenericRelation(X) deletes unrelated X
> objects with the same object_id!
> http://code.djangoproject.com/ticket/3215
>
> This ticket needs developers focus sooner rather than later. The
> implications of this patch me
On 23-Jan-07, at 8:02 AM, furby wrote:
> django.contrib.admin is installed in my settings.py, so that's not the
> problem.
it cant find the css - check the document source to see where it is
looking for the css and make sure that is correct in relation to your
setup
--
regards
kg
http://
Deletion of objects with a GenericRelation(X) deletes unrelated X
objects with the same object_id!
http://code.djangoproject.com/ticket/3215
This ticket needs developers focus sooner rather than later. The
implications of this patch mean it's not acceptable for this patch to
sit in the queue - it
On 1/18/07, Philipp Keller <[EMAIL PROTECTED]> wrote:
> I think it's quite important to have the opportunity to say "I don't want
> this field to appear in any of my forms" but on the other hand, you may want
> to suppress this fields in the admin.
>
> I think if I wouldn't know anything of djan
Lachlan Cannon wrote:
> It feels right to me to have admin and the model separate. The way I think of
> it
> is this: Suppose I distribute an app and a user decides to use the app, but
> doesn't run the auto-admin. With my admin information factored out in a
> separate
> file: admin.py, she's no
Adrian Holovaty wrote:
> I'd like to take the clean route and move the admin definitions into a
> separate file, or at least still in the models.py but not within the
> models themselves. Of course, that's not as convenient as defining the
> admin stuff directly within the model, but another solut
On 1/22/07, James Bennett <[EMAIL PROTECTED]> wrote:
> Joseph and I were kicking around some ideas over lunch today, and one
> thing that seemed like a good idea was moving back to the old-school
> 'admin as Meta attribute'. Under this scheme, django.contrib.admin
> would define a default class fo
On 1/15/07, Robert Myers <[EMAIL PROTECTED]> wrote:
> I would also like to help out. I wanted to fix a few issues with model
> validation specifically for admin options. I'm not sure if you plan on
> changing any of the existing options or how the options are called though.
> If you are then I won
On 1/22/07, Michael Radziej <[EMAIL PROTECTED]> wrote:
> shouldn't the Reports page be locked down, too? There's already an
> attachment ...
Good point. I've locked it down. Thanks!
> Is it possible to configure the antispam settings so that taking a
> lot of links *away* is also considered spam
seems like you are missing some css files...
do you have everything set correctly?
On 1/23/07, furby <[EMAIL PROTECTED]> wrote:
>
> Has anyone had a problem with the admin app not displaying correctly?
> When I log into the admin page, the content is not formatted like all
> of the pretty example
Has anyone had a problem with the admin app not displaying correctly?
When I log into the admin page, the content is not formatted like all
of the pretty examples in the documentation. it is just links and
bullets, no field widgets, the filters and tables don't show up
correctly, etc.
http://www
James Bennett wrote:
> Joseph and I were kicking around some ideas over lunch today, and one
> thing that seemed like a good idea was moving back to the old-school
> 'admin as Meta attribute'. Under this scheme, django.contrib.admin
> would define a default class for model administration.
This so
On 22-Jan-07, at 10:56 PM, Adrian Holovaty wrote:
> clicks "Code" in the navigation, he shouldn't see a messy set of
> links. We should present a clean overview of the "code" aspects of
> Django -- how to get the code, how to contribute and what we're
> currently working on.
looks good - the ri
Hi all,
Long time listener, first time caller :)
I saw ticket #2672 on the LittleEasyImprovements wiki page today and
thought it'd be a good opportunity to dip my toes into contributing
something back to Django. I have a patch for the relevant modules and
documentation updates ready to go, so
On 1/22/07, Istvan Albert <[EMAIL PROTECTED]> wrote:
>
> Jeremy Dunck wrote:
>
> > That said, most of the time, this is good stuff. Perhaps a management
> > option to turn it off?
>
> My understanding is that no part of basehttp.py is used when Django is
> deployed via modpython. If that is corre
thx patrick. just noticed you also wrote the filebrowser. very nice
work.
cheers!
ashley
On Jan 22, 8:48 pm, "patrick k." <[EMAIL PROTECTED]> wrote:
> sorry for the delay, here is the code:
>
> models.pyhttp://dpaste.com/hold/4898/
>
> views.pyhttp://dpaste.com/hold/4899/
>
> change_list.htmlh
Overriding admin/index.html would make it less generic :-)
Instead, I've changed the adminapplist.py templatetag which is used in
index.html. It's a very simple patch, really.
..Mc.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the
Jeremy Dunck wrote:
> That said, most of the time, this is good stuff. Perhaps a management
> option to turn it off?
My understanding is that no part of basehttp.py is used when Django is
deployed via modpython. If that is correct then this addition would
make no difference in a production envi
Isn't is easier just to override admin/index.html? That way you can
even add some styling/javascript that will organize it to better suit
your needs.
If you don't know what I mean:
1) copy the file django/contrib/admin/templates/admin/index.html to
yourtemplatedir/admin/index.html.
2) Add yourtem
Hi,
I've looked in the django code to see if I could get my models ordered
explicitly in the admin interface, but could only find code that sorts
it alphabetically on name (verbose_name_plural).
I hacked up a quick patch that allows you to set an
'order_in_app_models' attribute to the Admin clas
sorry for the delay, here is the code:
models.py
http://dpaste.com/hold/4898/
views.py
http://dpaste.com/hold/4899/
change_list.html
http://dpaste.com/hold/4900/
the change_list may look a bit weird (due to the whole js-code and
the additional styles).
patrick
Am 22.01.2007 um 20:28 schrie
On 1/22/07, Adrian Holovaty <[EMAIL PROTECTED]> wrote:
>
> On 1/22/07, Istvan Albert <[EMAIL PROTECTED]> wrote:
> > There is an easy way to turn on multi-threading for the default server,
> > see the diff below:
>
> Graham and/or anybody else who wants multi-threading in the
> development server,
looks very nice, would also need something like that in a project i am
working on.
stadtkinowien? :) servus! :D
On Dec 19 2006, 5:09 pm, "va:patrick.kranzlmueller"
<[EMAIL PROTECTED]> wrote:
> we´ve integrated the capability of moving items in the admin change-
> list acc. to a field called "p
On 1/16/07, Adrian Holovaty <[EMAIL PROTECTED]> wrote:
> I'd like to take the clean route and move the admin definitions into a
> separate file, or at least still in the models.py but not within the
> models themselves. Of course, that's not as convenient as defining the
> admin stuff directly wit
Hi,
shouldn't the Reports page be locked down, too? There's already an
attachment ...
So long,
Michael
--
noris network AG - Deutschherrnstraße 15-19 - D-90429 Nürnberg -
Tel +49-911-9352-0 - Fax +49-911-9352-100
http://www.noris.de - The IT-Outsourcing Company
--~--~-~--~~-
Adrian Holovaty wrote:
> On 1/22/07, Istvan Albert <[EMAIL PROTECTED]> wrote:
>> There is an easy way to turn on multi-threading for the default server,
>> see the diff below:
>
> Graham and/or anybody else who wants multi-threading in the
> development server, can you try this patch and see whe
Hi,
Adrian Holovaty:
> [...] I took a moment to move the majority of the page to
> http://code.djangoproject.com/wiki/DjangoResources and made the main
> page read-only. That basically means only people with Trac accounts
> can make changes to the main page.
I'm 100 % with you.
Is it possible t
Adrian Holovaty wrote:
> Graham and/or anybody else who wants multi-threading in the
> development server, can you try this patch and see whether it solves
> your problem?
I updated my Django trunk with the ThreadingMixIn patch and looking at
a couple projects that have media served statically (f
On 1/22/07, Istvan Albert <[EMAIL PROTECTED]> wrote:
> There is an easy way to turn on multi-threading for the default server,
> see the diff below:
Graham and/or anybody else who wants multi-threading in the
development server, can you try this patch and see whether it solves
your problem?
Adri
Just a quick note:
The Django wiki main page -- http://code.djangoproject.com/wiki -- has
been getting out of hand for the past several months, with a massive
amount of links and tutorials. Inspired by some wiki spam we got
today, I took a moment to move the majority of the page to
http://code.dj
There is an easy way to turn on multi-threading for the default server,
see the diff below:
Index: basehttp.py
===
--- basehttp.py (revision 4183)
+++ basehttp.py (working copy)
@@ -7,10 +7,16 @@
been reviewed for security issu
Hello..
.. brought this up in the IRC channel yesterday, but didn't come to a
final conclusion at the time.
My use-case is really simple; I'd like to do something like this from
the django DB API:
SELECT trackback.title, blog.name, blog.url FROM trackback INNER JOIN
blog ON trackback.blog_id = b
after searching and reading all the posts related to internalization
and multilanguange, my first question is if there is any active
development to integrate or make easy translations in the django core,
and if not, if there are any people who would be interested in a joint
effort.
in my experien
Howdy Graham,
> +1 for anything that makes the dev server multi-threaded. I'm hoping
> there might be a way to do this without introducing a dependency on
> CherryPy.
I believe the wsgiserver.py file from the CherryPy distribution is
independent from the rest of the framework. I know, for examp
On 1/21/07, Victor Ng <[EMAIL PROTECTED]> wrote:
>
> I ought to be able to start committing code in the next day or two.
> argh... i hate hard disks.
I kinda like 'em. I remember booting off floppies. Not much fun. :)
--~--~-~--~~~---~--~~
You received this mes
Afternoon:
> As for the resetting of __builtin__._, what is the expected value
> during the execution of django.contrib.auth.forms? Is it the standard
> gettext or django.utils.translation.gettext_lazy?
It's django.utils.translation.gettext.
Michael
--
noris network AG - Deutschherrnstraße 15-
Also, I forgot to say, a quick grep of the Django code reveals that the
db rollback code is currently the only listener for the
got_request_exception signal. I've moved the signal dispatch line
outside of the if statement in the base handler with the effect that it
is now always dispatched as you
Konstantin Khilkevitch wrote:
> I believe ticket 13, now in accepted queue, deals with this
> functionality: http://code.djangoproject.com/ticket/13
I'm not sure it's exactly the same, as ticket #13 only deals with the
ordering of related objects with respect to a particular object. It
would be
42 matches
Mail list logo