active questions tagged bundle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T19:00:02Zhttp://stackoverflow.com/feeds/tag/bundlehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1844036/linking-loadable-plugins-against-symbols-in-the-executable-on-linux-and-windows1Linking loadable plugins against symbols in the executable on Linux and Windowswagerlabs2009-12-04T00:17:08Z2009-12-06T16:29:06Z
<p>It's very on the Mac to <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=532531" rel="nofollow">create a loadable plugin as a bundle</a> and make it use symbols in the <em>Host executable</em>. How can this be done on Linux and Windows?</p>
<p>I hear there's <code>-rdynamic</code> on Linux that may come in handy but I'm completely at a loss as far as Windows goes.</p>
<p>The point is to move away from linking both the host and the plugin against a shared library and towards a statically built host.</p>
http://stackoverflow.com/questions/1831117/what-is-the-osgi-bundle-package-structure0what is the OSGi bundle package structure?Brodie2009-12-02T07:02:07Z2009-12-05T12:39:17Z
<p>i am new to OSGi standard. i want to know more about the structure of bundle package file.</p>
<ol>
<li>find there is this OSGi-INF folder, the specification mentioned about l10n and permission, i wonder where defined the use of OSGI-INF folder? can i put other stuff into it?</li>
<li>where to store the jar files referenced by the bundle?</li>
<li>besides OSGi-INF and OSGi-OPT is there any folders defined by OSGi standard?</li>
</ol>
<p>thank you very much.</p>
http://stackoverflow.com/questions/1850383/iphone-creating-texture2d-much-slower-when-image-loaded-from-file-in-apps-docu0iPhone : creating Texture2D much slower when image loaded from file in app's Documents, why?rudifa2009-12-04T23:35:57Z2009-12-05T00:18:20Z
<p>Slower than what? slower than creating the same textures from an image loaded from the app bundle.
How much slower ? 80 times slower on iPhone, similar ratio (but faster overall) on Mac.</p>
<p>My example below shows loading an image with imageNamed: ; creating textures from the first image ; saving image to a file in the app's Documents directory ; loading an image from that file ; creating textures from the second image.</p>
<p>Images are 640x640 png, 100 textures 64x64 are created in each case.
Creation times are 0.51 s vs. 41.3 s.</p>
<p>Can anyone explain this huge difference, and point me to ways and means of speeding up the second case, to make it as fast as the first, if possible ?</p>
<p>Rudif</p>
<pre><code>#import "Texture2D.h"
#define START_TIMER NSTimeInterval start = [NSDate timeIntervalSinceReferenceDate];
#define END_TIMER NSTimeInterval stop = [NSDate timeIntervalSinceReferenceDate]; NSLog(@"Time = %f", stop-start);
@interface UIImage (CS_Extensions)
-(UIImage *) imageAtRect:(CGRect)rect;
+(NSString *) documentsDirectory;
+(void) saveImage:(UIImage *)image toDocumentsFile:(NSString *)filename;
+(UIImage *) imageFromDocumentsFile:(NSString *)filename;
+(BOOL) documentsFileExists:(NSString *)filename;
+(void) createTexturesFromImage:(UIImage *)image640x640 texture:(Texture2D **)texture;
@end;
@implementation UIImage (MiscExt)
-(UIImage *)imageAtRect:(CGRect)rect {
CGImageRef imageRef = CGImageCreateWithImageInRect([self CGImage], rect);
UIImage* subImage = [UIImage imageWithCGImage: imageRef];
CGImageRelease(imageRef);
return subImage;
}
+(NSString *) documentsDirectory {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
return documentsDirectory;
}
+(UIImage *) imageFromDocumentsFile:(NSString *)filename {
// NSString *documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
NSString *documentsDirectory = [self documentsDirectory];
NSString *path = [NSString stringWithFormat:@"%@/%@", documentsDirectory, filename];
NSLog(@"%s : path %@", __FUNCTION__, path);
NSData *data = [[NSData alloc] initWithContentsOfFile:path];
UIImage *image = [[UIImage alloc] initWithData:data];
return image;
}
+(void) saveImage:(UIImage *)image toDocumentsFile:(NSString *)filename {
if (image != nil) { // save to local file
// NSString *documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
NSString *documentsDirectory = [self documentsDirectory];
NSString *path = [NSString stringWithFormat:@"%@/%@", documentsDirectory, filename];
NSLog(@"%s : path %@", __FUNCTION__, path);
//You can write an NSData to the fs w/ a method on NSData.
//If you have a UIImage, you can do UIImageJPEGRepresentation() or UIImagePNGRepresentation to get data.
NSData *data = UIImagePNGRepresentation(image);
[data writeToFile:path atomically:YES];
// Check if file exists
NSFileManager *fileManager = [NSFileManager defaultManager];
BOOL ok = [fileManager fileExistsAtPath:path];
if (ok) {
NSLog(@"%s : written file %@", __FUNCTION__, path);
}
else {
NSLog(@"%s : failed to write file %@", __FUNCTION__, path);
}
}
}
+(BOOL) documentsFileExists:(NSString *)filename {
NSString *documentsDirectory = [self documentsDirectory];
NSString *path = [documentsDirectory stringByAppendingPathComponent:filename];
NSLog(@"%s : path %@", __FUNCTION__, path);
BOOL exists = [[NSFileManager defaultManager] fileExistsAtPath:path];
return exists;
}
+(void) createTexturesFromImage:(UIImage *)image640x640 texture:(Texture2D **)texture {
NSLog(@"%s -> ", __FUNCTION__);
START_TIMER;
for (int x = 0; x < 9; ++x) {
for (int y = 0; y < 9; ++y) {
UIImage *ulCorner = [image640x640 imageAtRect:CGRectMake(x*64,y*64,64,64)];
texture[y*10+x] = [[Texture2D alloc] initWithImage:ulCorner];
}
}
END_TIMER;
NSLog(@"%s <- ", __FUNCTION__);
}
@end
-(void) test {
Texture2D *texture1[100];
Texture2D *texture2[100];
// compare texture creation from a bundled file vs Documents file
{
UIImage *imageBundled = [UIImage imageNamed:@"bivio-640x640.png"];
[UIImage createTexturesFromImage:imageBundled texture:texture1];
[UIImage saveImage:imageBundled toDocumentsFile:@"docfile.png"];
BOOL ok = [UIImage documentsFileExists:@"docfile.png"];
UIImage *imageFromFile = [UIImage imageFromDocumentsFile:@"docfile.png"];
[UIImage createTexturesFromImage:imageFromFile texture:texture2];
}
}
</code></pre>
http://stackoverflow.com/questions/1840423/osgi-swt-how-to-split-the-view-gui-in-many-bundles0OSGI + SWT: How to split the View (GUI) in many bundlesHectoret2009-12-03T15:01:10Z2009-12-03T15:01:10Z
<p>I'm writing a graphic application, with java, swt and osgi. The bundle A holds the application main window. Depending on the selection of the user, a different user interface must be loaded. That is, the different GUI are in different bundles.
So the main bundle A calls the bundle B to draw the new graphic interface. The bundle B contains many classes, SWT controls that extend the Composite class. This controls need a parent to draw to. The problem here is, the bundle B needs to draw on the bundle A. I tried to sends the parent composite that will hold the new interface from A to B, but when B creates the new control, it crashes.</p>
<p>Any idea? How to solve this problem?</p>
http://stackoverflow.com/questions/1829951/the-bundle-could-not-be-resolved-in-rcp-rap-application0The bundle could not be resolved in RCP-RAP applicationfxulusoy2009-12-02T00:32:15Z2009-12-02T07:01:21Z
<p>Hi,</p>
<p>I have a RCP application which constitutes of a number of plugins. And now, I try to develop RAP application which uses my old plugins. My RAP has a dependency of one old plugin. I created my own target platform and I added RAP sdk and other many eclipse platform libraries. When I run my RAP application, I get this exception. Do you have any idea to solve that? Depended plugin uses "org.eclipse.ui" package.</p>
<p>org.osgi.framework.BundleException: The bundle could not be resolved. Reason: Missing Constraint: Require-Bundle: org.unicase.link; bundle-version="1.0.0"
at org.eclipse.osgi.framework.internal.core.AbstractBundle.getResolverError(AbstractBundle.java:1313)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.getResolutionFailureException(AbstractBundle.java:1297)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:319)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:370)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1069)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:554)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:461)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:246)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:442)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:337)</p>
<p>2009-12-02 01:13:23.625::WARN: ERROR: /rap
java.lang.IllegalArgumentException: An entry point named 'hello' does not exist.
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createUI(EntryPointManager.java:77)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWTLifeCycle.java:227)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadController.run(RWTLifeCycle.java:115)
at java.lang.Thread.run(Unknown Source)
at org.eclipse.rwt.internal.lifecycle.UIThread.run(UIThread.java:80)</p>
http://stackoverflow.com/questions/1794698/how-to-run-java-application-bundled-to-app-on-mac-os-x-in-32-bit-mode0How to run java application bundled to .app on Mac OS X in 32 bit mode?Kaputt2009-11-25T04:48:19Z2009-11-25T04:48:19Z
<p>I have written a java application on win vista, it uses Bonjour and works fine. When I run it on Mac OS X 10.5.8 with all updates installed as a .jar file it runs perfectly too. But when I create a bundle using Jar Bundler it fails with
"Uncaught exception in main method: java.lang.UnsatisfiedLinkError: /usr/lib/java/libjdns_sd.jnilib: no suitable image found. Did find: /usr/lib/java/libjdns_sd.jnilib: no matching architecture in universal wrapper".</p>
<p>I googled and relized that the problem is, that there is no 64-bit implementation for Bonjour protocol.
So, I need .app to run in 32 bit mode as .jar does.<br>
When I run the jar file, java.version = 1.5.0_20 ; os.arch = i386 ; sun.arch.data.model = 32<br>
When I run the .app java.version = 1.5.0_20 ; os.arch = x86_64 ; sun.arch.data.model = 64 </p>
<p>I set up JVM Version in Jar Bundler to 1.5* , tried many options in Info.plist in .app bundle such as<br>
<code><key>JVMArchs</key></code><br>
<code><array></code><br>
<code><string>i386</string></code><br>
<code></array></code><br>
<code><key>LSArchitecturePriority</key></code><br>
<code><array></code><br>
<code><string>i386</string></code><br>
<code></array></code> </p>
<p>but it does nothing. </p>
<p>Does anyone know a decision?</p>
http://stackoverflow.com/questions/1737272/os-x-services-bundle0OS X Services BundlePinochle2009-11-15T11:20:04Z2009-11-15T11:20:04Z
<p>I'm trying to build a standalone service for Snow Leopard. It builds just fine, it shows up in the services menu, but when I try to run it, the executable is not recognized (it reports a Bash error 126 in the Console).</p>
<p>I built it out of a Cocoa bundle template. Is there something special in building bundles that I may have missed and need to verify? Some of the build parameters perhaps? Permissions? Ownership? (I don't think it was permissions, as I've compared the permissions of the executable to those of services that do work, and there is no difference).</p>
http://stackoverflow.com/questions/1700764/new-urlstreamhandlers-in-glassfish0New URLStreamHandlers in glassfishRoyce2009-11-09T12:43:44Z2009-11-12T12:47:56Z
<p>I have a legacy application that I'm trying to port to Java EE. Presently this application calls URL.setURLStreamHandlerFactory() to register some custom URL protocol handlers. This call fails under Glassfish v 2.1 and 3 because glassfish has already registered a factory.</p>
<p>I've tried using the java.protocol.handler.pkgs system property, but that doesn't work for me due to classloader issues. The handler classes are all part of the application and I'm not keen on trying to extract them and put a jar in the container's classpath.</p>
<p>I've got a whiff of osgi bundles - apparently I could write a Bundle that'll deal with the new protocols. I'm not keen on making this web application an osgi bundle (one step at a time! EE first, then osgi if the need arises). </p>
<p>Is it possible to pop a bundle jar in to my WEB-INF/lib directory and have Glassfish load it as a bundle? The bundle will need to import packages from the web applications (another jar in WEB-INF/lib or in WEB-INF/classes). I'm willing to package this app as an EAR if that'll work, I just can't justify osgifying the entire application without knowing more.</p>
http://stackoverflow.com/questions/1710353/how-to-distribute-native-perl-scripts-without-custom-module-overhead3How to distribute native perl scripts without custom module overhead?xyld2009-11-10T18:59:59Z2009-11-11T18:04:28Z
<p>How can someone distribute native (non-"compiled/perl2exe/...") Perl scripts without forcing users to be aware of the custom (non-CPAN) modules that the scripts needs in order to run?</p>
<p>The problem is users will inevitably copy the script somewhere else on the system and take the script out of its native environment and then it can no longer find the modules it needs to run.</p>
<p>I've sometimes settled with just copying the module into the actual script, but I'd prefer a cleaner solution.</p>
<p>Update: I better clarify. I distribute a bunch of scripts which happen to use similar modules in the backend. The users understand how to run Perl scripts, but rather than relying on telling them "no don't move the script" I'd prefer to simply allow them to move the files. The path of least resistence.</p>
http://stackoverflow.com/questions/1566146/how-to-externalize-a-spring-messagesources-bundle-outside-the-war0How to externalize a Spring MessageSources bundle outside the WARCirius2009-10-14T13:12:44Z2009-10-20T08:47:43Z
<p>Hi,</p>
<p>I have to externalize the Spring MessageSources bundle for i18n support (properties files) outside the classpath in order to modify properties more easily. How can I do that ?</p>
<pre><code><bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename" value="test-messages"/>
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1563948/bundle-additional-executables-with-py2exe1Bundle additional executables with py2exeDan2009-10-14T02:21:30Z2009-10-14T04:26:39Z
<p>I have a python script that calls out to two Sysinternals tools (sigcheck and accesschk). Is there a way I can bundle these executables into a py2exe so that subprocess.Popen can see it when it runs?</p>
<p><hr /></p>
<p>Full explanation: My script is made to execute over a network share (S:\share\my_script.exe) and it makes hundreds of calls to sigcheck and accesscheck. If sigcheck and accesschk also reside on the server, they seem to get transferred to the host, called once, transferred the the host again, called a second time, on and on until the almost 400-500 calls are complete.</p>
<p>I can probably fall back to copying these two executables to the host (C:) and then deleting them when I'm done... how would you solve this problem?</p>
http://stackoverflow.com/questions/1530109/osgi-programmitically-add-imports-to-a-bundle0OSGi: programmitically add imports to a bundleIttayD2009-10-07T07:38:56Z2009-10-13T10:08:40Z
<p>How can I add packages to a bundle's import from within code? I need it since I use libraries which rely on reflection and require other packages and I don't want to need to manually add those packages to MANIFEST.MF for each bundle I develop</p>
http://stackoverflow.com/questions/1198558/how-to-send-parameters-from-a-notification-click-to-an-activity0How to send parameters from a notification-click to an activity?PHP Jedi2009-07-29T07:29:21Z2009-10-08T19:42:50Z
<p>Hi</p>
<p>I can find a way to send parameters to my activity from my notification.</p>
<p>I have a service that creates a notification. When the user clicks on the notification i want to open my main activity with some special parameters. E.g an item id, so my activity can load and present a special item detail view. More spesific, im downloading a file, and when the file is downloaded i want the notification to have an intent that when clicked it opens my activity in a special mode. I have tried to use putExtra on my intent, but cant seem to extract it, so i think im doing it wrong.</p>
<p>Code from my service that creates the Notification:</p>
<pre><code> // construct the Notification object.
final Notification notif = new Notification(R.drawable.icon, tickerText, System.currentTimeMillis());
final RemoteViews contentView = new RemoteViews(context.getPackageName(), R.layout.custom_notification_layout);
contentView.setImageViewResource(R.id.image, R.drawable.icon);
contentView.setTextViewText(R.id.text, tickerText);
contentView.setProgressBar(R.id.progress,100,0, false);
notif.contentView = contentView;
Intent notificationIntent = new Intent(context, Main.class);
notificationIntent.putExtra("item_id", "1001"); // <-- HERE I PUT THE EXTRA VALUE
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notif.contentIntent = contentIntent;
nm.notify(id, notif);
</code></pre>
<p>Code from my Activity that tries to fetch the extra parameter from the notification:</p>
<pre><code> public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Bundle extras = getIntent().getExtras();
if(extras != null){
Log.i( "dd","Extra:" + extras.getString("item_id") );
}
</code></pre>
<p>The extras is always null and I never gets anything into my log.</p>
<p>Btw... the onCreate is only run when my activity starts, if my activity is already started I also want to collect the extras and present my activity acording to the item_id I recieve.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1522568/grails-create-a-new-resource-bundle0grails create a new resource bundleCirius2009-10-05T21:43:04Z2009-10-06T09:01:58Z
<p>Hi,</p>
<p>I'd like to create another resource bundle to organize my Grails app. Grails provides a 'messages' resource bundle and I need to create a 'myApp' resource bundle.</p>
<p>How can I create a new resource bundle and read its properties with the 'g:message' GSP tag ?</p>
<p>Thanks a lot.</p>
http://stackoverflow.com/questions/1507937/iphone-change-application-bundle-files0iPhone: Change application Bundle filesRupesh2009-10-02T06:01:31Z2009-10-02T06:19:42Z
<p>hi all,
in my application bundle, there are a XML file. i want to change this XML with other XMl file which have same name (without open Xcode). so i want to ask that whether there are any problem arise when i run this application in iPhone</p>
http://stackoverflow.com/questions/1503304/how-to-get-classloader-for-a-bundle-in-equinox0How to get classloader for a bundle in equinox?Suraj Chandran2009-10-01T11:13:03Z2009-10-02T02:44:16Z
<p>How can I get the classloader for a osgi bundle in eclipse equinox setup.
Thanks,
Suraj</p>
http://stackoverflow.com/questions/1464036/equinox-bundle-import-conflict0Equinox Bundle import conflictSuraj Chandran2009-09-23T04:56:36Z2009-09-26T11:12:49Z
<p>1) Bundle A <strong>reexports</strong> package com.X, which it gets from bundle C</p>
<p><hr /></p>
<p>2) Bundle B exports package com.X</p>
<p><hr /></p>
<p>3) Now bunlde D has dependency on both A and B.</p>
<p><hr /></p>
<p>From where will the bundle D get the package com.X from?</p>
http://stackoverflow.com/questions/1455763/application-bundle-mac-os-x-leopard0Application bundle Mac OS X LeopardKen2009-09-21T17:33:49Z2009-09-21T17:58:35Z
<p>I had a working application bundle on Mac OS X Tiger. I was easily able to just replace the jar file and everything worked as i made changes. I take that app bundle now, and when it is on Leopard, I get the error message along the lines of "Cannot open this application because it is not supported on this architecture". </p>
<p>I assume this is because Tiger is 32-bit and Leopard is 64-bit. Is there a way to make this same app bundle work on Leopard? Or do I have to make an entirely new one? I am not a Mac guy, so am limited in what to do from here.</p>
http://stackoverflow.com/questions/1453807/how-are-objects-defined-in-an-xib-file-and-how-are-they-created-at-runtime0How are objects defined in an XIB file and how are they created at runtime?Crippledsmurf2009-09-21T10:22:23Z2009-09-21T11:55:03Z
<p>I've just purchased a Mac and am beginning to explore software development using Cocoa and Objective-C using XCode in Snow Leaped having come from a strong Microsoft and C# backgrund</p>
<p>All of the documentation and tutorials I have read use Interface Builder and XCode to create applications with user interfaces. My current understanding is that objects created by Interface Builder are in some way defined in an .xib file and created at runtime.</p>
<p>A bundle contains code and resources that accompany it. Is it right to say that an .xib file is in fact a bundle that contains UI resources and that this bundle is loaded (is that the correct verb?) at runtime and object instances are created?</p>
<p>If the abive is true is there any way I can see the code generated by Interface Builder and the point in code where these objects are created, without seeing this at least once I feel like there is a lot of "magic" happening and that isn't helping me at this stage of my learning.</p>
<p>Is there anything I should be reading to grasp the apparent paradigm-shift between C# / WinForms and Objective-C / Mac OS / Cocoa?</p>
http://stackoverflow.com/questions/1453757/cannot-connect-to-a-modified-bundled-and-registered-amazon-ami0Cannot connect to a modified (bundled and registered) Amazon AMIundefined2009-09-21T10:06:46Z2009-09-21T10:06:46Z
<p>Hi all,</p>
<p>I am having problems connecting to an AMI that I created by modifying an existing linux ami, bundling it and registering it. Heres what I did -</p>
<ol>
<li>Launch existing CentOS AMI (ami-cb52b6a2) - this is a Rightscale LAMP image</li>
<li>configured Apache, PHP etc and copied over some PHP scripts etc</li>
<li>Tested it - all worked as I want it to</li>
<li>I bundled it using the EC2 tools on the instance (ec2-bundle_vol) as in the documentation <a href="http://docs.amazonwebservices.com/AWSEC2/latest/GettingStartedGuide/index.html?creating-an-image.html" rel="nofollow">here</a>. Only difference being I copied my key and certificate to the /root/mnt/ folder using WinSCP.</li>
<li>uploaded bundle to S3 bucket using ec2-upload-bundle (my bucket name does have an underscore in it)</li>
<li>Registered the image using Amazon Management Console</li>
<li>Launched the instance from the management console and assigned elastic IP address, used the same security group as always and the same keypair. </li>
<li>Tried to connect with Putty, WinSCP, browser but nothing works. I get a timeout message from Putty and a "[can't open the page] because the server where this page is located isn’t responding." from a web browser.</li>
</ol>
<p>Any ideas what would cause this, should i try and bundle again? are there any issues with bundling a modified image? Eric Hammond notes there are issues with bundling using the Ec2 tools pre-installed on Ubuntu images on <a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=368" rel="nofollow">this thread</a>. Could this be the same for CentOS? </p>
<p>Many thanks all</p>
http://stackoverflow.com/questions/1415189/how-to-setup-bundle-development-environment-eclipse-equinox-maven2How to setup bundle development environment (Eclipse Equinox Maven)Seyn2009-09-12T14:01:32Z2009-09-13T14:11:12Z
<p>Hi,
I'am trying to setup eclipse environment to develop bundles (With maven-bundle-plugin-bnd)
and run & debug that bundles equinox from eclipse </p>
<p>I created sample bundles with org.apache.felix maven-bundle-plugin and can install and start that bundles from eclipse equinox,<br />
but every time i need to run "install file:C:\path\bundle1.jar","install file:C:\path\bundle2.jar" which causes pain. i searched for run configuration but it only intalls and starts (plugin) projects in workspace not maven projects. </p>
<p>What i have done is create maven project and add dependencies(bundle1,bundle2 etc..) and added maven-dependency-plugin to copy all depended bundles in one folder (another problem is equinox use "_" delimeter to determine version of bundles but maven uses "-" as delimeter) if i do not strip version in standalone equinox application i need to give version of bundle in config.ini file but i dont want that, is this proper way to solve this problem?</p>
<pre><code><plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${bundleDirectory}</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
</code></pre>
<p>To sum up , i have bundles in folder, which is created with org.apache.felix maven-bundle-plugin , how can i run and debug them from eclipse?</p>
http://stackoverflow.com/questions/1399164/objective-c-application-plugin-quick-start0Objective-c application plugin quick startJ T2009-09-09T11:37:49Z2009-09-09T11:53:51Z
<p>I need to add a few methods to an already identified class in a closed source application. Using f-script anwywhere and gdb I know what I need to interact with to acheive my goals.</p>
<p>However I am struggling to find a solution to allow me to inject some code (preferably objective-c) into the running application. </p>
<p>For the time being I would be quite happy to just inject the code via gdb and manually start the code as I just recently upgraded to Snow leopard and are aware of issues with SIMBL.</p>
<p>Are there any basic guides on getting started with this? I fail to find anything really useful from googling around. </p>
<p>I think I need to create an application bundle (never done this before so this in itself is a challenge) and use GDB to load into the application. Once this is done I beleive I can then call my bundles code from GDB.</p>
<p>Basically I think I need some hints on creating the bundle and the subsequent loading via GDB. Any simple examples of loading a class/object into an application (maybe simply a hello world should suit) would be very much appreciated.</p>
<p>I may also be misguided with the focus on bundles?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1338727/any-way-to-get-a-cached-uiimage-from-my-documents-directory1Any way to get a Cached UIImage from my 'Documents' directory?RexOnRoids2009-08-27T03:39:50Z2009-08-27T05:20:23Z
<p>I know that the -imageNamed: method returns a Cached UIImage, but the problem is that my image file is stored in 'Documents', and the -imageNamed: method seems to only search the Bundle... I am currently (reluctantly) using -imageWithContentsOfFile: to get my image from 'Documents' but it is not the same...Scaling up/down a UIImageView containing the resulting image is choppy and awkward. Scaling the same UIImageView containing an image created with -imageNamed: however appears very smooth. So, again: <strong>How can I get a cached UIImage from my 'Documents' if I cannot use -imageNamed:?</strong></p>
http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts11What are some useful TextMate shortcuts?Thanatos2008-09-19T05:10:00Z2009-08-25T11:08:48Z
<p>Macs are renowned (or bemoaned) for having an extensive number of shortcuts. However, OS X itself pales in comparison to the shortcut lists in <a href="http://macromates.com/" rel="nofollow">TextMate</a> and its bundles.</p>
<p>What are some useful keyboard shortcuts you use?</p>
http://stackoverflow.com/questions/1301179/is-having-eclipse-osgi-activators-inheriting-from-each-other-a-good-idea1Is having Eclipse OSGI Activators inheriting from each other a good idea?AntóinÓg2009-08-19T16:42:59Z2009-08-24T21:13:31Z
<p>If you have a common eclipse/osgi code platform on which you build various products can you/should you inherit activators from the common code</p>
<p>E.g.</p>
<p>org.test.common.PluginActivator<br>
org.test.common.ui.UIPluginActivator</p>
<p>org.test.product1.Product1PluginActivator<br>
org.test.product1.ui.Product1UIPluginActivator</p>
<p>org.test.product2.Product2PluginActivator<br>
org.test.product2.ui.Product2PluginActivator</p>
<p>I want to have all the UI activators inheriting from the common one, and the same for the non-ui activators. The start methods would all be calling super...
However I am wondering if this is bad osgi/bundle practice or could cause problems.</p>
<p>Does anyone have any ideas/opinions on this?</p>
http://stackoverflow.com/questions/1312735/the-document-nsbundle-h-could-no-be-saved0The document NSBundle.h could no be savedCarlos2009-08-21T15:41:07Z2009-08-21T18:53:34Z
<p>I'm having some troubles with the bundle and somehow I can't save images from bundle to docs directory any more. Now I've got this error before building:</p>
<blockquote>
<p>The document NSBundle.h could no be
saved</p>
</blockquote>
<p>It apparently compiles well.
This is the kind of code I'm using:</p>
<pre><code>//Get every name from plist array and append it to the full path
for( NSString *aName in namesPackage ) {
bundlePath = [[NSBundle mainBundle] pathForResource:aName ofType:@"png"];
if([fileManager fileExistsAtPath:bundlePath])NSLog(@"it exists in bundle: %@",bundlePath);
imagePath = [NSString stringWithFormat:@"%@/%@/%@",DOCUMENTS_FOLDER,package,aName];
[fileManager copyItemAtPath:bundlePath toPath:imagePath error:&anError];
if(anError) NSLog([anError description]);
}
</code></pre>
<p>Thanks for your help in advance.</p>
http://stackoverflow.com/questions/1298647/apache-felix-bundle-repository-calling-from-another-bundle1Apache Felix Bundle Repository - Calling from another bundleJames Carr2009-08-19T09:08:26Z2009-08-21T15:58:23Z
<p>I have a simple test program which is designed to consume the Apache Felix Bundle Repository bundle service however I am having trouble configuring it through eclipse.</p>
<p>I am using the jar for the bundle (org.apache.felix.bundlerepository-1.4.0.jar) as an referenced library and have added it to the classpath in the manifest.</p>
<p>When I try to start my bundle it gives the error:</p>
<p><code>java.lang.ClassCastException: org.apache.felix.bundlerepository.RepositoryAdminImpl cannot be cast to org.apache.felix.bundlerepository.RepositoryAdmin</code></p>
<p>I can't add org.osgi.service.obr to the list of imported packages in my bundle (as it doesnt resolve) and I think this is the reason for the issue.</p>
<p>Any ideas?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1274480/two-executables-in-one-bundle-on-mac1Two executables in one bundle on MACDejan2009-08-13T20:46:47Z2009-08-17T08:18:58Z
<p>Hi,</p>
<p>Is it possible to have two executables each with its own plist to share the same bundle. Then depends on the way app is executed (parameters) to load the appropriate executable.</p>
<p>Imagine the case where we have a main application (executable with UI) and the mini application (shorter version of the main app also with its own UI) and then depend on the parameters user used for starting the application execute the appropriate executable in the same bundle.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1262946/bundle-identifier0Bundle IdentifierDivanshu2009-08-11T21:11:43Z2009-08-12T16:02:57Z
<p>Hi,</p>
<p>I'm running a small team of iPhone developers and am a bit concerned about the application transfers into iPhone from Xcode.</p>
<p>The problem is that whenever an app is transfered into the iphone the earlier transfered app is mysteriously replaced.</p>
<p>My question is, "How do I ensure that every app takes its own respective place and does not replace one another".</p>
<p>I had suggested the whole team to change the name of the bundle identifier in the info.plist to prevent such an event.</p>
<p>Please suggest if there's any other way to ensure that the app is not replaced as it is getting really time consuming for me to transfer the deleted app again and again and it gets expensive in the case of paid apps.</p>
<p>Cheers,</p>
http://stackoverflow.com/questions/1233630/felix-pref-bundle-requires-log-version-1-3-but-d-l-log-bundle-version0Felix 'pref' bundle requires 'log version >=1.3', but D/L 'log' bundle version = 1.0Houtman2009-08-05T14:30:07Z2009-08-06T03:42:32Z
<p>Hi,</p>
<p>the Felix download page shows
Log bundle version 1.0.0
Preferences bundle version 1.0.2 </p>
<p>But preferences requires log-bundle version >= 1.3</p>
<p>It just want to get an idea of how 'preferences' works,
so any log compatible bundle is welcome :)</p>
<p>Regards.</p>