similar to: Syslinux using Asset Tag (from Dell or Compay) instead of MAC Adress

Displaying 20 results from an estimated 6000 matches similar to: "Syslinux using Asset Tag (from Dell or Compay) instead of MAC Adress"

2010 May 15
1
Asset tag helper and (Google) cache recommendations
Doesn''t he have a point? Shouldn''t Rails'' asset tag helper(s) be changed accordingly? http://github.com/eliotsykes/asset_fingerprint Quote (http://code.google.com/speed/page-speed/docs/caching.html): Recommendations Don''t include a query string in the URL for static resources. Most proxies, most notably Squid up through version 3.0, do not cache
2012 Aug 04
6
Automatic asset paths prevent logical asset organization
In 2fe70c1 (last year), rails changed from a static list of assets.paths to automatically register any path under assets/*. (This was not reflected in Rails Guides so I pushed an update to docrails.) However, in my opinion, these automatic asset paths create confusion. The result is that the first-level directories under `(app|lib|vendor)/assets` get swallowed and if I put assets into a
2013 Jan 21
1
Set asset host port in a way similar to what application does
Concerning http://stackoverflow.com/questions/13266603/rails-how-to-set-port-number-for-the-asset-hosts-in-development I''m setting the full asset hosts in the environment files, being the one in development http://localhost:3000 . But let''s say I restart the application on port 3001. Assets won''t be fetched, and I have to change it accordingly all the time in the
2013 Nov 05
3
rails 4 logging during development, surpress asset messages?
Is it possible to surpress all those asset related messages? I have a terminal open where I run ''rails s'' and it gets hard to read. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to
2013 May 26
2
Ruby on Rails Asset pipeline - Pro and Cons
I was in chapter 5 of the Ruby on Rails, and I come across "Asset pipeline" when R-o-R detect and jam all css and js files into one. It''s true that Browser will have to make less requests, but at the same time, the browser will potentially have to process more code than it should? For example, I use a slider jquery plugin in gallery page, since R-o-R fuse the plugin with
2011 Sep 18
12
3.1 asset pipeline + Capistrano troubles
Hello, I''m having a bit of trouble with the asset pipeline and, I think, Capistrano. In my app layout I have: <%= stylesheet_link_tag "application", "bootstrap" %> And the relevant bits of the app dir structure are: app/assets/stylesheets/application.css.scss # Contains ''require_self'' and ''require_tree .'' as usual
2011 Aug 20
1
Asset Pipeline (Rails 3.1.0.rc4)
Hey all, I''ve got an issue trying to figure out this asset pipeline stuff... So in my application layout, I have: <%= stylesheet_link_tag "application" %> which translates the URL to /assets/application.css in the HTML output. The problem is that it can never find it -- I can see the file under app/assets/stylesheets/application.css . I''ve tried moving it
2012 Feb 21
2
Asset Pipeline doubles my CSS refs?
Hi, I''m trying to properly reference a .css file. Unfortunately the asset pipeline is doubling my css references which disables my code. What gets rendered is: <link href="/assets/sincoraish-screen.css" media="screen" rel="stylesheet" type="text/css" /> <link href="/assets/sincoraish-print.css" media="print"
2002 Oct 28
1
Asset Navigator and wine
I'm extremely new to wine and I'd like to completely move off of windows at work but I'm running into problems getting the a program (Asset Navigator) to work with wine. I launch it and I get a list of errors then straight to the debugger. Here is a list from the terminal window . (Is there a way to get the debug output in file format?) fixme:commctrl:FlatSB_SetSCrollProb stub (this
2007 May 24
0
asset tag helpers
Is it possible to add another asset tag helper (ActionView::Helpers::AssetTagHelper ) ?? coz i''m using the ActionController::Base.asset_host = "http:// assets.example.com" for my static files.. and I want my app to get video files from that host too.. but the thing is only images, javascripts and stylesheets have the asset tag helpers with them.. what if i wanted videos? any
2007 May 24
0
asset tag helper
Is it possible to add another asset tag helper (ActionView::Helpers::AssetTagHelper ) ?? coz i''m using the ActionController::Base.asset_host = "http:// assets.example.com" for my static files.. and I want my app to get video/flash files from that host too.. but the thing is only images, javascripts and stylesheets have the asset tag helpers with them..what if i wanted videos?
2008 Dec 05
0
Rails asset tag helpers outputting invalid xhtml
I am using Rails 2.1 and HAML for some, but not all, of my templates. All of the self-closing asset tags (<link>, <img>) output by the rails asset tag helper methods are not being closed at all, thus rendering my pages as invalid XHTML. Has anyone else dealt with a similar problem? I am completely out of ideas, so if you have any suggestions, by all means, fire away. Thanks. -- Posted
2012 Sep 04
10
Generic asset definitions and management
(The following is not a Rails-specific question, but relates to a problem that affects Rails, so I wonder whether anyone on the team has an opinion about it or knows whether a solution is already in development.) While gem dependencies can be easily managed in a Gemfile by Bundler, when it comes to other assets, you either have to manually copy javascript files into the app/assets or vendor
2011 Aug 31
4
Issue with asset pipeline helper with Rails 3.1 final release.
Hi, I''ve just updated my app to the final 3.1 release and deployed it to the staging server after running tests but there is a problem with the precompiled assets. The precompiled assets are all in the public directory, like they were before, Capistrano doesn''t throw any error and running `rake assets:precompile` in the current directory work as expected. But the asset
2013 Aug 27
2
trying to create asset management app having trouble with edit page
i trying to create an asset management app. i am working through the ruby on rails 4.0 guide by Michael Hartl but in his guide it shows edit page for authenticated users i do not needthis function as the app will be deployed to an intranet. i have tried to adapt the edit portion in the above mentioned guide but it is not working. i am a newbie to this so any help with websites to look at or other
2008 Jun 11
5
OT - host/asset tracking
Can anyone recommend something for tracking assets particularly computer. I'm looking to capture: hostname OS/arch Hardware info(cpu, mem, etc) Function(i.e. what is the machine used for) -Mark
2012 Dec 18
2
cache-busting non-digest assets in sprockets in development a good idea? should headers in sprockets be configurable?
Just monkey patched Sprockets in our Rails 3.2.9 app to override the Cache-Control header for html assets that we need to tweak more often in development, but that we don''t want to use digests/fingerprinting with: # Sprockets 2.x patch if Rails.env.development? module Sprockets module Server private alias_method :sprockets_headers, :headers def headers(env,
2011 Sep 04
1
Linking failure in stylesheet_link_tag in production mode with asset pipeline enabled
Hey, in my `application.html.erb`, I have this line: <%= stylesheet_link_tag ''application'' %> which should compile through the asset pipeline and link to the application.css (which does a `require_tree .`). In development mode, I''d expect a <link ... href="/assets/application.css" /> This file is actually delivered by, for example, the
2012 Feb 15
2
Control number of assets in resulting portfolio with optimizations using package fPortfolio
Dear All, I am using package fPortfolio to run minimum variance portfolio optimizations in R. I already know how to set portfolioSpecs, portfolio objects and constraints. Unfortunately I am not able to set the following type of constraints. I have a timeSeries object with returns data for roughly 1.5k assets for 261 subperiods (workingdays) and want to compute the global minimum variance
2011 Oct 03
2
Hardware Asset Information
Hi, Is there a way to find total numbers of Hard disk attached or mounted on remote servers totaling around 200 Servers running CentOS Server and also the number of RAM Chips attached to the system. Any utility or some gui tool from client desktop ? Regards Kaushal