Questions tagged [asset-management]

94 questions
51
votes
5 answers

How do I manage large art assets appropriately in DVCS?

Is there any good way to handle large assets (i.e. 1000's of images, flash movies etc.) with a DVCS tool such as hg and git. As I see it, to clone repositories that are filled with 4 GB assets seems like an unnecessary overhead as you will be…
Spoike
  • 119,724
  • 44
  • 140
  • 158
29
votes
8 answers

Best way to combine and minify JS / CSS on Heroku

First of all, according to this answer, the :cache => true option on stylesheet_link_tag and javascript_include_tag doesn't work on Heroku. Is this true? I've found :cache => true to work occasionally, but not always (weird!) Also, what's the best…
Tom Lehman
  • 85,973
  • 71
  • 200
  • 272
22
votes
6 answers

Aggregate Overlapping Segments to Measure Effective Length

I have a road_events table: create table road_events ( event_id number(4,0), road_id number(4,0), year number(4,0), from_meas number(10,2), to_meas number(10,2), total_road_length number(10,2) ); insert into road_events…
User1974
  • 276
  • 1
  • 17
  • 63
21
votes
5 answers

PHP Document management

I am looking for a mature PHP-based, preferably Open Source, Document management solution. Requirements: Manage documents, preferably in a folder structure Clean architecture Half-way nice-looking interface (I can customize but need a clean…
Pekka
  • 442,112
  • 142
  • 972
  • 1,088
19
votes
5 answers

A package manager for web assets

Do you know a package manager for web assets? I'd like something that can download libraries such as jQuery so I can plug them into my asset pipeline. The js.* python packages for fanstatic are close, but they pick a single "latest" version of the…
Tobu
  • 24,771
  • 4
  • 91
  • 98
13
votes
5 answers

version control on large files

We happily use SVN for SCM at work. Currently I've got our binary assets in the same SVN repository as our code. SVN supports very large files (it transmits them 'streamily' to keep memory usage sane), but it is SLOOWWWWW. What asset management…
Dustin Getz
  • 21,282
  • 15
  • 82
  • 131
12
votes
4 answers

Flex graphic assets: SWF or SWC?

Which is a better format to store graphic assets for a Flex application, SWF or SWC? Are there any real differences, and if so what are they?
defmeta
  • 1,322
  • 3
  • 11
  • 19
7
votes
2 answers

Confusion over various webpack shimming approaches

I'm a little confused on the various ways webpack allows to expose a variable that isn't available on npm or to be put in the bundle. I was able to expose the google visualizations chart script's global google var by using resolve: { …
1252748
  • 14,597
  • 32
  • 109
  • 229
7
votes
1 answer

Libgdx FreeTypeFontGenerator with AssetManager

i'd like to use the asset manager in combination with the FreeTypeFontGenerator. I dont want to load fnt files cause they display differently on different screenresolutions. So what i do currently is generating my fonts on the fly in every actor or…
Kedu
  • 1,350
  • 14
  • 26
6
votes
2 answers

What strategies are best for storing art assets in SVN?

We are using SVN very successfully for source code in the traditional way: /branches, /trunk and /tags. We do not use SVN for our art assets, which in a way are like source, but really don't have the same needs as source code. I am referring to not…
Jason
  • 16,739
  • 23
  • 87
  • 137
6
votes
2 answers

How to define Assetic resources in Symfony 2 yml or xml configuration file?

Can you define assetic resource in configuration file (yml/xml)? Lets take jquery as example. I would like to have configuration like this: # app/config/config.yml assetic: resources: jquery: latest:…
Karolis
  • 61
  • 1
  • 2
6
votes
3 answers

Asset managing with Rails 3 (on Heroku) (Jammit, AssetHat, Rack PageSpeed)

I am interested in the pros and cons of the different tools for managing assets in Rails 3.0.x (especially on Heroku). There are already some older questions regarding this topic, but in the meanwhile there are some new tools available. I am…
medihack
  • 16,045
  • 21
  • 90
  • 134
5
votes
1 answer

PHP 5.2.x Asset management library

Is there anything but Assetic (which I cannot use because of PHP version) that can do asset management? EDIT: This is about web application assets, like javascript and css, a library to manage and minify them for production, be that on the run or…
Draiken
  • 3,805
  • 2
  • 30
  • 48
5
votes
3 answers

Asset management - maintaining reference to relative assets after concatenation and versioning

I know that L5 and Elixir are still under development, but I'm excited to start thinking about ways to reorganize my code. I think my question has more to do with asset management, in the context of L5 and Elixir. Want to clarify how concatenation…
mistermat
  • 327
  • 4
  • 14
4
votes
1 answer

Any assets manager on rails 3?

Does anybody know any asset manager on rails 3 for upload/browse image/file? Like this one http://tinymce.moxiecode.com/enterprise/mcimagemanager.php
1
2 3 4 5 6 7