Bundles are a group of resources.
Questions tagged [bundles]
179 questions
1
vote
1 answer
Why does unrelated history appear when running a "git log -m --follow" on a file after merging in multiple repos into one monolithic repository?
I have several distinct git repos that I'd like to merge together into one monolithic repo while retaining their histories. I've found a way to do this but I am a little confused about what git log is showing me for a single files history.
Here…

Nida
- 21
- 3
1
vote
0 answers
Symfony 4 Bundle Development
I am trying to write a bundle to manage common functions across multiple App development in Symfony 4.
I have created a new blank App and new Blank bundles to which I have gradually been adding functionality. To get both annotation routing and…

Craig Rayner
- 413
- 8
- 11
1
vote
2 answers
Internationalization in Java
I am trying to use I18N in my program but it doesn't work properly. The console doesn't show a German symbol, but rather '?'.
Here is my code:
import java.util.Locale;
import java.util.ResourceBundle;
public class LocaleDemo {
public static void…

LuckyProgrammer
- 79
- 1
- 1
- 8
1
vote
2 answers
Asynchronious CSS load with MVC5 Bundles
I was reading about asynchronous CSS loading
here
and I was wondering if it is possible to use that kind of behaviour in MVC5 bundles.
What I want to achieve is multiple bundled CSS files downloaded in a non-blocking way (meaning faster loading time…

Koscik
- 190
- 1
- 3
- 14
1
vote
0 answers
iPhone OS create bundle with private data
I am in the situation where i need to create a toolkit for iphone apps. I know that i am not allowed to create frameworks with code + xib files + images, but i am allowed to use static libraries.
So what i have done is to compile my code into a…

mmdumi
- 173
- 9
1
vote
1 answer
bootstrap - Failed to load resource
I have an aspnet mvc application My bootstrap bundle could not be loaded in browser
BundlesConfig
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
...
bundles.Add(new…

Samra
- 1,815
- 4
- 35
- 71
1
vote
1 answer
MVC 5 returning Error 500 when resolving images on IIS 8
I have an MVC 5 web app that will not resolve images when deploying on a Windows 2012 R2 server using IIS 8 but works fine when running on my local machine.
Getting the following error message in the console:
GET…

blueprintchris
- 1,053
- 1
- 16
- 38
1
vote
1 answer
Can't open GetBundles when clicking it in the Bundles menu in TextMate
I can install the GetBundles bundle, but when I click on it (Bundles > GetBundles > GetBundles), nothing happens.
I've followed multiple guides, and they all lead me to the same situation. Here's an example of one such…

solidcell
- 7,639
- 4
- 40
- 59
1
vote
1 answer
Bundle.getString() doesn't seem to get the values
I want my MainActivity to get extras from two different activties and I figured the only way to differ from the two activties is to check the key of the Bundles but when i try to get the extras that they come from, they are all null.
Main…

kennyYice23
- 73
- 1
- 10
1
vote
1 answer
How to make sure OSGi bundles load in right order
I have a class that programatically starts an OSGi container, loads bundles, then starts them. The problem I am having is that the bundles are not started in the right order. Some bundles get loaded and started before those they are dependent on get…

Program-Me-Rev
- 6,184
- 18
- 58
- 142
1
vote
2 answers
Error called trying to get Bundle URL
I am getting an error when I try to get a path of an audio file I have.
let path = Bundle.main.path(forResource: "SaveALife", ofType: "mp3")!
In the console I receive this:
Thread 1: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)
Any help?…

SeinAI0
- 41
- 4
1
vote
1 answer
Publishing Umbraco site, bundles doesn't work
I have a website made in Umbraco connected to Visual Studio 2012. When I start the project (F5) it looks like it should with CSS and jQuery. In this project we use bundles.
When I publish my website, the bundles can't be found.
"Failed to load…

MissAndersson
- 59
- 1
- 1
- 8
1
vote
1 answer
Symfony2 - change configuration of vendor bundle
I faced a proble: i need to change vendor bundle configuration. How can i do that correctly?
Vendor bundle config:
namespace Oro\Bundle\DataGridBundle\Extension\Toolbar;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use…

Stepan Yudin
- 470
- 3
- 19
1
vote
0 answers
Gigantic bundles using gulp
Would be so grateful if someone could help me wrap my head around this. I have a project built in react. Using gulp to build my bundles. However, my bundles end up over 10Mb each. And the css 2Mb. Whenever I reload the page i download 22Mb data…

Daniel Björkqvist
- 11
- 2
1
vote
1 answer
Interactive parameters from bundle
I'm developing my first bundle in Symfony2, are services that make use of some parameters in its construction and was working properly if I keep this structure, in AcmeBundle/Resource/config/parameters.yml:
parameters:
id: IDVAL
secret:…

Adexe Rivera
- 414
- 7
- 12