Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
5answers
3k views

How to modularize a JSF/Facelets/Spring application with OSGi?

I'm working with very large JSF/Facelets applications which use Spring for DI/bean management. My applications have modular structure and I'm currently looking for approaches to standardize the ...
10
votes
2answers
304 views

The best approach to modular programming in Delphi

this is a continuation of the discussion I started here. I would like to find the best way to modularize Delphi source code as I'm not experienced on this field. I will be gratefull for all your ...
6
votes
4answers
258 views

Learning to write organized and modular programs

I'm a computer science student, and I'm just starting to write relatively larger programs for my coursework (between 750 - 1500 lines). Up until now, it's been possible to get by with any reasonable ...
4
votes
7answers
308 views

When is abstraction and modularization a bad practice in programming?

just saw this comment in a "what JS lib do you use" poll "@Xanti - yes, yes, modularization and abstraction in programming is a terrible practice. Functions that call other functions? Wasteful." ...
3
votes
2answers
110 views

How do can I implement Modularization in a Rails App?

Breaking a large rails app into smaller apps? Modularizing Rails applications Best practice for structuring a 'large' Rails app I have a quick question on modularization in a large Ruby on ...
3
votes
4answers
2k views

C++ modularization framework (like OSGI)?

I found one SOF http://www.codeproject.com/KB/library/SOF_.aspx , Are there anyother stable frameworks for modularization in C++ ?
3
votes
2answers
155 views

how does information hiding helps in modularization?

How does information hiding decouples the modules that compromise a system?
3
votes
5answers
763 views

How important is modularization of software projects

Modularization is obviously important in software projects, but I want to know people's opinions on how important and for what reasons it is important. I've obviously got my own ideas since I'm asking ...
1
vote
1answer
47 views

Looking for a pdf about Flex modularization paradigm (or something like that)

Some time ago I saw an excelent eBook about how to make a modular Flex app, it was pretty cool, but I forgot the name of the book/tutorial and after a google search (not an exhaustive one) I cant find ...
1
vote
4answers
100 views

Modulation of adding new Strings -> Method calls

If I have a program that does the following: if(input=='abc'){do x} if(input=='def'){do y} In the future, I may want to add another piece of code like so: if(input=='ghy'){do x} As you can see, ...
1
vote
4answers
119 views

Javascript modularising large objects

I've got an object defined as a function, and it's got a lot of methods and properties in it, what are some ways to modularise this to make it more manageable? It is possible to put functions inside ...
0
votes
3answers
156 views

An OSGi use case - am I right or not?

I am just familiar with OSGi technology - never used but heard of it so many times. I've read several articles "for dummies" but I think I still fail to understand its use case completely. Maybe some ...
0
votes
1answer
98 views

Is MVC a good design pattern for a GAE app?

my GAE app is currently setup with the following filenames main.py (2 main models and logic for creating and updating the models) i18n.py (user interface logic how to view objects with i18n) ...
0
votes
1answer
140 views

How to programmatic render JSP files?

Currently, I'm using Velocity instead of JSP, for its flexibility. For some reasons, I need to distribute my web modules in jar archive, rather than war archive`. I have read the servlet ...
0
votes
2answers
130 views

Embedding PHP include statements within a string that gets echoed

I've been trying to clean up my site by defining my site structure as php string variables and then echoing those variables out. This condenses all of my site structure down to five lines with an ...
0
votes
1answer
82 views

Validating XHTML elements with XML children

G'day guys, I've tried reading the XML Modularization recommendation which promises to allow custom XHTML extensions but can't make heads nor tails from it. I need an XML document containing a mix of ...
0
votes
1answer
258 views

ASP.net MVC views in class library

I'm developing a framework application, and I want individual implementations to have the possibility to add new functionality simply. For controllers this is easy, just compile it and drop it in the ...