Questions tagged [nested-includes]

25 questions
17
votes
4 answers

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 have some functions that need to return a Node…
all_by_grace
  • 2,315
  • 6
  • 37
  • 52
6
votes
1 answer

Nested Includes in Ruby on Rails 3

In Ruby on Rails I have School which has many children. Children which has many activities. And Activity which has one activity_types. I need help nesting includes. In my Children Controller. I have this... which works. s =…
Johnston
  • 20,196
  • 18
  • 72
  • 121
5
votes
1 answer

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 the nanoc system? I have read the docs but I can't…
Gordon Potter
  • 5,802
  • 9
  • 42
  • 60
3
votes
2 answers

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) @products = @products.includes(:resources).where(:resources…
2
votes
2 answers

How to print/debug all jobs of includes in GitLab CI?

In Gitlab CI it is possible to include one or many files in a .gitlab-ci.yml file. It is even possible to nest these includes. See https://docs.gitlab.com/ee/ci/yaml/includes.html#using-nested-includes. How can I see the resulting CI file all at…
2
votes
1 answer

Duplicate symbols error when including file that includes stb_image.h

In my main.h file, I #include "skybox.h". In skybox.h, stb_image.h is included (the latest version from GitHub as of 29-1-2017). Unlike any other library I've encountered, before including stb_image.h the docs say to #define…
1
vote
4 answers

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 statuses that can be gold, silver, and/or bronze, or none…
1
vote
1 answer

Passing parameters between nested includes

I want to be able to pass parameters from one include to another. However, Jekyll doesn't seem to like this. index.md {% include test-wrapper.html test-var='Foo' %} test-wrapper.html {% include test.html test-var={{ include.test-var }}…
Ky -
  • 30,724
  • 51
  • 192
  • 308
1
vote
3 answers

including javascript in another included javascript

I am using the JQuery.UI datepicker, but have several changes that need to be applied that update the plug-in widget before it can actually be used in my web-app. For testing, I simply load JQuery and the datepicker libraries with the normal tags,…
user2505564
1
vote
4 answers

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"); When I run index, for cat it says: A link to the…
Emma
  • 11
  • 1
1
vote
2 answers

multiple has_many through relationships

I'm setting up a collaborative writing platform. A user can have sets of items where any item can be in any set and belong to any user. This leads to a few problems though. These are my model relationships: class Association < ActiveRecord::Base …
0
votes
1 answer

How do I make this complex self-joined query with sequelize?

I'm trying to build a query in sequelize which basically makes a join between two tables: Resource and ContentTag, which are in a manyToMany relationship: In sql the query I'd like to obtain whould look like this: `SELECT * FROM…
0
votes
3 answers

Check if value is included in any nested array

I am trying to find if an array of arrays includes a value. Is it possible to do this without a for loop? The below always returns false. const testArr = [ [0,0,0], [0,1,0], [0,3,0] ] console.log(testArr.includes(3))
mellows
  • 303
  • 1
  • 7
  • 27
0
votes
1 answer

Rails nested includes with dynamic class

If I have a class A that has many B, but B is just the ID of a class, and can actually take the form of multiple different classes, can I eager load the associations of B dynamically based off what class it is? For example, if B was the id of class…
0
votes
0 answers

Sequelize v5 Poorly Formatted Join with Nested Include

I am using Sequelize v6 with the mariadb dialect. I have query that looks like this: db.RunVersion.findAll({ include: [{ model: db.Run, include: [{ as: "Watchers", model: db.RunWatchers, required: true, …
CycleGeek
  • 473
  • 2
  • 6
  • 14
1
2