Displaying 8 results from an estimated 8 matches for "dewi".
Did you mean:
dei
2004 Sep 06
0
Strange problems with my Samba Domain - Any ideas?
...= ou=People,ou=internal
ldap group suffix = ou=Groups,ou=internal
ldap idmap suffix = ou=Idmap
ldap admin dn = cn=Manager,o=brentwood.bc.ca.
idmap backend = ldap:ldap://localhost
idmap uid = 10000-20000
idmap gid = 10000-20000
map acl inherit = Yes
printing = cups
printer admin = Headboy, pavittd, dewi, Administrator
Thanks,
Dewi
2003 Aug 22
6
MAC Address of incoming conection
I''m thinking the answer is no but I thought I ask anyway. Is there a way
to find out the MAC address of of an incoming connection using the logs
generated with shorewall? It would be nice that way if someone''s IP
changes you can at least still be blocking the MAC.
--
Joe
***
I can only please one person a day.
Today is not your day and tomorrow doesn''t look good
2005 Dec 27
10
ActiveRecord flexible columns
I would like to have a table with flexible columns.
For example i have the following table customers:
id
name
email
The user should be able to save other columns to the database as well :
me = Customer.find(10)
me.name = ''me company''
me.email = ''me-RPlE4GnVVoJHoQZOM9yvow@public.gmane.org''
me.msn = ''me1234'' # custom columns
me.birthdate =
2003 May 09
5
Hacked?
This morning, I noticed in my security email, that my entire /usr/bin
directory had setuid diff's set on them.
I think I've been hacked. So I installed chkrootkit from ports and ran
it. It showed not infected for everything,
except NETSTAT. NETSTAT showed infected...
I ran chkrootkit for another machine (at my office), and it showed not
infected for everything.
Both machines are
2003 Dec 01
0
No subject
...e_mail address: geansen@ms2.hinet.net
Return-Path: <d_sugantoro@hotmail.com>
Delivered-To: samba@samba.org
Received: from hotmail.com (unknown [61.5.92.208]) by lists.samba.org
(Postfix) with SMTP id 978FD422A for <samba@samba.org>; Thu, 16 Aug
2001 04:09:20 -0700 (PDT)
From: "Dewi Sugantoro" <d_sugantoro@hotmail.com>
To: <samba@samba.org>
Subject: Nice to meet you
Mime-Version: 1.0
Content-Type: text/plain; charset="ISO-8859-1"
Date: Thu, 16 Aug 2001 19:16:04 +0700
Reply-To: "Dewi Sugantoro" <d_sugantoro@hotmail.com>
Content-Transfe...
2005 Dec 22
0
Elements application in ajax-demo
Anybody has more information on the Elements application in the demo
video of ajax :
http://www.rubyonrails.com/media/video/rails-ajax.mov
Would be very nice to organise all your little notes to this application
Is it opensource, are there any other applications opensource like this
one ?
Daniel
--
Posted via http://www.ruby-forum.com/.
2005 Dec 21
3
Checkbox readonly
I declare some checkboxes :
<%= check_box_tag ''offers[]'', offer.id ,
@params[:offers].include?(offer.id.to_s) ,:readonly=>true %>
the result is :
<input checked="checked" id="offers[]" name="offers[]"
readonly="readonly" type="checkbox" value="1" />
But readonly doesn''t work ???
--
Posted
2006 Jan 04
5
Webservice External XMLRPC
Hello i have some trouble getting my webservice to run .
I have the following webservice :
class DirectSpoolAPI < ActionWebService::API::Base
api_method :add, :expects => [{:html=>:string},{:from=>:string}],
:returns => [Customer]
end
class DirectSpoolService < ActionWebService::Base
web_service_api DirectSpoolAPI
def add(html,from)
Customer.find(:first)
end