frameworks

List of values I can specify in Zend application.ini configuration file?

Hi guys, I am using the Zend Framework and I cannot locate in the documentation the values I can specify in the application.ini file. Does anyone have a link to where I could see them? Thanks, Darren ...

PHP Namespace: Framework

Hi, are their already PHP frameworks that are using namespaces. I only now that their is zend who are working on it. Best Regards, Sebastian ...

How can I get people to try my framework?

I recently created an annotation-based validation framework in Javascript. In my humble opinion, it is useful and I think it has potential. However, I am not sure how to go about "advertising" it. At the very least I would like people to try it out and give me their comments/opinions/suggestions. In general, how do I go about getting my...

Architecting from scratch in Python: what to use?

I'm lucky enough to have full control over the architecture of my company's app, and I've decided to scrap our prototype written in Ruby/Rails and start afresh in Python. This is for a few reasons: I want to learn Python, I prefer the syntax and I've basically said "F**k it, let's do it." So, baring in mind this is going to be a pretty ...

A good way to have all my messages in Java

Hello, i'm looking for a small framework to have all my messages stored in a common way. I'll give an example for better understanding. In a part of my code, in a particular JFrame i've an alert something like this: JOptionPane.showMessageDialog(null, "Error, you must provide an integer value", "ERROR", JOptionPane.ERROR_MESSAGE); S...

What's your greatest tips when it comes to MVC Framework

Over the past few years I have built several MVC Frameworks and scraped them several MVC Frameworks. Usually I build my frameworks with a startup file which loads the main components (controller/library/input/output/error/configLoader/database model loader) etc. I'm just wondering how you build yours in an attempt for me to discover ne...

Need guidance regarding the correct flow of my PHP MVC Framework

I'm creating a PHP web application framework (MVC). I'd rather not use external libraries or components (as I want this to be purely my work for now) Can you tell me some tips/guidance for what each of my files should be responsible for doing? Such as, what should be handled by the Framework script and what should be handled by an Appli...

How come when I update my iPhone SDK all the frameworks in my project turn red (not there)?

I'm getting sick of this stuff happening. How come whenever I update my iPhone SDK all the frameworks in my project turn red as if there are not there anymore? Whats the situation? ...

Framework for distributed computing for .Net / Mono that supports persistence of distributed tasks

I'm looking for a framework (open source) for distributed computing for .Net / Mono that is not simply task-based but supports persistence of distributed tasks. The project at hand is a complex system simulation which needs to be distributed into smaller independent "subsimulations". These subsimulations will keep running for a long tim...

Any PHP Frameworks that use a Layout and Block system like Magento?

While it is most typically touted as a fully-featured shopping cart system, Magento is an awesome framework to boot. Of particular awesomeness is the layout system. In essence a page is created from "Blocks" which all inherit from an abstract class which does not assume the use of template files. These blocks are assembled according to a...

What is the best way to set up a simple website?

I have been making websites for years now. Most of them tend to be under 10 pages and don't require any programming at all. I am wondering if anyone with lots of experience can recommend the standard or best way to go about setting up these types of websites. Let me explain in a bit more detail what I mean. Here is a typical structure o...

JSF - Highlight changed data in table (within transaction) Reusable framework

While implementing a data entry utility, I was given the need to highlight fields in a table whose values were changed by that transaction. (Not all fields in the table are required to change) A reusable framework for this could replicate the same functionality for similar utilities/transactions without the replicated cost of a "one of...

Why do I receive different HTTP response codes when accessing Facebook XML feeds from different servers?

Hi all I'm using the Zend Framework, specifically the Zend_Feed class, to grab the Facebook XML feed at http://www.facebook.com/feeds/page.php?format=rss20&id=120635284755 and merge it with a similar Twitter feed for display on a website. The problem is that while I can grab the feed absolutely fine from both my local and remote te...

What's the easiest way to show a tooltip on my web pages?

I'd like to modify some parts of my website to show popups when a user clicks on some <td> elements. I'd like to keep the modification very simple, which is why I considered using a JavaScript framework. It does not really matter which, but I'd like to be able to include html in the tooltip's text. What's the easiest way to achieve this?...

Whats the best feature of the ORM framework you use

Hi all, I'm wondering what the best feature(s) of the orm framework you use and what features you find yourself using most? What is the reason you chose the framework you use? I'm just trying to compare them and wondered if any offers advantages over the other. (it's all very well googling this but you can't beat first hand user exper...

How can I keep an observable collection sorted in a listbox?

I have the following to get data from an Entity Framework 4: IQueryable<Exam> examsQuery = entities.CreateQuery<Exam>("[Exams]").Include("Course"); exams = new EntityObservableCollection<Exam>(entities, "Exams", examsQuery); In my viewmodel I have the following code: public IEnumerable<Exam> Exams { get { return exams; } } ...

Too many frameworks for java web. Scared and Confused :(

I am an experienced Java developer who is trying to learn web development with Java presently. I also had web development experience with ASP.NET (c#) and PHP. I know what basic concepts (JSP, Servlet, Bean) and looking for a framework to go. My question is not "What is the best framework for Java" or something similar. After reading ...

Is there any more Cocoa component library like BWToolkit?

I just downloaded and used BWToolkit and quietly impressed. Nice feature, easy-to-use, stability... Any other recommendable Cocoa library like this? (not only for UI) Please introduce! ...

Which framework is better for general purpose, Symfony or Zend?

Possible Duplicate: What PHP framework would you choose for a new application and why? For small and big web apps, which is better ? ...

What is the good starting point to developing RESTful web service in Clojure?

I am looking into something lightweight, that, at a minimum should support the following features: Support for easy definition of actions through metadata Wrapper that extracts parameters from request into clojure map, or as function parameters Support for multiple forms of authentication (basic, form, cookie) basic authorization based...