Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
5answers
1k views

C++11 and the Lack of Polymorphic Lambdas - Why?

I've been reviewing the draft version of the C++11 standard. Specifically the section on lambdas, and am confused as to the reasoning for not introducing polymorphic lambdas. For example, amongst the ...
17
votes
4answers
7k views

Inheritance Mapping with Fluent NHibernate

Given the following scenario, I want map the type hierarchy to the database schema using Fluent NHibernate. I am using NHibernate 2.0 Type Hierarchy public abstract class Item { public ...
5
votes
3answers
900 views

ActiveScaffold: How to create a drop-down select for polymorphic association?

I'm trying to create a drop-down select box for a polymorphic association with ActiveScaffold. I have: class Award belongs_to :sponsorship, :polymorphic => :true end class Organization ...
4
votes
2answers
435 views

C++: How to copy/create derived class instance from a pointer to a polymorphic base class?

I have been struggling with this kind of problem for a long time, so I decided to ask here. class Base { virtual ~Base(); }; class Derived1 : public Base { ... }; class Derived2 : public Base { ... ...
4
votes
1answer
317 views

How to use shoulda matchers to test a polymorphic assoication?

I'm using shoulda-matchers with rails and I'm creating a model called "comments" and another model called "post". Comments is polymorphic. When I test with shoulda matchers in post like this it ...
3
votes
3answers
128 views

Why does this Show instance in Haskell (Hugs) cause a stack overflow error?

The following is a polymorphic data type in Haskell, interpreted by Hugs. I am trying to create an instance of Show for Equality. The instance declaration says that if a type "a" is in Show, then ...
3
votes
1answer
238 views

ThinkingSphinx Polymorphic relation problem | rails 3.1

I could not create index with thinking_sphinx for the simple polymorphic schema below. (Note: I am able to create index from has_many models but I want to create my indexes from 'belongs_to' model ...
3
votes
1answer
155 views

Is Powershell Polymorphic?

I would like to write some functions that take a single parameter which could vary the type without having to use a whole new function. For instance for SQL, I would like to either accept sql command ...
3
votes
4answers
612 views

Querying a polymorphic association

I have a polymorphic association like this - class Image < ActiveRecord::Base has_one :approval, :as => :approvable end class Page < ActiveRecord::Base has_one :approval, :as => ...
3
votes
1answer
1k views

Rails - embedded polymorphic comment list + add comment form - example?

Hey, all. Working on my first Rails app. I've searched all around - read a bunch of tutorials, articles, and forum posts, watched some screencasts, and I've found a few examples that come close to ...
3
votes
3answers
246 views

Linq to sort lists of different kind

I am trying to make a log viewer displaying events from different sources but ordered by a time stamp. I have a felling I can use C# Linq for this but how ? example: I have one list of events read ...
2
votes
1answer
172 views

HABTM Polymorphic Relationship

:) I'm pretty new to Rails, and i'm trying to do a polymorphic HABTM relationship. The problem is that I have three models that I want to relate. The first one is the Event model and then are two ...
2
votes
0answers
71 views

passing object for polymorphic lookup parameter in Rails find/where

Let's say I have: class Comment < ActiveRecord::Base belongs_to :commentable, :polymorphic => true end class Article < ActiveRecord::Base has_many :comments, :as => :commentable ...
2
votes
2answers
402 views

Devise Invitable Rails Admin conflict

Rails Admin was working fine until I installed Devise_Invitable. Now, when I click on Users in Rails Admin I get the following error: NoMethodError in RailsAdmin::MainsController#list You have a ...
2
votes
4answers
216 views

Initializing polymorphic pointer containers

Can I initialize a polymorphic boost::ptr_vector with boost::assign::list_of? #include <boost/ptr_container/ptr_vector.hpp> #include <boost/assign/list_of.hpp> ...
2
votes
1answer
635 views

Rails joins or preload belongs_to association from polymorphic model

my problem is following. How can I joins belongs_to association from polymorphic model There is situation opinion.rb class Opinion < ActiveRecord::Base belongs_to :opinionable, :polymorphic ...
2
votes
1answer
172 views

F# polymorphic types

The following works fine, as one would expect in a Curry style polymorphic type system where e.g. the identity function is actually an infinite family of functions, one for each type 'a -> 'a: let f ...
2
votes
2answers
124 views

Keeping type generic without η-expansion

What I'm doing: I'm writing a small interpreter system that can parse a file, turn it into a sequence of operations, and then feed thousands of data sets into that sequence to extract some final value ...
2
votes
1answer
205 views

sqlalchemy - double polymorphic inheritance problem

I've got a class mapping with two polymorphic inheritance : #test classes class AbstractA(Base): __tablename__ = "abstract_a" id = Column(Integer, primary_key=True) class_name = ...
2
votes
1answer
173 views

Using metamorphic code to reduce boilerplate

Has anyone seen metamorphic code -- that is, code that generates and runs instructions (including IL and Java Bytecode, as well as native code) -- used to reduce boilerplate code? Regardless of the ...
2
votes
1answer
113 views

How ugly is my code implementing polymorphic models?

I am using Polymorphic Models. Simple Question: My code below works without using this line below, which I see in other people's code. What is it supposed to do? #super(GeneralModel, ...
2
votes
1answer
2k views

using UUID as primary key in rails and polymorph relationships

I'm creating a rails 3 application that will be decentralized and I need to use UUID as primary key for my tables, what would be the best gem, plugin for the Job. I also would like to know if it is ...
2
votes
0answers
627 views

Polymorphic Paperclip overwriting files with the same names

in Rails using the Polymorphic version of Paperclip, the default saving technique means that files with the same name overwrite each other. Including the :id in the path and URL doesn't work as it ...
2
votes
1answer
617 views

Properly mapping a polymorphic relationship with NHibernate

I am trying to create a table-per-hierarchy mapping using NHibernate 2.0.1. I have a base class with properties that exist for each subclass that other classes inherit from. All of these objects are ...
2
votes
1answer
699 views

Database and relationship design when subclassing a model

I have a model "Task" which will HABTM many "TaskTargets". When it comes to TaskTargets however, I'm writing the base TaskTarget class which is abstract (as much as can be in Rails). TaskTarget will ...
2
votes
6answers
2k views

How to access and submit related polymorphic models in the same form, in Rails?

Suppose I have 3 models, Car, Motorcycle and Truck, and for each I have to enter a bunch of stuff, such as a list of known previous owners, traffic tickets, license plates, etc. So I created a model ...
1
vote
3answers
66 views

Why Base-to-Derived Dynamic Casting is Only Allowed for Polymorphic Classes [closed]

Possible Duplicate: FAQ: Why does dynamic_cast only work if a class has at least 1 virtual method? I have read that in C++, performing a dynamic cast down the hierarchy of a set of classes, ...
1
vote
3answers
93 views

What's a DRY solution for routes and controller with a polymorphic resource attached to both of a pair of nested resources?

Disclaimer: first month of developing with rails, but I have read everything I could find. Edit: Somehow I missed this very similar question with a similar final answer. I have polymorphic flags: ...
1
vote
1answer
70 views

Polymorphic 'get' using hibernate, many to one, InheritanceType.JOINED

I have something like this.. A Car class that has one Seat from many seats. Seat has a sub class LeatherSeat. public class Car { private Seat seat; ... @ManyToOne(fetch = FetchType.LAZY) ...
1
vote
0answers
101 views

How do I create a formtastic nested input without fieldset?

I have a table User that inherits from a table called Person Long story short, instead of having to do the following: f.inputs 'Something' do f.inputs for: :person do |f| f.input :name ...
1
vote
1answer
190 views

Rails 3 - Attaching polymorphic image model as different image types per each model, what am i doing wrong?

i keep getting an ActiveRecord::UnknownAttributeError: unknown attribute: imageable_id the code: polymorphic image model: class Image < ActiveRecord::Base mount_uploader :asset, ImageUploader ...
1
vote
0answers
67 views

Looking for a good x86 assembler and disassembler library [closed]

I'm writing a polymorphic engine for a security related project, I need to programtically identify x86 code and identify patterns in it. BeaEngine is awesome, the only thing is, I'm not sure if it can ...
1
vote
1answer
64 views

Use of the “_type” column with polymorphic associations in Rails

I have a Slot model, belonging to the Configuration model as well as another model: In db/migrate/...create_slots.rb: t.references :slottable, :polymorphic => true In app/models/slot.rb: ...
1
vote
0answers
46 views

deleting old image record while updating paperclip polymorphic

I am using paperclip polymorphic plugins to manage attachments. I have a problem now that I cannot delete the old attachments while updating. Is there a way to achieve this or any way round to that I ...
1
vote
1answer
137 views

Polymorphic Paperclip Plugin with multiple picture uploads

I have used paperclip polymorphic plugin to track my attachments. The tutorialwhich I have been through has used single attachments(image) ...
1
vote
5answers
140 views

Java generics parameter bounding to any of a range of types

Is there a syntax or workaround to constrain a generic type parameter to any of a range of types? I am aware that you can constrain a type to be all of a range of types (ie AND logic): public class ...
1
vote
4answers
589 views

Rails Polymorphic Association

I'm having a difficult time grasping polymorphic associations in Rails. I have two models, Group and User. A User needs to belong to a group, but a Group can have_many users AND have_many groups. I ...
1
vote
1answer
68 views

Rails: Pulling results for a polymorphic association

I have a the following polymorphic association set up: class Favorite < ActiveRecord::Base belongs_to :favoritable, :polymorphic => true belongs_to :user end class Photo < ...
1
vote
1answer
148 views

Polymorphic urls with singular resources

I'm getting strange output when using the following routing setup: resources :warranty_types do resources :decisions end resource :warranty_review, :only => [] do resources ...
1
vote
2answers
429 views

Rails 3 - Displaying submit errors on polymorphic comment model

Fairly new to Rails 3 and have been Googling every which way to no avail to solve the following problem, with most tutorials stopping short of handling errors. I have created a Rails 3 project with ...
1
vote
1answer
534 views

rails-3, new comment form from a polymorphic association, accepts form submission but doesn't display submited data

I have a polymorphic comment model and on the show.html.erb for the posts_controller,i have a link 'add comments', where you can click to comment on a post. When you click the link, the 'new comment ...
1
vote
1answer
51 views

Joining on a CASE in MySQL

Trying to implement polymorphic associations in MySQL. I thought the code could look something like this: SELECT ... FROM resource LEFT JOIN ( CASE resource.owner_type WHEN 'meeting' THEN ...
1
vote
1answer
162 views

Putting existentials into monad

I have following problem. I have value of type (forall r. MyType r) and I need ParsecT s u m (forall r. MyType r). Is it possible to do it without suppling additional data structures?
1
vote
0answers
343 views

Ruby on Rails 3: Combine results from multiple has_many or has_many_through associations

I have the following models. Users have UserActions, and one possible UserAction can be a ContactAction (UserAction is a polymorphism). There are other actions like LoginAction etc. So class User ...
1
vote
1answer
209 views

Using polymorph many-to-many self referencing relation with attributes on the relation in rails

I'd like to create a self referencing relation in rails. I have a Person model, and the person should have masters and pupils with same Person object. So far I tried: class Person ...
1
vote
1answer
68 views

Polymorphic assosciation question

In my Rails app I have models that look something like this: class Blog < ActiveRecord::Base has_many :posts end class Post < ActiveRecord::Base belongs_to :blog end class Comment < ...
1
vote
1answer
496 views

Polymorphic Paperclip Interpolations

I'm using the Polymorphic fork of Paperclip in Rails, but have been having some massive problems with regards to the overwriting of unique filenames. No matter whether I put a time-stamp (more on that ...
1
vote
1answer
112 views

Django: way to test what class a generic relation content_object is?

In my project I have a class, NewsItem. Instances of NewsItem act like a wrapper. They can be associated with either an ArtWork instance, or an Announcement instance. Here's how the NewsItem model ...
1
vote
1answer
1k views

accepts_nested_attributes

I'm trying to use a comment style model which is attached to another model but I keep getting the error: Review(#2171315060) expected, got Array(#2148226700) With params: Processing ...
1
vote
1answer
682 views

Rails generate url from array with parameters

I wondered if there's some way to do this polymorphic_path([@page, @image]) but like this polymorphic_path([@page, :image_id => 1]) It's for the purposed of refactoring where I'd like to ...

1 2