Assetic is an asset management framework for PHP.

learn more… | top users | synonyms

0
votes
0answers
13 views

Symfony2 Twig custom filter in asset

I'm nearly new in Symfony2 and I have a little question: I'm developing an email template, which has txt and html parts (no problem with it) The only 'problem' I have is with the absolute paths of ...
3
votes
1answer
64 views

Symfony 2 Assetic Fatal error: Class 'Assetic\Util\PathUtils' not found on asset dump

I'm using Symfony version 2.1.10 with Assetic and after the last composer update I get the follwoing error when I try to run php app/console assetic:dump Dumping all dev assets. Debug mode is on. ...
0
votes
0answers
29 views

Including assets_version in CSS image paths (Symfony2)

Am using the Symfony2 assets_version feature to append a unique version to all images, JS, CSS etc including using the asset() function. This works fine when assets are included individually (e.g. a ...
0
votes
1answer
31 views

Doctrine FIxtures and Symfony2 Request scope

I want to create Article fixtures for my project which uses Doctrine2 and Symfony 2.2. Here is how articles are created: They don't link to images directly but instead they contain image names. ...
0
votes
1answer
29 views

Symfony2 Assetic generating dead links in dev

I'll try to keep it short, don't want to waste your time. Working in dev environment: template: {% block javascripts %} {% javascripts '@SomeBundle/Resources/public/js/*' %} <script ...
2
votes
0answers
190 views

Using assetic outside Symfony2 (with Yii)

We want to use assetic, specifically to manage our image assets. However, I am stuck trying to figure out how to integrate assetic with the framework we use, Yii. What I want to do is read the images ...
5
votes
2answers
955 views

Method Assetic\AssetWriter::getCombinations() does not exist exeption on symfony2 deploy using capifony

My deployment fail when calling: cd /var/www/prod/releases/20130513164742 && php app/console assetic:dump --env=prod --no-debug My setup worked fine yestertay but today I can't deploy it ...
0
votes
0answers
41 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 ...
3
votes
1answer
40 views

Using CDN when combining assets with Symfony2 and Assetic

I would like to use CDN together with Assetic in my Symfony2 project. I am using the javascripts helper to combine several Javascript files: {% javascripts '@MyBundle/Resources/public/js/file-1.js' ...
0
votes
1answer
47 views

Assetic - How to disable asset combination?

I am using assetic to manage my CSS files in the Symfony 2 framework. It works well in production mode. My problem is that in debug mode, assetic keeps combining my files into one output file. It ...
0
votes
0answers
36 views

How do you use Compass with Symfony2.2 + Assetic

There are a bunch of questions related to Assetic and SASS or Compass, but nobody actually answers how to use Assetic with Compass and what the correct directory structure should be. How do I set up ...
0
votes
2answers
39 views

Symfony2 Path to image in twig template

I store img in Acme/DemoBundle/Resources/public/img/weather_icon/blizzard.gif I want to put this img in my template so I did <img src="{{ asset('bundles/acmedemo/img/weather_icons/blizzard.gif') ...
0
votes
1answer
29 views

result of sys_get_temp_dir() not writable by Apache process's user

I've been working with Assetic and YUICompressor to minify and concat js/css. I'm having a problem figuring out the correct write permission working on my local testing environment and the result of ...
0
votes
0answers
12 views

Symfony delivers different js files throught assetic based on env

I include the following js files via assetic in my twig template: {% javascripts '@ExopGrdBundle/Resources/public/js/logger.js' '@ExopGrdBundle/Resources/public/js/config.js' ...
0
votes
1answer
51 views

combining css files into one breaks the site layout

I have a site that I am working on and I've been running on dev mode, where it doesn't combine all the css files that I have into a single script. Everything worked totally fine. When running on prod, ...
0
votes
3answers
45 views

Symfony2 path to img in css file on webserver

I have in my css file this path to img .picture{ background:url(../img/once.png) } It works on localhost, but it does't on web serwer. I keep this files on web/css and web/img EDIT: link This ...
0
votes
1answer
28 views

what's the good way of handling css files edit in symfony2

I think I miss something as it goes for edititng CSS in symfony2 project. I've attached my css file like so: {% stylesheets 'bundles/wshcmshtml/css/custom.css' filter='cssrewrite' %} ...
0
votes
0answers
43 views

How do I get Assetic to stop running filters if the file hasn’t changed?

I'm using Zend Framework 2, and I'm using the following function with my Abstract controller to group all assets from the modules, then write/minify them to a cache file, and then serve file path to ...
0
votes
1answer
30 views

Symfony2 Compiled Assetic YUI

I've created a new environment called 'staging' which is pretty much the same config as the 'production' environment and I'm trying to use yui_compressor on my css and js files. Please see an example ...
0
votes
0answers
87 views

Assetic and Silex - debug mode

First Stackoverflow question. UHUH! Silex-Assetic as doing my head in. Following the docs on https://github.com/mheap/Silex-Assetic/blob/master/doc/assetic.rst and the demo on ...
2
votes
0answers
103 views

Using Twig as an Assetic filter for JavaScript in Symfony2

Is there a way to use Twig as an Assetic filter? What I want to do is have Twig parse my JavaScript files as Twig templates, and then pass them to Assetic so that they get combined and minified in ...
0
votes
1answer
39 views

Is it possible to create a conditional path to an asset using assetic and twig?

Basically, I want to know if something like the following is possible: <img src="{{ asset('bundles/acme/images' {% if something is defined %}'-blah{{ someId }}'{% endif %} '.png') }}" /> ...
0
votes
1answer
68 views

Symfony2 & Assetic: Invalid configuration for path “assetic.bundles.0”: “AcmeSiteBundle” is not a valid bundle

I'm working on a project given to me by another developer. My task is to convert hard-coded asset references to assetic references. When I try to run app/console assets:install I get the following ...
1
vote
1answer
80 views

load css in child of a twig

I have a super class twig which has the following block: {% stylesheets filter='css_url_rewrite,?yui_css' '@MainBundle/Resources/public/css/bootstrap.css' ...
0
votes
1answer
50 views

Yui_compressor not working in symfony 2

I used this guide to adding the yui_compressor to my symfony project. But its not creating the minified files. Below are the settings I applied, please take a look and tell me what might be going ...
1
vote
1answer
50 views

Assetic Global Load for JavaScript Files Affects CSS

I porting my web site to the Symfony framework. I'm using Assetic for my assets. After I got the bugs out, I wanted consolidate the code. When I did, I ran into a problem apparently unrelated to what ...
0
votes
1answer
110 views

Symfony2 Assetic Don't Generate Composite File on --env=dev

Is there any way to tell the Assetic command-line file to not generate the composite "output" file when it builds for the dev environment? We have it running with the --watch configuration. We have ...
1
vote
1answer
46 views

Symfony2 assets under a different route

I'm working on a Symfony2 app to replace a very large legacy system. During the transition period there will be times where the Symfony2 app and the legacy app will both be live at the same time and ...
0
votes
0answers
91 views

Assetic and Compass configuration in symfony2?

I have two questions: Assetic uses the config.rb configuration file to compile scss files ? ie. to define the compresion mode ? (ie. nested, compressed, expanded etc) And, Assetic in ...
1
vote
1answer
69 views

Twig / Assetic block inheritance - unable to add to initial block with parent()

I am developing a symfony2 project which incorporates a theming system. Due to the restrictions of this system, I am having to define the javascripts and stylesheets blocks in an include file, which ...
0
votes
1answer
63 views

HearsayRequireJSBundle: Javascript files not found

I am using HearsayRequireJSBundle to implement RequireJS into my Symfony2 project. In my Twig template I initialize as follows: {{ require_js_initialize({ 'main' : 'base/main' }) }} The file that ...
0
votes
1answer
289 views

Configure Assetic, Sass, Compass in Symfony 2.3.0-DEV (Windows)

I Installed Ruby in C:\Ruby200-x64, PATH was set to C:\Ruby200-x64\bin and ran: gem update --system gem install sass gem install compass Then I configured Assetic in app/config/config.yml: ruby: ...
1
vote
0answers
75 views

Symfony2: permission error with assetic and compass sprite generation

I just trying to generate a compass image sprite with assetic in symfony 2.2 project. I configured compass filter and i have some .scss files working perfect. But when I try to generate an image ...
0
votes
1answer
48 views

How Symfony2 know where are sass and compass installed?

I have installed Sass, and Compass using: gem install sass gem install compass And now I'm trying to integrate Sass, Compass with Assetic on symfony2. But what I don't understand is How Symfony2 ...
2
votes
1answer
137 views

Symfony2 Assetic get asset urls from inside controller, not template

I want to include the url to one of the assets in my bundle in the controller, not in the template. More specifically, but not very important: I make a HighChart chart using obHighChartsBundle, and ...
0
votes
1answer
68 views

Manage and include Handlebars.js files with symfony 2.1 and Assetic

I want to exclude my handlebars.js template from my twig files. So I created a new directory in the public folder named hbs where I placed all my handlebar templates. How do I tell assetic to render ...
2
votes
1answer
173 views

Symfony, grunt, requires.js and Assetic

Our application uses a combination of amd loaded js and css defined using less. For our dev environments we run using the individual files and use front end scripts. However for production I am keen ...
0
votes
1answer
80 views

Passing arguments to an Assetic filter service from config.yml

I've written my own Assetic filter, contained within a Symfony2 Bundle, in order to compile CommonJS modules into a single file. It's called cjsDeliveryBundle, but let's leave that aside for now. I ...
0
votes
0answers
89 views

PHP Assetic css image file names are not synchronize with the cached image filenames

I have setup in a ZF2 Application the zf2-assetic-module with assetic submodule and the generated images that css requires are cached with their names extended (as the css file it self). e.g ...
0
votes
1answer
63 views

Custom Assetic Filter

Is any posibilities to include service file with assetic filter definition as YML file in config.yml? Assetic expects XML structure... bundle/Resources/config/services.yml: ...
1
vote
1answer
181 views

Using Zurb Foundation and Symfony2

In my Symfony2 application, I am using the Zurb Foundation to built my layout on. This keeps giving me headaches... the css works pretty well but the js often does not work. The files are loaded and ...
0
votes
1answer
85 views

Java error when running yuicompressor

I'm running the YUI compressor jar fine on my local dev server, but on the web server I'm getting this error: Fatal error: Uncaught exception 'Assetic\Exception\FilterException' with message 'An ...
0
votes
1answer
55 views

Symfony assetic dumps contents in console

When I run php app/console assetic:dump The contents of the files are dumped in the console and the files are not generated. This happens with --env=prod and/or --no-debug. Being Windows, I cannot ...
7
votes
1answer
320 views

Symfony assetic:dump runtime exception

I'm stepping into deploying my Symfony app using Capifony. When Capifony executes assetic:dump I get a runtime Exception. [RuntimeException] Unable to write file ...
0
votes
1answer
45 views

assetics and filters part 2 : the star character

I have 2 css files in myBundle/Resources/public/css and 1 css file in myBundle/Resources/public/JQMenu/css In my template I call those css that way : {% stylesheets ...
1
vote
0answers
52 views

Custom Assetic Filter Development - Constantly Cached?

I'm having an issue with my development of a custom assetic filter. I loosely followed the steps in the blog article found here and got things working for the most part. The thing that's causing me ...
2
votes
2answers
197 views

Use Symfony2 assetic for managing assets other than images, js and css

Use Symfony2 assetic for managing assets other than images, js and css. Other assets such as swf, fonts etc or to be generic is there any generic option that can be used with assetic to use just about ...
0
votes
0answers
133 views

Issue with yui compressor.jar symfony2

I would like to use the 'yui_css' assetic filter in my project to minify my css files, so here what I have done : I've downloaded the yuicompressor.jar file here : ...
0
votes
2answers
69 views

How do you include a plugin in Compass (through Assetic) for Symfony2?

I have installed the compass-rgbapng plugin, but am struggling to to include the plugin for use in Symfony2. I need to add the require "rgbapng" to the compass config file, but I am unsure how to do ...
1
vote
0answers
52 views

Sprocketsfilter in assetic - requirements and example

I'm working with Symfony 2 with Twig and assetic file manager. I have high number of javascript files that have many dependencies. (Javascript prototypal inheritance) I saw sprockets in action, and I ...

1 2 3 4