Displaying 20 results from an estimated 200 matches similar to: "debug(session) output help"
2006 Mar 28
2
Dealing with Form Data
Google lets me down once again :-)
Coming from a PHP background I know I can take submitted form data, mix
it, mash it and put it together in very odd ways. In other words do
this.
$title = "My Title"
$sub_title = "My Sub Title"
$full_title = $title . "-" . $sub_table
And submit $full_title to the database. I have yet to find a solution
for this in Rails - I
2012 Mar 16
0
Rails tests failing
http://dl.dropbox.com/u/15024055/CloudShot/shot_15032012_232654.png
if i write the test like this its working just fine it passes green
[code]
it "should have the right title" do
get ''view''
response.should have_selector(''title'',
:content => "View Snippets")
end
[/code]
but for
2006 Feb 27
0
application helper and tri-state images
I''ve come up with a very hackish way of creating a tri-state image
navbar. I don''t like it but it works pretty well. I would love to know
the ''rails'' way of doing this or even just a suggestion. Here''s my
helper.
module ApplicationHelper
# we use this function to create the tri-state image with rollovers
# todo I need to use a good css trick
2009 May 15
1
[PATCH server] First round of (largely) cosmetic changes to flexchart.
Missing are capitalization/formatting of data type & function labels,
as well as addressing the unit labels for the y-axis.
---
src/flexchart/flexchart.mxml | 4 +
src/flexchart/org/ovirt/Constants.as | 17 +++
src/flexchart/org/ovirt/charts/BarChart.as | 155 ++++++++++++++++--------
src/flexchart/org/ovirt/charts/HostChart.as | 42 ++++++-
2011 Dec 30
2
CRAN link broken
The packages link on CRAN (http://cran.at.r-project.org/) seems to be
broken.
Paul
Object not found!
The requested URL was not found on this server. The link on the
referring page<http://cran.at.r-project.org/navbar.html> seems to be
wrong or outdated. Please inform the author of that page
<http://cran.at.r-project.org/navbar.html> about the error.
2008 Jan 13
2
access to webpage code
dear R user,
I need a function that download the code of web page as html, to further
parse it.
something like
>site="http://www.R-project.com"
>code=function(site)
>code
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>The R Project for Statistical Computing</title>
<link rel="icon"
2008 Oct 16
3
Rails: View specs and implicit parameters in link_to()
Hi all,
I''ve been cleaning up our routing file, and removed the default
map.connect ":controller/:action" route.
It''s thrown up a bunch of sloppy mistakes, which is great, but I also
think I''ve found a problem with the view specs.
We have a generic navbar partial which is rendered in the index page
of several different controllers. The navbar contains
2020 Jun 07
1
Navbar for documentation is broken in Doxygen 1.8.18
Hi,
Here is a patch to update documentation to Doxygen 1.8.18 as the navbar is broken trying to use the latest Doxygen.
Also seems we are missing documentation for last releases here:
https://www.opus-codec.org/docs/
Best Regards Marcus
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Jan 02
3
best to integrate dynamic navbar into layout
I''ve been trying to come up with a good way to integrate a dynamic
navbar into my layout. By dynamic, I meas that each link has 3 images.
Normal, rollover, and dark for the current page. I have it working but
it seems like there should be a better way. Here is how I did it,
please let me know if there is a better way. Rails makes so many things
simple, that this seems very
2007 Nov 15
3
modern-CentOS-1.7-2
Hi,
the layout on wiki-m.centos.org looks pretty convincing to me, now.
Two things:
<http://people.centos.org/~ralph/pagetrail.png> - the pagetrail stuff
isn't readable at all.
I propose the following patch to screen.css:
-----%<-----%<-----%<-----%<-----%<-----%<-----%<-----%<-----%<-----%<
--- screen.css.orig 2007-11-15 12:35:59.000000000 +0000
2015 Jan 02
2
http://www.centos.org/ Help menu anchor
On http://www.centos.org/, the Help in the navbar is described by the anchor
<a href="http://wiki.centos.org/Documentation?action=show&redirect=GettingHelp
<view-source:http://wiki.centos.org/Documentation?action=show&redirect=GettingHelp>">Help</a>
Why does it contain ?action=show&redirect=GettingHelp ? It seems
to me Documentation would be
2008 Dec 17
2
Help with link_to and its kin
Hi Everyone
I am a new user of Ruby and Rails, and would like some help with the
following problem.
I have created a navbar with a styled unordered list and I would like
to apply class="current" to the tab for the current page.
Currently I am using a large, cumbersome and ugly if..then block,
rendering the class="current" into the html and link_tos with
current_page?.
I am
2007 Jun 06
1
"selected" in form.select
I have a search form in my 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
2006 Oct 22
2
url_for In a Component?
When I try to use url_for within a component I get the following:
NoMethodError in LinkController#get_links
undefined method `url_for'' for Navbar::LinkController:Class
The API docs show url_for as a public method of ActionController::Base.
Since my component is derived from ActionController::Base shouldn''t
url_for be available within the class?
Any ideas?
Thanks!
-
2012 Oct 18
1
routing issue with mounted engine - Rails 3.2.8
I mounted the Forem::Engine in my app
MyApp::Application.routes.draw do
scope "/:locale" do
...
resources :sites, :only => [:none] do
get ''home'', :on => :collection
get ''events'', :on => :collection
end
..
mount Forem::Engine, :at => "/forums", :as => :forums,
constraints: lambda { |r|
2016 Aug 31
1
We need to change our AD domain
Hi John,
exactly, as MJ already wrote you should file a bug report if you have
any issues. This applies to LAM as to any other software.
LAM was tested with Samba 4 and different Windows versions. If there is
any issue just provide me the details of your environment and the exact
error. Then I can fix this in the next release. :)
Bugs can be opened at GitHub or SourceForge:
2014 May 03
0
Putting form_authenticity_token (csrf token) in a cookie instead of in meta tags?
When you generate a default Rails app, it puts this in
application.html.erb:
<%= csrf_meta_tags %>
It does this so the remote forms can be submitted--i.e., so JavaScript can
submit a form. When jquery-rails is about to submit a form, it looks for
the <meta> tags named "csrf-param" and "csrf-token" and from them it
constructs a hidden
2005 Oct 16
1
prototype help needed - how to get started
Hello,
Despite Sergio''s excellent documentation on prototype, I’m still struggling
to get started. I hope somebody is able to help me a with a little example
to get me going.
Please see html code below – I have this little navigation bar and I like to
add some events/functions to the buttons.
Let’s say, onmouseover, I like to change e.g. the background-color of the
button and
2012 Dec 07
0
Tinn-R 2.4.1.5 - new stable version
Dear users of Tinn-R,
A new stable version of the editor Tinn-R is available on SourceForge
server: http://sourceforge.net/projects/tinn-r/
The news: http://sourceforge.net/p/tinn-r/news/?source=navbar
All the best,
--
///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\
Jose Claudio Faria
Estatistica
UESC/DCET/Brasil
joseclaudio.faria at gmail.com
Telefones:
55(73)3680.5545 - UESC
55(73)9100.7351
2015 Jan 04
0
http://www.centos.org/ Help menu anchor
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 01/02/2015 01:27 PM, PatrickD Garvey wrote:
> On http://www.centos.org/, the Help in the navbar is described by
> the anchor
>
> <a
> href="http://wiki.centos.org/Documentation?action=show&redirect=GettingHelp
>
>