Tagged Questions
Ring is a Clojure web applications library written by Mark McGranaghan. It was inspired by Python's WSGI and Ruby's Rack. By abstracting the details of HTTP into a simple, unified API, Ring allows web applications to be constructed of modular components that can be shared among a variety of applications, web servers, and web frameworks.
15
votes
2answers
2k views
How do I stop jetty server in clojure?
I am writing a web application using ring and clojure. I am using the jetty adapter for the development server and emacs/SLIME for IDE. While wrap-reload does help, run-jetty blocks my slime session ...
9
votes
3answers
521 views
How should javascript be integrated into a Clojure/Ring web app?
How are Javascript resources best integrated into a ring application?
Specifically:
Where would we put our .js files?
How and where should unit tests be set up?
What is the best way to set up ...
6
votes
1answer
814 views
How do you use sessions with Compojure/Ring?
I'm developing a web application using Compojure and I would hugely appreciate a small and complete example of storing and retrieving session data.
Many thanks in advance,
James.
6
votes
2answers
245 views
Has anyone used Incanter in a web app to serve statistical graphs?
I'd like to serve up statistical graphs based on Incanter with a framework like Ring or Compojure in a Clojure environment. I haven't seen any examples or links that do this. Could someone steer me ...
5
votes
3answers
215 views
CPU Privilege Rings: Why rings 1 and 2 aren't used?
A couple of questions regarding the x86 CPU privilege rings:
Why aren't rings 1 and 2 used by most operating systems? Is it just to maintain code compatibility with other architectures, or is there ...
5
votes
4answers
596 views
Good current documentation and/or tutorials for compojure/ring development?
As far as I can tell 90% of information that can be found through a google search on compojure/ring is outdated for 0.4.0.
Can anyone point me toward some good current documentation?
Thanks!
4
votes
2answers
165 views
is it possible to call java servlet from ring/compojure?
I have to call a servlet written in Java from Clojure web application, and I don't understand how to do that.
Developing a webapp in Java, I had to describe all mappings in web.xml. In Compojure, I ...
3
votes
1answer
125 views
How to get HttpServletRequest in a Ring handler?
Is there a way to get the HttpServletRequest object in a Ring handler?
I am using Noir to develope a web app. I need to get the HttpServletRequest obj when handling a URI. So I use the ...
3
votes
1answer
116 views
EOF exception while reading clojure file
When I run the web application in the ring jetty server, I got EOF exception, I can't fix this, since there is no clue on which line the error has occurred. I'm using compojure and hiccup on my ...
2
votes
2answers
104 views
Finding ring road of subway scheme
i have a problem, i have been thinking about this for a while.
example :
1-2
3-4
6-4
2-3
1-3
3-5
note : "a-b" mean 'a' connected to 'b' and 'b' connected to 'a'
how can i find a longest ...
2
votes
1answer
114 views
Compojure: access filesystem
this is my project.clj file:
(defproject org.github.pistacchio.deviantchecker "0.9.0"
:description "A one page application for keeping track of changes on deviantart.com gallieries"
:dependencies ...
2
votes
2answers
140 views
clojure redis set is setting the length of the string of the value instead of the value
I am using the following code to set keys in redis
(defn save-to-redis[key value]
(let [str-value (json/generate-string value)]
(redis/with-server {:host "127.0.0.1" :port 6379 :db 0}
...
2
votes
2answers
202 views
How to make an android phone ring programatically AS IF it was receiving a call?
First off, I'm a beginner in mobile development.
I've seen many similar questions but none of them would answer specifically this.
I'm developing a game for android, platform target 2.2, in Java ...
2
votes
1answer
96 views
html code to make Blackberry sing ring or vibrate
I know that Blackberry has added new API's on OS5-6 that allow HTML5 code to access native features & widgets. Is it possible to make blackberry beep, ring, vibrate or sing (play mp3) to alert ...
2
votes
2answers
413 views
Simple example of Sandbar or Ring sessions in Google App Engine
I'm trying to work out how to get sessions and flash working in Google App Engine. Could someone provide a clear example using either Ring or Sandbar? I think I have sandbar working, specifically it ...
2
votes
0answers
303 views
Android listener for changing of ring volume and other settings?
I was wondering if there is a way to know if the user has changed the ring volume or changes any settings on the phone? I'm trying to create an app that has that capability: detects whether the user ...
2
votes
1answer
186 views
How do i determin the correct filesystem path
I am working on an application that has to download some external resources and make them accessible through a public/static directory in ring.
But.. I have a problem saving the resources into a ...
2
votes
1answer
141 views
How to catch the exception thrown from an advice
I have my own exeception "MyOwnExeception" and throw this exeception from my service class
public void service() throws MyOwnExeception
{
// some code
}
Now I want to catch MyOwnExeception in an ...
2
votes
3answers
296 views
2
votes
2answers
100 views
linkedlist which links to itself?
Is there a name for a linked list type structure where the head and tail nodes link to each other? In such a list you can obviously iterate through it forever as it double backs on itself.
Was just ...
1
vote
1answer
79 views
What is the name of this kind of route?
I was just reading through a Compojure tutorial and saw this route example:
(GET "/addresses/:id" [id] (json-response (address/find id)))
I was wondering what is a proper official name for the kind ...
1
vote
1answer
52 views
Attempting to replace all instances of char in a char * that's been read in from a pipe
I'm implementing a function for a homework assignment. The function definition is:
int processchar(int fdin, int fdout, char inchar, char *outstr);
The processchar function reads from file ...
1
vote
1answer
132 views
Put Clojure middlewares in correct order
I'm having trouble with my Clojure server middlewares. My app has the following requirements:
Some routes should be accessible with no problems. Others require basic authentication, so I'd like to ...
1
vote
1answer
128 views
OpenGL ES 1.1 2D Ring with Texture iPhone
I would appreciate some help with the following. I'm trying to render a ring shape on top of another object in OpenGL ES 1.1 for an iPhone game. The ring is essentially the difference between two ...
1
vote
1answer
76 views
cassandra sstable-loader error: “Got an unknow host from describe_ring()”
I am trying to load sstables to cassandra cluster of two nodes with sstable-loader utility provided in cassandra 0.8.4
1) I have loaded the data successfully on single node environment .
2) As i ...
1
vote
2answers
650 views
Java - Ring Buffer
I have a streaming time series, of which I am interested in keeping the last 4 elements, which means I want to be able to pop the first, and add to the end. Which Java Collection is the best for this? ...
1
vote
1answer
156 views
Rendering images file to html page with moustache, enlive and Clojure
In my application with moustache (a micro framework to to wire Ring handlers and middlewares), enlive (as html template engine), and clojure, I can't view the images in my html file. How to render ...
1
vote
3answers
319 views
How to make jetty server (ring.adapter.jetty) accessible from external hosts
I'm trying to run a web server using the following invocation
(run-jetty #'handler {:host "hostname" :port 8080})
This starts a server which I can access from the same host, but not externally. I am ...
1
vote
1answer
418 views
Asterisk, using originate does not direct to a ring group
We're using Action:originate to start a call from our crm app. The operator clicks on a link and then asterisk calls the operator extension, and, when he picks up, start calling the outside number. ...
1
vote
1answer
354 views
Android: creating an insistent alarm (ex: morning alarm, incoming call)
I'm writing an alarm-based application, and I'm looking for a way to wake up the user insistently. Ideally, I'd like the phone to vibrate, ring, and display a message. I tried a few different options, ...
1
vote
2answers
421 views
Understanding handlers on Ring and Appengine-magic (Clojure)
I started working on some clojure web apps and decided to use a combination of Ring + Compojure.
Recently I decided to try Google Appengine with AppEngine-magic ...
1
vote
1answer
96 views
Can only read one element at once of a circular buffer
I have implemented the standard single consumer, single producer queue as a circular buffer in C consisting of an array and two indexes: one for read, one for write.
My circular buffer is of the type ...
0
votes
0answers
37 views
Android, click on icon on a map and then in the OverlayItem click to ring another person
My idea is to have a map with click-able items. When I click to one of them I can see more detailed info about it and in the info I would have somehow ability to click on a field and ring a phone ...
0
votes
4answers
74 views
Looping for every character in a string in Python decoder ring
I'm wanting to make a simple decoder ring in Python.
Example: a=b, b=c, c=d, etc.
I want the script to take an encoded message and output the decoded message.
For instance, I would input "ifmmp" and ...
0
votes
2answers
84 views
How do sandbar sessions work?
I'm supposed to use sandbar for a Clojure web application. I am wondering how sandbar maintains sessions on the server side? Does it us jsessionid cookies to identify user request? Or is sandbar just ...
0
votes
2answers
41 views
How to determine ring points' orientation correctly?
Based on How to determine if a list of polygon points are in clockwise order?
I've come up with the following code:
bool PointsClockwise(const std::vector<MyPoint>& points)
{
double ...
0
votes
2answers
238 views
Serving static files with ring/compojure - from a war
Using ring (and the lein-ring tools) - I am able to serve up static files from "resources" etc as per the docs when running in development - however - when I package things up via lien uberwar I have ...
0
votes
2answers
236 views
Android event: Ring, vibrate and show alert box
I am trying to create an event in Android and when the time of the scedules event is reach, I want to display an alert box, ring and vibrate the phone. Can someone please help on this?
Thanks
0
votes
2answers
117 views
php: play sound when receiving a message
Ex: i have mp3 file <- that is for message sound
i want to make a restaurant's script, when the customer make an order, the sound is rings in the employee's browser.
Can I make something like ...
0
votes
2answers
345 views
Difference between STREAM_VOICE_CALL and STREAM_RING
I'm currently trying to modify the volume-settings of a phone. So, I came up to the methods I need, but now I'm not understanding the difference between STREAM_VOICE_CALL and STREAM_RING.
It's clear ...