search for: headlines

Displaying 20 results from an estimated 175 matches for "headlines".

Did you mean: readlines
2011 Jul 11
1
Finding Confidence Intervals
...e 1", "Headline 2"), Visitors=c("1000", "1300"), Clicks=c("500", "600"), Conversions=c("100", "150")) And here are the click through rates and conversion rates for each of the headlines. ctr1 = (500/1000)*100 # for headline 1 ctr2 = (600/1300)*100 # for headline 2 ctr1; ctr2 conv1 = (100/1000)*100 # for headline 1 conv2 = (150/1300)*100 # for headline 2 conv1; conv2 According to the sites above, I'm really interested in determining the confidence intervals for the conve...
2006 Jan 30
3
Howto change @article.article.headline to @article.headline ?
I have to actions: def index @articles = Article.find(:all, :conditions => "un_published != ''1''", :order => "created_on desc") end and def group id = params[:id] @articles = ArticleGroup.find(:all, :include => [:group, :article], :conditions => ["articles.un_published !=
2006 Mar 23
7
Fixtures just Do Not Work for Me
Hello, I have been struggling to get fixtures to work here with no success. They just Do Not Work For Me (tm). I have created a model named Headline with the `generate'' script and modified the test/fixtumes/headlines.yml as follows ---------- gita: id: 1 author: raulseixas title: gita happened_at: 2005-01-01 00:00:00 description: gita This is the CD reissue of the 1974 album and second solo release by Raul Seixas, an important figure of Brazilian rock. Acid...
2006 Mar 27
1
Tests not tiding up after themselves?
Hello, My tests are messing with one another because it seems that they aren''t cleaning the database after execution. I have the tables headlines and articles. And the articles table has a foreign key to the headlines table. My schema structure is created by this script ---- drop table if exists changes; drop table if exists articles; drop table if exists headlines; create table headlines ( id int not null auto_increment, author varchar(4...
2006 Jul 26
4
can you pass data when you render :action
how can i do: render :action => "headline", :id => @user.id Thanks, Ben Lisbakken -- Posted via http://www.ruby-forum.com/.
2008 Sep 23
3
Finding distinct months using find_by_sql
...if someone might be able to offer me a solution to the following problem that has so far stumped me. I''m trying to get the distinct months (and years) from a date field to display as a list in a view. For example, there might be a number of records stored with dates in the table ''headlines'': name date record1 21-09-2008 record2 15-09-2008 record3 03-08-2008 record4 02-08-2008 record5 12-07-2008 etc. From which I''d like to get all distinct years and months to display in a view something like what might be seen under the ''Archives'' sec...
2009 Mar 06
2
Paragraph tags around <div> blocks
For those of you who are expert you may chuckle over this. Perhaps if it's in the record, however, it may help someone else. I was getting cases of <div id="content"> standing on a line by itself, getting converted to this: <p><div id="content"></p> Yes, the line above and below are blank. Yes the div tag is starting at the first column It
2006 Jul 25
11
Prevent users from entering urls
How could I make it so that links on my page could link to a controllers action, but if the user manually entered the url, it would redirect them back to the main page? Is this possible? Thank you, -Ben Lisbakken -- Posted via http://www.ruby-forum.com/.
2011 Jun 15
1
doveadm who: Please Headline to STDout, not to STDERR
hi, I've created a small script to get a sum from the users and sessions (table username and table "#"), but it is annoying that the headline "username # proto (pids) (ips)" goes to STDERR, but the normal output to STDOUT. It would be nice, if both goes to the same STD :-) cu denny -------------- next part -------------- A non-text attachment was scrubbed... Name:
2014 Mar 20
2
[Bug 2215] New: Key fingerprint headline slightly broken with ED25519
https://bugzilla.mindrot.org/show_bug.cgi?id=2215 Bug ID: 2215 Summary: Key fingerprint headline slightly broken with ED25519 Product: Portable OpenSSH Version: 6.5p1 Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 Component: ssh Assignee: unassigned-bugs at
2006 Aug 19
1
caches_page does not follow url path
I am using lighttpd. I have a controller (headlines) with a caches_page :index. When invoked via http://0.0.0.0:3000/headlines/ I find a index.html cached in the public folder. The server did not create a headlines folder and place the cached index page within the controller directory as expected. Is there a configuration detail I need to change...
2007 Jun 06
1
"selected" in form.select
...y navbar where a user can select in which area he wants to search. After clicking the submit-button the results get rendered but the previous selected area is no longer selected. <%= form.select (:suchfeld, [ [''Beschreibungen'',''description''], [''Headlines'',''headline'']] ) %> I was able to re-fill the search-field wich the previous content doing the following: <%= form.text_field :suche, :name => "suche", :size => 25, :value => params[:suche].gsub('' '','''...
2006 Jun 27
6
Custom action on Active Record Validation Failure?
Instead of having it highlight the bad fields when you enter in a record that fails validation, is there a way to make it do an action? I''m looking for something like this: validates_uniqueness_of :user_id,:url => {:controller => "headline", :action => "index"} so that on failing the uniqueness check, it would go to the headline controller. --
2005 Sep 30
0
Headline - Linux misses Windows of opportunity --incompetent local resource
Thanks, Bryan. Good analysis. Brian Brunner brian.t.brunner at gai-tronics.com (610)796-5838 >>> thebs413 at yahoo.com 09/29/05 07:41PM >>> [ I've temporarily subscribed my Yahoo address to post this single comment, and then I'm going to unsubscribe it so I can't post again. ] File this one on "Linux loses due to incompetent local support resources." No
2005 Sep 28
3
Headline - Linux misses Windows of opportunity
Dear CentOS, Ken wants you to know about this story on http://www.theage.com.au. Personal Message: How much did MS pay for the article? Linux misses Windows of opportunity September 27, 2005 URL: http://www.theage.com.au/articles/2005/09/26/1127586780339.html The online edition of The Age brings you updated local and world news, sports results, entertainment news and reviews and the latest
2006 Jun 08
5
Displaying Calculation on Index
Hi, I am trying to create a simple point system and display the total on my index page. So I have my db basically setup like this: Posts id, body, created_at, user_id Post_points id, post_id, user_id, created_at, value So as you can see I am allowing other users to create points on the post and my db will store who gave the point as well. "value" is the point value which can
2011 Sep 19
0
Weird Parameter Encoding issue in Production Rails 3.1.0
All, I''m having a weird issue with posted parameters in Rails 3.1.0. This is only happening in production and not in development. I have confirmed that when making a post, parameters are passed to the server as: utf8=%E2%9C %93&authenticity_token=jOn16Uw3oUBPQfX02nt1IN8muZf150nTt24Ic4JgPvY %3D&alert%5Btitle%5D=http%3A%2F%2Fwww&alert%5Bheadline%5D=%26headline Which looks
2010 May 18
5
samba.org has been revised!
As some of you might have noticed, the official Samba web site [1] has been revised during the sambaXP conference [2]. The web design was revamped and a new logo has been created. Some of the related pages (e.g. the Wiki [3]) have already been adapted to the new style as well. Special thanks go to Blackbit [4] for creating the new design, to SerNet [5] for sponsoring and to Stefan Metzmacher
2000 May 28
1
SAMBA digest 2537
Hallo! I have a small question. I wanted to improve Samba-faxing. The system shown in the HOWTO does not include the nice features a faxing-program like Winfax offer. Chain-fax, adressbook and much more. So I began to write a series of scripts to manipulate the incoming fax to send. The text should have all the command on the 1st page. My scripts split the text in two parts: 1st page and pages
2005 Dec 13
1
Help with fonts
I recently changed to a new computer and reinstalled linux. I'm not happy with the current fonts and I see that the whole fonts area has been revamped, so any old notes I have are obsolete. Can anyone help me out? The first and major issue is that when an installation program I am running tries to display "C:\Program Files" it comes out looking like CWProgram Files. Having