bundle

How to create a Bundle Library (mh_bundle) with qmake on Mac OS X?

Hi All, I'm a newbee to Qt and qmake and I like to know if it's possible to instruct qmake to build a "Bundle Library" (mh_bundle) under Mac OS X using the TEMPLATE and CONFIG variables? I already managed to make a "Dynamic Library" (mh_dylib) and a "Framework" (mh_dylib). If there is no direct solution, how is the best way to achieve t...

JSF 2.0 loading the bundle

Hi, I got the following error: > org.apache.jasper.JasperException: An > exception occurred processing JSP page > /ajax/busstop_ajax.jsp at line 12 10: <%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%&gt; 11: <%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%&gt; 12: <f:loadBundle basename="/../messages.Message...

Magento : How to retrieve option information from a bundled product?

I have a bundled Product that contains 3 virtual products as options. I have an observer that is listening to an event when an item is added to the cart and I'm having a hard time figuring out how to get the option information that I selected when looking at the product: the start of the observer looks like this: public function checkS...

How can I remove a gem from my Rails 3 project without getting this really strange Bundle error?

The error is: You have modified your Gemfile in development but did not check the resulting snapshot (Gemfile.lock) into version control WHAT VERSION CONTROL? Why/how does Bundle know anything about version control? I just removed a line from my Gemfile. Am I not supposed to do that? ...

Is it legal to customise JRE to decrease Java GUI application size ?

like i said ,this question is about redistributing JRE. i wrote a swing app to access Google Docs Service,which named iGoSyncDocs and could be found at http://igosyncdocs.sourceforge.net/. if you're interested in,please try it and send me bugs. thanks ahead. If it is right to bundle JRE with App. i should make an installer for all ope...

Magento remove bundle item using API

Hi, I am looking for an API that can remove bundle items added in a main bundle product. Can some one guide me to that API? regards, Irfan ...

How can I revert to the previous Perl setup after installing Bundle::CPAN?

After installation of latest Bundle::CPAN, I realized that certain legacy code will not run in this latest version. I wish to remove (and not just unlink) this latest version and revert back to using the old version. How can I do that? ...

Android Bundle Error: Unmarshalling unknown type code

I'm working with a fairly complex data edit activity in Android that makes use of the bundle object a lot when saving form data. In general this works pretty well and I haven't experienced any data loss. However I have a strange intermittent bug that I can't seem to find the direct cause of. It happens when I send an intent to the gall...

bundler clean downloaded gits

I'm using latest bundler with a lot of :git => ... in my Gemfile. Bundler does not seem to remove old/ unused git repositories it downloaded. Also I couldn't find a simple "bundle clean", just like "gem clean". Of course this would only work properly when using a separatestorage per project, but this is how I do it. So I wonder what's th...

How to check if phone locale has changed?

Assume an application that has some locale-based raw resources. But the resources are not "corrensponding" to each other - one locale has less resources than another one. Application stores it's state when closed. So, user can launch the application in one locale, close it (app remembers its state), then user changes phone locale, and r...

Resource bundles in iPhone

How do I create a resource bundle to use in an iPhone/iPad app? Is it simply a folder with the .bundle extension or do I have to do something else to make it work? Are there any special considerations for Universal apps (ie: do I have to create separate bundles for each platform?) and localized resources? I would like to create and use...

Change toolbar icon dynamically with bundled icon

Hi, I'm using a toolbar in an UIWebview. I want to able to change an icon dynamically. That is from stop to refresh. How can i used the bundled icons? [stopButtonItem setImage:[UIImage imageNamed:@"refresh"]]; Thank you Teo ...

How do I reduce the size of a Mac application bundle?

I have a 120MB bundle that when is compressed (zip) is only 30MB. I, however, so not want to distribute a zip file. I want to distribute a bundle in a dmg. Are there any tools I can use that will enable me to compress my bundle, but also preserve the bundle file structure so that no 'unzip' tool is needed by end-users? ...

Is it possible to use Embed-Dependency in the maven bundle plugin for WAR files, specifically to inline jars or export embedded packages?

Perhaps I am missing something simple. I am looking here: http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html and here: http://wiki.ops4j.org/display/ops4j/Getting+the+benefits+of+maven-bundle-plugin+in+other+project+types I would like to a export a package in a transitively-included JAR. However, no matter what I d...

problem with bundle

I try command bundle install --local but it show issue: -bash: /usr/local/bin/bundle: /usr/local/bin/ruby: bad interpreter: No such file or directory. please help me. ...

How to change the Bundle Installer Executable and Installation directory.

I have installed RVM and as noted in the install http://rvm.beginrescueend.com/rvm/install/ I was able to get "rvm is a function." A lot of what I've read recommends not to use sudo gem install bundler, but it did not work without sudo (the error said I was not able to write to var/lib/gems/1.8 with gem install bundler) Even after "Su...

maven plugin to be used for building an osgi bundle containing camel-routes and some POJO's for deploying inside fuse-servicemix 4.3.0 ?

Which maven plugin is used for building an osgi bundle containing camel-routes and some POJO's for deploying inside fuse-servicemix 4.3.0 . i have used pax as well as maven-bundle plugin for deploying into fuse servicemix .i get a lotof error's using these .any other good maven-plugin ? ...

android parcelable string array

I have ArrayList<String> ids = ArrayList<String>(); What would be the cleanest way to make it Parceleable? Apparently String itself is not parcelable, so Parcel.writeList(ids) is not working. I was thinking to either parcelize ArrayList<Uri> or put array contents into a Bundle. ...

How to bundle install a git gem behind a proxy?

I am behind a proxy and I have a git gem in my Gemfile. How can I configure bundler to use git with the appropriate proxy parameters? I already have $http_proxy appropriatelly set, as well as my .gemrc . Still, it doesn't work. ...

How to use a branch in a fork of rails in a project with bundler

I've got a fork of the rails repo on github, in which I've got a branch, based on the rails-2-3-stable branch. I want to develop some changes based on rails 2.3.10 together with my app. We're using bundler, and the app is versioned with SVN. What is the cleanest way to use my branch in the github fork of rails and share this across mach...