Tagged Questions
The grok tag has no wiki summary.
13
votes
6answers
562 views
Emacs: help me understand file/buffer management
I've been using emacs for all of my text editing needs for the past three years now. When I'm in a single file, working on code or whatnot, I'm fairly efficient. With two files, I can "C-x b RET" ...
5
votes
3answers
1k views
Django vs. Grok / Zope3 vs. Pylons
I am a computer programmer by training but have been away from web development for a while. I am doing a little bit of background research on various Python web development frameworks. I understand ...
4
votes
3answers
3k views
grok vs. django comparison
What are the smashing (pun intended) features of grok that makes it better than django?
how do I know when my project needs grok+zope, or it can just be developed with django ?
3
votes
1answer
51 views
Grok finding my static folder in a plone product
I discovered that in a Plone install, which had a 1.2.0 five.grok installed, I just had to have a "static" folder in my egg source, and grok would register it appropriately.
When I moved to an ...
3
votes
0answers
61 views
ZCML allowed_attributes corresponding method in five.grok
Is there a way to mark methods traversable in grok.CodeView classes, like you can do with Zope 3 BrowserView and allowed_attributes ZCML configuration directive?
I found docs about ...
3
votes
1answer
75 views
Reuse the same template for different content types
I'm creating quite a few Dexterity content types (thanks zopeskel.dexterity devs!!) but even if I need them to be different content types (searches, collections...), some of them will be rendered ...
3
votes
2answers
852 views
web2py or grok (zope) on a big portal,
I am planning to make some big project (1 000 000 users, approximately 500 request pre second - in hot time).
For performance I'm going to use no relational dbms (each request could cost lot of ...
2
votes
1answer
76 views
Is it possible to use five.grok to register portlets in Plone 4.1?
I looked into five.grok and found no reference to Portlets. Can it be done?
2
votes
3answers
131 views
strategies for learning complex software packages
I am a fairly novice Java programmer and I am currently working on a project to extend a piece of software that has been developed over a few years.
So it has pretty big code base and the previous ...
2
votes
1answer
484 views
Reasons to prefer zope 3 over grok
I am familiar with zope 2 and think that zope 3 is superior in many ways, as far as I've used it (i.e. primarily with Five).
Now I'm considering to dive deeper into zope 3. Would you recommend going ...
1
vote
1answer
23 views
Can I query Grok's ZODB instance outside the web application scope?
I have a grok-based webapp that persists data using ZODB. Can I query the object db offline i.e. from a python script that would be run on the webserver hosting the grok/paste webapp instance?
And ...
1
vote
1answer
35 views
Grok and MySQL - how to set a connection?
According to this doc: http://grok.zope.org/documentation/how-to/grok-orm-with-storm when i want connect to database (sqlite) i should set something like thIS: with correct path TO MY DB.
How to set ...
0
votes
1answer
12 views
Grok DistributionNotFound: grokcore.startup
Used grokproject Sample as in the grok homepage tutorial to simultaneously create a new project and install the grok framework.
cd Sample then ran bin/paster serve parts/etc/deploy.ini as in tutorial ...
0
votes
2answers
35 views
Making grok views to look template from a parent directory in Plone
If I try
grok.templatedir("../browser/templates")
I get
GrokImportError: The 'templatedir' directive can not contain path separator.
What's the correct way to set five.grok template ...
0
votes
1answer
42 views
How do I instrument my python code?
I'm developing some web apps with the grok framework, and I want to know what the framework is doing when serving a simple page.
So, what tools are out there to grab such data, and maybe, graph it?
0
votes
0answers
79 views
GROK - Diagram of Grok Framework Architecture
I find this http://www.zope.org/WhatIsZope/ZopeArchitecture - this is Zope2 Architecture. Where I can find diagram like this for GROK framework?
0
votes
0answers
51 views
GROK and Windows: paster and “Cannot load command serve”
I instaled GROK framework according to instructions from official webpage.
I want use paster command but I have this errors:
(grok) C:\VIRTUAL\VIRTUAL\NES\grok\Scripts>paster --help
usage: ...
0
votes
0answers
95 views
Django-like admin interface for Grok
Is there a built-in functionality that provides Grok users with a Django-like admin interface? Maybe a contributed component?
Thanks.
0
votes
1answer
126 views
Enable gzip compression in a Grok - Zope - PasteScript environment
I am trying to make my server send gzipped data. I have a grok application that runs over Paste (Paste-1.7.2-py2.4.egg)
I have been trying to google how to make all that environment to serve data in ...
0
votes
1answer
172 views
Double import in grok
This is a normal case of mutual import. Suppose you have the following layout
./test.py
./one
./one/__init__.py
./one/two
./one/two/__init__.py
./one/two/m.py
./one/two/three
...