barrygaunt | Tue, 15 Jul 2008 17:21:00 GMT |
Do you have an application in mind that you would like to implement using Zope?
frankcarver | Tue, 15 Jul 2008 17:22:00 GMT |
barrygaunt | Tue, 15 Jul 2008 17:23:00 GMT |
mikecurwen | Tue, 15 Jul 2008 17:25:00 GMT |
On the other hand, I'm too comfortable with the idea of preparing my own self-contained deployable J2EE web applications to move over to the Zope "uber container" with built-in database and user/application management. I'm also not a fan of the Zope page template syntax - I prefer my template substitutions to be orthogonal to the HTML syntax, not intertwined with it.
I'd love to hear how others think about this kind of question.
frankcarver | Tue, 15 Jul 2008 17:26:00 GMT |
As Frank mentioned, the acquisition and built-in mananagement interface are great parts of Zope. The former gives a natural form of inheritance, and combined with the simple user interface means that people with little training can manage or create some of their own stuff fairly easily, without having to get too technical. Like it or not, this matters. In any case, you need to administer your site somehow, and this comes for free. Works remotely too of course, so prodding via a login shell is much less common.
The acquisition applies to all objects, so things like security settings which apply to a subfolder are trivial, and include fairly fine-grained, role-based ACLs. These are quite powerful, in that you can delegate just the permissions needed for a particular sub-folder. This means that other people can do the work there, leaving you to do the complex bits that are more fun. Hmm, what else? Well, the modularity of the system rocks! What I mean here is that it is simple for developers to turn their module into a "Product", which is basically an encapsulated chunk which has properties, methods and editing forms, and which the end-user can just drop wherever convenient. Essentially, the developer has to add a few things, but then Joe User can just pick it up and go. The difference here is that between giving a kid a doll house vs a Lego set; one might have an acceptable set of canned features, but is hard to re-use or re-purpose. The latter provides building blocks which other (often non-techie) folks can mix and match to create new, sophisticated things easily. There is more to all this of course, but I'll just leave a URL for a few hundred of these Lego blocks created by and for the community: http://www.zope.org/Products [ January 29, 2003: Message edited by: Tim Lavoie ]
timlavoie | Tue, 15 Jul 2008 17:26:00 GMT |
barrygaunt | Tue, 15 Jul 2008 17:28:00 GMT |
I just bought the book java 2D API Graphics?by Vincent J. Hardy. I am having a problem running the emorunner?GUI application. The error message I get for all the examples is could not start Demo: Create Process: runsnippet xxx error=2?where xxx is the demo I am trying to run. If I invoke the...
is there anyone know how to add the texture as backgroud , and then have the 3d word in as well . Thank you for ur help!!!...
I'm sure someone has ran into this problem before. My problem is zooming into some areas of the video. I want to zoom into some areas, but, want to get clear image, not the regular zoomed image which is distorted image. Does JMF come with class libraries to do that?...
Hi,i have the following problem, i wish to zoom a shape - the problem is - while the shape zooms - it also moves away from my screen - instead of staying at its original point and just growing and growing it grows & moves away - im not sure where the error is.Pseudo Code :zoomTrans = ...
Is it possible to zoom in/out on jcomponents without losing the functionality of the components,i.e the clicking of the buttons and typing into the textfield. I know i could convert to an image an scale it, but unfortunately this cause the functionality to be lost.Is there a simple solution out ...
hello is somebady know how to do a graphics zoom . example you draw a circle and then you need a zoom in on this circle using fish eyes view . please somebady helps me thank you ...
hi,I have an large jpeg image.(map)i want to compress it to small image and diplay to user.then i have zoom it ,without changing the original image and good quality.how can i achive this?thankskelum ...
I'm trying to create a generic container panel that can zoom and pan over arbitrary JComponents. Zooming in works fine. Zooming out is getting some odd side effects from the clip. Zooming out, then resizing the window doesn't show the whole image. The top and bottom are trimmed off, despite ...
I've read a few posts regarding the question of how to make sure objects don't disappear when zooming in. The suggestion is that a low front clip distance (i.e., setFrontClipDistance()) will make that happen. I have played around with that with some improvement, but I still get some objects ...
Hi @all!I'm very new to java Graphics, but I have a great performance problem.Lets say i'm drawing about 10000 rectangle on a form. This takes about 80ms. When I scale the Graphics2d with values up to 1 the speed is constant high. But when i want to zoom in (greater than 1) there is a great ...
Hi all,I have a JPanel ,i have overridden the paint method to draw my own tree.The tree is contructed using imageicon and lines.i m using painticon method to paint the icon and drawline to drawline.There is a event for a click on the ImageIcon.i m using getScaledIntance(int w,int h,int hints); ...
I need to Zoom a BufferedImage which is drawn on JPanel ,this panel is added on a Applet so how do i do it , can anyone help . just an idea would be enough ....
Hello friends, I have a code which can display a map in frame. I want to add a functionality wherein I would have a text area along with the frame and in the text area any place that we type-in would be shown on the map by zoomin in that particualr area. I am working for a GPS project for my ...
i've got huge data collection where one item represents one square onmap - lets say 1 image (relative small 50x50pixels, 10 different images,images can repeat)and i want genrate zoomable map300x600 squares zoomable to say 30x60 squares.any draft ideas how to solve this problem?(each square ...
Hello..Im creating a photo viewer in java and have a screen where I have the same image displayed twice. One is scaled (zoomed in by 5) and the other is just normal (in a JScrollPane). I have made it so when a user clicks somewhere on the normal image, a small rectangular box is drawn ...