search for: kogler

Displaying 12 results from an estimated 12 matches for "kogler".

Did you mean: kofler
2006 Mar 13
3
unit tests executed for every page load ?
...omething like this: "Loaded suite dispatch.cgi Started Finished in 0.000218 seconds. 0 tests, 0 assertions, 0 failures, 0 errors " Seems like there is executed a non existent test suite for every page load. Can anybody help me find the lines that force this behaviour ? Thanks Gernot Kogler -- Posted via http://www.ruby-forum.com/.
2006 Apr 11
1
Implementing Optimistic Offline Lock - How ?
I understand that ActiveRecord supports the "optimistic offline lock"-pattern through magic fields (created_at, updated_at). However, a scaffolded CRUD-Controller doesn''t generate the necessary code to support this feature (the model state gets lost between two action calls). What is the best practice to prevent users from overwriting objects with outdated data ? --
2023 Apr 21
2
Samba shares and samba server residing on different physical machines
On 21/04/2023 15:11, E Kogler via samba wrote: > Hi fellow Members!I'm Systems administrator at a school using SAMBA 4 as AD DC. > As you know, WIN11 is at the doorstep and my "old" Samba4 Server (4.9) doesn't serve Windows Servers (Server 2019) very well, > e.g. the latest issue is that the domain ad...
2023 Aug 23
1
Samba shares and samba server residing on different physical machines
...e ?? How do i write the path for the shares ?How are my users transferred ? ( Has it been done with transferring the roles ?) ??? Edgar Am Freitag, 21. April 2023 um 16:42:57 MESZ hat Rowland Penny via samba <samba at lists.samba.org> Folgendes geschrieben: On 21/04/2023 15:11, E Kogler via samba wrote: > Hi fellow Members!I'm Systems administrator at a school using SAMBA 4 as AD DC. > As you know, WIN11 is at the doorstep and my "old" Samba4 Server (4.9) doesn't serve Windows Servers (Server 2019) very well, > e.g. the latest issue is that the domain ad...
2016 Nov 03
1
"make install" fails
I want to install dovecot 2.2.25 on my opensuse 12.3 (yes, I know that this is an old distro). "./configure, make" run with no problems but "make install" fails with: [...] libtool: warning: 'libstats_auth.la' has not been installed in '/usr/local/lib/dovecot/stats' libtool: install: /usr/bin/install -c .libs/auth /usr/local/lib/dovecot/auth libtool: install:
2007 Mar 19
1
Problems when compiling actual sources ...
Hi, I've tried to compile the newest sources transferred to my PC with GIT serveral time until now (Ubuntu 6.06.1, i386). After compilation, installation and configuration (creating a new .wine folder) it seems I've always a problem with missing fake-dlls. I always get errors like this when running programs with wine:
2023 Apr 21
1
Samba shares and samba server residing on different physical machines
Hi fellow Members!I'm Systems administrator at a school using SAMBA 4 as AD DC. As you know, WIN11 is at the doorstep and my "old" Samba4 Server (4.9) doesn't serve Windows Servers (Server 2019) very well, e.g. the latest issue is that the domain administrator cannot access the GPO's or other informations from the Samba-LDAP (authentication failure ?). I think that it has
2006 Jun 07
9
Unobtrusive Javascript for Rails
I made a brief post on here the other day about this and now I can proudly present the initial release of our unobtrusive_javascript plugin for Rails. We''ll be working with Dan Webb of Vivabit to roll in much of the functionality in his own as-yet unreleased unobtrusive_javascript plugin into a single plugin. This is essentially a preview release and probably not suitable for use on a
2006 Aug 16
1
Several Problems with Umlauts
Hi I''m working on a Rails app for quite some time now. I had some problems with umlauts; I found workarounds but don''t like them really. So I wanted to ask if I''m the only one with these problems. Basically, I''ve set up my app and my database to work with utf-8. This works fine for all data that is processed by ActionController / ActionView. I can enter
2006 May 25
2
Help: How to write tests for a sms service interface
I''m working on a website that integrates sms services. When someone sends an sms to my service number, the sms provider posts an xml doc to an url specified by me. I have implemented the processing method like this: <code> def process_notification xml = XmlSimple.xml_in(@request.raw_post, ''ForceArray'' => false) @params.merge! xml sms_request =
2006 Apr 13
0
text_field_with_auto_complete and foreign characters
I need a form where the user must enter a city name. I would like to use an autocomplete_field for the city name, so I have the following code in my view: <%= text_field_with_auto_complete ''entry'', ''city_name'', :size => 40 %> and in my controller I have the method: def auto_complete_for_entry_city_name @cities = City.find(:all,
2006 Apr 14
0
text_field_with_auto_complete and special characters
I have a problem with text_field_with_auto_complete. Everything works fine except when I type special characters like ?,?,?. They are not escaped. "oberver_field" has a with-option like this: :with => "''ort='' + escape($F(''ort''))" This works fine with umlauts, too. Is there a way to escape the user input using