Compojure is an open source web framework for the Clojure programming language.

learn more… | top users | synonyms

1
vote
1answer
26 views

How to redirect users to a different page if they aren't logged in? (ring/compojure)

what's the best way to route to one page if the user is signed in (i.e. session has a non-nil value for the user-id key) and another if the user is not signed in? The ideal would be 2 different set of ...
1
vote
1answer
45 views

Commas in Compojure routes

I'm trying to create a route that has a parameter which contains commas in compojure (GET "/tags/multiple/:tag-names" [tag-names] multiple-tags) but for some reason, whenever I include a comma in ...
1
vote
1answer
52 views

Compojure: optional URL parameter

I want to define a resource in Compojure like this: (ANY "myres/:id" [id] (handler)) and I want the :id to be optional (depending on whether or not the ID is specified my API will behave ...
1
vote
1answer
92 views

What is a Good Web Service Tutorial for Leiningen2, Clojure and Ring? [closed]

I am attempting to learn how to and then create a web service in clojure, and I am looking for tutorials that help illustrate the process. I am new to clojure. It seems like every tutorial is geared ...
0
votes
1answer
92 views

Compojure Example from Clojure in Action Not Working

I am working on the Compojure example from Clojure in Action page 232 (ns compojure-test.core (:gen-class) (:use compojure)) (defroutes hello (GET "/" (html [:h1 "Hello world"])) (ANY "*" ...
1
vote
0answers
76 views

lein ring server does not automatically rebuild

I am writing a small clojurescript project and I followed the numerous lein cljsbuild examples that use lein ring as a development web server. I used to run lein ring server to serve the website on ...
0
votes
1answer
51 views

caching an xml file in clojure and compojure

I have a webserver running compojure. The webserver reads data from an XML file provided by another server. I don't want to bomb the provider of the file with requests and the XML file doesn't change ...
3
votes
2answers
72 views

How to get repeating request parameters in Compojure

I can get to the request parameters easily with: (:foo params) However, when I have a request like this: /api?foo=1&foo=2&foo=3 I only get back "3" while I would expect an array ...
3
votes
2answers
112 views

How to get rid of global data in a Compojure application

On http://mindbat.com/2013/03/clojurewest-2013-day-one-notes/ there is a note that reads: def’ing refs and atoms at the top level is basically global mutable state via singletons, please avoid ...
1
vote
1answer
82 views

Compojure: Nested route issue

I'm trying to set up routes in my application such that: /:locale/ -> Home, with locale binding /:locale/search -> Search, with locale binding Thus far, my routing code is: (defn ...
4
votes
2answers
269 views

How to run/debug compojure web app via counterclockwise (or la clojure)

I'm trying to write my first web app in compojure. I'm using ccw, and I File-New-Project, Clojure Project and use the "compojure" leiningen template. End up with project.clj looking like ...
0
votes
0answers
53 views

can't connect my compojure app to postgres db (following heroku tutorial)

i'm following along the heroku compojure tutorial. When I get to the point in the tutorial where a table is created, I get the following error message: user=> (require '[clojure.java.jdbc :as ...
0
votes
1answer
58 views

cloudbees and compojure database connection

I've been playing around a bit with compojure and cloudbees. so far so good. but to do anything meaningful I need to connect the application (made using the Clickstart) to a database (or vice versa ...
2
votes
2answers
230 views

Composing templates with Hiccup and Compojure

I'm relatively new to Clojure and Compojure web development. The first issue that I've noticed in the toy example that I'm building is that of HTML templating. I'd like to have support for something ...
0
votes
1answer
128 views

How do I automatically compile coffeescript in Clojure?

I'm building a web application with compojure and Leiningen 2. Is there a way to automatically compile coffeescript into javascript like Ruby on Rails does with sprocket?
0
votes
1answer
100 views

Couldn't get started with clojure kORMa

I am trying to use clojure kORMa with compojure, the webapp is here nepleaks. First I added kORMa dependency [korma "0.3.0-RC4"] lein deps works cool, then created src/hotel/conf/datasource.clj ...
1
vote
1answer
125 views

trying to use ring.middleware.json-params with compojure

I am new to Clojure, leiningen, and java tool chains (but not to lisp, functional programming, software in general). I'm trying to bootstrap some RESTful web services in Compojure. I had no trouble ...
1
vote
1answer
54 views

running tests locally (before committing) with cloudbees

I've created a compojure web-app with cloudbees - awesome set up so far. I'm just wondering how to run tests locally before I push them up to jenkins to kick off the build.
1
vote
1answer
100 views

hiccup form-helper with compojure

Exception: Exception in thread "main" java.io.FileNotFoundException: Could not locate hiccup/form_helpers__init.class or hiccup/form_helpers.clj on classpath: I'm trying to get a toy compojure app up ...
0
votes
1answer
12 views

error while composing routes in compojure

The following compojure routes work. (defroutes app-routes (GET "/" [] (index)) (GET "/twauth" [] (tw/authorize)) (ANY "/twcallback" [] (do (tw/callback) ...
1
vote
1answer
55 views

Why does my Ring middleware not see the :params map in the request?

I'm writing a Ring middleware, and also using Compojure. I want my middleware to look in the :params map to see if a specific key was provided by the user. In my middleware function, the request map ...
0
votes
1answer
58 views

Strange boolean behavior in Clojure with checkbox in form-data

I'm using an AngularJS resource to basically $.ajax() some form data. Post.put({user:$scope.getLoggedInUser(), action:"new"},{body:$scope.postBody, "public":$scope.postPublic}, function(post) { On ...
2
votes
1answer
315 views

ring-json's wrap-json-response middleware and compojure returns text/plain?

I'm trying to use ring-json's wrap-json-response middleware within my compojure app. I have a simple GET handler that returns a map, like {:foo 1}, and when I hit the URL, ring responds with ...
4
votes
1answer
251 views

Howto use lib-noir stateful-sessions in Compojure

I think I have a fairly straightforward problem here. But I've been looking at this screen too long. So I'm trying (and failing) to get stateful sessions working in Compojure. The refheap code paste ...
2
votes
2answers
192 views

Accessing POST json in clojure

EDIT - The source code is on github if you're interested. Thanks I am a bit confused as to how to access json data that has been posted to a url in clojure; I just can't seem to get it to work. ...
1
vote
1answer
83 views

How to reuse/include existing java servlets and filters in Clojure + Compojure + Ring Web application?

I have bunch of Java EE artifacts like the gzip servlet filter, a file upload servlet etc. which are ok and I want to reuse them in my Clojure Web application based on Compojure and Ring. Is this ...
3
votes
2answers
327 views

How do I use snippets in enlive?

I'm a Rails dev getting my feet wet in Clojure. I'm trying to do something which was very simple with ERB but I can't for the life of me figure it out in enlive. Say I have a simple layout file for ...
0
votes
1answer
223 views

using route/files vs route/resources in ring / compojure

What is the difference in using - (route/files "/" {:root "yeoman/app"}) (route/resources "/" {:root "yeoman/app"}) for setting the root of the static folder ? Thanks, Murtaza
0
votes
1answer
82 views

reload middleware that handles explicitly loaded source files

Ring comes with the middleware 'reload' (https://github.com/ring-clojure/ring/blob/master/ring-devel/src/ring/middleware/reload.clj). It's based on ns-tracker ...
5
votes
2answers
142 views

How to run an arbitrary startup function in a ring project?

I've got a compojure/ring application I currently run with lein ring server that I'd like to compile to a .war so I can deploy it. I've got a definition, however, just like (def foo ...
0
votes
2answers
60 views

Clojure noir: Unable to use images in resources/img

I've been starting trying out noir, though I am now having an annoying problem: I have a background image stored at project-folder/resources/public/img/bg.png. And my css file references it as ...
3
votes
1answer
462 views

Clojure ring wrap-json-params messing up JSON arrays

I'm currently doing some REST API stuff in clojure, and I am using the ring.middleware.format library with compojure to transform JSON to and from clojure data structures. I am having a huge issue, ...
5
votes
1answer
229 views

Compojure route params empty

My Compojure web app ([compojure "1.0.1"]) always receives an empty parameter map, despite adding wrap-params etc. Code sample below: (defroutes public-routes (PUT "/something" {params :params} ...
0
votes
0answers
45 views

Accessing Datastore with Gaeshi

How to use Datastore functions of Gaeshi? I know that I'll use https://github.com/slagyr/gaeshi/blob/master/gaeshi/src/gaeshi/datastore.clj but I don't understand how to put some entities to Datastore ...
4
votes
1answer
125 views

passing data to noir views - Clojure

I'm working with Noir and I can't figure out how to pass information to the views. Right now I have a ref in proj.core/my-ref which is updated in a worker thread. I need to access the ref's value from ...
3
votes
1answer
309 views

Compojure/Ring: Why doesn't a session with cookie-store survive a server restart?

I have a compojure app that uses the ring session wrapper to store the OAuth token associated with the current user. I would like for this token to remain available when the server restarts, so that I ...
1
vote
0answers
155 views

Compojure app not playing well with with-redefs

I'm writing a Compojure application and am using clj-webdriver to graphically test it. I'm trying to use with-redefs to mock out the function that pulls out data from persistence to just return canned ...
1
vote
2answers
223 views

Trouble getting defroutes to work in webnoir

So, I'm a clojure n00b, and I'm missing something when trying to get the routes for a project I'm building working. I had some issues with circular dependencies, and after working with Django, I ...
4
votes
1answer
272 views

Parsing integers from strings when validating compojure requests in Clojure

I have compojure based app where I need to parse a request and retrieve parameters that can be numbers. I want to be able to verify that the parameters exist and that they are numbers before actually ...
0
votes
1answer
136 views

compojure route with multiple parameters

Is it possible to define a compojure route that contains multiple parameters? i.e: (def my-routes (routes (GET "/something/:param1/:param2" [] my-handler)))
3
votes
2answers
378 views

Executing a function on ring/compjure application startup after deploy [duplicate]

Possible Duplicate: How to run an arbitrary startup function in a ring project? I am using the clojure ring middleware, with compojure, to build a simple api. I deploy the app often as a ...
2
votes
2answers
592 views

Clojure: Webbit + Ring

Context I just got http://blog.jayfields.com/2011/02/clojure-web-socket-introduction.html working. I also have ring + compojure working. Question: I would like to use ring ... somehow ... with ...
1
vote
0answers
196 views

Broken links when deploying Clojure webapps to Jetty with relative links and non-root context path

I've been experimenting with writing webapps in Clojure, and it's been pretty easy until now. I followed Chas Emerick's excellent screencast starting clojure and got an url shortener up and running ...
2
votes
1answer
152 views

load-views when running multiple noir servers

I'm experimenting with using noir to start three servers (each to handle a different aspect of the application). I am trying to do this so that I can run all three servers within one application while ...
8
votes
4answers
991 views

Compojure routes with different middleware

I'm currently writing an API in Clojure using Compojure (and Ring and associated middleware). I'm trying to apply different authentication code depending on the route. Consider the following code: ...
1
vote
1answer
189 views

Parsing values from multiple checkboxes using compojure

I have created small compojure web application, which can display multiple values, fetched from other website, using provided URL. At the moment, this URL is hard coded in one of my functions, and now ...
1
vote
1answer
365 views

Dynamically adding routes in compojure

Hi guys : I have a "hierarchichal" styled site in compojure with a defroutes declaration like so : (defroutes main-routes (GET "/" [] (resp/redirect "/public/index.html") (GET "/blog" [] ...
0
votes
2answers
81 views

Displaying data from two parallel sequences on web page in compojure

I am trying to display content of two sequences on web page. First one of them contains name of the picture, and the second one contains URL to the image. The problem's start when I try to iterate ...
3
votes
2answers
271 views

Extracting string from clojure collections using regex

can you suggest me the shortest and easiest way for extracting substring from string sequence? I'm getting this collection from using enlive framework, which takes content from certain web page, and ...
2
votes
1answer
197 views

How to display an image using Compojure?

This compojure question is twofold! How can I display an image object in a webpage (like a chart I get from Incanter)? How can I display images in the filesystem? Thank you!

1 2 3