The asset tag has no wiki summary.
0
votes
1answer
12 views
How to manually add a plugin like Fancybox to your Rails app
I need to add Fancybox to my Rails app. Normally I would just use the gem and add the required lines to application.js and application.css. However, I am using a bunch of different templates within ...
0
votes
0answers
27 views
rails asset pipeline production precompile
I have a directory projName/vendor/assets/bootstrap/css/
I am in production mode.
production.rb contains: config.assets.precompile << /(^[^_\/]|\/[^_])[^\/]*$/
when I run rake assets:precompile
...
0
votes
0answers
48 views
Symfony2: asset_url doesn't work on DEV environment
{% stylesheets
'../web/less/main.less'
filter='less'
%}
<link rel="stylesheet" href="{{ asset_url }}">
{% endstylesheets %}
This code works perfectly on PROD environment. Here is an ...
0
votes
0answers
35 views
Asset manager for NodeJs that reads supplied min files
I'm checking a lot of the asset management packages for Nodejs. However, I can't seem to find a manager, that reads the "min" version of a file. Example: If I define, lets say, '/js/jquery.js' in the ...
1
vote
1answer
98 views
How to call one javascript asset only in laravel?
In my base controller, I added two asset inside:
Asset::script('jquery', 'js/jquery-2.0.0.min.js');
Asset::script('test', 'js/test.js');
But when I called : Asset::script, all these two ...
2
votes
0answers
20 views
Non Retina Ipad having blur issue when trying to get Thumbnail from Asset
I am having an application in which i need thumbnail of the image of asset i have selected from the gallery.
So wrote the following code for getting the thumbnail, it works fine in IPAD retina but ...
0
votes
0answers
64 views
binding rating control to an item from asset library dynamically in sharepoint 2013
I have a query related to SharePoint 2013.
I have a page in site collection that dynamically displays an item from asset library. Now I want to add a rating control to the page that gives rating to ...
0
votes
2answers
186 views
Couldn't find a file for twitter bootstrap
I'm using twitter bootstrap in my Rails application. It works well in development mode but does not in production. Here is the Gemfile
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails'
gem ...
1
vote
3answers
53 views
Take an xml feed from the internet and put it in my assets
Currently i am developping an android application and i'm using an xml feed that i take from the internet.the problem is when my phone doesn't have an internet connection, my application crashs. I ...
3
votes
5answers
181 views
Rails won't load asset pipeline
I ran rake assets:precompile by mistake on development, and Rails stopped loading the assets on development. I only get application.js and application.css loaded.
application.js:
//= require jquery
...
1
vote
2answers
56 views
HTML <img> tag with Heroku CDN?
I have a question about using asset_sync and a Heroku CDN. In this article, it says
Make sure you’re using the Rails AssetTagHelper methods (like
image_tag). This will ensure all of your assets ...
0
votes
2answers
64 views
The name 'Assets' does not exist in the current context
I have a problem with this line of code. Want to create sqlite database on the device.
string dbPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal) + "\\test.db";
...
0
votes
1answer
53 views
Error Loading image from asset folder through Implicit Intent by using Phone's Image viewer
I am trying to display different London Tube maps through mobile's camera image viewer app by using implicit Intent. I had tube_map.gif image file in asset folder but when i try to load this file, app ...
0
votes
1answer
103 views
Load local assets from remote HTML - android app
I'm trying to load local source such image via remote HTML on server.
I get this error when run the app :
Not allowed to load local resource: file:///android_asset/www/img/logo.png:0
how to solve ...
0
votes
2answers
145 views
Populate Android ListView with names of items in asset folder
I am building a media player based on someone elses code.
The media player plays mp3's from the asset folder.
I have added a ListView to the media player layout.xml and would like to populate this ...
0
votes
1answer
72 views
yepnope / modernizr.load global complete callback?
Is it possible to fire a global complete callback once ALL files have loaded? Ex:
yepnope(['file1.js', 'file2.js'])
....some html....
yepnope({complete: function() { console.log('This is getting ...
0
votes
0answers
110 views
Webpage stuck in loading in Chrome
My webpage gets stuck in loading in Chrome (the little spinning icon on the page tab, and the mouse cursor also stuck in loading version), but the odd thing is everything in the website displays fine. ...
3
votes
1answer
129 views
Symfony Asset bundling
In Symfony 2 Im using asset bundling like so.
{% stylesheets
'bootstrap/css/bootstrap.css'
'bootstrap/flat/css/flat-ui.css'
filter='cssrewrite'
...
3
votes
0answers
85 views
Copying android .apk to another .apk file through java code and over-ride its assets files?
is it possible to create .apk file by copying an already existing .apk file and modifying its assets folder? I have some information in a file in assets folder containing server ip and port to which ...
0
votes
1answer
39 views
RoutingErrors with static assets
I'm having some issues with routing errors on my static assets. I keep getting the following error in my logs:
2013-03-20T00:11:12+00:00 app[web.1]: Started GET "/assets/sprite-8bit.png" for ...
0
votes
1answer
85 views
Are my assets being served from AWS S3
Maybe a really daft question and please dont mark me down for this, but I finally got Heroku to compile its static assets in my S3 bucket with asset_sync.
Now how do i know that the assets are in ...
1
vote
1answer
49 views
Best practice for making single-use pages
From time to time, we held special events on our site (e.g. discounts or lottery draw). These events each will have a special page (or pages) with very distinct styles/javascripts/images.
These ...
0
votes
0answers
36 views
undefined method `link_to_add_association' in production with apache/phusion
I am facing a strange problem. I have an app deployed on rails 3.2.1 with apache/phusion. I have precompiled the assets with "rake assets:precompile". However, I get "undefined method ...
0
votes
3answers
245 views
Android: Neither res/raw files nor assets can be loaded
I try to load a .ini file in android, but it doesn't work. Until now I have tried the following two ways:
Load file from res/raw folder:
int fileId = context.getResources().getIdentifier(fileName, ...
0
votes
2answers
330 views
Why doesn't Android Asset Studio Generate ldpi launcher icons?
It's all in the title. It seems that Android Asset Studio does not generate ldpi launcher icons. The tool also seems to generate xxhdpi icons, which aren't mentioned in the Android launcher icon ...
-1
votes
2answers
73 views
NullPointer Exception When getting font files from assests using class loader
I have this code to get the font files from assests folder:
public static Typeface getMyFont(Context context, String resource) {
InputStream is;
Typeface font = null;
ClassLoader ...
1
vote
1answer
129 views
Jasmine won't load javascript files from asset pipeline
I'm developing a gem and I've installed Jasmine https://github.com/pivotal/jasmine-gem/
All of my required JS files are in my manifest file at app/assets/javascripts/application.js
//= require ...
0
votes
3answers
191 views
Load local asset into the browser (not into a WebView)
My problem is that I need to load an HTML file that is in my project into the Browser.
For the particulars of the application, I can't:
Copy the asset in the SDcard, because it could be unmounted ...
1
vote
2answers
624 views
Convert UIImage to NSData without using UIImagePngrepresentation or UIImageJpegRepresentation
I Need to convert UIImage to NSData but without using UIImagePngRepresentation or UIImageJpegRepresentation, for images from photolib i can use assetlib method as mentioned here Using ALAssetsLibrary ...
0
votes
1answer
96 views
Symfony2 assets are not shown
I'm working on Symfony2.
pq anyone knows my website takes no assets correctly?
I'm working on app.php with $ kernel = new AppKernel ('prod', false);
When I upload the site to the web server but I see ...
0
votes
1answer
68 views
Open Source Asset Management or File Server
I'm looking for a simple tool that would allow users to update and tag assets.
THen search/browse for assets and view the assets in the search results.
I have lots of files, i.e. logos, buttons, ...
0
votes
0answers
108 views
Android - AssetFileDescriptor referring to wrong file
I am making a simple app with 3 radio buttons in a radio group. When the user selects one of the three, mediaplayer should play the corresponding song, yet all three buttons play the same song, even ...
4
votes
1answer
150 views
Rails 3.2.11 asset pipeline: accented characters in javascript get converted to question marks in production
I'm writing a rails application in Spanish and I'm having trouble displaying accented characters from JavaScript.
Everything works fine in development, but in production, in the unified ...
1
vote
1answer
113 views
Capture images and store them only inside apk in android?
i want to use the device camera and capture image , than convert it to lower quality image and store that image inside "assets" instead inside the cellphone .
i am not expecting to the full code , ...
0
votes
0answers
63 views
Asset Inventory don't read/write a .txt file
//This is the Save Button, How can I make the data I put to be a .txt file and where directory it will go?//
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) { ...
2
votes
1answer
177 views
Fingerprinting Assets in a Maven/JSP/RequireJS Webapp?
I have a simple Maven webapp that uses a single JSP and RequireJS to serve up a single-page Javascript-heavy app. I've been looking around for something that I can use to fingerprint assets during the ...
0
votes
1answer
293 views
Problems with Symfony 2 Console task “assets:install” and Subversion
I'm currently developing a bundle with Symfony 2. Because I'm using windows, I have to use the command: php app/console assets:install web for getting hard copies of my JS and CSS Files into the web ...
0
votes
1answer
1k views
Copying from asset to sdcard open failed: ENOENT (No such file or directory)
I am try to copy from asset to sdcard
Here is part of my code
private void CopyAssets(String folder) {
File folders = new ...
0
votes
0answers
100 views
Liferay : Templating : How to get doc&media elements of an Asset Publisher
I have an Asset Publisher where a put manually diferent items from my document & media.
Then, I need to display these images in a specific way, therefore, I need to create and assign a template ...
1
vote
0answers
48 views
AndroidAssets image loading for different resolution and memory
I have used different resolution images in my game to support different screen sizes and different memory bitmap memory capabilities. However, it makes the application quickly become quite large as ...
1
vote
2answers
537 views
android webview error Page not found
I use webVIew read local HTML.
HTML storage location
Project for asset
Some phones can be successfully used(samsung...)
Some phones can not(HTC nexus...)
Here is my code
public class MainActivity ...
0
votes
0answers
105 views
Load all assets in single Texture in AndEngine
I am new in AndEngine. Instead of creating textures for each of the assets, how can I load all the assets into a single Texture and extract the individual assets as TextureRegions?
0
votes
0answers
62 views
Web asset server concept - 3rd party software available?
We are serving dynamic (PHP) websites and their assets (JS/CSS/images/videos/binary downloads) via the same apache hosts. The static files are only being used as origins for CDN services used to ...
0
votes
0answers
37 views
Directory that is a mix of asset an internal storage?
i'm working on an android project where we are deploying a huge configuration file along with the application. This file should be updated from time to time using the push-service.
The main problem ...
3
votes
2answers
321 views
Why can't nginx find my assets?
I'm on rails 3.2 and my production setup is using nginx and unicorn.
I have a problem with some assets that a ruby gem called sidekiq uses. However those assets are not being served properly when I ...
0
votes
1answer
154 views
Creating a SWC image/file library at runtime using external files
I'm working on a Flash GUI project which has many images need to be dynamically loaded at runtime.
Problem:
Currently everytime a class initializes, it loads its assets (images) from HDD, but that ...
0
votes
1answer
177 views
Install assets from app directory
Here is my directory structure
/app/Resources/public
/app/Resources/public/css
/app/Resources/public/iamges
/app/Resources/public/js
I need to install these assets to /web directory. What is the ...
0
votes
1answer
223 views
How do I use an external font like Impact for my android app?
I would like to use the external font Impact on my android app. Currently the code that lets me use my font looks like this:
Paint textPaint = new Paint();
textPaint.setAntiAlias(true);
...
1
vote
1answer
272 views
asset_sync Gem Causes Heroku to Hang on precompile
I'm using the asset_sync gem with a Heroku deployment (Rails 3.2.3). Precompilation works nicely locally (pushing assets up to my AWS bucket without issues), but when I push to Heroku, it hangs during ...
0
votes
1answer
1k views
Symfony 2 Asset images
I want to add asset images in my views. But If i load the page the images won't load..
config:
framework:
esi: ~
translator: { fallback: "%locale%" }
secret: ...
