Re: Ring: How to auto-redirect URI's missing trailing slash
Hi, Could you try (str uri_path "/") 在 2013年7月26日星期五UTC+8上午9时08分50秒,Reginald Choudari写道: > > Hello, I'm trying to figure out what is the best way in handling this > problem. > > Using Ring I have a handlers set to direct routes with relative URI paths > (e.g. "/", "./posts", "/about"). But I would like the URI to be > automatically redirected to "/posts/" and "/about/" with the trailing > slash, so that all my links and references work correctly. If the URI is > without the trailing slash, I'm sure you know what happens to all your > relative paths. > > Any efficient way of dealing with this? > > Thanks, > Reginald > > > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
How convert from string to symbol?
Hello, I have a problem how we convert from string to symbol, for example: (def str_name "name") I want have a result that symbol is :name through processing str_name, could you a best advice? thank you! -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: How convert from string to symbol?
Hi, Gary Trakhman Good job, thank you very much! On Friday, July 26, 2013 9:44:31 AM UTC+8, Gary Trakhman wrote: > > It might be more clear if you simply show sample inputs and outputs. > Something like this: > > in: "name" > out: 'name > > probably what you want is: > (symbol (name x)) > > works for keywords too, cuts off any namespace prefix. > > > On Thu, Jul 25, 2013 at 9:29 PM, > wrote: > >> Hello, >> I have a problem how we convert from string to symbol, for example: >> (def str_name "name") >> I want have a result that symbol is :name through processing str_name, >> could you a best advice? >> >> thank you! >> >> -- >> -- >> You received this message because you are subscribed to the Google >> Groups "Clojure" group. >> To post to this group, send email to clo...@googlegroups.com >> Note that posts from new members are moderated - please be patient with >> your first post. >> To unsubscribe from this group, send email to >> clojure+u...@googlegroups.com >> For more options, visit this group at >> http://groups.google.com/group/clojure?hl=en >> --- >> You received this message because you are subscribed to the Google Groups >> "Clojure" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to clojure+u...@googlegroups.com . >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
A strange syntax about clojure defn
Hi, I read source code about run-jetty, as such, at 01 line: "(defn #^Server run-jetty", what's mean "#^Server", could you give a explanation? thank you! 01(defn #^Server run-jetty 02 "Serve the given handler according to the options. 03 Options: 04:configurator - A function called with the Server instance. 05:port 06:host 07:join? - Block the caller: defaults to true. 08:ssl? - Use SSL. 09:ssl-port - SSL port: defaults to 443, implies :ssl? 10:keystore 11:key-password 12:truststore 13:trust-password" 14 [handler options] 15 (let [#^Server s (create-server (dissoc options :configurator))] 16(when-let [configurator (:configurator options)] 17 (configurator s)) 18(doto s 19 (.setHandler (proxy-handler handler)) 20 (.start)) 21(when (:join? options true) 22 (.join s)) 23s)) -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: A strange syntax about clojure defn
It's concise, and you know the history of clojure, thank you expert! 在 2013年8月22日星期四UTC+8下午5时01分55秒,Mikera写道: > > It's an old style type hint, indicating that the function returns a value > of class "Server" (the full Java class name is probably in an :import > declaration at the top of the file) > > The new style of type hint is just "^Server". > > Both forms of type hint still work at present, but you should prefer the > new style. > > On Thursday, 22 August 2013 16:50:42 UTC+8, ljcp...@gmail.com wrote: >> >> Hi, >> I read source code about run-jetty, as such, at 01 line: "(defn >> #^Server run-jetty", >> what's mean "#^Server", could you give a explanation? thank you! >> >> 01(defn #^Server run-jetty >> 02 "Serve the given handler according to the options. >> 03 Options: >> 04:configurator - A function called with the Server instance. >> 05:port >> 06:host >> 07:join? - Block the caller: defaults to true. >> 08:ssl? - Use SSL. >> 09:ssl-port - SSL port: defaults to 443, implies :ssl? >> 10:keystore >> 11:key-password >> 12:truststore >> 13:trust-password" >> 14 [handler options] >> 15 (let [#^Server s (create-server (dissoc options :configurator))] >> 16(when-let [configurator (:configurator options)] >> 17 (configurator s)) >> 18(doto s >> 19 (.setHandler (proxy-handler handler)) >> 20 (.start)) >> 21(when (:join? options true) >> 22 (.join s)) >> 23s)) >> > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Can you explain the result of a expression?
Hi, (take 1 (map #(do (print \.) %) (range))) result: (0) I think it should be (.0), why? thank you! -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
strange map
Hi (map #(do (print "-") %) '(1 2 3 4 5)) I think the result should be (-1 -2 -3 -4 -5), but it is (--1 -2 -3 -4 5), it's difficult to understand, Can someone give answer? -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: strange map
Hi, Nothing to get, Nothing to println, please give a detail, thank you. On Wednesday, August 28, 2013 4:57:49 PM UTC+8, Christian Sperandio wrote: > > Hi, > > Try just one thing: > > (def r (map #(do (print "-") %) '(1 2 3 4 5))) > > And after, do (println r) > > What do you get? > > > > > > > > 2013/8/28 > > >> Hi >> >> (map #(do (print "-") %) '(1 2 3 4 5)) >> I think the result should be (-1 -2 -3 -4 -5), but it is (--1 -2 -3 -4 >> 5), it's difficult to understand, >> Can someone give answer? >> >> -- >> -- >> You received this message because you are subscribed to the Google >> Groups "Clojure" group. >> To post to this group, send email to clo...@googlegroups.com >> Note that posts from new members are moderated - please be patient with >> your first post. >> To unsubscribe from this group, send email to >> clojure+u...@googlegroups.com >> For more options, visit this group at >> http://groups.google.com/group/clojure?hl=en >> --- >> You received this message because you are subscribed to the Google Groups >> "Clojure" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to clojure+u...@googlegroups.com . >> For more options, visit https://groups.google.com/groups/opt_out. >> > > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: strange map
Right, thank you! On Wednesday, August 28, 2013 4:59:33 PM UTC+8, Alex Baranosky wrote: > > map is lazy. You shouldn't call side effect functions from it. I > recommend you use doseq instead. > > > On Wed, Aug 28, 2013 at 1:57 AM, Christian Sperandio < > christian...@gmail.com > wrote: > >> Hi, >> >> Try just one thing: >> >> (def r (map #(do (print "-") %) '(1 2 3 4 5))) >> >> And after, do (println r) >> >> What do you get? >> >> >> >> >> >> >> >> 2013/8/28 > >> >> Hi >>> >>> (map #(do (print "-") %) '(1 2 3 4 5)) >>> I think the result should be (-1 -2 -3 -4 -5), but it is (--1 -2 -3 -4 >>> 5), it's difficult to understand, >>> Can someone give answer? >>> >>> -- >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Clojure" group. >>> To post to this group, send email to clo...@googlegroups.com >>> Note that posts from new members are moderated - please be patient with >>> your first post. >>> To unsubscribe from this group, send email to >>> clojure+u...@googlegroups.com >>> For more options, visit this group at >>> http://groups.google.com/group/clojure?hl=en >>> --- >>> You received this message because you are subscribed to the Google >>> Groups "Clojure" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to clojure+u...@googlegroups.com . >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >> >> -- >> -- >> You received this message because you are subscribed to the Google >> Groups "Clojure" group. >> To post to this group, send email to clo...@googlegroups.com >> Note that posts from new members are moderated - please be patient with >> your first post. >> To unsubscribe from this group, send email to >> clojure+u...@googlegroups.com >> For more options, visit this group at >> http://groups.google.com/group/clojure?hl=en >> --- >> You received this message because you are subscribed to the Google Groups >> "Clojure" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to clojure+u...@googlegroups.com . >> For more options, visit https://groups.google.com/groups/opt_out. >> > > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: strange map
Hi user=> (def r (map #(do (print "-") %) '(1 2 3 4 5))) #'user/r user=> (println r) (--1 -2 -3 -4 5) nil On Wednesday, August 28, 2013 4:57:49 PM UTC+8, Christian Sperandio wrote: > > Hi, > > Try just one thing: > > (def r (map #(do (print "-") %) '(1 2 3 4 5))) > > And after, do (println r) > > What do you get? > > > > > > > > 2013/8/28 > > >> Hi >> >> (map #(do (print "-") %) '(1 2 3 4 5)) >> I think the result should be (-1 -2 -3 -4 -5), but it is (--1 -2 -3 -4 >> 5), it's difficult to understand, >> Can someone give answer? >> >> -- >> -- >> You received this message because you are subscribed to the Google >> Groups "Clojure" group. >> To post to this group, send email to clo...@googlegroups.com >> Note that posts from new members are moderated - please be patient with >> your first post. >> To unsubscribe from this group, send email to >> clojure+u...@googlegroups.com >> For more options, visit this group at >> http://groups.google.com/group/clojure?hl=en >> --- >> You received this message because you are subscribed to the Google Groups >> "Clojure" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to clojure+u...@googlegroups.com . >> For more options, visit https://groups.google.com/groups/opt_out. >> > > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: strange map
Hi user=> (def r (map #(do (print "-") %) '(1 2 3 4 5))) #'user/r user=> (println r) (--1 -2 -3 -4 5) nil On Wednesday, August 28, 2013 4:57:49 PM UTC+8, Christian Sperandio wrote: > > Hi, > > Try just one thing: > > (def r (map #(do (print "-") %) '(1 2 3 4 5))) > > And after, do (println r) > > What do you get? > > > > > > > > 2013/8/28 > > >> Hi >> >> (map #(do (print "-") %) '(1 2 3 4 5)) >> I think the result should be (-1 -2 -3 -4 -5), but it is (--1 -2 -3 -4 >> 5), it's difficult to understand, >> Can someone give answer? >> >> -- >> -- >> You received this message because you are subscribed to the Google >> Groups "Clojure" group. >> To post to this group, send email to clo...@googlegroups.com >> Note that posts from new members are moderated - please be patient with >> your first post. >> To unsubscribe from this group, send email to >> clojure+u...@googlegroups.com >> For more options, visit this group at >> http://groups.google.com/group/clojure?hl=en >> --- >> You received this message because you are subscribed to the Google Groups >> "Clojure" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to clojure+u...@googlegroups.com . >> For more options, visit https://groups.google.com/groups/opt_out. >> > > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Does lib-nor has function which support https server?
Hi, noir.util.middleware.war- handler startup a http server, then which function support https server? Does lib-nor has function which support https server? thank you. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.
About with-meta source, can explain it by itself?
Hi, I read the source about with-meta, and find def with-meta using with-meta, can it? someone give a explain? user=> (source with-meta) (def ^{:arglists '([^clojure.lang.IObj obj m]) :doc "Returns an object of the same type and value as obj, with map m as its metadata." :added "1.0" :static true} with-meta (fn ^:static with-meta [^clojure.lang.IObj x m] (. x (withMeta m -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: About with-meta source, can explain it by itself?
You are right, i noticed "it calls withMeta", but in the expression, actually use with-meta to define with-meta, it's very strange, thank you very much! (def with-meta (fn ^:static with-meta [^clojure.lang.IObj x m] (. x (withMeta m On Saturday, September 21, 2013 3:30:30 PM UTC+8, Michał Marczyk wrote: > > Actually with-meta's definition does not refer to with-meta. Rather, > it calls withMeta, a method in the clojure.lang.IObj interface which > the first argument to with-meta is supposed to implement. > > Cheers, > Michał > > > On 21 September 2013 09:01, > wrote: > > Hi, > > I read the source about with-meta, and find def with-meta using > with-meta, > > can it? someone give a explain? > > > > user=> (source with-meta) > > (def > > ^{:arglists '([^clojure.lang.IObj obj m]) > >:doc "Returns an object of the same type and value as obj, with > > map m as its metadata." > >:added "1.0" > >:static true} > > with-meta (fn ^:static with-meta [^clojure.lang.IObj x m] > > (. x (withMeta m > > > > -- > > -- > > You received this message because you are subscribed to the Google > > Groups "Clojure" group. > > To post to this group, send email to clo...@googlegroups.com > > Note that posts from new members are moderated - please be patient with > your > > first post. > > To unsubscribe from this group, send email to > > clojure+u...@googlegroups.com > > For more options, visit this group at > > http://groups.google.com/group/clojure?hl=en > > --- > > You received this message because you are subscribed to the Google > Groups > > "Clojure" group. > > To unsubscribe from this group and stop receiving emails from it, send > an > > email to clojure+u...@googlegroups.com . > > For more options, visit https://groups.google.com/groups/opt_out. > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Could not find artifact org.clojure:clojure:pom:1.2.0-master-SNAPSHOT in central
Hi, I run "lein deps",then error message: D:\clojure\4clojure-develop>lein deps Could not find artifact org.clojure:clojure:pom:1.2.0-master-SNAPSHOT in central (http://repo1.maven.org/maven2) Could not find artifact org.clojure:clojure:pom:1.2.0-master-SNAPSHOT in clojars (https://clojars.org/repo/) Could not find artifact org.clojure:clojure:pom:1.2.0-master-SNAPSHOT in clojure (http://build.clojure.org/releases) Could not find artifact org.clojure:clojure:pom:1.2.0-master-SNAPSHOT in clojure -snapshots (http://build.clojure.org/snapshots) the project.clj : (defproject foreclojure "1.3.0.1" :description "4clojure - a website for lisp beginners" :dependencies [[org.clojure/clojure "1.2.1"] [org.clojure/clojure-contrib "1.2.0"] [compojure "1.1.5"] [hiccup "0.2.4"] [clojail "0.4.0-SNAPSHOT"] [sandbar "0.4.0-SNAPSHOT"] [org.clojars.christophermaier/congomongo "0.1.4-SNAPSHOT"] [org.jasypt/jasypt "1.7"] [useful "0.7.0-beta1"] [amalloy/ring-gzip-middleware "[0.1.0,)"] [clj-github "1.0.1"] [ring "0.3.7"] [clj-config "0.1.0"] [incanter/incanter-core "1.2.3"] [incanter/incanter-charts "1.2.3"] [org.apache.commons/commons-email "1.2"]] :dev-dependencies [[lein-ring "0.4.5"] [swank-clojure "1.2.1"] [midje "1.1.1"]] :main foreclojure.core :ring {:handler foreclojure.core/app :init foreclojure.mongo/prepare-mongo}) who can give some explain? thank you! -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Warning: *retry-limit* not declared dynamic and thus is not dynamically rebindable
Dear all, When I installed leiningen and clojure, I run command "lein repl", then prompt some message like such --- C:\lein>lein repl Warning: *default-javac-options* not declared dynamic and thus is not dynamicall y rebindable, but its name suggests otherwise. Please either indicate ^:dynamic *default-javac-options* or change the name. Warning: *silently* not declared dynamic and thus is not dynamically rebindable, but its name suggests otherwise. Please either indicate ^:dynamic *silently* or change the name. Warning: *skip-auto-compile* not declared dynamic and thus is not dynamically re bindable, but its name suggests otherwise. Please either indicate ^:dynamic *ski p-auto-compile* or change the name. Warning: *retry-limit* not declared dynamic and thus is not dynamically rebindab le, but its name suggests otherwise. Please either indicate ^:dynamic *retry-lim it* or change the name. REPL started; server listening on localhost:53849. I think some thing is wrong, and I spent a lot of time and can't solve these problem, so ask help for me, thanks very much! -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: Warning: *retry-limit* not declared dynamic and thus is not dynamically rebindable
On Wednesday, April 17, 2013 7:23:32 PM UTC+8, Marko Topolnik wrote: > > Seems like old leiningen + new Clojure. You should upgrade to the latest > leiningen, which is 2.1.3. > > On Wednesday, April 17, 2013 3:04:18 AM UTC+2, ljcp...@gmail.com wrote: >> >> Dear all, >> >> When I installed leiningen and clojure, I run command "lein repl", >> then prompt some message like such --- >> >> C:\lein>lein repl >> Warning: *default-javac-options* not declared dynamic and thus is not >> dynamicall >> y rebindable, but its name suggests otherwise. Please either indicate >> ^:dynamic >> *default-javac-options* or change the name. >> Warning: *silently* not declared dynamic and thus is not dynamically >> rebindable, >> but its name suggests otherwise. Please either indicate ^:dynamic >> *silently* or >> change the name. >> Warning: *skip-auto-compile* not declared dynamic and thus is not >> dynamically re >> bindable, but its name suggests otherwise. Please either indicate >> ^:dynamic *ski >> p-auto-compile* or change the name. >> Warning: *retry-limit* not declared dynamic and thus is not >> dynamically rebindab >> le, but its name suggests otherwise. Please either indicate ^:dynamic >> *retry-lim >> it* or change the name. >> REPL started; server listening on localhost:53849. >> >> I think some thing is wrong, and I spent a lot of time and can't solve >> these problem, >> so ask help for me, thanks very much! > > -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: Warning: *retry-limit* not declared dynamic and thus is not dynamically rebindable
Dear Marko Topolnik You are right, it's correct when I upgrade to leiningen213, and no these warning messages, thank you again! On Wednesday, April 17, 2013 9:04:18 AM UTC+8, ljcp...@gmail.com wrote: > > Dear all, > > When I installed leiningen and clojure, I run command "lein repl", > then prompt some message like such --- > > C:\lein>lein repl > Warning: *default-javac-options* not declared dynamic and thus is not > dynamicall > y rebindable, but its name suggests otherwise. Please either indicate > ^:dynamic > *default-javac-options* or change the name. > Warning: *silently* not declared dynamic and thus is not dynamically > rebindable, > but its name suggests otherwise. Please either indicate ^:dynamic > *silently* or > change the name. > Warning: *skip-auto-compile* not declared dynamic and thus is not > dynamically re > bindable, but its name suggests otherwise. Please either indicate > ^:dynamic *ski > p-auto-compile* or change the name. > Warning: *retry-limit* not declared dynamic and thus is not > dynamically rebindab > le, but its name suggests otherwise. Please either indicate ^:dynamic > *retry-lim > it* or change the name. > REPL started; server listening on localhost:53849. > > I think some thing is wrong, and I spent a lot of time and can't solve > these problem, > so ask help for me, thanks very much! -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Do you know which language the clojure is written by?
Hi, Do you know which language the clojure is written by? -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.