Displaying 20 results from an estimated 72 matches for "isak".
Did you mean:
isa
2011 Feb 15
1
samba authenticates only against the primary group of a user?
...office on a Qnap storage device running Samba -v3.5.2. So I ask:
when the 'write list' of a share contains ONLY groups, and a user tries to
log on to that share, then samba authenticates against the primary group
only of that user only??
Here is the example that fails:
-the user is 'isak'
-the group of interest is 'iso_ops'. This user belongs these groups:
everyone, engineers, iso_ops (this is the order I get when I run the command
'groups' from a shell)
-The shared folder in question is 'iso'. this folder has the following
permissions: no individual u...
2006 May 19
7
AR transactions and isolation levels
...ms to create two new Invoices, both with
the same invoice_no.
Am I mistaken about how transactions or the serializable isolation
level really work, or is it my code or environment that''s fubar?
Am using Postgres 8.1.something, so the DB should be up to the task.
Any feedback appreciated,
Isak
2013 Mar 04
4
sieve-filter ignoring separator
...to folder names containing dots.
Normal delivery using lda handles it just fine, but not when using the
sieve-filter command.
Character not allowed in mailbox name: '.'
Is there anyway to override this or is patching and recompiling the source
my only option?
# dovecot --version
2.1.9
/Isak
2011 Dec 06
3
Riak on Camping
...39;'d be able to do any has_many''s or belongs_to
but I''d LOVE to be proven wrong. As far as I know (but maybe I should do
some research before saying it) there isn''t any
adapter for Riak yet.
I want to use it anyways though, connecting nodes around the globe! |m|
-Isak Andersson
TLB
--
Using the Opera email client: http://www.opera.com/mail/
2007 May 15
4
Need help with singleton worker
We have a fairly expensive task that we''d rather not schedule too many
instances of in parallel.
Couldn''t get pool_size to limit the amount of workers, and I figure
that''s hardly optimal anyway, so would like to have the work queued up
for a single named worker instead, running as soon as possible.
Using MiddleMan.schedule_worker() with :job_key does start off a
2006 Nov 10
2
Testing with foreign keys
I''m looking for a plugin/whatever for preloading fixtures, to run
tests with FKs defined.
Specifying load order just doesn''t work for me, I need to purge the
test db, load all fixtures, and only then create the FK constraints.
Any suggestions?
Isak
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send...
2006 Nov 04
3
role based authorization question
I am using the the authorization recipe outlined in Rails Recipes.Is it
possible for one role, say ''admin'', to have access to every action on every
controller without explicitly having to create a Right for each?
I know this will not work as is, and to force it to do so would violate MVC,
but is there some other way to accomplish having something like this in a
controller:
2006 Jun 09
12
Securing database from your provider?
Hi.
If i had a RoR application dealing with very reserved personal
informations about my customers, if my hosting provider would like to, i
guess it would be easy for him to steal the data by simply peeking the
username and password inside the database.yml file.
Is there a way to hide the database password from indiscrete eyes ?
Thanks,
Marcus Ob.
--
Posted via http://www.ruby-forum.com/.
2008 Jan 23
1
cgi escaped basic auth data in ActiveResource?
...eld, e.g. ''@'' as part of the user
name.
I created a ticket on the issue[1], but closed it again as I''m not
sure where the responsibility really belongs. It''s a showstopper for
us, though.. Thoughts?
[1] <http://dev.rubyonrails.org/ticket/10902>
Regards,
Isak
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com
To unsubscribe from this group, send email to rubyonrails-co...
2007 Jan 26
7
How to protect attributes from being updated?
Hi!
I''m new to Rails!
Rails rox!
1 quesion so far:
I have :email attribute in User model.
I dont'' want :email to allow to be updated.
How do i do this with Rails?
Do I have to implement required validation manually?
Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2006 Sep 21
10
Can I use 2 DB connections in my app?
Hi there!
How can i use 2 database connections in my rails application ( if it''s
possible of course ): one for reading from DB and one for writing to DB?
Thanks,
Dmitry
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To
2006 Jul 07
2
How does layouts work?
When creating a scaffold you get a layout file. How does it work? I
thought I would find the var @content_for_layout in the controller, but
I didn''t. Where is layouts defined or controlled?
--
Posted via http://www.ruby-forum.com/.
2006 May 16
2
Model layer access control
...ell, only with made up controller/action strings? (e.g.
"model::Period", "close")
A bit simplistic for a multi user/client accounting system? I''m
certainly open for better suggestions, especially if they could
improve ease of use/maintenance.
Any feedback appreciated,
Isak
2006 May 16
5
Transactions in RoR
Hi,
Does anyone knows how to manage transactions in RoR.
Thanx
2006 Jul 19
2
Creating a safe sequence generator
Hi all,
I''ve got a rails and database question. Accounts have jobs, and job
numbers should be assigned per account. Account 89 should have jobs
1-whatever, which are not the same as account 67, which has jobs
1-whatever.
In the past, I have accomplished this quite easily with:
create table job (
accountid int(10) unsigned not null default 0,
jobid int(10) unsigned not null
2007 Sep 12
10
Need help refactoring a controller, perhaps add threading?
Good morning,
I''ve been working on my first Rails app. I''m replacing an old Perl
script that scrapes a bunch of data from an Oracle database, generates a
bunch of charts then builds a static webpage with the charts.
I''ve re-built it in Rails, with about 25% of the code it took to do in
Perl and the users can now get dynamic charts instead of day old charts
(or
2006 Apr 20
3
Need help cutting down on db traffic
...of it.
It also seems like the same row gets loaded again every time it''s
used? Perhaps AR could benefit from a per-request cache, or would that
do more harm than good? Say every result set with less than 5 rows
gets cached until the request is finished?
Any input/suggestions appreciated,
Isak
2006 Jul 21
20
Struts vs RoR
hi,
I recently attended one of the ruby meetings that we have in my city.
There one of the speaker said that google,amazon .. are working on RoR
but still the performance of RoR is not at par with J2EE others....
he meant that though google,amazon working o it they will not bring it as
front applications only parts
the reason ruby is slow in comparison to other languages....
and in real time
2006 Aug 02
7
ActiveRecord does not close database connections?
I have an application that creates quite a few threads. I keep getting
the "mysql too many connections" error.
ActiveRecord does not close the connection once a thread had died out.
To make things worse mysql has a wait_timeout variable that would
basically kill off these connections for me, but there is a bug and I
can not change the value of it. I have tried at least 10 different
2006 Jul 11
32
Database Concurrency Without a Web Server?
My Rails application requires a very busy worker process running in the
background at all times. I am launching this non-interactive process
using script/runner. This process is very busy and is communicating
with the MySQL server constantly. As I started putting some load on the
system to test, I started running into performance issues.
I have since discovered that Rails is only using 1