frameworks

Synchronizing the database failed with the message 'string truncation...'

Using N-Tier synchronization to a Microsoft Compact DB: http://msdn.microsoft.com/en-us/library/bb882690.aspx. Trying to refresh the local database cache to account for changes in the schema of the db we are syncing against. In the middle of Synchronizing local database cache, the message Synchronizing the database failed with the mes...

AutoHyperlinks framework similar solution for use in linux?

I have to convert a lot of plain text that contains urls into html hyperlinks, and I used to use on the mac side a plugin for coda found here. Is there anything similar to be found for use on the linux side of the world? ...

(Spring MVC)-like framework in python

Do you know a framework in Python which is similar to the Spring MVC java framework? What I'd love to have is that magic Converters that get, say, a movie_id from the request url and automatically fetch the Movie from you database and call a method of yours passing the object. If you have used Spring MVC you might understand what I mea...

Error building my app to my ipod touch:building with 'Targeted Device Family' set to iPhone only ('1') not supported with SDK 'Device - iPhone OS 3.2

So I finished coding my app, and downloaded the development profile n all that good stuff with the entitlements, etc; but I get these warnings: ld: warning: in /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics, file was built for i386 which i...

What is the most up to date Python asterisk AGI framework for asterisk?

I have done some AGI development in the past with PERL and PHP, but my current project is using Python. I have found the frameworks listed here: http://www.voip-info.org/wiki/view/Asterisk+AGI , but they are all pretty old and do not seem kept up to date. I'd like to know if there are any others out there specifically for asterisk 1.6....

How do I force Xcode to link to a custom version of a system framework?

I have a project that uses OpenAL. The project is built against the 10.5 SDK, and the version of the OpenAL.framework in 10.5 causes some problems. I want to link to a custom-built version of the OpenAL.framework that resides in my source tree. However, Xcode resolutely refuses to do this. No matter what I try, it insists on linking to ...

Update Framework for PHP

Does anyone know of a framework (written in PHP) to update PHP-based software ? I'm thinking of a library that assists in checking for updates online and that provides methods for generating, downloading, verifying and installing update packages, maybe even with encryption and public-key signatures. Ideally with a non-copyleft open sou...

CoreMedia.CMTime

I want to use the method Seek of the class AVPlayer. But this method take a parameter CMTime. Could anyone knows about this object. In order to move the playback cursor to a given time. ...

PHP framework for building a CMS, session and REST

I'm working on a CMS for some of our projects, but would like to ease the work a bit by using a framework. This is what I need from a framework: A framework that implements basic things like session management for me. Is there one? A framework that supports REST. Is there one? A framework that doesn't cause my CMS to break when the fr...

Simplest way to implement user login / authentification in Python

I'm developing a fairly simple Python web app and I want to allow users to log in. I know the solution will probably involve installing some sort of framework rather than doing it in straight Python and I'm OK with that, I'm just wondering, what would be the easiest, most hassle-free way to add authentification? The app is already writte...

Object oriented php CMS or framework

I'm embarking on a very big exercise to build a CMS in php. It's actually my attempt to learn PHP in a fun (and hardcore) way coming from a Java background. Java is all object oriented so oop is in my blood, but I'm finding that OOP hasn't made it yet to PHP. Most PHP is still being written today the old way without the new concepts. I...

Route to study Java EE and associated technology?

I am an undergraduate student with knowledge of core Java. I want to learn Java EE and related technology for my final year major project and career prospect. what are the Prerequisites for Java EE? I and my friend have done some research on this matter. We found that we need to know about Servlets, JSP, Javabeans, RMI, etc. We have ba...

Why use Symfony not Drupal

I've been using Drupal for some time and have been a bit frustrated with how it takes a lot more work to do things the Drupal way than if I were writing custom code from scratch. Sometimes I spend the day not coding, but just searching for the right solution to weave my idea into the drupal flow. This has led me to think of moving back a...

A CMS on 2 DIFFERENT frameworks?

I'm not sure if this is possible, but let's say you want to build a CMS, but you're torn between 2 frameworks because each has some features that you like. Is it possible to create the CMS with both framewoks? Does this approach have merits or pitfalls? ...

can i consider this project as a framework?

Hello, I have a trivial question about framework. I have written a project including some classes. among the classes I have an abstract class with two methods. Another class is inherited from this class which owns more specialized methods. Now my question is can i refer to this program as a framework or not. ...

New feature MEF in .net 4.0

Managed Extensibility Framework is the new feature of .net 4.0. What is it ? and How to use it in our existing application ? ...

Social Networking framework for Java

Social Networking I think Java have Apache Shindig as a social networking framework (hi5). Oh my, their documentation is close to nothing. I was wondering what other good Java framework for social networking that people have used (please, if u give me a list of 40 different frameworks, it would just confused me a lot more). Good meani...

What are the major industry standard Automated Testing Frameworks?

I'm working on establishing automated testing practices and test suites in an organization. A peer is telling me that we "should use a framework". To me, a framework is any set of code and/or other tool that helps you create something. My peer seems to be suggesting that there are industry standard automated testing frameworks. I'v...

Kohana Framework: add default option

<?php // My controller. $marcas = ORM::Factory('marca')-> find_all()-> as_array('nome', 'nome'); array_unshift($marcas, '-- Selecione --'); ?> <?php // My view. echo Form::select('marca', $marcas, '-- Selecione --') ?> Is there a faster way to add a default option in a select? Thank you. ...

PHP micro-framework recommendations?

I've recently been assigned a very simple PHP project, which is essentially just putting some data from a form into a DB, and allowing the DB contents to be viewable by an admin. I deal in Ruby most of the time nowadays, and for a project like this, I'd probably turn to something simple, like Sinatra; but I thought this might be a good ...