search for: comment_s

Displaying 4 results from an estimated 4 matches for "comment_s".

Did you mean: comments
2014 Apr 02
1
AD + smbd?
Stupid question # 885: Can Samba 4.1 be both AD server and smb server? Some recent updates on my server broke a bunch of stuff. Samba was among them. I have managed to recover the AD server, but the smb server refuses to take control. Whenever I run the 'smbclient -L localhost -U%', I get all the correct messages, but no workgroup master. Domain=[OZCO] os=[Unix] Server=[Samba 4.1.2}
2006 Apr 20
5
Integrating with Legacy Databases
This seems like it must have been asked before - I really _did_ try to find it in the archives, so my apologies if it''s already out there. Utilizing ActiveRecord, I would like to specify a prefix for the column names in my table. For example, in ''Recipe 16 Integrating with Legacy Databases'' (Rails Recipes, from PragProg, by Fowler) they deal with integration with a
2006 Apr 07
3
Ajax render a template
In my blog a user can add comments. I want an Ajax call to add the comment to the bottom of the comments list. How to i return a comment thats is in the comment template and add it to the bottom of the page. I have gotten as far as rendering some text back to the form and the comment doesn''t display until i refresh. This is my _newcomment.rhtml form to create a new comment <div
2010 Sep 27
9
Rails 3 - Creating a comment and then returning the Partial with JUST the new comment
Here''s the flow I have... First, jquery posts the new comment to the server: $.post(this.action,$(this).serialize(),null,''script''); Then in the comments controller: def create @comment = lots of stuff going on here but it works... if @comment.save flash[:notice] = "Successfully created comment."