frameworks

Building own php framework.

Hi, I am interested in building my own php framework for my personal use to make my coding life easier. I am doing this as I am fairly (sort of) use to php now, and can't seem to get use to any framework. I have an idea of making loads of functions in a .php file. Like I have started to do, sor for the send mail function I have simplifi...

Is this a good way to structure model on an MVC application?

Hi, This is more a "Am i doing it right?" question. I am using a MVC framework ( Zend Framework ) and was wondering if this is the best way to structure a model. In this case i have an user groups model and, after coding for sometime, i realized that on my controllers i was repeating some stuff like a query to return visible groups. ...

Are there any MVC web frameworks for Haskell?

Are there any MVC web frameworks for Haskell? ...

Which is the best strategy to learn a framework?

Since while time advances new frameworks appear, to be a good developer we have to learn about those new technologies. Supposing that you are compelled to learn a new framework (and you had developed on other frameworks or specific languages), how do you organize yourself and structure your time and learning activities? do you create yo...

What good patterns for a web framework are out there?

What are design patterns that would be useful for a web framework besides MVC, the Rails-induced frenzy? Not saying it's a bad thing, but it is now practically ubiquitous in web frameworks. Ideally the pattern should make easier: Separation of concerns Modularity / reusability of code Unit testing What patterns fit the bill? Are the...

Java Server Faces 2.0 or Tapestry 5.2?

Are there any up to date articles comparing JSF 2 and Tap 5? Everything I seem to find is comparing JSF 1.2 and Tap4. Does anyone have any experience with T5 or JSF2 and time to evangelize one or the other? I'm looking for a framework for rapid development in Java, on top of Hibernate and mySql. Other framework sales pitches accepted,...

How to distinguish a framework from a library of functions?

Is there a definition of "framework" that could be used to distinguish a framework from a collection of utilities functions and/or libraries? Where does one end and the other start or is the line between them blurry? ...

How do I allow images in the HTMLPurifier?

I want to allow images within my HTML Purifier filter. Unfortunately they are still being filtered. WHat is wrong with this code? $config->set('HTML.Doctype', 'XHTML 1.0 Transitional'); $config->set('URI.DisableExternalResources', false); $config->set('URI.DisableResources', false); $config->set('HTML.Allowed', 'u,p,b,i,span[style],p,st...

Entity Framework : How to create unmapped property and set to SP parameters?

Hi All, M using entity framework, my problem is, entity object say "Employee" mapped with SP to insert emplyee."employee" entity has the properties mapped with Employee table of DataBase, i used these properties for SP parameter mapping, but my sp needs some more parameters which are not available in entity and if i scaler property for...

ul li list with unique id in Zend_Form using decorators

hi everyone, I need to make the following html using Zend form and form decorators... <ul> <li id="containeruser1"> <label for="user1"><input type="checkbox" class="textbox" value="1" id="user1" name="users[]">User One</label> </li> <li id="containeruser2"> <label for="user2"><i...

How can i find the sql query statement of insert() in Zend Framework ?

How can i find the sql query statement in Zend Framework for insert(), like its done for db table select's. $select->__toString(). ...

Opensource simple card game/solitaire engine example needed.

I am looking forward to write a card solitaire game, including AI (if this simple can be called so) playing algorithm. No multiplayer facilities needed. I suppose there are some wheels I need not to invent myself in this project (as deck/cards/table object model, deck shuffling algorithms, etc, and, especially, cards visualisation stuff)...

Business logic in Entity Framework POCOs using partial classes?

I have business logic that could either sit in a business logic/service layer or be added to new members of an extended domain class (EF T4 generated POCO) that exploits the partial class feature. So I could have: a) bool OrderBusiness.OrderCanBeCancelledOnline(Order order) .. or (IOrder order) or b) bool order.CanBeCancelledOnline(...

setup include path in eclipse CDT in mac os (headers from framework)

for example I need to include a header #include <OpenGL/glext.h> while it is actually a header file glext.h under OpenGL.framework/Headers/. Therefore it is no way to give eclipse a physical path about "OpenGL/glext.h", and I always get unresolved inclusion warning. I can still build and run them (with managed makefile project) but ...

What are new feautures of .Net framework 4.0 for C# and windows form Application Developers?

I am c# developer ,i Like adapt myself for new technologies, so i eager to read about .Net framework 4.0, what are the new feautures of .Net Framework 4.0 especially for c#.Net and Windows form Application Developers and also i need some articles for improve my skills in that? ...

How to make JS-library agnostic selector wrapper?

What is the best way to create library agnostic wrapper for JS library selectors? I have a custom JS framework, that aims to be as library-agnostic as possible. The problem I have is that for example Mootools enhances the returned DOM element with it's own specific methods (inject, adopt etc.), and I don't want these to be visible to the...

Name of the custom web framework or CMS built specifically for "Coming Soon" landing pages

It seems like I remember seeing a web framework specifically for the Coming Soon pages that let you enter your email address to be notified about updates. Anybody know the name of that project? ...

Please suggest Webportal framework

Hi, I am looking for java script web portal framework(Like asp.net web parts) to create drag-drop interface for my website. Please suggest me good ones. ...

Pass variable into Zend Form

Hi I have a zend form instantiated $form = Form_Example(); Now I want to pass an ID from my controller to my form. So I did this: $form = Form_Example(array('id' => $id)); Inside the form I try to call it through: $this->id But it isn't there. Anybody knows how to get that id into the form? Thanks ...

Not Binding WpfToolKit:dataPicker through Converter

ConvertDateTime - return good string "01.10.2010" but datapicker not binding. if we replace datapicker on textbox - all works well help me, code: add: xmlns:loc="clr-namespace:StoreBags" add: <loc:ConvertDateTime x:Key="conkey"/> xaml add: <my:DataGridTemplateColumn Header="Дата" Width="100"> <my:DataGridTemplateColu...