User Adrian Liem - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T06:24:54Zhttp://stackoverflow.com/feeds/user/127048http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081596/django-serving-admin-media-files2Django: serving ADMIN media filesAdrian Liem2009-07-04T05:43:16Z2009-11-01T10:28:37Z
<p>Hi all,</p>
<p>I've been successfully serving media files for the normal MEDIA files, but when I tried serving admin media files, I failed. please kindly help me locating the problem, as I've tried to troubleshoot the problem for several hours already with no luck (been googling too and read the django doc about serving static files as well).</p>
<p>The error as I tried to access localhost:8000/media/a.gif is as following:</p>
<blockquote>
<p>Page not found:
f:\python25\lib\site-packages\django/contrib/admin/media\a.gif</p>
</blockquote>
<p>I put the admin media files in directory named "media", while I put the normal media files in directory named "static". I'm on Windows, too.</p>
<p>Here's how I serve the ordinary media files in urls.py:</p>
<pre><code># serve static files
from django.conf import settings
if settings.ENVIRONMENT==settings.ENV_DEVELOPMENT:
urlpatterns += patterns("django.views",
url(r"%s(?P<path>.*)$" % settings.MEDIA_URL[1:], "static.serve", {"document_root": settings.MEDIA_ROOT,})
)
</code></pre>
<p>And my settings.py (only the important pieces):</p>
<pre><code>import project_path
MEDIA_ROOT = project_path.MEDIA.replace('\\','/')
MEDIA_URL = '/static/'
ADMIN_MEDIA_PREFIX = '/media/'
TEMPLATE_DIRS = (
project_path.TEMPLATE.replace('\\','/'),
)
</code></pre>
<p>And my project_path.py:</p>
<pre><code>import sys
from os.path import dirname, join
ROOT = dirname(__file__)
APP = join(ROOT, "apps")
TEMPLATE = join(ROOT, "templates")
MEDIA = join(ROOT, "static")
ADMIN_MEDIA = join(ROOT, "media")
</code></pre>
<p>Any hints?</p>
<p>or maybe at least please share how do you serve your admin media files (without changing any files from the web server, but only via the django source code)</p>
<p>Thanks in advance :)</p>
http://stackoverflow.com/questions/405675/django-tag-cloud-plugin/1065347#10653470Answer by Adrian Liem for Django tag cloud pluginAdrian Liem2009-06-30T18:53:14Z2009-06-30T18:53:14Z<p>currently facing the same issue, i found that these links are useful for the tagging template -- so you wouldn't have to type all the template for tagging from scratch:</p>
<ul>
<li><p><a href="http://www.napes.co.uk/blog/django-tagging/" rel="nofollow">http://www.napes.co.uk/blog/django-tagging/</a></p></li>
<li><p><a href="http://tylerlesmann.com/2009/mar/09/adding-tagging-django-10-views-and-templates/" rel="nofollow">http://tylerlesmann.com/2009/mar/09/adding-tagging-django-10-views-and-templates/</a></p></li>
</ul>
<p>hopefully those can help :)</p>
http://stackoverflow.com/questions/1040764/django-the-best-practice-to-implement-crud-outside-the-contrib-admin1Django: The best practice to implement CRUD outside the contrib.adminAdrian Liem2009-06-24T20:23:59Z2009-06-25T09:45:10Z
<p>Hi all :)</p>
<p>I'm currently developing a Blog project using Post model, which will be used by multiple authors.</p>
<p>I want to make an admin/control-panel interface where each author of the Post can view the Post list the author created (so he won't see the Post created by the other authors), edit, and multiple-delete them.</p>
<p><a href="http://stackoverflow.com/questions/498199/valid-use-case-for-django-admin">http://stackoverflow.com/questions/498199/valid-use-case-for-django-admin</a> said that:</p>
<blockquote>
<p>the Django admin is not suited for
individual user profiles, each user
would be able to see, and edit, all
other user profiles. This is suited
more to an administrator who has to
manage all the users at once.</p>
</blockquote>
<p>That means a new CRUD system should be created -- outside the contrib.admin interface. So the question is, is there any existing technique/way to implement the CRUD outside the contrib.admin system?
or, what do I need to study/use? how can I implement it nicely (the minimum effort)?</p>
<p>Thanks in advance :)</p>
http://stackoverflow.com/questions/865390/can-css-frameworks-ie-960gs-or-blueprintcss-be-used-without-margins/1042315#10423151Answer by Adrian Liem for Can CSS frameworks (ie: 960gs or Blueprintcss) be used without margins?Adrian Liem2009-06-25T05:25:35Z2009-06-25T05:25:35Z<p>I use this technique as my ultimate CSS layout technique:</p>
<p><a href="http://www.codeofficer.com/blog/entry/css_grid_frameworks_960gs_without_margins/" rel="nofollow">http://www.codeofficer.com/blog/entry/css_grid_frameworks_960gs_without_margins/</a></p>
<p>I had the same issue once, and since I use that one, all the margin headaches has dissapear.
I use <strong>!important</strong> overide when I need to use custom width/height.</p>
<p>The Code:</p>
<pre><code><div class="g_9 content_main">
This div should actually have 720px in width.
But I overide it using another class so now the width has become 700px,
and just in case it needs custom margin, we can always set it in the css :)
</div>
</code></pre>
<p>The CSS:</p>
<pre><code>.c_12 .g_9, .c_16 .g_12 { width: 720px; } /* 960-full.css */
.content_main { width: 700px !important; margin-left: 15px;} /* style.css */
</code></pre>
http://stackoverflow.com/questions/537593/multiple-images-per-model/1040576#10405761Answer by Adrian Liem for Multiple images per ModelAdrian Liem2009-06-24T19:51:16Z2009-06-24T19:51:16Z<p>Hi Oli.
I'm currently make about the same thing, and I faced the same issue.</p>
<p>After I researched for a while, I decided to use <a href="http://code.google.com/p/django-imaging/" rel="nofollow">http://code.google.com/p/django-imaging/</a> -- it has a nice ajax feature, images can be uploaded on the same page as the model Insert page, and can be editable. The only thing it lack is the support for non-jpeg extension, I hope I will have the workaround for it in days. :)</p>
<p>best wishes,</p>
http://stackoverflow.com/questions/1028229/django-paginated-comments-is-there-any-existing-solutions1Django Paginated Comments .. is there any existing solutions?Adrian Liem2009-06-22T16:37:35Z2009-06-22T17:22:43Z
<p>Hi, is there any existing pagination solution for Django contrib.comments?</p>
<p>What I need is just a simple paginated django comments, for the Basic Blog application (from the Django Basic Apps) I used, using a <a href="http://code.djangoproject.com/wiki/UsingFreeComment" rel="nofollow">simple has_previous and has_next</a></p>
<p>I have copied the django.contrib.comments and tried modify the code but with no success. The code is pretty hard to understand (django/contrib/comments/templatetags/comments.py) because it consists of Node and Parser </p>
<p>here is my comments.html template I used for the Blog application:</p>
<pre><code>{% load comments markup %}
{% get_comment_list for object as comment_list %}
{% if comment_list %}
<div class="comments g_7 left">
<a name="comments"></a>
<div class="subtitle">Comments</div>
{% for comment in comment_list %}
{% if comment.is_public %}
<div class="comment g_6" id="c{{ comment.id }}">
<div class="comment_name g_6">
<div class="comment_count right">
<a name="c{{ comment.id }}" href="{{ comment.get_absolute_url }}" {% ifnotequal comment.person_name null %}title="Permalink to {{ comment.person_name }}'s comment"{% endifnotequal %} class="comment_count">{{ forloop.counter }}</a></div>
Wrote by <strong>{% if comment.user_url %}<a href="{{ comment.user_url }}">{{ comment.user_name }}</a>{% else %}{{ comment.user_name }}{% endif %}</strong> on {{ comment.submit_date|date:"F j, Y" }} - {{ comment.submit_date|date:"P" }}
</div>
<div class="comment_body g_6">{{ comment.comment|urlizetrunc:"60"|safe }}</div>
</div>
{% endif %}
{% endfor %}
<div class="clear"></div>
</div>
{% else %}
No comments yet.
{% endif %}
</code></pre>
<p>I think the problem lies in the <strong>get_comment_list</strong> templatetags :)</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1081596/django-serving-admin-media-files/1081706#1081706Comment by Adrian Liem on Django: serving ADMIN media filesAdrian Liem2009-07-05T14:53:43Z2009-07-05T14:53:43ZI think I'll try to recreate the project from scratch again using the conventional admin media examples :) thanks for the answershttp://stackoverflow.com/questions/1081596/django-serving-admin-media-files/1081746#1081746Comment by Adrian Liem on Django: serving ADMIN media filesAdrian Liem2009-07-05T14:51:59Z2009-07-05T14:51:59Zthanks for the answer, but it still doesn't work :) I typed <a href="http://localhost:8000/admin_media/a.gif" rel="nofollow">localhost:8000/admin_media/a.gif</a> in the broswer url and the result is:
Page not found: f:\python25\lib\site-packages\django/contrib/admin/media\a.gifhttp://stackoverflow.com/questions/1081596/django-serving-admin-media-files/1081706#1081706Comment by Adrian Liem on Django: serving ADMIN media filesAdrian Liem2009-07-05T14:51:05Z2009-07-05T14:51:05Zthanks for the answer, but it still doesn't work :)
I typed <a href="http://localhost:8000/static/media/a.gif" rel="nofollow">localhost:8000/static/media/a.gif</a> in the broswer url and the result is:
Page not found: f:\python25\lib\site-packages\django/contrib/admin/media\a.gifhttp://stackoverflow.com/questions/1040764/django-the-best-practice-to-implement-crud-outside-the-contrib-admin/1042942#1042942Comment by Adrian Liem on Django: The best practice to implement CRUD outside the contrib.adminAdrian Liem2009-06-26T10:25:25Z2009-06-26T10:25:25ZThanks Andy!
This is just what I'm looking for :) Both you and Harper has provided me excellent answers :)
I will try to play with the admin queryset then.
The last thing that puzzled me now is the multiple delete in the admin CRUD. But I guess that will be another story, heheh.
Thanks!http://stackoverflow.com/questions/1040764/django-the-best-practice-to-implement-crud-outside-the-contrib-admin/1040808#1040808Comment by Adrian Liem on Django: The best practice to implement CRUD outside the contrib.adminAdrian Liem2009-06-25T02:58:58Z2009-06-25T02:58:58Zthanks! I will experiment with that :)http://stackoverflow.com/questions/1028229/django-paginated-comments-is-there-any-existing-solutions/1028419#1028419Comment by Adrian Liem on Django Paginated Comments .. is there any existing solutions?Adrian Liem2009-06-23T06:17:48Z2009-06-23T06:17:48ZHi, thanks for the answer :)
Actually I'm looking for the specific comment pagination, that someone might have done previously (I suppose comment is a common feature and someone must've done the pagination in the comment solution) but I think the link you gave me can provide the workaround :)
I'll try to play with it. thanks!