Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
501 views

Merge items in nanoc

I have been trying to use nanoc for generating a static website. I need to organize a complex arrangement pages I want to keep my content DRY. How does the concept of includes or merges work within ...
1
vote
4answers
577 views

C++ - Nested include - Avoiding 'include nested too deeply error'

What is the best way of declaring my header files if I want to have the following connections in my C++ code, just so that I don't get the 'include nested too deeply error'? On my edge class, I ...
0
votes
3answers
40 views

How can i show only the results that have an association in rails 3?

I am trying do a where statement that only brings up results that have that particular association. For example: A company has many statuses through company statuses. They can have multiple ...
0
votes
1answer
125 views

How can i filter results in the view using includes in the controller in rails 3?

I have this in my controller: class User::ResourcesController < User::UserController def index @resource_type = ResourceType.find_by_name(params[:resource_type].to_s.titleize) ...
0
votes
4answers
208 views

php includes that include another php file

I'm getting really muddled up now and my brain hurts! :( lol Root: index.php Includes: cat.php dog.php index includes dog: include("includes/dog.php"); dog includes cat: include("cat.php"); ...
0
votes
1answer
324 views

Activerecord Nested :include fails

I have an AR query using 'will_paginate' that looks like this: paginate :all, :page => criteria[:page], :per_page => criteria[:per_page], ...