search for: clientlist

Displaying 6 results from an estimated 6 matches for "clientlist".

2006 Aug 02
3
find_by_column_name and for loop returns undef method `each''
I''m trying to understand how to select only certain rows in my database using RoR. As a test I try to find certain clients by adding this code in my list view... <% clientlist = Client.find_by_client_status_id(1) %> <% if clientlist %> <= This prevents me from getting nil errors. <% for client in clientlist %> <= This seems to try and call ''each'' method. ... <tr> and <td> data display ... <% end %> <% en...
2003 Jul 02
0
Winpopup message to all user on a PDC
...Roberto Samarone Araujo (RSA) ha scritto: > > > It it possible to send messages to all users logged in a PDC at same > > time ? > > I didn't find a ready-to-use program, so I use something like this > inside an executable script: > > for i in $(cat /path/clientlist.txt) > do > echo message_text | smbclient -M $i & > done > > clientlist.txt is an ASCII file containing a list of all NetBIOS names > of the PCs in the network, e.g.: > > ACCOUNTING > JOHN > BILL_PC > SHARED > etc... > > message_text is th...
2003 Jul 01
0
Re: Winpopup message to all user on a PDC
...PDC Il 01/07/2003, alle ore 14:19, Roberto Samarone Araujo (RSA) ha scritto: > It it possible to send messages to all users logged in a PDC at same > time ? I didn't find a ready-to-use program, so I use something like this inside an executable script: for i in $(cat /path/clientlist.txt) do echo message_text | smbclient -M $i & done clientlist.txt is an ASCII file containing a list of all NetBIOS names of the PCs in the network, e.g.: ACCOUNTING JOHN BILL_PC SHARED etc... message_text is the text you want to send. -- Ciao, Marco. ..."The Lamb Lie...
2014 Jun 05
1
Icecast Release 2.4.0 Webm /Opus Support
...player embeding into webpage and it worked fine, but my goal is to use icecast. From what i understand VCL or ffmpeg is the common method to stream video to a icecast2 server are there any howtoos or blogposts, because there is silence in the http://icecast.imux.net forum aswell. The 3rd party clientlist are audio only clients ? http://www.icecast.org/3rdparty.php Appreciate any link or helpfull information greetings P.S. Would be great if there is a software for win7 my server is ubuntu 10.4 though :( -- Marc Manthey 50823 K?ln, germany Vogelsangerstr.97 phone : 0049-221-29891489 mobile: 00...
2006 Apr 10
0
Rails form error message oddness...
...t_reference">Client Reference:</label></dt> <dd><%= text_field "client", "reference", :size => 40 %></dd> </dl> <%= submit_tag "post" %> </div> <%= end_form_tag %> <div id="clientList"> <h3>Current Clients </h3> <p>A list of the current active clients.</p> <%= start_form_tag :action=> "new" %> <% for client in @clients -%> <%= render(:partial => "client_list", :object => clien...
2005 Mar 07
0
an escape from using find_all
...ames instead of inserting manually the code in the textbox... to do so I''ve used options_from_collection_for_select on another var @client (setted to find_all on the controller calling this viewer). <select name="client"> <%=options_from_collection_for_select(@clientList,"id","name",@cost.client_id) %> </select><br> doing this way on the controller I have @cost and @client, and I must set the @client id to @cost.id Is this a good way to do what I need? Is there a way to avoid the use of another variable? The two models are connec...