-2
votes
1answer
50 views

Sinatra/Ruby new to programming - increasing an integer if a radio button is selected

I am very new to this and I am trying to do something pretty simple but I am not sure where to begin. I simply need to increase the "vote" count of a newly posted link from 0 to 10 if a radio button ...
0
votes
1answer
85 views

Navigation bar in Sinatra with Haml

I have a small Sinatra app using haml. I'd like to have a navigation bar on each page that will contain the menu, search, and directional scrolling arrows. Since this will be on every page I assume ...
0
votes
0answers
42 views

Sinatra weather displaying application

I am trying to build a simple weather application. My application is made in Ruby, Sinatra, HAML and CSS. I use the yahoo weatherman gem to get weather data (temp, description, etc). Now I'm looking ...
1
vote
1answer
30 views

HAML Folder in Views

I was wondering if anyone knew how to render a .haml template from a folder within the views folder. My directory setup is: -Views (Folder) -Get_Started (Folder) -step_1.haml -index.haml I ...
0
votes
2answers
77 views

Haml partial with Sinatra

I am referencing a HAML partial within Sinatra: = haml :'_review', :locals => {:someLocal => someLocal} Seems like I am doing this wrong as I am including the underscore in the partial name. ...
0
votes
1answer
37 views

Sinatra / HAML - how can I use html_safe functionality?

I am getting this error. This is the line causing the problem; I'm trying to display html entities. %p= html_escape("&#10004") I understand html_safe is not available in Sinatra. What can I ...
1
vote
2answers
142 views

Sinatra & HAML: auto-escape/convert unsafe HTML characters for a whole template?

I've got a little sinatra app I'm using to run a basic website. The content for said site is being provided by a client, and most of it is coming out of PDFs. Since I'd rather not have to manually ...
1
vote
1answer
52 views

Manually requesting the HAML file

If I want to manually request a particular HAML file in Sinatra, it looks like this works: get '/' do haml_file = File.open('views/index.haml').read haml haml_file end My question is, do you ...
0
votes
0answers
31 views

How to exit prematurely in HAML?

In the middle of a HAML template, I want to just abort it and not compute anything more. :ruby exit This doesn't work and gives me a "SystemExit" error from Sinatra.
4
votes
1answer
68 views

HAML - a very weird indentation difference - bug?

This HAML %script{:type => "text/javascript"} :plain $(document).ready(function() { bar(); var foo = foo_func("#{}"); }); as expected gives this: <script ...
1
vote
0answers
61 views

Unicode characters in HAML/Sinatra/Passenger errors

If I put this into my HAML, :ruby foo = "2".asdf %p ss I get, as expected, this error from Sinatra: NoMethodError at / undefined method `asdf' for "2":String But when I have a UNICODE ...
2
votes
2answers
70 views

Why isn't this simple Ruby code working in HAML?

If I run this simple Ruby code regularly, it works fine: class String def add_two self + "2" end end puts "hello".add_two It prints "hello2" as it should. But this fails: :ruby class ...
0
votes
2answers
105 views

How to write haml code for corresponding javascript?

Here is the haml that i have created out of html. But it doesn't seem to give any output. Please help me to find out the error. May be I am going somewhere wrong with the syntax or not getting what ...
0
votes
1answer
62 views

Sinatra image displaying issue

Here is parts of my view code (haml): %link{rel:'stylesheet', href:'/screen.css', type:'text/css', media:'screen'} %img{scr:'/tile.jpg'} The ./public folder contains files screen.css and tile.jpg ...
0
votes
3answers
86 views

Put HTML in javascript using Ruby

Note: This is a very strange and unique use case so I apologise in advance if it seems a bit ass-backwards. I have a haml file content.haml and a coffeescript file main.coffee. I wish to somehow get ...
-1
votes
1answer
83 views

User authentication Bcrypt and Sinatra - LINK - Please help explanation needed

http://www.128bitstudios.com/2011/11/21/authentication-with-sinatra/ Simple and nice Sinatra BCrypt authentication system - I would appreciate an explanation =) I found this very nice article on a ...
-1
votes
1answer
60 views

Is <a href> the only way to link to a web address? [closed]

I am working with Sinatra and using %a{:href => "some/path/here"} to link to various part of my application, however, that brings several css problems when styling the app. Does there exist any ...
0
votes
1answer
170 views

How do I increment a Twitter Bootstrap progress bar in HAML?

I am just starting to learn building small web apps using Sinatra, HAML and Twitter Bootstrap. In my application, an action takes place every 500 seconds. I would like to place a progress bar on my ...
3
votes
1answer
947 views

How to pre-select checkbox in angularJs with ng-checked

I seem to cannot get this to work. So I have a bunch of genres of movies which I want them to be checked if those are the genres in user database. This is my code %section(ng-controller="UserCtrl" ...
0
votes
1answer
43 views

Adding a class to the active li in a menu

Here's my haml code: %li.active %a{ :href => "#" } Home %li %a{ :href => "#" } About %li %a{ :href => "#" } Sign up %li %a{ :href => "#" } Log in What would be the cleanest way ...
2
votes
2answers
244 views

Turn this haml snippet into a helper to DRY up Sinatra

This bit of haml works: %select{ :name => 'color', :value => @p.color} - Person.color.options[:flags].each do |colors| - if @p.color == colors %option{:value => colors, :selected ...
1
vote
1answer
306 views

Select, Checkbox, and Radio button elements in Sinatra with Datamapper

Using Datamapper with Sinatra, it's really easy to save text properties: DataMapper::setup(:default, "sqlite3://#{Dir.pwd}/tailor.db") class Person include DataMapper::Resource property ...
2
votes
1answer
198 views

Load a haml view into layout on Ajax request through Sinatra controller

i'm implementing a live-search-function into my page.. I have the following simplified sinatra controller get '/search_item/:for' do //do some search stuff haml :search_item,:layout => ...
0
votes
1answer
96 views

Ruby: Way to change <div> visibility, avoiding JavaScript

I am looking for a nice way to change the visibility of an HTML div. The probably most common way to do this, is by using JavaScript, since it can manipulate my DOM. In my current project, I prefer ...
0
votes
2answers
90 views

Bad Request/Bad URI on production (Heroku) but not locally

Let me preface this by saying most of this application is a giant hack put together in a short window of time under pressure so I may have deeper issues. This question will likely have some bad code ...
3
votes
1answer
124 views

Sinatra haml page is called twice

get '/test' do session[:my_session_id] = generate_random_id() puts 'begin haml debug' haml :"static/haml_page", :locals=>{:session_id => session[:my_session_id]} end I see ...
1
vote
1answer
100 views

can't get text input to work on my simple Sinatra text numbers game

I have made a simple game in Ruby to help learn it. Now, I've been trying to implement it in Sinatra, however I cannot get the text input to interact with the 'while' loop. Can anyone help me see ...
1
vote
1answer
74 views

Sinatra haml Select and Delete several files

I'm trying to delete several files based on a list but I'm having problems getting the params from the chekcbox's This is my list.haml: %form(method="post" action="/selection" ...
0
votes
1answer
88 views

How can I render Sinatra pages and save them to public? [closed]

I have a Sinatra app that's basically a blog. The blog entries are in a subfolder and my app processes them through some views and serves them up. The blog entries are prepended by some metadata that ...
-2
votes
4answers
300 views

HAML runs inline Ruby, but does not render anything

-#encoding: utf-8 :css .hidden{display:none;} %script{:src=>"/javascripts/jquery.js"} %form{:action=>"https://get724.ccvb.com.tr/Get724/get724uye.aspx",:method=>"post"} ...
1
vote
2answers
84 views

Return a Variable In To HAML

I was wondering if theres a way to return a ruby variable into a haml file with sinatra. For examply haml: %b = variable Ruby get '/' do variable = "foobar" haml :filename end and then ...
0
votes
2answers
139 views

Haml and Sinatra, where do error messages go?

I am experimenting with haml as an alternative to erb for a sinatra app. However if the haml teplate is not correct, for example if there is a problem with the indentation, all I get is an Internal ...
2
votes
3answers
356 views

Expressing conditional HAML possibly with ternary operator

Trying to come up with a more compact way of expressing this conditional in HAML and Ruby, perhaps with a ternary operator: - if @page.nil? %br (nothing yet) - else %br #{@page.name} (looking ...
1
vote
2answers
230 views

Neat way to conditionally test whether to add a class in HAML template [duplicate]

Possible Duplicate: Append class if condition is true in Haml (with Rails) I'm using a template that allows you to mark a list item as current (using class=current), highlighting it in a ...
0
votes
1answer
182 views

Choosing different layout file for sinatra-authentication

sinatra-authentication expects a layout.haml for its pre-rolled authentication views. How do I specify a different layout template that sinatra-authentication can use (e.g. auth_layout.haml) so that ...
0
votes
3answers
219 views

Sinatra custom SASS directory

I have problem getting my sass work with my haml template. Recently i have following code in my main sinatra.rb application: require 'sinatra' require 'dm-core' require 'dm-migrations' require ...
1
vote
2answers
241 views

Explain to me a Sinatra setup for dummy's for a preview of html/css code

A word of warning up front: I do not know even the ruby basics, but I'm trying to learn more and more of the world of shell scripting this year. I saw this Vimeo video of Ben Schwarz and immediately ...
0
votes
1answer
98 views

Sinatra syntax error: unexpected character

I have a pesky problem I really don't understand the error message I'm getting some googling has only left me more confusing hoping something might be able to lay these snakes out straight for me! ...
1
vote
1answer
273 views

conditional logic not working in haml

I have a HAML template that looks like the following (also using Sinatra, not sure if that is important): - @email = params[:email] EMAIL: x#{@email}#{params[:email]}#{@email.to_s.empty?}x -if ...
1
vote
1answer
132 views

In Sinatra Can I Use Variables in a Route & View?

So I'm learning to use Sinatra (the very basics) and I understand the following basic code: get '/derp' do haml :derp end I quickly got to thinking: if I have a dozen pages, do I have to write ...
1
vote
1answer
76 views

Ruby logic in Haml or Sinatra

I've noticed that Haml supports quite a few logic functions (if statements, etc) I'm curious, Is it better practice to keep most / all of your programming logic in the Sinatra app.rb or to bleed ...
0
votes
3answers
560 views

HAML layout.haml and Sinatra not working with url parameters

My index.haml is working fine with, for example: get '/about' do haml :about end But if I try to use a user parameter like: get ':user/add' do haml :add_item end The layout.haml is ignored. ...
0
votes
1answer
521 views

How can I use a local (or per view) variable in Sinatra with Haml partials?

I have a Haml partial in Sinatra to handle all of my 'page open' items like meta tags. I would love to have a variable for page_title in this partial and then set that variable per view. Something ...
2
votes
1answer
233 views

Using Ruby & Sinatra, trying to populate an area on the page without reloading the entire page

I am developing a small web application using Ruby, Sinatra & HAML. The scenario I am struggling with at the moment is something that I used to solve in PHP using Ajax and Javascript, and am not ...
0
votes
1answer
265 views

load external css file into haml

I'm using haml and sinatra When the css is in the .haml file, the styling works. When I use %link, the styling is not seen %link(rel="stylesheet" type="text/css" href="styles.css")
0
votes
2answers
202 views

My haml view is unable to find the css file in my public/css folder when deployed, but manages to find it on localhost

My application is running on Sinatra and deployed on my Apache web server using Passenger. My directory structure is as follows: approot ` public ` css - bootstrap.css ` uploads - ...
0
votes
1answer
93 views

Iterating over an embedded document in Haml

I have an embedded document within a Mongodb document. The Mongodb document looks like this: [_id] => home [url] => / [type] => homepage [people] => Array ( [0] => Array ( ...
1
vote
2answers
338 views

Undefined method `haml' when rendering haml in Pony mail from scheduled job

I have a sinatra app that executes cucumber tests and sends email notification with their results. Email gem is Pony, and there is a haml template for this notification. This logic works within a ...
0
votes
1answer
257 views

Ruby app running on Sinatra using HAML, can't access files in uploads directory?

I have a Ruby app which is an Image Resizer. It uses the RMagick gem to do this. The app asks the user to upload a file, and then resizes it and saves the newly generated file. It seems that Sinatra ...
1
vote
1answer
92 views

NameError in using custom layout option in sinatra app

To use custom layout file in my app I'm using this following code, set :views, File.dirname(__FILE__) + "/../views" set :public_folder, File.dirname(__FILE__) + "/../public" get '/' do if !Db.empty? ...

1 2 3