Re: lein autodoc failed in clojure.java.jdbc

2017-07-13 Thread Xiangtao Zhou
Thanks Alex.  so that's also the reason of  404 
of https://clojure.github.io/spec.alpha/.

Joe

On Friday, July 14, 2017 at 12:34:07 PM UTC+8, Alex Miller wrote:
>
> The Clojure team uses the latest version of autodoc (
> https://github.com/tomfaulhaber/autodoc and 
> https://github.com/tomfaulhaber/autodoc-collect are the repos). lein 
> autodoc (https://github.com/tomfaulhaber/lein-autodoc) is hard pegged to 
> autodoc 1.1.1. 
>
> The official build file for java.jdbc (and all Clojure contrib projects) 
> is the Maven pom.xml, not project.clj. Some possibilities:
>
> - The project.clj is not up to date wrt the official dependencies in the 
> pom.xml. The project.clj is there for convenience and is manually kept up 
> to date but could be out of sync.
> - The version used by lein autodoc is older and could easily be 
> encountering a bug that has been resolved already in autodoc.
> - The batch process that generates the official API docs uses autodoc and 
> autodoc-collect, but does not use leiningen or lein autodoc at all. It's 
> entirely possible something is different between those two processes.
> - Something else I haven't thought of.
>
> I don't have time to figure out what the difference is right now, but feel 
> free to dig into it more if you're interested. The exception seems to be 
> during reading, so I would try to understand more about what is being read 
> and why it's failing to read.
>
> Alex
>
>
> On Thursday, July 13, 2017 at 9:42:53 PM UTC-5, Xiangtao Zhou wrote:
>>
>> hi Sean,
>>
>> The official site of java.jdbc is generated by autodoc,  does that mean 
>> the clojure team use a different autodoc?  
>>
>> please see this.  https://clojure.github.io/java.jdbc/
>>
>> Joe 
>>
>> On Thursday, July 13, 2017 at 12:17:45 PM UTC+8, Sean Corfield wrote:
>>>
>>> Autodoc is not declared in java.jdbc’s project.clj, I’ve never run 
>>> autodoc on that project (or any other, to be honest), so I have no 
>>> expectation about which projects autodoc works on an which it doesn’t, but 
>>> *if 
>>> it can’t read valid Clojure source code, that’s a bug in autodoc as far as 
>>> I’m concerned.*
>>>
>>>  
>>>
>>> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
>>> An Architect's View -- http://corfield.org/
>>>
>>> "If you're not annoying somebody, you're not really alive."
>>> -- Margaret Atwood
>>>
>>>  
>>>
>>> *From: *Xiangtao Zhou
>>> *Sent: *Wednesday, July 12, 2017 6:50 PM
>>> *To: *Clojure
>>> *Subject: *lein autodoc failed in clojure.java.jdbc
>>>
>>>  
>>>
>>> hi clojure.java.jdbc's contributor,  
>>>
>>>  
>>>
>>> I checkout master, and run lein autodoc failed with following errors. 
>>> And there is no error for version java.jdbc-0.6.1.  Any detailed infomation 
>>> about this is appreciated.
>>>
>>>  
>>>
>>> Joe
>>>
>>>  
>>>
>>> Exception in thread "main" java.lang.RuntimeException: EOF while reading
>>>
>>> at clojure.lang.Util.runtimeException(Util.java:221)
>>>
>>> at clojure.lang.LispReader.read(LispReader.java:246)
>>>
>>> at clojure.lang.LispReader.read(LispReader.java:196)
>>>
>>> at clojure.lang.LispReader.read(LispReader.java:190)
>>>
>>> at clojure.core$read.invoke(core.clj:3640)
>>>
>>> at clojure.core$read.invoke(core.clj:3638)
>>>
>>> at clojure.core$read.invoke(core.clj:3636)
>>>
>>> at clojure.core$read.invoke(core.clj:3634)
>>>
>>> at 
>>> autodoc.collect_info_wrapper$do_collect.invoke(collect_info_wrapper.clj:95)
>>>
>>> at autodoc.autodoc$build_html.doInvoke(autodoc.clj:26)
>>>
>>> at clojure.lang.RestFn.invoke(RestFn.java:397)
>>>
>>> at clojure.lang.Var.invoke(Var.java:375)
>>>
>>> at clojure.lang.AFn.applyToHelper(AFn.java:152)
>>>
>>> at clojure.lang.Var.applyTo(Var.java:700)
>>>
>>> at clojure.core$apply.invoke(core.clj:630)
>>>
>>> at autodoc.autodoc$autodoc.doInvoke(autodoc.clj:102)
>>>
>>> at clojure.lang.RestFn.invoke(RestFn.java:425)
>>>
>>> at autodoc.autodoc$autodoc.invoke(autodoc.clj:76)
>>>
>>> at clojure.lang.AFn.applyToHelper(AFn.java:154)
>>>
>>> at clojure.lang.RestFn.applyTo(RestFn.java:132)
>>>
>>> at clojure.core$apply.invoke(core.clj:63

Re: lein autodoc failed in clojure.java.jdbc

2017-07-13 Thread Xiangtao Zhou
Thanks Sean.  Now I know I need to dig into autodoc.

On Friday, July 14, 2017 at 10:57:20 AM UTC+8, Sean Corfield wrote:
>
> I asked Alex Miller about this on Slack and he said (paraphrasing):
>
>  
>
> Something in clojure.spec broke autodoc a while back and then the split of 
> spec to spec.alpha threw a further wrench in the automated doc generation. 
> That means at least some of the API documentation has been stale for a 
> while since the doc-gen task can’t run. Right now, Alex is waiting for Tom 
> Faulhaber to find enough time to fix whatever is causing the problem.
>
>  
>
> So – the problem is autodoc doesn’t like something in clojure.spec and 
> that affects several Clojure projects (I had wondered why the clojure.spec 
> docs had seemed so out of date!). 
>
>  
>
> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
> An Architect's View -- http://corfield.org/
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
>  
>
> *From: *Xiangtao Zhou 
> *Sent: *Thursday, July 13, 2017 7:43 PM
> *To: *Clojure 
> *Subject: *Re: lein autodoc failed in clojure.java.jdbc
>
>  
>
> hi Sean,
>
>  
>
> The official site of java.jdbc is generated by autodoc,  does that mean 
> the clojure team use a different autodoc?  
>
>  
>
> please see this.  https://clojure.github.io/java.jdbc/
>
>  
>
> Joe 
>
>
> On Thursday, July 13, 2017 at 12:17:45 PM UTC+8, Sean Corfield wrote:
>
> Autodoc is not declared in java.jdbc’s project.clj, I’ve never run autodoc 
> on that project (or any other, to be honest), so I have no expectation 
> about which projects autodoc works on an which it doesn’t, but *if it 
> can’t read valid Clojure source code, that’s a bug in autodoc as far as I’m 
> concerned.*
>
>  
>
> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
> An Architect's View -- http://corfield.org/
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
>  
>
> *From: *Xiangtao Zhou
> *Sent: *Wednesday, July 12, 2017 6:50 PM
> *To: *Clojure
> *Subject: *lein autodoc failed in clojure.java.jdbc
>
>  
>
> hi clojure.java.jdbc's contributor,  
>
>  
>
> I checkout master, and run lein autodoc failed with following errors. And 
> there is no error for version java.jdbc-0.6.1.  Any detailed infomation 
> about this is appreciated.
>
>  
>
> Joe
>
>  
>
> Exception in thread "main" java.lang.RuntimeException: EOF while reading
>
> at clojure.lang.Util.runtimeException(Util.java:221)
>
> at clojure.lang.LispReader.read(LispReader.java:246)
>
> at clojure.lang.LispReader.read(LispReader.java:196)
>
> at clojure.lang.LispReader.read(LispReader.java:190)
>
> at clojure.core$read.invoke(core.clj:3640)
>
> at clojure.core$read.invoke(core.clj:3638)
>
> at clojure.core$read.invoke(core.clj:3636)
>
> at clojure.core$read.invoke(core.clj:3634)
>
> at 
> autodoc.collect_info_wrapper$do_collect.invoke(collect_info_wrapper.clj:95)
>
> at autodoc.autodoc$build_html.doInvoke(autodoc.clj:26)
>
> at clojure.lang.RestFn.invoke(RestFn.java:397)
>
> at clojure.lang.Var.invoke(Var.java:375)
>
> at clojure.lang.AFn.applyToHelper(AFn.java:152)
>
> at clojure.lang.Var.applyTo(Var.java:700)
>
> at clojure.core$apply.invoke(core.clj:630)
>
> at autodoc.autodoc$autodoc.doInvoke(autodoc.clj:102)
>
> at clojure.lang.RestFn.invoke(RestFn.java:425)
>
> at autodoc.autodoc$autodoc.invoke(autodoc.clj:76)
>
> at clojure.lang.AFn.applyToHelper(AFn.java:154)
>
> at clojure.lang.RestFn.applyTo(RestFn.java:132)
>
> at clojure.core$apply.invoke(core.clj:632)
>
> at autodoc.autodoc$execute.doInvoke(autodoc.clj:116)
>
> at clojure.lang.RestFn.applyTo(RestFn.java:137)
>
> at clojure.core$apply.invoke(core.clj:630)
>
> at autodoc.autodoc$_main.doInvoke(autodoc.clj:120)
>
> at clojure.lang.RestFn.applyTo(RestFn.java:137)
>
> at autodoc.autodoc.main(Unknown Source)
>
>  
>
>  
>
>  
>
> -- 
> 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 

Re: lein autodoc failed in clojure.java.jdbc

2017-07-13 Thread Alex Miller
The Clojure team uses the latest version of autodoc 
(https://github.com/tomfaulhaber/autodoc 
and https://github.com/tomfaulhaber/autodoc-collect are the repos). lein 
autodoc (https://github.com/tomfaulhaber/lein-autodoc) is hard pegged to 
autodoc 1.1.1. 

The official build file for java.jdbc (and all Clojure contrib projects) is 
the Maven pom.xml, not project.clj. Some possibilities:

- The project.clj is not up to date wrt the official dependencies in the 
pom.xml. The project.clj is there for convenience and is manually kept up 
to date but could be out of sync.
- The version used by lein autodoc is older and could easily be 
encountering a bug that has been resolved already in autodoc.
- The batch process that generates the official API docs uses autodoc and 
autodoc-collect, but does not use leiningen or lein autodoc at all. It's 
entirely possible something is different between those two processes.
- Something else I haven't thought of.

I don't have time to figure out what the difference is right now, but feel 
free to dig into it more if you're interested. The exception seems to be 
during reading, so I would try to understand more about what is being read 
and why it's failing to read.

Alex


On Thursday, July 13, 2017 at 9:42:53 PM UTC-5, Xiangtao Zhou wrote:
>
> hi Sean,
>
> The official site of java.jdbc is generated by autodoc,  does that mean 
> the clojure team use a different autodoc?  
>
> please see this.  https://clojure.github.io/java.jdbc/
>
> Joe 
>
> On Thursday, July 13, 2017 at 12:17:45 PM UTC+8, Sean Corfield wrote:
>>
>> Autodoc is not declared in java.jdbc’s project.clj, I’ve never run 
>> autodoc on that project (or any other, to be honest), so I have no 
>> expectation about which projects autodoc works on an which it doesn’t, but 
>> *if 
>> it can’t read valid Clojure source code, that’s a bug in autodoc as far as 
>> I’m concerned.*
>>
>>  
>>
>> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
>> An Architect's View -- http://corfield.org/
>>
>> "If you're not annoying somebody, you're not really alive."
>> -- Margaret Atwood
>>
>>  
>>
>> *From: *Xiangtao Zhou
>> *Sent: *Wednesday, July 12, 2017 6:50 PM
>> *To: *Clojure
>> *Subject: *lein autodoc failed in clojure.java.jdbc
>>
>>  
>>
>> hi clojure.java.jdbc's contributor,  
>>
>>  
>>
>> I checkout master, and run lein autodoc failed with following errors. And 
>> there is no error for version java.jdbc-0.6.1.  Any detailed infomation 
>> about this is appreciated.
>>
>>  
>>
>> Joe
>>
>>  
>>
>> Exception in thread "main" java.lang.RuntimeException: EOF while reading
>>
>> at clojure.lang.Util.runtimeException(Util.java:221)
>>
>> at clojure.lang.LispReader.read(LispReader.java:246)
>>
>> at clojure.lang.LispReader.read(LispReader.java:196)
>>
>> at clojure.lang.LispReader.read(LispReader.java:190)
>>
>> at clojure.core$read.invoke(core.clj:3640)
>>
>> at clojure.core$read.invoke(core.clj:3638)
>>
>> at clojure.core$read.invoke(core.clj:3636)
>>
>> at clojure.core$read.invoke(core.clj:3634)
>>
>> at 
>> autodoc.collect_info_wrapper$do_collect.invoke(collect_info_wrapper.clj:95)
>>
>> at autodoc.autodoc$build_html.doInvoke(autodoc.clj:26)
>>
>> at clojure.lang.RestFn.invoke(RestFn.java:397)
>>
>> at clojure.lang.Var.invoke(Var.java:375)
>>
>> at clojure.lang.AFn.applyToHelper(AFn.java:152)
>>
>> at clojure.lang.Var.applyTo(Var.java:700)
>>
>> at clojure.core$apply.invoke(core.clj:630)
>>
>> at autodoc.autodoc$autodoc.doInvoke(autodoc.clj:102)
>>
>> at clojure.lang.RestFn.invoke(RestFn.java:425)
>>
>> at autodoc.autodoc$autodoc.invoke(autodoc.clj:76)
>>
>> at clojure.lang.AFn.applyToHelper(AFn.java:154)
>>
>> at clojure.lang.RestFn.applyTo(RestFn.java:132)
>>
>> at clojure.core$apply.invoke(core.clj:632)
>>
>> at autodoc.autodoc$execute.doInvoke(autodoc.clj:116)
>>
>> at clojure.lang.RestFn.applyTo(RestFn.java:137)
>>
>> at clojure.core$apply.invoke(core.clj:630)
>>
>> at autodoc.autodoc$_main.doInvoke(autodoc.clj:120)
>>
>> at clojure.lang.RestFn.applyTo(RestFn.java:137)
>>
>> at autodoc.autodoc.main(Unknown Source)
>>
>>  
>>
>>  
>>
>>  
>>
>> -- 
>> 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
>> No

RE: lein autodoc failed in clojure.java.jdbc

2017-07-13 Thread Sean Corfield
I asked Alex Miller about this on Slack and he said (paraphrasing):

Something in clojure.spec broke autodoc a while back and then the split of spec 
to spec.alpha threw a further wrench in the automated doc generation. That 
means at least some of the API documentation has been stale for a while since 
the doc-gen task can’t run. Right now, Alex is waiting for Tom Faulhaber to 
find enough time to fix whatever is causing the problem.

So – the problem is autodoc doesn’t like something in clojure.spec and that 
affects several Clojure projects (I had wondered why the clojure.spec docs had 
seemed so out of date!). 

Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

From: Xiangtao Zhou
Sent: Thursday, July 13, 2017 7:43 PM
To: Clojure
Subject: Re: lein autodoc failed in clojure.java.jdbc

hi Sean,

The official site of java.jdbc is generated by autodoc,  does that mean the 
clojure team use a different autodoc?  

please see this.  https://clojure.github.io/java.jdbc/

Joe 

On Thursday, July 13, 2017 at 12:17:45 PM UTC+8, Sean Corfield wrote:
Autodoc is not declared in java.jdbc’s project.clj, I’ve never run autodoc on 
that project (or any other, to be honest), so I have no expectation about which 
projects autodoc works on an which it doesn’t, but if it can’t read valid 
Clojure source code, that’s a bug in autodoc as far as I’m concerned.
 
Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood
 
From: Xiangtao Zhou
Sent: Wednesday, July 12, 2017 6:50 PM
To: Clojure
Subject: lein autodoc failed in clojure.java.jdbc
 
hi clojure.java.jdbc's contributor,  
 
I checkout master, and run lein autodoc failed with following errors. And there 
is no error for version java.jdbc-0.6.1.  Any detailed infomation about this is 
appreciated.
 
Joe
 
Exception in thread "main" java.lang.RuntimeException: EOF while reading
at clojure.lang.Util.runtimeException(Util.java:221)
at clojure.lang.LispReader.read(LispReader.java:246)
at clojure.lang.LispReader.read(LispReader.java:196)
at clojure.lang.LispReader.read(LispReader.java:190)
at clojure.core$read.invoke(core.clj:3640)
at clojure.core$read.invoke(core.clj:3638)
at clojure.core$read.invoke(core.clj:3636)
at clojure.core$read.invoke(core.clj:3634)
at autodoc.collect_info_wrapper$do_collect.invoke(collect_info_wrapper.clj:95)
at autodoc.autodoc$build_html.doInvoke(autodoc.clj:26)
at clojure.lang.RestFn.invoke(RestFn.java:397)
at clojure.lang.Var.invoke(Var.java:375)
at clojure.lang.AFn.applyToHelper(AFn.java:152)
at clojure.lang.Var.applyTo(Var.java:700)
at clojure.core$apply.invoke(core.clj:630)
at autodoc.autodoc$autodoc.doInvoke(autodoc.clj:102)
at clojure.lang.RestFn.invoke(RestFn.java:425)
at autodoc.autodoc$autodoc.invoke(autodoc.clj:76)
at clojure.lang.AFn.applyToHelper(AFn.java:154)
at clojure.lang.RestFn.applyTo(RestFn.java:132)
at clojure.core$apply.invoke(core.clj:632)
at autodoc.autodoc$execute.doInvoke(autodoc.clj:116)
at clojure.lang.RestFn.applyTo(RestFn.java:137)
at clojure.core$apply.invoke(core.clj:630)
at autodoc.autodoc$_main.doInvoke(autodoc.clj:120)
at clojure.lang.RestFn.applyTo(RestFn.java:137)
at autodoc.autodoc.main(Unknown Source)
 
 
 
-- 
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/d/optout.
 
-- 
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.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@goo

Re: lein autodoc failed in clojure.java.jdbc

2017-07-13 Thread Xiangtao Zhou
hi Sean,

The official site of java.jdbc is generated by autodoc,  does that mean the 
clojure team use a different autodoc?  

please see this.  https://clojure.github.io/java.jdbc/

Joe 

On Thursday, July 13, 2017 at 12:17:45 PM UTC+8, Sean Corfield wrote:
>
> Autodoc is not declared in java.jdbc’s project.clj, I’ve never run autodoc 
> on that project (or any other, to be honest), so I have no expectation 
> about which projects autodoc works on an which it doesn’t, but *if it 
> can’t read valid Clojure source code, that’s a bug in autodoc as far as I’m 
> concerned.*
>
>  
>
> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
> An Architect's View -- http://corfield.org/
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
>  
>
> *From: *Xiangtao Zhou 
> *Sent: *Wednesday, July 12, 2017 6:50 PM
> *To: *Clojure 
> *Subject: *lein autodoc failed in clojure.java.jdbc
>
>  
>
> hi clojure.java.jdbc's contributor,  
>
>  
>
> I checkout master, and run lein autodoc failed with following errors. And 
> there is no error for version java.jdbc-0.6.1.  Any detailed infomation 
> about this is appreciated.
>
>  
>
> Joe
>
>  
>
> Exception in thread "main" java.lang.RuntimeException: EOF while reading
>
> at clojure.lang.Util.runtimeException(Util.java:221)
>
> at clojure.lang.LispReader.read(LispReader.java:246)
>
> at clojure.lang.LispReader.read(LispReader.java:196)
>
> at clojure.lang.LispReader.read(LispReader.java:190)
>
> at clojure.core$read.invoke(core.clj:3640)
>
> at clojure.core$read.invoke(core.clj:3638)
>
> at clojure.core$read.invoke(core.clj:3636)
>
> at clojure.core$read.invoke(core.clj:3634)
>
> at 
> autodoc.collect_info_wrapper$do_collect.invoke(collect_info_wrapper.clj:95)
>
> at autodoc.autodoc$build_html.doInvoke(autodoc.clj:26)
>
> at clojure.lang.RestFn.invoke(RestFn.java:397)
>
> at clojure.lang.Var.invoke(Var.java:375)
>
> at clojure.lang.AFn.applyToHelper(AFn.java:152)
>
> at clojure.lang.Var.applyTo(Var.java:700)
>
> at clojure.core$apply.invoke(core.clj:630)
>
> at autodoc.autodoc$autodoc.doInvoke(autodoc.clj:102)
>
> at clojure.lang.RestFn.invoke(RestFn.java:425)
>
> at autodoc.autodoc$autodoc.invoke(autodoc.clj:76)
>
> at clojure.lang.AFn.applyToHelper(AFn.java:154)
>
> at clojure.lang.RestFn.applyTo(RestFn.java:132)
>
> at clojure.core$apply.invoke(core.clj:632)
>
> at autodoc.autodoc$execute.doInvoke(autodoc.clj:116)
>
> at clojure.lang.RestFn.applyTo(RestFn.java:137)
>
> at clojure.core$apply.invoke(core.clj:630)
>
> at autodoc.autodoc$_main.doInvoke(autodoc.clj:120)
>
> at clojure.lang.RestFn.applyTo(RestFn.java:137)
>
> at autodoc.autodoc.main(Unknown Source)
>
>  
>
>  
>
>  
>
> -- 
> 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/d/optout.
>
>  
>

-- 
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.


RE: lein autodoc failed in clojure.java.jdbc

2017-07-12 Thread Sean Corfield
Autodoc is not declared in java.jdbc’s project.clj, I’ve never run autodoc on 
that project (or any other, to be honest), so I have no expectation about which 
projects autodoc works on an which it doesn’t, but if it can’t read valid 
Clojure source code, that’s a bug in autodoc as far as I’m concerned.

Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

From: Xiangtao Zhou<mailto:tao...@gmail.com>
Sent: Wednesday, July 12, 2017 6:50 PM
To: Clojure<mailto:clojure@googlegroups.com>
Subject: lein autodoc failed in clojure.java.jdbc

hi clojure.java.jdbc's contributor,

I checkout master, and run lein autodoc failed with following errors. And there 
is no error for version java.jdbc-0.6.1.  Any detailed infomation about this is 
appreciated.

Joe

Exception in thread "main" java.lang.RuntimeException: EOF while reading
at clojure.lang.Util.runtimeException(Util.java:221)
at clojure.lang.LispReader.read(LispReader.java:246)
at clojure.lang.LispReader.read(LispReader.java:196)
at clojure.lang.LispReader.read(LispReader.java:190)
at clojure.core$read.invoke(core.clj:3640)
at clojure.core$read.invoke(core.clj:3638)
at clojure.core$read.invoke(core.clj:3636)
at clojure.core$read.invoke(core.clj:3634)
at autodoc.collect_info_wrapper$do_collect.invoke(collect_info_wrapper.clj:95)
at autodoc.autodoc$build_html.doInvoke(autodoc.clj:26)
at clojure.lang.RestFn.invoke(RestFn.java:397)
at clojure.lang.Var.invoke(Var.java:375)
at clojure.lang.AFn.applyToHelper(AFn.java:152)
at clojure.lang.Var.applyTo(Var.java:700)
at clojure.core$apply.invoke(core.clj:630)
at autodoc.autodoc$autodoc.doInvoke(autodoc.clj:102)
at clojure.lang.RestFn.invoke(RestFn.java:425)
at autodoc.autodoc$autodoc.invoke(autodoc.clj:76)
at clojure.lang.AFn.applyToHelper(AFn.java:154)
at clojure.lang.RestFn.applyTo(RestFn.java:132)
at clojure.core$apply.invoke(core.clj:632)
at autodoc.autodoc$execute.doInvoke(autodoc.clj:116)
at clojure.lang.RestFn.applyTo(RestFn.java:137)
at clojure.core$apply.invoke(core.clj:630)
at autodoc.autodoc$_main.doInvoke(autodoc.clj:120)
at clojure.lang.RestFn.applyTo(RestFn.java:137)
at autodoc.autodoc.main(Unknown Source)



--
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<mailto:clojure+unsubscr...@googlegroups.com>.
For more options, visit https://groups.google.com/d/optout.

-- 
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.


lein autodoc failed in clojure.java.jdbc

2017-07-12 Thread Xiangtao Zhou
hi clojure.java.jdbc's contributor, 

I checkout master, and run lein autodoc failed with following errors. And 
there is no error for version java.jdbc-0.6.1.  Any detailed infomation 
about this is appreciated.

Joe

Exception in thread "main" java.lang.RuntimeException: EOF while reading
at clojure.lang.Util.runtimeException(Util.java:221)
at clojure.lang.LispReader.read(LispReader.java:246)
at clojure.lang.LispReader.read(LispReader.java:196)
at clojure.lang.LispReader.read(LispReader.java:190)
at clojure.core$read.invoke(core.clj:3640)
at clojure.core$read.invoke(core.clj:3638)
at clojure.core$read.invoke(core.clj:3636)
at clojure.core$read.invoke(core.clj:3634)
at 
autodoc.collect_info_wrapper$do_collect.invoke(collect_info_wrapper.clj:95)
at autodoc.autodoc$build_html.doInvoke(autodoc.clj:26)
at clojure.lang.RestFn.invoke(RestFn.java:397)
at clojure.lang.Var.invoke(Var.java:375)
at clojure.lang.AFn.applyToHelper(AFn.java:152)
at clojure.lang.Var.applyTo(Var.java:700)
at clojure.core$apply.invoke(core.clj:630)
at autodoc.autodoc$autodoc.doInvoke(autodoc.clj:102)
at clojure.lang.RestFn.invoke(RestFn.java:425)
at autodoc.autodoc$autodoc.invoke(autodoc.clj:76)
at clojure.lang.AFn.applyToHelper(AFn.java:154)
at clojure.lang.RestFn.applyTo(RestFn.java:132)
at clojure.core$apply.invoke(core.clj:632)
at autodoc.autodoc$execute.doInvoke(autodoc.clj:116)
at clojure.lang.RestFn.applyTo(RestFn.java:137)
at clojure.core$apply.invoke(core.clj:630)
at autodoc.autodoc$_main.doInvoke(autodoc.clj:120)
at clojure.lang.RestFn.applyTo(RestFn.java:137)
at autodoc.autodoc.main(Unknown Source)



-- 
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.