Displaying 20 results from an estimated 10000 matches similar to: "Html tag"
2006 Jun 27
1
Help me, I stuck ..
I have three tables and is not allowed to change data scheme:
CREATE TABLE `applicants` (
`id` int(10) unsigned NOT NULL auto_increment,
`fullname` varchar(60) NOT NULL default '''',
`address` varchar(60) NOT NULL default '''',
PRIMARY KEY (`id`)
) ;
CREATE TABLE `positions` (
`id` int(10) unsigned NOT NULL auto_increment,
`position_name` varchar(30)
2007 May 09
5
layouts + routes = confused
I''m new to RoR and the tutorials I''ve found on the web, while helpful,
aren''t as "complete" as I''d like them. I understand the basics when
it comes to layouts and routes, but I''m trying to get them to work
together.
MY first task was to implement a user authentication system
(registration/login/logout/change_password). This works fine with
2008 Aug 11
5
[LLVMdev] "long long" type in C backend
Hi,
Im trying to generate C source from C++ source file,
using C backend.
llvm-g++ -O3 -emit-llvm valen.cpp -c -o valen.bc
llc -march=c valen.bc -f -o valen.c
But C backend generate a lot of operation with "long long" type.
My C compiler does not support "long long" type.
Is there any option to disable generate "long long" ?
--
Thanks,
2007 Jun 18
4
HTML embed tag and rails...
I have an embeded pluggin that I must use inside my RoR app.
We have set up an application.rhtml page that renders the top, side menu
and center of the application for every page via DIV''s. This works
great.
The problem.. This embeded plugin is a Third party plugin that they have
just created for the Mac OSX and Safari and every time I load the page,
it re-loads the plugin and the
2006 Jan 06
3
Using DIV tags in HTML - a better Ruby/Rails way?
People,
I can use a DIV tag for exact positioning of fields on a form:
Creating a DIV tag creates a layer.
The DIV tag contains a style attribute with positioning information. It
might also have border and size information, if appropriate.
Here is the basic DIV tag required for exact positioning:
<div
style="
top: 99;
left: 99;
position: absolute;
2009 Nov 17
6
after changed the tag i got the same eror
SyntaxError in Upload#index
Showing *app/views/upload/uploadfile.rhtml* where line *#10* raised:
compile error
app/views/upload/uploadfile.rhtml:10: syntax error
Extracted source (around line *#10*):
7: <% end %>
Trace of template inclusion: app/views/upload/uploadfile.rhtml
RAILS_ROOT: /home/malathi/www/upload
Application Trace <http://localhost:3000/upload#> | Framework
2006 Mar 28
2
Homepage as index.rhtml, not index.html?
Hi all,
I''m building my first Rails app. Please forgive my ignorance as I get
acquainted with the technology.
What I''d like to do is have a form that the scaffolding created for me
appear on my home page. It''s just one text field, a submit button, and
some error messages.
I first tried to copy the code from the new.rhtml view into the homepage
(index.html), then
2016 Aug 25
2
InstList insert depreciated?
Jon,
> You want:
> TaintVar->insertAfter(FirstI);
This worked! Thank you.
On Thu, Aug 25, 2016 at 9:38 AM, Jonathan Roelofs
<jonathan at codesourcery.com> wrote:
>
>
> On 8/25/16 7:01 AM, Shehbaz Jaffer via llvm-dev wrote:
>>
>> I tried an alternative way of adding instruction by first getting the
>> first instruction of the basic block, and then
2006 Jan 20
1
Update HTML Element with Ajax
I have following files.
list.rhtml
-----------------------
<ul id="items">
<%= render(:partial => ''item'', :collection => @items) %>
</ul>
_item.rhtml
------------------------
<li id="<%= item.id %>" >
<%= item.name %>
<%= item.body %>
</li>
edit.rjs
------------------------
page.replace_html
2006 Apr 27
7
HTML Title
Hi there,
If I have an application.rhtml template what''s the best way to set
the contents of title element in the html -> head area of the
template to something set in the view for action in a controller. I
want to just have one template which renders the basic layout for all
pages and I''ve been scratching my head over this one for a couple of
hours now.
Any help
2005 Oct 14
2
Capture template output as plain html?
Hi,
I''m trying to find out if the following is possible.
I have a rhtml template stored in the database as a string. I need to
process the template (as a string), similar to using ActionView''s <%=
render_template("rhtml", @template_string) %>, but I need to do this in the
ActionController and capture the result as a string.
There is a method
2006 Nov 04
1
trouble linking from the html page to a rhtml page
Hi,
I am having trouble linking from the html page to a rhtml page.
Any suggestions will be greatly appreciated.
JIm
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060824/b197ad2b/attachment-0001.html
2008 Jul 23
2
difference between html.hi to evererb &rhtml
hi to everyone whats the difference between html.erb & rhtml
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this
2023 Jan 26
2
Resumen de R-help-es, Vol 167, Envío 10
Hola esta es una solución
library(data.table)
library(stringr)
dt <- data.table( V1a = sample(c("1","0"), 10, TRUE)
, V1b = sample(c("1","0"), 10, TRUE)
, V2a = sample(c("1","0"), 10, TRUE)
, V2b = sample(c("1","0"), 10, TRUE)
, V3a =
2006 Apr 15
1
is it allowed to mix .rhtml and .html
I want to use RoR to perform a simple search function on my site that
contains a lot of (static) .html pages.
Can I mix .rhtml and .html pages on the site? The search box would be on
.rhtml and a rail controller would redirect to the right .html page
Thanks,
Ted
--
Posted via http://www.ruby-forum.com/.
2008 Aug 11
0
[LLVMdev] "long long" type in C backend
On Mon, 2008-08-11 at 16:09 +0300, Valen wrote:
> Hi,
> Im trying to generate C source from C++ source file,
> using C backend.
>
> llvm-g++ -O3 -emit-llvm valen.cpp -c -o valen.bc
> llc -march=c valen.bc -f -o valen.c
>
>
> But C backend generate a lot of operation with "long long" type.
> My C compiler does not support "long
2006 Jul 23
8
embedding subversion version information into HTML
Hi,
Say I want to display the subversion release number in the footer of
each page in order to track what version of a site I''m looking at.
I know subversion has a substitution keyword (LastChangedRevision)
that inserts the last known revision in which that file .changed.
So, if I stick $LastChangedRevision$ into
views/layouts/application.rhtml, it''ll show the last time that
2020 Apr 09
3
Delete Phabricator metadata tags before committing
On Thu, Apr 9, 2020 at 10:29 AM Michael Kruse <llvmdev at meinersbur.de> wrote:
> I was always assuming that the suggested commit is assembled in the
> PHP code run by arcanist command run locally. If indeed the arc
> command requests the commit message from the server,
I assumed so too until I went digging for it. Seems the client-side stuff
only deals with the structured data,
2006 Jun 21
2
MasterView rails-optimized (x)html friendly template engine plugin - Release 0.2.0
MasterView rails-optimized (x)HTML friendly template engine plugin - Release
0.2.0
The MasterView development team is pleased to announce the general
availability of MasterView release 0.2.0. MasterView is a rails-optimized
(x)html friendly template engine plugin that provides another option to the
existing rails view templates (rhtml and rxml). The main idea is to provide
a template engine that
2006 Jun 20
0
No opening form tag in rendered HTML
I cannot get my form to submit for my simple blog site (based on the "How to Build a Blog Engine in 15 Minutes" presentation)
Any ideas?
Thanks,
Tom
----------------------------------------------------------------------------
Here is my code:
#Post controller
class PostsController < ApplicationController
def index
list
render :action => ''list''
end