On 4/5/06, PythonistL <[EMAIL PROTECTED]> wrote: > > Limodou,thank you for your reply. > I am sorry but I do not fully understand your answer > > You say that every user has his own blog but also that there is not > user > directory. But when I want to use my blog as a user, I have a different > URL, e.i.a directory is also different, from another user. > I would guess that every user must have a directory with some files.Or > am I wrong?
Because url can be create dynamicly, so every user can have different url, just like: http://djangocn.org/blog/limodou http://djangocn.org/blog/pythonlist And in django, I saved almost everything in database. All posts store in Entry table, and they can be grouped by user field. So if I want to show all posts of a user, I can: posts = user.entry_set.all() > > What is advantage of xmlrpc access that you implemented it? > There are some xmlrpc apis used in blog system, just like bloggerAPI, metaweblogAPI, and woodlog supports these standard xmlrpc api, so you can edit your blog in an offline blog editor, and you don't need to open a browser and sign in the blog system to edit your post. Using these tools, you can also easily backup your blog. And these apis also can be used in other purposes. > Thank you for your reply. > L. > -- I like python! My Blog: http://www.donews.net/limodou My Django Site: http://www.djangocn.org NewEdit Maillist: http://groups.google.com/group/NewEdit --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

