I am a fan of the extensibility of the CMSes. You can upload some code (usually PHP), authorize it from the CMS admin panel and it's running.

I wonder if it is possible in Google App Engine. I haven't checked the extensibility of existing CMSes for Google App Engine, but if there is any of them that supports plugins I would like to know how they did it, and whether they are JS plugins only, or if they support Python/Java plugins too.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted
+100

Actually I see no conceptual problem with supporting plugins in App Engine application. For example on Java you may fetch plugin jar to memory from data store or memcache (on application initialization phase), and then use custom class loader to load plugin classes as needed). Actually you even may load classes from request data and evaluate them on the fly if needed (how we do it in AppWrench Java console).

Regards, Pavel.

link|improve this answer
Do you know if the same is possible in Python? – Jader Dias Dec 22 '09 at 11:44
1  
Python is script language and has eval() function, so this definitely should be possible. – Null Pointer Dec 23 '09 at 16:14
feedback

Nick Johnson from Google wrote an entire blog post series on how to write a blog system for app engine. If it doesn't do what you want, I am sure that you can extend it but normally a blogging system is sufficient for a CMS for most people.

link|improve this answer
Nice link! thanks! – Jader Dias Dec 15 '09 at 13:25
Nick Johnson haven't reached the "extensibility" part yet, but it's one of the features he says he will add – Jader Dias Dec 19 '09 at 17:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.