Displaying 12 results from an estimated 12 matches for "real_name".
Did you mean:
real_name1
2007 Oct 25
0
6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_movie.c test/trace
...@@
+/* gcc `pkg-config --libs --cflags libming glib-2.0` initaction-queue.c -o initaction-queue && ./initaction-queue
+ */
+
+#include <ming.h>
+#include <glib.h>
+
+static void
+do_movie (int version)
+{
+ SWFMovie movie;
+ SWFMovieClip clip;
+ SWFDisplayItem item;
+ char *real_name;
+
+ movie = newSWFMovieWithVersion (version);
+ movie = newSWFMovie();
+ SWFMovie_setRate (movie, 1);
+ SWFMovie_setDimension (movie, 200, 150);
+
+ clip = newSWFMovieClip ();
+ item = SWFMovie_add (movie, (SWFBlock) clip);
+ SWFMovieClip_addInitAction (clip, newSWFAction ("_root.x = 4...
2023 Apr 04
5
[RFC PATCH 0/5] fstests specific MAINTAINERS file
I think I might be mad to include that many mailing lists in this patchset...
As I explained in [PATCH 1/5], fstests covers more and more fs testing
thing, so we always get help from fs specific mailing list, due to they
learn about their features and bugs more. Besides that, some folks help
to review patches (relevant with them) more often. So I'd like to bring
in the similar way of
2006 May 19
1
ActiveRecord: Minor saving problem
...function in the controller:
def invite
@invite_user=User.find(:first, :conditions => ["company_id = 0 AND
id = ?", params[:id]])
if @invite_user
@invite_user.company_id = @session[:user].company_id
@invite_user.save
flash[:notice] = "User #{@invite_user.real_name} was
successfully added to your company #{@invite_user.company_id}"
else
flash[:notice] = "Sorry, I couldn''t add this user to your company"
end
redirect_to :action => ''no_company''
end
The flash message does tell me I have the right u...
2008 Jan 01
1
functional tests
...s failing.
The controller is just a default controller but i get the following
error on the test as i modified the index view.
test_should_get_index(CommitsControllerTest):
ActionView::TemplateError: You have a nil object when you didn''t
expect it!
The error occurred while evaluating nil.real_name
On line #13 of commits/index.html.erb
10:
11: <% for commit in @commits %>
12: <tr>
13: <td><%=h commit.person.real_name.name%></td>
14: <td><%=h commit.project.name %></td>
15: <td><%=h commit.log...
2006 Jul 15
3
How bad is it to have 7 joins in my find_by_sql?
...y question is whether there''s a more idiomatic rails way of
structuring this query or of redoing the underlying models. First,
the ugly find_by_sql code, which is the method to generate an atom feed:
def atom
items_per_feed = 15
sql_query = "SELECT activities.*, users.real_name AS real_name,
accounts.last_scraped_at AS last_scraped_at,
accounts.total_miles as account_miles,
origins.name AS origin_name, origins.code AS origin_code,
destinations.name
AS destination_name, destinations.code AS destination_code,
airlines.name
AS airline_name,...
2010 Aug 20
2
The M in ORM
...ls
app rolder and found a file named schema.rb in the "db" folder inside my
app, with content like this:
create_table "users", :force => true do |t|
t.text "username"
t.text "password"
t.text "email"
t.text "real_name"
t.datetime "created_at"
t.datetime "updated_at"
end
There were also some comments about not editing this file manually, but
to use migrations instead.
So the questions are: How does Rails know which properties from the
model to match to the database fields? W...
2007 Jun 20
0
Branch 'as' - 5 commits - libswfdec/swfdec_graphic_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_sprite_movie.c test/image
...t1, Type t2)
+{
+ SWFDisplayItem item;
+
+ add_rectangle (movie, t1, 255, 0, 0);
+ SWFMovie_nextFrame (movie);
+ item = add_rectangle (movie, t2, 0, 0, 255);
+ SWFDisplayItem_setMove (item);
+ SWFMovie_nextFrame (movie);
+}
+
+static void
+do_movie (int version)
+{
+ SWFMovie movie;
+ char *real_name;
+ Type t1, t2;
+
+ for (t1 = 0; t1 < N_TYPES; t1++) {
+ for (t2 = 0; t2 < N_TYPES; t2++) {
+ movie = newSWFMovieWithVersion (version);
+ movie = newSWFMovie();
+ SWFMovie_setRate (movie, 1);
+ SWFMovie_setDimension (movie, 200, 150);
+
+ modify_placement (movie,...
2007 Jun 18
0
Branch 'as' - 8 commits - libswfdec/swfdec_movie.c libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_sprite_movie.h libswfdec/swfdec_swf_decoder.c libswfdec/swfdec_swf_decoder.h
...ame (item, "a");
+ SWFMovie_nextFrame (movie);
+
+ item = SWFMovie_add (movie, clip2);
+ SWFDisplayItem_setDepth (item, 1);
+ SWFDisplayItem_moveTo (item, 20, 20);
+ SWFDisplayItem_setName (item, "b");
+}
+
+static void
+do_movie (int version)
+{
+ SWFMovie movie;
+ char *real_name;
+ guint i;
+
+ movie = newSWFMovieWithVersion (version);
+ movie = newSWFMovie();
+ SWFMovie_setRate (movie, 1);
+ SWFMovie_setDimension (movie, 200, 150);
+
+ modify_placement (movie, i);
+ SWFMovie_nextFrame (movie);
+
+ SWFMovie_add (movie, (SWFBlock) newSWFAction (""
+#if 0...
2011 Feb 22
1
ANNOUNCE: Puppet 2.6.5 - Release Candidate 5 available!
...) Add puppet inspect application
e005cc7 maint: Remove bogus mongrel test
c908fdb (#5261) Fix #5261 Don''t escape Unicode characters in PSON
b27e9b4 [#5081] Revert "Fix #4349 - Parsing with ignoreimport=true was
always loading site.pp"
af6e08c (#5304) Use internal_name rather than real_name for maillist
provider
--
Paul Berry
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups...
2011 Feb 04
1
ANNOUNCE: Puppet 2.6.5 - Release Candidate 1 available!
...) Add puppet inspect application
e005cc7 maint: Remove bogus mongrel test
c908fdb (#5261) Fix #5261 Don''t escape Unicode characters in PSON
b27e9b4 [#5081] Revert "Fix #4349 - Parsing with ignoreimport=true was
always loading site.pp"
af6e08c (#5304) Use internal_name rather than real_name for maillist
provider
--
You received this message because you are subscribed to the Google Groups "Puppet Developers" group.
To post to this group, send email to puppet-dev@googlegroups.com.
To unsubscribe from this group, send email to puppet-dev+unsubscribe@googlegroups.com.
For more...
2011 Feb 04
2
Fwd: [Puppet-dev] ANNOUNCE: Puppet 2.6.5 - Release Candidate 1 available!
...) Add puppet inspect application
e005cc7 maint: Remove bogus mongrel test
c908fdb (#5261) Fix #5261 Don''t escape Unicode characters in PSON
b27e9b4 [#5081] Revert "Fix #4349 - Parsing with ignoreimport=true was
always loading site.pp"
af6e08c (#5304) Use internal_name rather than real_name for maillist
provider
--
You received this message because you are subscribed to the Google Groups "Puppet Developers" group.
To post to this group, send email to puppet-dev@googlegroups.com.
To unsubscribe from this group, send email to puppet-dev+unsubscribe@googlegroups.com.
For more...
2007 Jun 19
0
Branch 'as' - 4 commits - libswfdec/swfdec_codec_video.c libswfdec/swfdec_movie.c test/trace
...+ SWFMovie_nextFrame (movie);
+
+ if (mod & MODIFY_REMOVE) {
+ SWFDisplayItem_remove (item);
+ }
+ item = SWFMovie_add (movie, clip2);
+ modify_item (item, NULL, mod);
+ return g_string_free (name, FALSE);
+}
+
+static void
+do_movie (int version)
+{
+ SWFMovie movie;
+ char *name, *real_name;
+ guint i;
+
+ for (i = 0; i < MODIFY_MAX; i++) {
+ movie = newSWFMovieWithVersion (version);
+ movie = newSWFMovie();
+ SWFMovie_setRate (movie, 256);
+ SWFMovie_setDimension (movie, 200, 150);
+
+ name = modify_placement (movie, i);
+ SWFMovie_nextFrame (movie);
+
+...