Re: django / django cms + responsive

2013-03-14 Thread Anurag Chourasia
Look at

1. Twitter Bootstrap. http://twitter.github.com/bootstrap/

2. Foundation Zurb. http://foundation.zurb.com/

Regards,
Anurag
On Mar 14, 2013 7:03 AM, "Frank Bieniek" <frank.bien...@produktlaunch.de>
wrote:

> Hi Guys,
> what are your preferred apps to turn django or django cms into a
> responsive website?
>
> What are your recipes?
>
> Thanks
> Frank
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to 
> django-users+unsubscribe@**googlegroups.com<django-users%2bunsubscr...@googlegroups.com>
> .
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at 
> http://groups.google.com/**group/django-users?hl=en<http://groups.google.com/group/django-users?hl=en>
> .
> For more options, visit 
> https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out>
> .
>
>
>

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




django / django cms + responsive

2013-03-14 Thread Frank Bieniek

Hi Guys,
what are your preferred apps to turn django or django cms into a 
responsive website?


What are your recipes?

Thanks
Frank

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




Re: Choosing a Django-based CMS

2012-08-08 Thread Thomas Guettler



Am 05.08.2012 09:30, schrieb Sean O'Brian:

Hi!
I'm using Django CMS for a few of weeks and I like it. But there's one problem, 
which I already ran into: I can't extend
Page model easily.
I found one tutorial <http://ilian.i-n-i.org/extending-django-cms-page-model/>, 
but this not seem to be very
developer-friendly and author said that it's produces overwhelming SQL queries.
There's a lot of comparisons in the web, but most of them are old, and as I 
noticed on github, the main competitors
(FeinCMS and Mezzazine) was actively developed last months.
Can you advice a mature and extensible CMS? The main requirement is extending 
pages, for avatars for example.


Django CMS is used by many people. Please explain your problem on the django-cms mailing list. I guess it can be solved 
easily.


The above tutorial suggests to use an own model with a 1:1 relation-ship to the 
page model. I use this pattern often if
I want to extend an app. It is developer friendly and you won't notice the fact 
that there is one more SQL query.

Regards,
  Thomas


--
Thomas Guettler, http://www.thomas-guettler.de/
E-Mail: guettli (*) thomas-guettler + de

--
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: Choosing a Django-based CMS

2012-08-07 Thread Matthias Kestenholz
Hi Sean

On Tue, Aug 7, 2012 at 5:52 AM, Sean O'Brian  wrote:
> Thanks all.
> As I get, I should try both Mezzazine and FeinCMS.
> May be they're have another advantages and disadvantages.
>

(Disclaimer: I'm one of the main developers of FeinCMS.)

The best place to ask questions about FeinCMS would be the
django-feincms mailing list. It's true that development isn't very
active this month (yet), a lot happened since the last release though.
You can see the breakdown here:

http://feincms-django-cms.readthedocs.org/en/next/releases/1.7.html

Development happens on the `next` branch in the github repository.
`master` normally does not get much activity since `master` tracks the
official maintenance branch (v1.6.x at the moment).


Thanks,
Matthias

-- 
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: Choosing a Django-based CMS

2012-08-06 Thread Sean O'Brian
Thanks all.
As I get, I should try both Mezzazine and FeinCMS.
May be they're have another advantages and disadvantages.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/ppajMKxCRdoJ.
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: Choosing a Django-based CMS

2012-08-06 Thread Gour
On Sun, 5 Aug 2012 00:30:57 -0700 (PDT)
Sean O'Brian  wrote:

> Can you advice a mature and extensible CMS? The main
> requirement is extending pages, for avatars for example.

I was hoping to replace PHP sites with some web2py CMS, but at the end
have decided to go with Django and deploy Mezzanine which is really in
a good shape.


SIncerely,
Gour

-- 
One who sees inaction in action, and action in inaction, 
is intelligent among men, and he is in the transcendental position, 
although engaged in all sorts of activities.

http://atmarama.net | Hlapicina (Croatia) | GPG: 52B5C810


signature.asc
Description: PGP signature


Re: Choosing a Django-based CMS

2012-08-06 Thread Gabriel - Iulian Dumbrava
I did use FeinCMS to extend the Page model and it works pretty well.

Gabriel

duminică, 5 august 2012, 10:30:57 UTC+3, Sean O'Brian a scris:
>
> Hi!
> I'm using Django CMS for a few of weeks and I like it. But there's one 
> problem, which I already ran into: I can't extend Page model easily.
> I found one 
> tutorial<http://ilian.i-n-i.org/extending-django-cms-page-model/>, 
> but this not seem to be very developer-friendly and author said that it's 
> produces overwhelming SQL queries.
> There's a lot of comparisons in the web, but most of them are old, and as 
> I noticed on github, the main competitors (FeinCMS and Mezzazine) was 
> actively developed last months.
> Can you advice a mature and extensible CMS? The main requirement is 
> extending pages, for avatars for example.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/2OGekwLFd3YJ.
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: Choosing a Django-based CMS

2012-08-05 Thread Stephen McDonald


On Aug 5, 5:30 pm, Sean O'Brian <chuw...@gmail.com> wrote:
> Hi!
> I'm using Django CMS for a few of weeks and I like it. But there's one
> problem, which I already ran into: I can't extend Page model easily.
> I found one tutorial<http://ilian.i-n-i.org/extending-django-cms-page-model/>,
> but this not seem to be very developer-friendly and author said that it's
> produces overwhelming SQL queries.
> There's a lot of comparisons in the web, but most of them are old, and as I
> noticed on github, the main competitors (FeinCMS and Mezzazine) was
> actively developed last months.
> Can you advice a mature and extensible CMS? The main requirement is
> extending pages, for avatars for example.

Hi Sean,

I'm the lead developer of Mezzanine. I can't offer too much of a
comparison as I'm only very familiar with Mezzanine itself, but
extending Mezzanine's Page model is a foundational concept in
Mezzanine - one that it's specifically designed to do. Have a read
here for more info:

http://mezzanine.jupo.org/docs/content-architecture.html#creating-custom-content-types

If you have any further questions about Mezzanine, please hit up the
mailing list:

https://groups.google.com/group/mezzanine-users

Cheers,
Steve

-- 
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.



Choosing a Django-based CMS

2012-08-05 Thread Sean O'Brian
Hi!
I'm using Django CMS for a few of weeks and I like it. But there's one 
problem, which I already ran into: I can't extend Page model easily.
I found one tutorial<http://ilian.i-n-i.org/extending-django-cms-page-model/>, 
but this not seem to be very developer-friendly and author said that it's 
produces overwhelming SQL queries.
There's a lot of comparisons in the web, but most of them are old, and as I 
noticed on github, the main competitors (FeinCMS and Mezzazine) was 
actively developed last months.
Can you advice a mature and extensible CMS? The main requirement is 
extending pages, for avatars for example.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/Emn2BWfBPL8J.
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: Anyone got experience of using django-fiber cms?

2011-05-25 Thread Dave Sayer
On 18 May 2011 19:45, growlf <grow...@gmail.com> wrote:
> Actually, Django-CMS does have front-end editing, but it seems that
> the latest edition is a bit wonky atm with regards to the interface
> and the documentation on actually using it.  I think the developers
> are moving towards a more stable MPTT solution, and this motion seems
> to be the cause.
>
> I have used both, and have found that while the user interface of
> Django-Fiber is more eye-pleasing, it is lacking many of the features
> that Django-CMS offers.  It also does not have the sizable plug-in
> list for immediate additions of functionality of Django-CMS. Nor does
> it seem to be as easily extended to include an existing Django app.
> This last issue is a total deal breaker for me, at least.
>
> I would suggest using Django-CMS and adding your fixes, plug-ins and
> documentation to the project rather than home-rolling yet another
> CMS.  Unless, that is, you have a pretty good idea of what you want
> and it is definitely not something that can be added to an existing
> system.  This would give you far more options and maintainability.
> The Django-CMS guys are very active and responsive to outside input
> and help, too.
>
> Just my two-cents.
>

Growlf,

Thanks for your input on this. Really appreciate it and I am sorry for
my delayed response - I completely missed your reply until today.

> I would suggest using Django-CMS and adding your fixes, plug-ins and
> documentation to the project rather than home-rolling yet another
> CMS.
I agree with you on this. Seems a little foolish to attempt to
reinvent the wheel when there are plenty of options about.

I ended up ditching fiber pretty quickly due to lack of documentation
and ended up choosing FeinCMS, which has been great, although lacking
in some areas - either that or my knowledge/understanding of the docs
is lacking to the point where I am coming to a grinding halt with the
MPTT side of things.

Anyway, cheers again for your response.

Dave

-- 
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: Anyone got experience of using django-fiber cms?

2011-05-18 Thread growlf
Actually, Django-CMS does have front-end editing, but it seems that
the latest edition is a bit wonky atm with regards to the interface
and the documentation on actually using it.  I think the developers
are moving towards a more stable MPTT solution, and this motion seems
to be the cause.

I have used both, and have found that while the user interface of
Django-Fiber is more eye-pleasing, it is lacking many of the features
that Django-CMS offers.  It also does not have the sizable plug-in
list for immediate additions of functionality of Django-CMS. Nor does
it seem to be as easily extended to include an existing Django app.
This last issue is a total deal breaker for me, at least.

I would suggest using Django-CMS and adding your fixes, plug-ins and
documentation to the project rather than home-rolling yet another
CMS.  Unless, that is, you have a pretty good idea of what you want
and it is definitely not something that can be added to an existing
system.  This would give you far more options and maintainability.
The Django-CMS guys are very active and responsive to outside input
and help, too.

Just my two-cents.

On May 5, 3:29 am, Dave Sayer <d...@bathdesign.co.uk> wrote:
> Hi,
>
> I am currently deliberating over writing a bespoke CMS or using a
> ready rolled one for a client. I have limited experience with
> Python/Django beyond the standard admin interface and building a
> pretty simple photo portfolio site.
>
> I have tried django-cms and didn't like the functionality - didn't
> seem very intuitive for a user with limited tech knowledge. So now, I
> am looking at django-fiber but again, the backend admin seems a little
> lacking in intuitiveness for the average joe user. I do, however, like
> the fronend editing functionality. It just seems a little basic for my
> needs and the documentation is pretty scant.
>
> Does anyone have any experience of using fiber and have any example
> sites running on this?
>
> Cheers,
>
> Dave
> --
> ---
> Dave Sayer | Bath Design
> Web design & development with standards
> ---
> mobile: +44 (0)7702787436
> email: d...@bathdesign.co.uk
> web:http://bathdesign.co.uk
> photography:http://davesayer.com
> twitter:http://twitter.com/sweet_grass
> ---

-- 
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.



Anyone got experience of using django-fiber cms?

2011-05-05 Thread Dave Sayer
Hi,

I am currently deliberating over writing a bespoke CMS or using a
ready rolled one for a client. I have limited experience with
Python/Django beyond the standard admin interface and building a
pretty simple photo portfolio site.

I have tried django-cms and didn't like the functionality - didn't
seem very intuitive for a user with limited tech knowledge. So now, I
am looking at django-fiber but again, the backend admin seems a little
lacking in intuitiveness for the average joe user. I do, however, like
the fronend editing functionality. It just seems a little basic for my
needs and the documentation is pretty scant.

Does anyone have any experience of using fiber and have any example
sites running on this?

Cheers,

Dave
-- 
---
Dave Sayer | Bath Design
Web design & development with standards
---
mobile: +44 (0)7702787436
email: d...@bathdesign.co.uk
web: http://bathdesign.co.uk
photography: http://davesayer.com
twitter: http://twitter.com/sweet_grass
---

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-25 Thread Rehmetjan Tursun
Thanks Nick.
I already found a CMS for my Newspaper.
it's not EllingtonCMS , maybe better than it :)

ArmstrongCMS  Will released June, 2011. and I 
will wait for it.

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-24 Thread NickH


On Mar 23, 9:09 am, Kenneth Gonsalves <law...@thenilgiris.com> wrote:
> On Wed, 2011-03-23 at 03:57 -0700, Rehmetjan wrote:
> > Hello all, I am new to django.
> > I am heard about Django is comes from a Newspaper group, but never
> > found a
> > Newspaper CMS. (Not meant Django-CMS)
> > PHP has many Newspaper CMS like Joomla! and Drupal. If anyone tell me
> > where
> > can I find Open source CMS for Newspaper written in Django?
>
> django itself?
> --
> regards
> KGhttp://lawgon.livejournal.com
> Coimbatore LUG roxhttp://ilugcbe.techstud.org/


There are a number of CMS options for django.

You can find a nice comparison here:
http://djangopackages.com/grids/g/cms/

I've used Mezzanine and it's very good, but might not be the best for
a large newspaper site.

It all depends on your needs, so I'd probably try out a couple of the
CMS's on that list to figure which you like best and then customize it
from there to fit your needs.

-Nick

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-24 Thread km
try https://www.django-cms.org/
KM

On 3/24/11, Rehmetjan Tursun <rehmetjan.tur...@gmail.com> wrote:
> Thanks Shacker, this is really helped me. this is really what I want to.
> Ellington is Commercial, not for free. Armstrong CMS is good and open
> source.
> but it says it will released at June 2011. and I will wait :)
>
>
> On Thu, Mar 24, 2011 at 12:32 AM, shacker <shac...@birdhouse.org> wrote:
>
>> Django is used by a lot of newspaper / news sites, but they generally
>> use it to build the CMS that fits their exact needs. That's kind of
>> the point of using a framework like Django rather than a CMS like
>> Drupal - you don't suffer from the "opinions" of the CMS, and instead
>> use the tools provided (plus re-usable apps) to build a system that
>> fits your org perfectly.
>>
>> That said, newspapers do have a lot of needs in common, and Ellington
>> has been the big commercial Django CMS tuned to that need. But the
>> Knight Foundation, who have sponsored innovation and advancement in
>> news publication for decades, have just awarded nearly a million
>> dollars to the Bay Citizen and the Texas Tribune (two big Django news
>> shops) to develop an open source Django-based CMS tuned to news needs:
>>
>>
>> http://www.niemanlab.org/2011/03/wordpress-for-news-orgs-knight-gives-bay-citizen-texas-tribune-975000-for-open-source-cms/
>>
>> Until that's release, your best bet is to do what all news orgs using
>> Django do - use it to build the CMS you need.
>>
>> Scot
>>
>> --
>> 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.
>>
>>
>
>
> --
> *Rehmetjan Tursun*
>
> --
> 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.
>
>

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-24 Thread Rehmetjan Tursun
Thanks Shacker, this is really helped me. this is really what I want to.
Ellington is Commercial, not for free. Armstrong CMS is good and open
source.
but it says it will released at June 2011. and I will wait :)


On Thu, Mar 24, 2011 at 12:32 AM, shacker <shac...@birdhouse.org> wrote:

> Django is used by a lot of newspaper / news sites, but they generally
> use it to build the CMS that fits their exact needs. That's kind of
> the point of using a framework like Django rather than a CMS like
> Drupal - you don't suffer from the "opinions" of the CMS, and instead
> use the tools provided (plus re-usable apps) to build a system that
> fits your org perfectly.
>
> That said, newspapers do have a lot of needs in common, and Ellington
> has been the big commercial Django CMS tuned to that need. But the
> Knight Foundation, who have sponsored innovation and advancement in
> news publication for decades, have just awarded nearly a million
> dollars to the Bay Citizen and the Texas Tribune (two big Django news
> shops) to develop an open source Django-based CMS tuned to news needs:
>
>
> http://www.niemanlab.org/2011/03/wordpress-for-news-orgs-knight-gives-bay-citizen-texas-tribune-975000-for-open-source-cms/
>
> Until that's release, your best bet is to do what all news orgs using
> Django do - use it to build the CMS you need.
>
> Scot
>
> --
> 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.
>
>


-- 
*Rehmetjan Tursun*

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-23 Thread shacker
Django is used by a lot of newspaper / news sites, but they generally
use it to build the CMS that fits their exact needs. That's kind of
the point of using a framework like Django rather than a CMS like
Drupal - you don't suffer from the "opinions" of the CMS, and instead
use the tools provided (plus re-usable apps) to build a system that
fits your org perfectly.

That said, newspapers do have a lot of needs in common, and Ellington
has been the big commercial Django CMS tuned to that need. But the
Knight Foundation, who have sponsored innovation and advancement in
news publication for decades, have just awarded nearly a million
dollars to the Bay Citizen and the Texas Tribune (two big Django news
shops) to develop an open source Django-based CMS tuned to news needs:

http://www.niemanlab.org/2011/03/wordpress-for-news-orgs-knight-gives-bay-citizen-texas-tribune-975000-for-open-source-cms/

Until that's release, your best bet is to do what all news orgs using
Django do - use it to build the CMS you need.

Scot

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-23 Thread Kenneth Gonsalves
On Wed, 2011-03-23 at 12:56 +0100, Matthias Kestenholz wrote:
> That wasn't very helpful.
> 
> He could tell it himself, but you should really read the messages you
> are replying to. 

but then he says drupal and joomla are newspaper cmss - they are not.
Maybe ellington, but that is not free.
-- 
regards
KG
http://lawgon.livejournal.com
Coimbatore LUG rox
http://ilugcbe.techstud.org/

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-23 Thread Kenneth Gonsalves
On Wed, 2011-03-23 at 03:57 -0700, Rehmetjan wrote:
> Hello all, I am new to django.
> I am heard about Django is comes from a Newspaper group, but never
> found a 
> Newspaper CMS. (Not meant Django-CMS)
> PHP has many Newspaper CMS like Joomla! and Drupal. If anyone tell me
> where 
> can I find Open source CMS for Newspaper written in Django?
> 
> 

django itself?
-- 
regards
KG
http://lawgon.livejournal.com
Coimbatore LUG rox
http://ilugcbe.techstud.org/

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-23 Thread Matthias Kestenholz
On Wed, Mar 23, 2011 at 12:31 PM, Mika Sjöman <mikasjo...@gmail.com> wrote:
> django-cms.org
>

That wasn't very helpful.

He could tell it himself, but you should really read the messages you
are replying to.

Quoting Rehmetjan:

> I am heard about Django is comes from a Newspaper group, but never found
> a Newspaper CMS. (Not meant Django-CMS)


Regards

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-23 Thread Mika Sjöman
django-cms.org

//mika

On Wed, Mar 23, 2011 at 7:14 PM, Rehmetjan Tursun <
rehmetjan.tur...@gmail.com> wrote:

> I Googled many times, not a beautifull answer (except
> http://code.google.com/p/crimson-online/ ) Demo:
> http://www.thecrimson.com/
>
> Do you know others?
>

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-23 Thread Rehmetjan Tursun
I Googled many times, not a beautifull answer (except 
http://code.google.com/p/crimson-online/ ) Demo: http://www.thecrimson.com/

Do you know others?

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-23 Thread Mika Sjöman
Hi

What about trying google first before asking? Try to google>  Django cms.

// mika

On Wed, Mar 23, 2011 at 7:03 PM, Rehmetjan <rehmetjan.tur...@gmail.com>wrote:

> I mean a out-of-box ready for production newspaper CMS. thanks
>
> --
> 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.
>

-- 
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: Is there any Open Source Django Newspaper CMS?

2011-03-23 Thread Rehmetjan
I mean a out-of-box ready for production newspaper CMS. thanks

-- 
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.



Is there any Open Source Django Newspaper CMS?

2011-03-23 Thread Rehmetjan
Hello all, I am new to django.
I am heard about Django is comes from a Newspaper group, but never found a 
Newspaper CMS. (Not meant Django-CMS)
PHP has many Newspaper CMS like Joomla! and Drupal. If anyone tell me where 
can I find Open source CMS for Newspaper written in Django?

Thanks

-- 
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: how-to-design-a-django-driven-cms-hosting-like-solution

2011-02-28 Thread delegbede
Check out Practical Django Projects by James Bennette. 
Sent from my BlackBerry wireless device from MTN

-Original Message-
From: BearCode <bear...@gmail.com>
Sender: django-users@googlegroups.com
Date: Sat, 26 Feb 2011 14:50:27 
To: Django users<django-users@googlegroups.com>
Reply-To: django-users@googlegroups.com
Subject: how-to-design-a-django-driven-cms-hosting-like-solution

Hi to all,

This is my first posting here, so I apologize up-front if posting a
link to stackoverflow is not how things are done around here...

I came up with this question, regarding the best way to go about
designing a system that's similar to a CMS-hosting system-

http://stackoverflow.com/questions/5127791/how-to-design-a-django-driven-cms-hosting-like-solution

any help would be appreciated.
thanks,
bearcode

-- 
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.

-- 
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.



how-to-design-a-django-driven-cms-hosting-like-solution

2011-02-26 Thread BearCode
Hi to all,

This is my first posting here, so I apologize up-front if posting a
link to stackoverflow is not how things are done around here...

I came up with this question, regarding the best way to go about
designing a system that's similar to a CMS-hosting system-

http://stackoverflow.com/questions/5127791/how-to-design-a-django-driven-cms-hosting-like-solution

any help would be appreciated.
thanks,
bearcode

-- 
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: django page cms get_absolute_url return an empty strings andURL issues.

2010-10-26 Thread tricks...@googlemail.com
Sorted. The get absolute url had not been set and the ordering of urls
was incorrect.

-- 
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.



django page cms get_absolute_url return an empty strings andURL issues.

2010-10-25 Thread tricks...@googlemail.com
I am having issues with get_absolute_url in my django templates when
using django page cms. It returns an empty string and does not link to
my required page.

I have the following Models, URLs templates and views

Models

class Body(models.Model):
...
url = models.SlugField(unique=True, help_text='---')

urls

(r'^news/', include('news.urls_news')),..

url(r'^/(?P[\w\-]+)/$', 'news_view', name='news_view'),

View

def news_view(request, url):
new = get_object_or_404(Body, url=url)
return render_to_response('news/view.html', {
'news': news
}, context_instance=RequestContext(request))

Template

   {{ news.title }}

the following code in my template returns the string I desire however
this does to direct to my html page

   {{ news.title }}

I know my everything links to the correct files because I have other
views that work correctly. Could somebody please point me in the
correct direction as to why get_absolute_url is not working correctly
and why {{ news.url }} does not direct to the correct page. I am sure
it has something to do with my urls.py however I am not certain.
Please bear with me I am new to django. All help is greatly
appreciated.

-- 
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: How does buildout determine paths needed? (for django-page-cms)

2010-06-29 Thread John Griessen

Bill Freeman wrote:

Not buildout specific, but, if I recall correctly, the pages egg
(among others) is not
built in such a way that the media files get included (in setup.py the
function that
goes and discovers the .py files to install only does .py files, other
files must be
added more painfully, and a lot of package maintainers don't do it, and may not
know, because they typically do a VCS checkout or install from a tar,
rather than
from the egg).  Last time I installed pages, after using pip install,
I had to get the
tar and unpack it to get the media files.  I don't recall if that
involved templates, or
just css, images, and js, but I wouldn't be surprised.  The pages templates are
examples, IIRC, and you make your own to stick in
project_root/templates/pages/ .


Hmmm  the developer of django-page-cms does not use buildout, so I tried
a buildout with django-page-cms as source and it behaved differently.
I still needed project_root/media/ and subdirs, but it started finding
templates.

Thanks for the hints.

John

--
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: How does buildout determine paths needed? (for django-page-cms)

2010-06-29 Thread Bill Freeman
Not buildout specific, but, if I recall correctly, the pages egg
(among others) is not
built in such a way that the media files get included (in setup.py the
function that
goes and discovers the .py files to install only does .py files, other
files must be
added more painfully, and a lot of package maintainers don't do it, and may not
know, because they typically do a VCS checkout or install from a tar,
rather than
from the egg).  Last time I installed pages, after using pip install,
I had to get the
tar and unpack it to get the media files.  I don't recall if that
involved templates, or
just css, images, and js, but I wouldn't be surprised.  The pages templates are
examples, IIRC, and you make your own to stick in
project_root/templates/pages/ .

Bill

On Tue, Jun 29, 2010 at 8:56 AM, John Griessen <j...@industromatic.com> wrote:
> I made a buildout with the config below that didn't work right and
> found it needed to have some extra paths added.
>
> Here is the extra path I needed:
>
>  '/home/john/buildout/eggs/django_page_cms-1.1.3-py2.6.egg',
>  '/home/john/buildout/eggs/django_page_cms-1.1.3-py2.6.egg/pages/templates/pages',
>
> pages was being found to not have the contents wanted.  Is having a dir
> pages
> and pages/templates/pages a naming problem for buildout?  If a search
> is being done for * in pages, it might stop short when the top level pages
> is found.
>
> Hints, suggestions how to resolve this appreciated.
> Meanwhile, every time I run buildout, I'll need to copy an paste that extra
> path...
>
> John
> -buildout.cfg
> [buildout]
> eggs-directory = /home/john/buildout/eggs
> extensions = mr.developer
>
> parts =
>    django
>
> eggs =
>    mock
>    django-notification
>    django-page-cms
>    django-haystack
>    django-staticfiles
>    django-messages
>    django-mptt-2
>    whoosh
>
> [django]
> recipe = djangorecipe
> version = 1.2.1
> settings = development
> wsgi = true
> eggs = ${buildout:eggs}
> project = industromatic_com
> buildout.cfg--
>
> ___
> Distutils-SIG maillist  -  distutils-...@python.org
> http://mail.python.org/mailman/listinfo/distutils-sig
>
> --
> 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.



How does buildout determine paths needed? (for django-page-cms)

2010-06-29 Thread John Griessen

I made a buildout with the config below that didn't work right and
found it needed to have some extra paths added.

Here is the extra path I needed:

  '/home/john/buildout/eggs/django_page_cms-1.1.3-py2.6.egg',
  
'/home/john/buildout/eggs/django_page_cms-1.1.3-py2.6.egg/pages/templates/pages',

pages was being found to not have the contents wanted.  Is having a dir pages
and pages/templates/pages a naming problem for buildout?  If a search
is being done for * in pages, it might stop short when the top level pages is 
found.

Hints, suggestions how to resolve this appreciated.
Meanwhile, every time I run buildout, I'll need to copy an paste that extra 
path...

John
-buildout.cfg
[buildout]
eggs-directory = /home/john/buildout/eggs
extensions = mr.developer

parts =
django

eggs =
mock
django-notification
django-page-cms
django-haystack
django-staticfiles
django-messages
django-mptt-2
whoosh

[django]
recipe = djangorecipe
version = 1.2.1
settings = development
wsgi = true
eggs = ${buildout:eggs}
project = industromatic_com
buildout.cfg--

___
Distutils-SIG maillist  -  distutils-...@python.org
http://mail.python.org/mailman/listinfo/distutils-sig

--
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: Django or CMS.

2010-02-05 Thread Kenneth Gonsalves
On Friday 05 Feb 2010 5:39:47 pm Rob B (uk) wrote:
> I can't seem to find a decent CMS that would fit the criteria.  What
> are people's opinions / experiences with CMS'?  What would you
> recommend?  Thanks
> 

although I am a django fanatic, in this case I would point you to Plone - as 
long as you do not want extensive customisation, plone fits your requirements 
out of the box. I left Plone as I found it is not suitable for non CMS use - 
as a CMS it has no peer.
-- 
regards
Kenneth Gonsalves
Senior Project Officer
NRC-FOSS
http://nrcfosshelpline.in/web/

-- 
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: Django or CMS.

2010-02-05 Thread DJ Ango
Dude django-cms is great. Has most of that stuff. Try it out, my non-
tech buddies use it easily.
http://www.django-cms.org/

On Feb 5, 4:09 am, "Rob B (uk)" <robtot...@googlemail.com> wrote:
> The design agency I work for are looking into CMS options.  Being a
> Django man myself I'm hoping to convince them to build one using
> Django.
>
> Requirements are roughly:
>
> Page control (creation/drafts/published/withdrawn/deletion)
> Page revisions
> View draft pages on site for testing
> In-place editing for simple text updates
> Categories
> Editable Navigation
> Wysiwyg editors
> Image upload (mass select)
> Tagging (pages, images, clients)
> Smart site search
> Limiting user publishing rights
>
> I can't seem to find a decent CMS that would fit the criteria.  What
> are people's opinions / experiences with CMS'?  What would you
> recommend?  Thanks

-- 
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: Django or CMS.

2010-02-05 Thread Jonas Obrist
Have a look at django-cms [1], it should be able to do what you need. 
And if there's some extra functionality you need it's very easy to 
program it.


[1] http://www.django-cms.org


Rob B (uk) wrote:

The design agency I work for are looking into CMS options.  Being a
Django man myself I'm hoping to convince them to build one using
Django.

Requirements are roughly:

Page control (creation/drafts/published/withdrawn/deletion)
Page revisions
View draft pages on site for testing
In-place editing for simple text updates
Categories
Editable Navigation
Wysiwyg editors
Image upload (mass select)
Tagging (pages, images, clients)
Smart site search
Limiting user publishing rights

I can't seem to find a decent CMS that would fit the criteria.  What
are people's opinions / experiences with CMS'?  What would you
recommend?  Thanks

  


--
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: Django or CMS.

2010-02-05 Thread Vranesic Ogi
Am Freitag 05 Februar 2010 13:18:47 schrieb Gonzalo Delgado:
> El 05/02/10 09:09, Rob B (uk) escribió:
> > The design agency I work for are looking into CMS options.  Being a
> > Django man myself I'm hoping to convince them to build one using
> > Django.
> >
> > Requirements are roughly:
> >
> > Page control (creation/drafts/published/withdrawn/deletion)
> > Page revisions
> > View draft pages on site for testing
> > In-place editing for simple text updates
> > Categories
> > Editable Navigation
> > Wysiwyg editors
> > Image upload (mass select)
> > Tagging (pages, images, clients)
> > Smart site search
> > Limiting user publishing rights
> >
> > I can't seem to find a decent CMS that would fit the criteria.  What
> > are people's opinions / experiences with CMS'?  What would you
> > recommend?  Thanks
> 
> I have little experience with CMSs myself, where I work we face some of
> the requirements you mention and we pretty much build what would be
> specialized CMSs using Django and opensource Django apps.
> 
> I can suggest you take a look at these links:
> 
> http://code.djangoproject.com/wiki/CMSAppsComparison
> http://pinaxproject.com/
> 
> 
> Best!
> 

Hi Gonzalo 

 I have a lot experience with CMS Plone on server Zope, which are written in 
Python like Django.
I believe, this CMS can fullfill all of requirements, you mentioned.
So if you like programming with python, this would be perhaps a good choice.

Greetings
Ogi

-- 
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: Django or CMS.

2010-02-05 Thread Gonzalo Delgado
El 05/02/10 09:09, Rob B (uk) escribió:
> The design agency I work for are looking into CMS options.  Being a
> Django man myself I'm hoping to convince them to build one using
> Django.
>
> Requirements are roughly:
>
> Page control (creation/drafts/published/withdrawn/deletion)
> Page revisions
> View draft pages on site for testing
> In-place editing for simple text updates
> Categories
> Editable Navigation
> Wysiwyg editors
> Image upload (mass select)
> Tagging (pages, images, clients)
> Smart site search
> Limiting user publishing rights
>
> I can't seem to find a decent CMS that would fit the criteria.  What
> are people's opinions / experiences with CMS'?  What would you
> recommend?  Thanks
>   

I have little experience with CMSs myself, where I work we face some of
the requirements you mention and we pretty much build what would be
specialized CMSs using Django and opensource Django apps.

I can suggest you take a look at these links:

http://code.djangoproject.com/wiki/CMSAppsComparison
http://pinaxproject.com/


Best!

-- 
Gonzalo Delgado 

-- 
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.



Django or CMS.

2010-02-05 Thread Rob B (uk)
The design agency I work for are looking into CMS options.  Being a
Django man myself I'm hoping to convince them to build one using
Django.

Requirements are roughly:

Page control (creation/drafts/published/withdrawn/deletion)
Page revisions
View draft pages on site for testing
In-place editing for simple text updates
Categories
Editable Navigation
Wysiwyg editors
Image upload (mass select)
Tagging (pages, images, clients)
Smart site search
Limiting user publishing rights

I can't seem to find a decent CMS that would fit the criteria.  What
are people's opinions / experiences with CMS'?  What would you
recommend?  Thanks

-- 
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: Django based CMS

2008-07-06 Thread chefsmart

More cms and other apps are listed on http://djangoplugables.com/

On Jul 6, 1:45 pm, MiloZ <[EMAIL PROTECTED]> wrote:
> If you are searching for a simple cms, you can try 
> this:http://code.google.com/p/django-simplecms/
>
> On Jul 5, 1:09 pm, Fernando Rodríguez <[EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> > Is there any open source django based cms you would recommend?  Th
> > eonlyone I've seen so far is PyLucid. What else is there?
>
> > Thanks!
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django based CMS

2008-07-06 Thread MiloZ

If you are searching for a simple cms, you can try this:
http://code.google.com/p/django-simplecms/


On Jul 5, 1:09 pm, Fernando Rodríguez <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Is there any open source django based cms you would recommend?  Th
> eonlyone I've seen so far is PyLucid. What else is there?
>
> Thanks!
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django based CMS

2008-07-05 Thread Milan Andric

On Sat, Jul 5, 2008 at 6:09 AM, Fernando Rodríguez <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> Is there any open source django based cms you would recommend?  Th
> eonlyone I've seen so far is PyLucid. What else is there?
>
> Thanks!

There's a couple of them available on code.google.com and elsewhere on
the net. But most of the time you use the framework to build a custom
CMS so instead of finding CMSs you will find applications.  That is
the general pattern, people release apps and a CMS is just a django
project using a specific set of installed apps, some custom and some
maintained elsewhere.

One interesting "CMS" I ran into lately is Pinax,
http://pinax.hotcluboffrance.com/ .

--
Milan

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django based CMS

2008-07-05 Thread Bobby Roberts


> Is there any open source django based cms you would recommend?  Th
> eonlyone I've seen so far is PyLucid. What else is there?

I'm a noob but won't installing flat pages handle that for you?
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Django based CMS

2008-07-05 Thread Fernando Rodríguez

Hi,

Is there any open source django based cms you would recommend?  Th
eonlyone I've seen so far is PyLucid. What else is there?

Thanks!



--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Using django for CMS stuff

2007-02-16 Thread yary

On Feb 14, 12:12 pm, "walterbyrd" <[EMAIL PROTECTED]> wrote:
> CMSes like joomla and drupal have a rich assortment of plugins/modules/
> extensions for stuff like: blogs, forums, galleries, news aggregators,
> ecommerce, document management, and so on.
>
> How difficult would it be to get that sort of functionallity from
> dango?

You can't download many of those, at least in polished form, though
you can write any of them. You also can say the same about any web
framework: Turbogears, Pylons, Rails, Catalyst... You'll probably want
object-level permissions, and using the Django branch for that would
be helpful for all. But Django (and Turbogears, Pylons, Rails,
Catalyst...) are not like Joomla and Drupal- the former make it easier
to write web apps, the latter are web apps.


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Using django for CMS stuff

2007-02-15 Thread [EMAIL PROTECTED]

I'm going to respectfully disagree with Kenneth. Django CAN be just
the thing, even if you're not a programmer. The things you can
accomplish just with generic views are mind-boggling.

I'm not much of a programmer (as is evident by many of my posts here)
but I chose Django over an off-the-shelf CMS because none of the off-
the-shelf systems would do what I wanted, how I wanted. Not even
close. For my purposes, I always found like I was shoving a square peg
in a round hole. I also found the admin sections to be almost-
universally clunky, and the output code to be horrible.

Anyway, I managed to muddle through. Some things, like a blog or news
aggregator, are trivially easy to build in Django. Other things, like
e-commerce, are going to be more difficult. Many things have already
been built and are available for your use.

Figure out what YOU need. If an off-the-shelf system meets them, that
may be the way to go. If you feel like you're fighting with the tool,
you probably need better tools. Django is like a big Snap-On truck
just for you.



On Feb 14, 3:43 pm, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:
> On 15-Feb-07, at 1:49 AM, [EMAIL PROTECTED] wrote:
>
> > Django is very good for CMS like apps. I develop Diamanda Wiki and
> > MyghtyBoard forum (www.rkblog.rk.edu.pl) and each app has it's own
> > folder for code/templates and can be rather easily used in other
> > projects :)
>
> if you want a readymade cms with all those goodies ready to go - then
> django will not suit. In django, to a greater or lesser extent, you
> have to either roll your own or modify code written by others (if
> they allow). So and end user of a CMS (ie a non-programmer who is
> setting up his own CMS) would be happier with something like plone
> (or mambo, jumbo etc). Django is meant for programmers who would like
> to have a finely tuned, customised site to offer  to the enduser.
>
> --
>
> regards
> kghttp://lawgon.livejournal.comhttp://nrcfosshelpline.in/web/


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Using django for CMS stuff

2007-02-14 Thread Kenneth Gonsalves


On 15-Feb-07, at 1:49 AM, [EMAIL PROTECTED] wrote:

> Django is very good for CMS like apps. I develop Diamanda Wiki and
> MyghtyBoard forum (www.rkblog.rk.edu.pl) and each app has it's own
> folder for code/templates and can be rather easily used in other
> projects :)

if you want a readymade cms with all those goodies ready to go - then  
django will not suit. In django, to a greater or lesser extent, you  
have to either roll your own or modify code written by others (if  
they allow). So and end user of a CMS (ie a non-programmer who is  
setting up his own CMS) would be happier with something like plone  
(or mambo, jumbo etc). Django is meant for programmers who would like  
to have a finely tuned, customised site to offer  to the enduser.

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Using django for CMS stuff

2007-02-14 Thread [EMAIL PROTECTED]

Django is very good for CMS like apps. I develop Diamanda Wiki and
MyghtyBoard forum (www.rkblog.rk.edu.pl) and each app has it's own
folder for code/templates and can be rather easily used in other
projects :)


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Using django for CMS stuff

2007-02-14 Thread walterbyrd

CMSes like joomla and drupal have a rich assortment of plugins/modules/
extensions for stuff like: blogs, forums, galleries, news aggregators,
ecommerce, document management, and so on.

How difficult would it be to get that sort of functionallity from
dango?


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---