Malcom,

Thanks for replying.

Let me try to explain a little more.

When I said "get a list of XYZ training courses" I did mean getting
the Course objects back and doing a little logic with them.
Something I'd want on the XYZ main page would be a listing of upcoming
training courses for XYZ by location.

Other than that the XYZ site would be completely separate from the
training site.

I'd have urls like...

http://someserver/XYZ/announements/
http://someserver/XYZ/presentations/
http://someserver/XYZ/newsletters/
http://someserver/XYZ/contact/
http://someserver/XYZ/about/

For training I'd have

http://someserver/training/courses/
http://someserver/training/categories/
http://someserver/training/categories/mathcad/
http://someserver/training/categories/xyz/
http://someserver/training/offerings/
http://someserver/training/categories/

Again, I know this is dead simple if I have my training application
and my XYZ application in the same Django project.  Because it is so
dead simple I am wondering if it is the wrong thing to do.

What I'm asking is if this can this be done if they are in two
different Django projects using only Django (no web services / soap /
RCP)?


On Apr 30, 12:49 pm, Malcolm Tredinnick <malc...@pointy-stick.com>
wrote:
> On Thu, 2009-04-30 at 07:47 -0700, eric.frederich wrote:
> > So, I have been tasked with creating a new website within my company
> > for a new project.  Lets call the project XYZ (because just calling it
> > 'the project' is confusing since Django already has a concept of
> > projects).
>
> > The website will be your run of the mill project page with
> > announcements, newsletters, presentations etc.
> > One other thing they wanted was to be able to manage and track
> > training for XYZ.
>
> > We have been looking to change the way we track other training
> > (currently in a spreadsheet) for a while now.  I took the opportunity
> > and created a Django application for all training, not just for XYZ.
> > I'd like it to live athttp://someserver/training/.  From there they
> > could find training on AutoCad, Visio, MathCad, as well as XYZ.
>
> > For the XYZ project page, I'd like it to live athttp://someserver/XYZ/.
>
> > So now here's the question.  Should the training site and the XYZ site
> > both be projects?  If they're both projects, how could I get a list of
> > all XYZ training courses from the XYZ project page?  That would
> > involve 1 project pulling data from the other.
>
> > I could just have one Django project at '/' instead of one at '/
> > training' and one at '/XYZ'.  Doing that, getting a list of XYZ
> > training courses up on the XYZ project page would be easy.  Now is
> > having a single Django project hogging up '/' going to prevent me from
> > running other things like a MediaWiki or BugZilla?  Do I need to use
> > "http://someserver/django/training"; and "http://someserver/django/
> > XYZ"?
>
> You're asking (yourself) some good questions here. However, either I'm
> misunderstanding your explanation (and the word "projects" has become
> ambiguous, despite your efforts) or you're looking at possibly the wrong
> layer.
>
> The issue I'm having is with the simple statement "get a list of XYZ
> training courses". What does this really involve? Is it retrieving a
> list of objects from the database? Or is it a matter of constructing a
> bunch of links correctly?
>
> In short, I'm not quite sure what the difficult part of this process
> potentially would be. I don't mean that I cannot imagine anything would
> be difficult. Rather, I'm wondering which part of it is the particular
> obstacle you're trying to overcome; I don't have enough information to
> understand what the hard part is, because I don't understand the
> requirements.
>
> Regards,
> Malcolm
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to