Displaying 2 results from an estimated 2 matches for "userprogram".
Did you mean:
  useprogram
  
2010 Jan 25
0
has_many, :finder_sql, setting attributes
...t.team_id = 
t.team_id
                                        JOIN user_programs AS up ON 
up.user_program_id = ut.user_program_id
                                        JOIN users AS u ON up.user_id = 
u.user_id
                                        WHERE u.user_id = #{id}''
end
class UserProgram < ActiveRecord::Base
  belongs_to :user
  belongs_to :program
  has_many :user_teams
  has_many :teams, :through => :user_teams
end
class Program < ActiveRecord::Base
  has_many :teams
  has_many :user_programs
  has_many :users, :through => :user_programs
end
class UserTeam < Acti...
1998 Mar 11
4
Re: Towards a solution of tmp-file problems
...tuff that has lower-security clearance
should be "careful".
This includes:
	passwd, lpr: setuid, interaction possible with normal users on 
                     the system.
	inetd, ftpd: network deamons, interaction with unauthenticated 
                     remote users.
	netscape, ftp: userprograms, interaction with unauthenticated 
                     remote servers. 
This does NOT include:
	ls, cat: userprograms, interact only with system-local stuff. 
Mark Whitis (whitis@dbd.com) wrote:
> >  A /tmp that is a symlink to /.tmp/$euid would do the trick. 
> However, there are so...