1
vote
1answer
22 views
web2py (and other MVC frameworks): How to execute base code on all controllers
In web2py, is there a way to have a piece of common code be executed before all controllers are called? For example, I want to add some code that will log client IPs to a log of r …
0
votes
1answer
22 views
ASP.NET MVC to extend ASP.NET Webforms site
We are looking to split up our ASP.NET Webforms site into a core set of pages and a few pluggable modules(essentially additional pages/views), so we can deploy the core site at the …
0
votes
2answers
59 views
Integrating Modules with Application in Prism aka CompositeWpf
From MSDN:
It is likely that most of the views in your modules will not have to be displayed directly, but only after some action by the user. Depending on the style of applica …
5
votes
3answers
335 views
database schema design tools / modular database design
hello,
I'm developing applications which can be build partly from modules. For example I would be able to develop some online community which contains the modules 'forum', 'blog', …
0
votes
1answer
43 views
Modularizing Rails applications
I'm looking for a way to modularize Rails applications. As I've seen there is no built-in way of accomplishing it. I've found different plugins/core hacks but I feel untrusted abou …
3
votes
2answers
175 views
How do I protect my Python codebase so that guests can’t see certain modules but so it still works?
We're starting a new project in Python with a few proprietary algorithms and sensitive bits of logic that we'd like to keep private. We also will have a few outsiders (select membe …
0
votes
1answer
44 views
EventAggregator vs CompositeCommand
I worked my way through the Prism guidance and think I got a grasp of most of their communication vehicles.
Commanding is very straightforward, so it is clear that the DelegateCo …
2
votes
10answers
228 views
How to make code modular?
I have some Java programs, now I want to find out whether it is modular or not, if it is modular then up to what extent, because modularity can never be binary term i.e. 0 or 1.
H …
0
votes
1answer
68 views
Component-Information from JAR-File possible?
I would like to set up a web application with good modularity and would like to use an AJAX Toolkit/Framework like GWT or ZK for its VIEW. Component information should be load from …
0
votes
1answer
24 views
Do I have to design for separate database & server runtime per different module?
Hi!
When designing a new J2EE based enterprise framework, do I have to prepare for the situation where separate business modules have to use different databases and have to run o …
3
votes
5answers
159 views
What are the best resources if you wanted to create an application with modularization?
In my analysis of the newer web platforms/applications, such as Drupal, Wordpress, and Salesforce, many of them create their software based on the concept of modularization: Where …
9
votes
7answers
342 views
How to modularize a (large) Java App?
I have a rather large (several MLOC) application at hand that I'd like to split up into more maintainable separate parts. Currently the product is comprised of about 40 Eclipse pro …
6
votes
9answers
258 views
Overcoming bad habit of “fixing it later”
When I start writing code from scratch, I have a bad habit of quickly writing everything in one function, the whole time thinking "I'll make it more modular later". Then when late …
0
votes
3answers
68 views
How to manage multiple (different) view layers
I have a website (ASP.NET MVC) which I would like to extend to another similar topic (like stackoverflow-serverfault-superuser).
Database layer and controllers layer are the same …
0
votes
4answers
205 views
Creating a separate module in MVC like you can do in DotNetNuke
I've newly started to open my eyes for ASP.Net MVC, but on the site we are currently working on we use DotNetNuke, and I actually like the way you can create new "Modules" and just …
