active questions tagged model - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T02:53:27Z http://stackoverflow.com/feeds/tag/model http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1853347/django-access-model-through-another-model 1 Django: Access model through another model barin 2009-12-05T20:24:22Z 2009-12-05T23:04:38Z <pre><code>class Project(models.Model): title = models.CharField() class Job(models.Model): name = models.CharField() user = models.ForeignKey(User) project = models.ForeignKey(Project) </code></pre> <p>I have many jobs for each project. How do i get a list of all users of all jobs of a project?<br> I came up with this:</p> <pre><code>users = set() for job in project.job_set.all(): users.add(job.user) </code></pre> <p>Is there an easier way without explicitely looping through every job?</p> http://stackoverflow.com/questions/1829166/asp-net-mvc-model-binding 2 ASP.NET MVC Model Binding TheNoob 2009-12-01T21:48:13Z 2009-12-05T03:51:30Z <p>I was wondering if there was a way to bind the value of an input field straight to the property in the Model through a strongly typed model. For example, let's say my Model is an Address object. I want to be able to say <code>Html.Textbox(Model.Address1.State, "state", Model.Address1.State)</code>. So the first parameter would be the explicit property I want to bind to of the model with the value from the user, the second parameter would just be the DOM id, and the third value would be the initial value to input when I render the view. </p> <p>I know you can do <code>Html.TextBox("Address.State")</code> and have a custom binder which would create the Address object for you and populate the state property. I need <code>Html.Textbox(Model.Address1.State)</code>. </p> <p>Help?</p> http://stackoverflow.com/questions/1850435/django-several-tables-for-one-model 1 Django: several tables for one model. barin 2009-12-04T23:52:13Z 2009-12-05T00:01:12Z <p>I have a model "Messages" which i use to store messages throughout the site. These are messages in discussions, private messages and probably chat. They are all stored in 1 table. I wonder if it will be faster if i spread messages among several models and tables. 1 for chat, one for discussions and so on. </p> <p>So should i keep all messages in 1 table/model or create several identical models/tables?</p> http://stackoverflow.com/questions/1845293/get-all-table-names-in-a-django-app 1 Get all table names in a Django app jack 2009-12-04T06:54:57Z 2009-12-04T14:36:27Z <p>How to get all table names in a Django app?</p> <p>I use the following code but it doesn't get the tables created by ManyToManyField</p> <pre><code>from django.db.models import get_app, get_models app = get_app(app_name) for model in get_models(app): print model._meta.db_table </code></pre> http://stackoverflow.com/questions/1845493/should-i-make-a-daterange-object 1 Should I make a DateRange object? qstarin 2009-12-04T07:56:32Z 2009-12-04T08:12:14Z <p>Hi. First question ever. </p> <p>A few of my domain objects contain date ranges as a pair of start and end date properties:</p> <pre><code>public class Period { public DateTime EffectiveDate { get; set; } public DateTime ThroughDate { get; set; } } public class Timeline { public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } } </code></pre> <p>And I find myself with a lot of this:</p> <pre><code>abstract public int Foo(DateTime startDate, DateTime endDate); abstract public decimal Bar(DateTime startDate, DateTime endDate); abstract public ICollection&lt;C5.Rec&lt;DateTime, DateTime&gt;&gt; FooBar(DateTime startDate, DateTime endDate); </code></pre> <p>The last one made me wonder ... Should I implement a DateRange class? I'm not aware of one in the BCL.</p> <p>In my experience, making the object hierarchy deeper often complicates things. These objects do get sent to RDLC reports displayed by the ReportViewer control, but that's secondary. I'll bend the view to the model rather than vice versa. We aren't tied to the property names, though, and would be willing to compromise with something like:</p> <pre><code>public class DateRange { public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } } Period p = new Period(); DateTime t = p.EffectiveDateRange.StartDate; </code></pre> <p>A benefit of a DateRange class would be centralized validation of the end date coming after the start date, and it will simplify my method signatures:</p> <pre><code>abstract public int Foo(DateRange dateRange); abstract public decimal Bar(DateRange dateRange); abstract public ICollection&lt;DateRange&gt; FooBar(DateRange dateRange); </code></pre> <p>I'm just not sure that a DateRange class won't get me into more trouble than its worth. Opinions?</p> <p>Side question: Did I miss a generic general-purpose tuple class in the BCL somewhere? I know there's some very specific ones floating around in various namespaces. Polluting my public domain method signatures with C5 types feels very, very dirty.</p> http://stackoverflow.com/questions/1304511/validate-that-string-belongs-to-specific-language-alphabet 0 Validate that string belongs to specific language alphabet Bogdan Gusiev 2009-08-20T07:25:06Z 2009-12-04T04:00:03Z <p>How can I validate Rails model string attribute that it belongs to specific language alphabet characters?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1843075/what-do-you-have-in-your-model-class 1 What do you have in your Model class? Oguz 2009-12-03T21:33:13Z 2009-12-03T21:38:20Z <p>What do you have in your model classes. Generally if i use any framework or any library (Zend Framework) , my classes only have variable which is table name . I know that in complicated applications models have lots of thing to do , so i want to know what these jobs are. </p> <p>Maybe instead of using library`s general select function ,you create special functions to get data from database ( getUserById() ) . To sum up , which parts of the process should go in to model layer. </p> <p>For example thing about general user processes .So in registration process where should we check email is acceptable or not . This is example just explain what do you do in your model layer.</p> <p>This question may seem as an abstract question because of my english , but it is not . If you can edit it please improve it . The purpose of this question is better understanding of mvc pattern</p> http://stackoverflow.com/questions/1840168/ie6-box-model-bug-spry-sub-menu-displays-over-my-normal-menu-in-ie6-wrong-posit 0 IE6 Box Model bug. Spry Sub-Menu displays over my Normal Menu in IE6. Wrong Positioning. mind 2009-12-03T14:24:39Z 2009-12-03T14:24:39Z <p>Hello, first of all im a beginner so any descriptive help i would really appreciate.</p> <p>so my spry menu looks fine in every browser except IE6...</p> <p>my website is ritztheatre.net (srry cant post more then one hyperlink)</p> <p><strong>here is a screenshot of what happens when you hover in IE6. any ideas?</strong></p> <p><a href="http://img130.imageshack.us/img130/1612/spryprob.jpg" rel="nofollow">http://img130.imageshack.us/img130/1612/spryprob.jpg</a></p> <p>(sorry i couldnt post the image directly since im a new member)</p> <p><strong>Here is my Spry CSS:</strong></p> <pre><code> @charset "UTF-8"; /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */ /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */ /******************************************************************************* LAYOUT INFORMATION: describes box model, positioning, z-order *******************************************************************************/ /* The outermost container of the Menu Bar, an auto width box with no margin or padding */ ul.MenuBarHorizontal { margin: 0; padding: 0; list-style-type: none; font-size: 100%; cursor: default; width: auto; } /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */ ul.MenuBarActive { z-index: 1000; } /* Menu item containers, position children relative to this container and are a fixed width */ ul.MenuBarHorizontal li { padding: 0; list-style-type: none; font-size: 100%; position: relative; text-align: left; cursor: pointer; width: 10em; float: left; border: 1px solid #CCC; right: 0px; margin-top: 0; margin-right: 5px; margin-bottom: 0; margin-left: 0; } /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */ ul.MenuBarHorizontal ul { margin: 0; padding: 0; width: 10px; list-style-type: none; font-size: 100%; z-index: 1020; cursor: default; width: 1em; position: absolute; left: -1000em; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible { left: auto; } /* Menu item containers are same fixed width as parent */ ul.MenuBarHorizontal ul li { width: 8.2em; } /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */ ul.MenuBarHorizontal ul ul { position: absolute; margin: -5% 0 0 95%; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible { left: auto; top: 0; } /******************************************************************************* DESIGN INFORMATION: describes color scheme, borders, fonts *******************************************************************************/ /* Submenu containers have borders on all sides */ ul.MenuBarHorizontal ul { border: 1px solid #CCC; } /* Menu items are a light gray block with padding and no text decoration */ ul.MenuBarHorizontal a { display: block; cursor: pointer; background-color: #0662a8; padding: 0.1em 0.1em; color: #FFF; text-decoration: none; font-family: Arial, Helvetica, sans-serif; font-size: 11px; text-align: center; } /* Menu items that have mouse over or focus have a blue background and white text */ ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus { background-color: #C00; color: #FFF; } /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible { background-color: #C00; color: #FFF; } /******************************************************************************* SUBMENU INDICATION: styles if there is a submenu under a given menu item *******************************************************************************/ /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenu { background-image: url(SpryMenuBarDown.gif); background-repeat: no-repeat; background-position: 95% 50%; } /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenu { background-image: url(SpryMenuBarRight.gif); background-repeat: no-repeat; background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenuHover { background-image: url(SpryMenuBarDownHover.gif); background-repeat: no-repeat; background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover { background-image: url(SpryMenuBarRightHover.gif); background-repeat: no-repeat; background-position: 95% 50%; } /******************************************************************************* BROWSER HACKS: the hacks below should not be changed unless you are an expert *******************************************************************************/ /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */ ul.MenuBarHorizontal iframe { position: absolute; z-index: 1010; filter:alpha(opacity:0.1); } /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */ @media screen, projection { ul.MenuBarHorizontal li.MenuBarItemIE { display: inline; f\loat: left; background: #FFF; } } </code></pre> <p><strong>Here is my HTML:</strong></p> <pre><code>&lt;ul id="MenuBar1" class="MenuBarHorizontal"&gt; &lt;li&gt;&lt;a class="MenuBarItemSubmenu" href="#"&gt;Get Tickets&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;VIP Seating&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Calender of Events&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="boxoffice.html"&gt;Box Office Info&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Group Sales&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;About the Ritz&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;History&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="directions.html"&gt;Directions&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Parking Facilities&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Area Hotels&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Bars &amp;amp; Restaurants&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a class="MenuBarItemSubmenu" href="#"&gt;Seating&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Front Orchestra&lt;/a&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Orchestra&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;VIP Mezzanine&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Balcony&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Interior Photos&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Lobby&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Concession&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Main Bar&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Main Auditorium&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Front Orchestra&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Orchestra&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;VIP Mezzanine&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Balcony&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Dressing Rooms&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Office&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Venue Rental&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Rental Info.&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Private Events&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="concerts.html"&gt;Concerts&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="videos.html"&gt;Videos&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;script type="text/javascript"&gt; &lt;!-- var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"}); //--&gt; &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1176109/having-trouble-with-cakephp-bake-and-one-of-the-database-tables 1 having trouble with cakePHP Bake and one of the database tables Annibigi 2009-07-24T06:51:57Z 2009-12-03T03:00:03Z <p>Hi,</p> <p>I am using Bake to create models for my database tables. I have run into a little problem.</p> <p>I have 25 tables ....</p> <p>I strated baking the models until for one of the database tables the bake started giving a name of it own to the model,file and class.</p> <p>For example ,the table in database is named : 'risk_manager'</p> <p>(It has association with other tables which i'm defining while baking)</p> <p>However the model for this turns up as a file called "risk.php" and the class name is called "risk" (but it is mapped to the correct table.)</p> <p>Why is this happening...?</p> http://stackoverflow.com/questions/1833701/db-architecture-linking-to-intersection-or-to-main-tables 0 DB Architecture : Linking to intersection or to main tables? Jean-Nicolas 2009-12-02T15:39:49Z 2009-12-02T16:06:56Z <p>Hi,</p> <p>I'm creating fantasy football system on my website but i'm very confuse about how I should link some of my table.</p> <p><strong>Tables</strong></p> <p>The main table is <code>Pool</code> which have all the info about the ruling of the fantasy draft.</p> <p>A standard table <code>User</code>, which contains the usual stuff.</p> <p>Intersection table called <code>pools_users</code> which contains <code>id,pool_id,user_id</code> because a user could be in more than one pool, and a pool contains more than 1 user.</p> <p><strong>The problem</strong></p> <p>Table <code>Selections</code> => that's the table that is causing problem. That's the selection that the user choose for his pool. This is related to the <code>Player</code> table but thats not relevant for this problem. </p> <p>Should I link this table to the table Pools_users or should I link it with both main table Pool and User. This table contains <code>id,pool_id,user_id,player_id,...</code></p> <p>What is the best way link my tables? When I want to retrieve my data, I normally want the information to be divided BY users. "This user have those selections, this one those selections, etc).</p> http://stackoverflow.com/questions/1134667/django-required-field-in-model-form 1 Django required field in model form Ryan 2009-07-15T23:37:16Z 2009-12-02T15:16:19Z <p>I have a form where a couple of fields are coming out as required when I don't want them too. Here is the form from models.py</p> <pre><code>class CircuitForm(ModelForm): class Meta: model = Circuit exclude = ('lastPaged',) def __init__(self, *args, **kwargs): super(CircuitForm, self).__init__(*args, **kwargs) self.fields['begin'].widget = widgets.AdminSplitDateTime() self.fields['end'].widget = widgets.AdminSplitDateTime() </code></pre> <p>In the actual Circuit model, the fields are defined like this:</p> <pre><code>begin = models.DateTimeField('Start Time', null=True, blank=True) end = models.DateTimeField('Stop Time', null=True, blank=True) </code></pre> <p>My views.py for this is here:</p> <pre><code>def addCircuitForm(request): if request.method == 'POST': form = CircuitForm(request.POST) if form.is_valid(): form.save() return HttpResponseRedirect('/sla/all') form = CircuitForm() return render_to_response('sla/add.html', {'form': form}) </code></pre> <p>What can I do so that the two fields aren't required?</p> http://stackoverflow.com/questions/1828427/accessing-data-from-the-model-using-script-console-ruby-on-rails 0 accessing data from the model using script/console (Ruby on Rails) steve 2009-12-01T19:48:34Z 2009-12-01T19:55:46Z <p>I'm looking to write a Ruby script which I can load into the Rails Console which will access data from the models I have created. I created a model called student using the following command and populated it with data:</p> <pre><code>script/generate scaffold student given_name:string middle_name:string family_name:string date_of_birth:date grade_point_average:decimal start_date:date </code></pre> <p>how would I, for instance, get the script to print a list of names of all the students? are there any resources which describe how to do this in detail? I haven't been able to find anything. Thanks!</p> <ul> <li>Steve</li> </ul> http://stackoverflow.com/questions/1827185/mapping-vs-service-layer-or-business-logic-position 0 Mapping vs. service layer, or business logic position Carl Hörberg 2009-12-01T16:09:29Z 2009-12-01T16:09:29Z <p>I got a Product and a collection of Payers. The Payers can pay for the product in three different ways, either but manually set the percentage, by Payers income or by the value of the Payers respective holdings.How the product is paid is determined by an enum on the Product.</p> <p>In my persistence layer i got three classes, Product, Payer, and ProductManuallyPaid which is a many-to-many class between Product and Payer if the Product is paid by manually, specifying the percentage each Payer will have to pay.</p> <p>How should i map this to the view? I would like to have a new many-to-many class (which would consist of a reference to the Payer, a reference to the Product and the exact amount that payer should pay)? </p> <p>I guess the calculation should be done in the Service Layer, but should the Service layer return a ViewModel/DTO version of the Product/Payer with a new many-to-many class attached, or should this be handled afterward? if it should be handled afterward, should the entity contain a list of that new Many-to-many class, but be ignored in the persistence layer? </p> http://stackoverflow.com/questions/1805879/associating-a-model-twice-cakephp 0 Associating a model twice, CakePHP ONi 2009-11-26T22:07:06Z 2009-12-01T12:01:48Z <p>I have the following scheme: My site is a trivia game, so every Question "hasMany" Answers, but a Question also "hasOne" correct Answer that is also represented by the Answer model. I have yet to test this, but my programmer's instinct tells me that the retrieved array will be kind of redundant and it will not separate the correct Answer from the rest of them.</p> <p>My question is, how do I represent this in the models and in the database, is there a better way to represent this relationship?</p> http://stackoverflow.com/questions/1815990/can-i-use-struct-new-as-a-rails-model-or-how-to-create-anonymous-structured-non 0 Can I use Struct.new as a Rails model? Or: How to create anonymous structured non-db backed sessions? hurikhan77 2009-11-29T16:33:45Z 2009-12-01T03:45:15Z <p>Given the following example:</p> <pre><code>class AnonymousSession &lt;&lt; Struct.new(:location, :preferences) def valid? ... end def new_record? ... end end </code></pre> <p>While this interface is sufficient to create resourceful form and so on, it fails as soon as I want to save my form data to the session:</p> <pre><code>if session[:user] = AnonymousSession.create(params[:anonymous_session]) #--&gt; fails with "unknown key(s): location..." ... end </code></pre> <p>The error message is about "unknown keys". Any clue how to make it work? I just need anonymous sessions without database backend. They are completely disposable due to their short live nature.</p> <p>Maybe my approach is wrong anyway and there's already an elegant solution to using anonymous sessions? I had a look at AuthLogic but any example I found always comes with an ActiveRecord model (and thus bound to a database).</p> http://stackoverflow.com/questions/1200083/zend-framework-model 2 Zend Framework Model xpepermint 2009-07-29T13:01:35Z 2009-11-29T23:18:25Z <p>Hi... is it posible to have a true Model Layer in PHP like in Ruby on Rails? With Zend Framework you can create a Model but this is a class. As I know you have to write all the logic by myself.</p> <p>Solutions?</p> http://stackoverflow.com/questions/1782526/email-server-fsp-model 0 EMAIL server FSP model spacemonkey 2009-11-23T11:20:44Z 2009-11-29T15:16:22Z <p>For my assignment I need to develop FSP model for email server and client. I manage to write simple model which describes one user, server and his mailbox, but <strong>I am having problems changing this system into one which have two users with two separate mailboxes.</strong></p> <p>The FSP model that I have developed:</p> <pre><code>USER = (read-&gt;USER | write-&gt;USER). SERVER = (read-&gt;get-&gt;SERVER | write-&gt;put-&gt;SERVER). MAILBOX(N=0) = MAILBOX[N], MAILBOX[i:0..3] = (when (i&lt;3) write-&gt;put-&gt;MAILBOX[i+1] | when (i&gt;0) read-&gt;get-&gt;MAILBOX[i-1]). ||EMAIL = (USER || SERVER || MAILBOX). </code></pre> http://stackoverflow.com/questions/1650704/reputation-and-point-system-models 3 Reputation and point system models Denny 2009-10-30T16:01:17Z 2009-11-27T23:38:31Z <p>I'm looking to implement a reputation-based point system for a QA site. I like Stack Overflow's model, but I was wondering if there's anything else like this out there. I was doing some research on the web, but couldn't find a good compiled list of reputation models. If there's a study of reputation models with pros and cons, that would be super valuable.</p> http://stackoverflow.com/questions/1809916/rails-model-with-aggregrate-data-not-backed-by-a-table 2 Rails Model With Aggregrate Data (not backed by a table) Lee 2009-11-27T17:39:00Z 2009-11-27T21:41:44Z <p>Id like to create a model in rails that does not correlate to a table in the database. Instead the model should dynamically pull aggregrate data about other models. </p> <p>Example:</p> <p>I have a Restaurant model stored in the restaurants table in the DB. Id like to have a RestaurantStats model where i can run a RestaurantStats.find_total_visitors, or RestaurantStats.find_time_spent etc... on it and it returns a set of RestaurantStats models each with:</p> <p>[:restaurant_id, :stat_value]</p> <p>Obviously in each find... method that stat_value will mean something different (for find_time_spent it will be seconds spent, for find_total_visitors it will be number of visitors). The idea will be to return the top 100 restaurants by time spent, or total visitors. </p> <p>So far im creating a model (not inherited from ActiveRecord)</p> <pre><code>class RestaurantStats attr_reader :restaurant_id attr_reader :stat_value def self.find_total_visitors ... def self.find_time_spent ... end </code></pre> <p>The question is how do define the find_total_visitors, find_time_spent functions in a rails y way so that it will populate the restaurant_id, stat_value fields?</p> http://stackoverflow.com/questions/932160/model-types-and-sorting-in-rails 3 Model types and sorting in Rails? Mike Richards 2009-05-31T14:52:08Z 2009-11-27T20:29:37Z <p>This is something I've been stuck on for a while now, and I have to apologize in advance for going into so much detail for such a simple problem. I just want to make it clear what I'm trying to do here.</p> <h2>Scenario</h2> <p>So, there's a model Foo, each Foo can either be red, green, or blue. Having URLs like <code>/reds</code> to list all red objects, and <code>/reds/some-red-object</code> to show a certain object. In that "show" view, there should be next/previous links, that would essentially "find the next RedFoo in alphabetical order, and once at the last RedFoo, the next record should be the first GreenFoo, continuing in alphabetical order, and so on".</p> <p>I've tried implementing this in a couple of ways and mostly ended up at a roadblock somewhere. I did get it working for the most part with single table inheritance though, having something like this:</p> <pre><code>class Foo &lt; ActiveRecord::Base class RedFoo &lt; Foo class GreenFoo &lt; Foo class BlueFoo &lt; Foo </code></pre> <p>Each subclass's models and controllers are identical, just replace the model names. So the controllers look something like:</p> <pre><code>class RedFoosController &lt; ApplicationController def index @foos = RedFoo.find(:all, :order =&gt; "title ASC") respond_to do |format| format.html { render :template =&gt; 'foos/index'} format.xml { render :xml =&gt; @foos } end end def show @foo = RedFoo.find(params[:id]) respond_to do |format| format.html { render :template =&gt; 'foos/show'} format.xml { render :xml =&gt; @foo } end end def new @foo = RedFoo.new respond_to do |format| format.html { render :template =&gt; 'foos/new'} format.xml { render :xml =&gt; @foo } end end def edit @foo = RedFoo.find(params[:id]) respond_to do |format| format.html { render :template =&gt; 'foos/edit'} end end def create @foo = RedFoo.new(params[:foo]) respond_to do |format| if @foo.save flash[:notice] = 'Foo was successfully created.' format.html { redirect_to(@foo) } format.xml { render :xml =&gt; @foo, :status =&gt; :created, :location =&gt; @foo } else format.html { render :action =&gt; "new" } format.xml { render :xml =&gt; @foo.errors, :status =&gt; :unprocessable_entity } end end end def update @foo = RedFoo.find(params[:id]) respond_to do |format| if @foo.update_attributes(params[:foo]) flash[:notice] = 'Foo was successfully updated.' format.html { redirect_to(@foo) } format.xml { head :ok } else format.html { render :action =&gt; "edit" } format.xml { render :xml =&gt; @foo.errors, :status =&gt; :unprocessable_entity } end end end def destroy @foo = RedFoo.find(params[:id]) @foo.destroy respond_to do |format| format.html { redirect_to(foos_url) } format.xml { head :ok } end end end </code></pre> <p>The models only contain methods for next/previous, which work fine, surprisingly.</p> <pre><code>class RedFoo &lt; Foo def next if self == RedFoo.find(:all, :order =&gt; "title ASC").last GreenFoo.find(:all, :order =&gt; "title ASC").first else RedFoo.find(:first, :conditions =&gt; ["title &gt; ?", self.title], :order =&gt; "title ASC") end end def previous if self == RedFoo.find(:all, :order =&gt; "title ASC").first BlueFoo.find(:all, :order =&gt; "title ASC").last else RedFoo.find(:first, :conditions =&gt; ["title &lt; ?", self.title], :order =&gt; "title DESC") end end end </code></pre> <h2>Problem</h2> <p>For whatever reason when I try to create and edit records, none of the attributes get saved in the database. It simply adds a new record with completely empty columns, regardless of what's filled in the form. No errors get returned in the script/server output or in the log files. From the script/console however, everything works perfectly fine. I can create new records and update their attributes no problem.</p> <p>It's also quite a bad code smell that I have a lot of code duplication in my controllers/models (they're using the same views as the base model, so that's fine though). But I think that's unavoidable here unless I use some meta-goodness.</p> <p>Any advice or suggestions about tackling this record saving issue would be great, but the reason I posted my setup in detail is because I have a feeling I'm probably going about this whole thing the wrong way. So, I'm open to other approaches if you know of something more practical than using STI. Thanks.</p> <h3>Update</h3> <p>The parameters hash looks about right:</p> <pre><code>{"commit"=&gt;"Create", "authenticity_token"=&gt;"+aOA6bBSrZP2B6jsDMnKTU+DIAIkhc8fqoSicVxRJls=", "red_foo"=&gt;{"title"=&gt;"Hello world!"}} </code></pre> <p>But @foo.inspect returns the following RedFoo object (all nil, except for type):</p> <pre><code>#&lt;RedFoo id: nil, title: nil, type: "RedFoo", created_at: nil, updated_at: nil&gt; </code></pre> http://stackoverflow.com/questions/958308/django-model-custom-save-with-manytomanyfield-problem 1 Django model custom save with ManyToManyField problem Orengelo 2009-06-05T21:52:06Z 2009-11-25T18:00:03Z <p>I know this question has been posted multiple times but I still couldn't find a definite answer to this problem. So, here I go:</p> <pre><code>class Invoice(models.Model): program = models.ForeignKey(Program) customer = models.ForeignKey(Customer, related_name='invoices') participants = models.ManyToManyField(Participant, related_name='participants_set') subtotal = models.DecimalField(max_digits=10, decimal_places=2, default='0.00', blank=True, null=False) pst = models.DecimalField("PST", max_digits=10, decimal_places=2, default='0.00', blank=True, null=False) gst = models.DecimalField("GST", max_digits=10, decimal_places=2, default='0.00', blank=True, null=False) total = models.DecimalField(max_digits=10, decimal_places=2, default='0.00', blank=True, null=False) def save(self, **kwargs): super(Invoice, self).save(**kwargs) items = self.participants.count() subtotal = Decimal(self.program.fee) * items pst = self.program.is_pst and Decimal(PST)*subtotal or Decimal('0.00') gst = self.program.is_gst and Decimal(GST)*subtotal or Decimal('0.00') total = (subtotal + pst) + gst self.subtotal = subtotal self.pst = pst self.gst = gst self.total = total super(Invoice, self).save(**kwargs) </code></pre> <p>Everything works fine except self.participants.count() doesn't work. Any idea what could be the problem. Any help much appreciated.</p> http://stackoverflow.com/questions/1787198/trouble-changing-databases-for-my-models-in-codeigniter 0 Trouble changing databases for my models in codeigniter Ethan 2009-11-24T01:13:14Z 2009-11-24T20:34:34Z <p>Hey SO,</p> <p>I'm making a website with two different databases. Let's say one is DB1, and the other is DB2. I've set up my database.php in the config folder, so they each have the correct host/password/username/database etc with db['DB1']['hostname'] and the other db['DB2']['hostname'] etc, so I'm pretty sure I've got that part right.</p> <p>According to CodeIgniter docs, I'm supposed to do $this->load->database('DB1') to get that one to work within my model. First, I put it in my constructor for my model, and it didn't work. Then I tried putting that line as the first line of every function in the model, and that didn't work. I'm still getting this error:</p> <pre><code>Error Number: 1146 Table 'DB2.stores' doesn't exist </code></pre> <p>When I'm trying to use DB1, and have done $this->load->database('DB1') as the first line of the model's function. Does anyone know what I'm doing wrong? Thanks!</p> http://stackoverflow.com/questions/1791241/book-or-website-on-creating-enterprise-data-model-api 0 Book or Website on creating enterprise data model / API Joe Estes 2009-11-24T16:32:43Z 2009-11-24T17:08:23Z <p>I was recently listening to an interview with Joe Hewitt (Facebook iPhone app creator) and he mentioned that most important portion of an application these days is the core model. He goes onto say that the reason for this is that apps need to be built for every platform but stem from a single core (web, mobile, and 3rd party apps). </p> <p>I wanted to know if anyone had a resource for architecting something like this whether it's a book, website, or blog post.</p> http://stackoverflow.com/questions/619698/marrying-up-consumer-defined-aggregates-e-g-sql-counts-with-pure-model-objec 1 Marrying up consumer-defined aggregates (e.g. SQL counts) with 'pure' model objects? Jan Zich 2009-03-06T17:28:46Z 2009-11-23T22:28:22Z <p>What is the best practice of introducing custom (typically volatile) data into entity model classes? This may sound like a bad practice first, but it seems to be quite a common scenario. In our recent web application we have developed a proper model and in most cases we are fine with loading model entities. But there are cases where we cannot afford loading an entire hierarchy of entities; we need to load, say, results of a couple of SQL COUNT’s or possibly some additional information alongside (or embedded inside) the model entities. So basically, the requirements and conditions are:</p> <ol> <li><p>It’s a web application where 99.9999999999% of all operations are read operations.</p></li> <li><p>They don’t need to process or do any complicated business logic. We just need to get data quickly to HTML.</p></li> <li><p>In several performance critical cases, we need to load results of SQL aggregates which don’t fit any model properties.</p></li> <li><p>We need an extensible way to introduce any new custom data if needed.</p></li> </ol> <p>How do you usually solve this issue without working too much around your ORM (for instance raw data from db)? I’m sure this has been discussed many times, but I cannot figure out a good Google query to find anything useful.</p> <p><strong>Edit</strong>: Since I later realized the question was not very well formed, I decided to reformulate it and start a <a href="http://stackoverflow.com/questions/621514">new one</a>.</p> http://stackoverflow.com/questions/1761852/r-use-var-model-to-predict-response-to-change-in-values-of-certain-variables 0 R: Use VAR model to predict response to change in values of certain variables Karl 2009-11-19T08:56:41Z 2009-11-23T15:54:29Z <p>Hi</p> <p>I've fitted a VECM model in R, and converted in to a VAR representation. I would like to use this model to predict the future value of a response variable based on different scenarios for the explanatory variables.</p> <p>Here is the code for the model:</p> <pre><code>library(urca) library(vars) input &lt;-read.csv("data.csv") ts &lt;- ts(input[16:52,],c(2000,1),frequency=4) dat1 &lt;- cbind(ts[,"dx"], ts[,"u"], ts[,"cci"],ts[,"bci"],ts[,"cpi"],ts[,"gdp"]) args('ca.jo') vecm &lt;- ca.jo(dat1, type = 'trace', K = 2, season = NULL,spec="longrun",dumvar=NULL) vecm.var &lt;- vec2var(vecm,r=2) </code></pre> <p>Now what I would like do is to predict "dx" into the future by varying the others. I am not sure if something like "predict dx if u=30,cpi=15,bci=50,gdp=..." in the next period would work. So what I have in mind is something along the lines of: increase "u" by 15% in the next period (which would obviously impact on all the other variables as well, including "dx") and predict the impact into the future.</p> <p>Also, I am not sure if the "vec2var" step is necessary, so please ignore it if you think it is redundant.</p> <p>Thanks<br> Karl</p> http://stackoverflow.com/questions/1751686/conditions-in-associated-models-using-model-find-cakephp 0 Conditions in associated models using Model->find() (CakePHP) Wolfram 2009-11-17T20:52:50Z 2009-11-21T17:18:56Z <p>Hi, I am having some issues with CakePHP's find() method and conditions in 'deeper' model associations. There are some of these around but I could not find an answer to this so far.</p> <p>My model associations are <code>User hasMany Post hasMany Comment hasMany Vote</code> and <code>Vote belongsTo Comment belongsTo Post belongsTo User</code> respectively. The <code>belongsTo</code> associations use inner joins ('type' => 'INNER').</p> <p>How do I find all comment votes for posts of a specific user with CakePHP's model->find() method?</p> <p>I used a chain of four models deliberately, because this seems to work for conditions in directly associated models. So there is no using the foreign-key-holding column in the neighbouring table (condition 'Post.user_id == 1' instead of 'User.id == 1').</p> <p>In SQL this would be:</p> <pre><code>SELECT v.* FROM votes v JOIN comments c ON (v.comment_id = c.id) JOIN posts p ON (c.post_id = p.id) JOIN users u ON (p.user_id = u.id) WHERE u.id = 1 </code></pre> <p>I am unable to reproduce these joins using find() + the Containable behavior. Although I could simply get a user with all his data, I would then have to collect all votes from inside the resulting array.</p> <p>It is not working like this (Warning: unknown column 'User.id'):</p> <pre><code>$this-&gt;Vote-&gt;recursive = 2; // or higher $this-&gt;Vote-&gt;find('all',array('conditions' =&gt; array('User.id' =&gt; 1))); </code></pre> <p>In fact, this doesn't even work using Post instead of User (Vote->Comment->Post) as soon as I add the condition. The manufactured SQL query only joins votes and comments. </p> <p>The returning array should only contain votes the SQL query above would return, everything else should be "joined away" in the process.</p> <p>Note: My question is quite close to this one, which helped me getting started: <a href="http://stackoverflow.com/questions/813294/in-cakephp-how-can-i-do-a-find-with-conditions-on-a-realted-field">http://stackoverflow.com/questions/813294/in-cakephp-how-can-i-do-a-find-with-conditions-on-a-realted-field</a></p> http://stackoverflow.com/questions/1771971/how-can-i-find-out-the-model-code-for-my-google-mini 0 How can I find out the model code for my Google mini Loftx 2009-11-20T17:15:23Z 2009-11-20T17:15:23Z <p>Hi there,</p> <p>We are experiencing some problems with our google mini and I need to know what model we're using as referenced here <a href="http://code.google.com/apis/searchappliance/documentation/52/troubleshooting/Designing%5FSearch%5FSolution.html#Queueing" rel="nofollow">http://code.google.com/apis/searchappliance/documentation/52/troubleshooting/Designing%5FSearch%5FSolution.html#Queueing</a></p> <p>Our google mini is racked and the label seems to be underneath it, so it's not easy to find out this way. Does anyone know how I can find out the model number - either though the web interface, or point me to any more documentation on the matter.</p> <p>Thanks,</p> <p>Tom</p> http://stackoverflow.com/questions/1770852/rails-custom-model-functions 0 Rails Custom Model Functions antoinne85 2009-11-20T14:39:46Z 2009-11-20T16:08:54Z <p>I'm in a databases course and the instructor wants us to develop an e-commerce app. She said we can use any framework we like, and now that we're halfway through the semester she decided that Rails does too much and wants me to explicitly write my SQL queries.</p> <p>So, what I'd like to do is to write my own functions and add them to the models to essentially duplicate already existing functionality (but with SQL that I wrote myself).</p> <p>So the questions then become:</p> <ol> <li>How do I execute manually created queries inside the model?</li> <li>How do I stuff the results into an empty object that I can then return and work with inside the view?</li> </ol> <p>Also, I'm aware of what terrible practice this is, I just don't want to start all over in PHP at this point.</p> http://stackoverflow.com/questions/186606/zend-framework-fetchall 2 Zend Framework fetchAll Mote 2008-10-09T10:01:16Z 2009-11-20T14:26:10Z <p>Can i override fetchall method in a model? I need to check sth everytime fetchAll is called. The model extends Zend_db_table_abstract</p> http://stackoverflow.com/questions/1598936/how-to-implement-active-record-inheritance-in-ruby-on-rails 1 How to implement Active Record inheritance in Ruby on Rails? andrisetiawan 2009-10-21T05:50:22Z 2009-11-20T07:42:09Z <p>How to implement inheritance with active records?</p> <p>For example, I want a class Animal, class Dog, and class Cat.</p> <p>How would the model and the database table mapping be?</p>