You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
|
From: Michiel K. - T. <M.T...@tu...> - 2011-09-25 01:18:16
|
Hi Mark, Sure, here you go. Can you put me on the users list? That would be great. Best -- Michiel |
|
From: Patrick R. <pf...@cs...> - 2011-09-24 21:08:38
|
This is great stuff! Thanks for contributing this back! Mark Moll is the current maintainer and I'm also CCing the current user list in case others will find this helpful. You and Mark shoudl talk about the possibility of incorporating this into the head repo for bib2html. Thank you! On Sat, Sep 24, 2011 at 5:46 AM, Michiel Kreutzer - TNW <M.T...@tu...> wrote: > Dear Patrick, > > Thank you for making the wonderful bib2html.pl program. We are building our new group website, currently at http://tudelft-dct-ppe.com, for which we have used (and adapted, to be honest) your bib2html software. I think you have done us a great service by releasing the code, you have saved us tons of time and made the project all the more enjoyable. > > Our thinking w.r.t. the online publication list has been: the less hassle to update, the more chance that the thing will remain up to date. The way we intend to do it is to let one of the PhD-students pull all the group papers from Web of Science straight to BibTeX, say every trimester, and join that with a small bibtex-file for papers in press, and then have the student run a single command to update the database, the publication section and all other personal publication lists on the website. It had to be a less-than-5-minute job. That was easier said that done, but somehow we managed. Apart from the pages that your script makes, we needed to have a list of paper for each individual author, and a list of recent papers for each individual author, for inclusion in personal pages using <!--#include virtual--> statements. So, whenever the pages of the group are updated, so are those of the group members. I never like to see pages that list as "recent publications" stuff from 3 years ago, so we avoid that now, methinks. > > In the spirit of open software, I wanted to share the adaptations we have made and the little additional scripting to make all of this work for us. Especially the sed script to clean up WoS-generated BibTeX might come in handy. Please find attached a diff -c with your bib2html.pl and our bash script that glues everything together below. > > Thank you again for the wonderful code. > Kind regards, > > Michiel Kreutzer > -- Patrick Riley |
|
From: Mark M. <mm...@cs...> - 2011-05-04 18:52:25
|
This change is already in the CVS repository. The only difference between the repository and the latest official release is this:
--- /Users/mmoll/Downloads/bib2html/bib2html.pl 2008-01-17 08:33:29.000000000 -0600
+++ bib2html.pl 2009-05-30 13:45:48.000000000 -0500
@@ -462,10 +462,6 @@
# remove extra braces
while ($str =~ s/\{(.*?)\}/$1/g) {}
- # convert spaces
- $str =~ s/~/ /g;
- $str =~ s/\\ / /g;
-
# now replace \char"7E with ~ (should only be used in urls
$str =~ s/\\char\"7E\s*/~/g;
@@ -569,6 +565,11 @@
$str =~ s/\\\^U/Û/g;
$str =~ s/\\\~U/Ũ/g;
$str =~ s/\\\"U/Ü/g;
+
+ # convert spaces
+ $str =~ s/~/ /g;
+ $str =~ s/\\ / /g;
+
return $str;
}
On May 4, 2011, at 11:39 AM, Patrick Riley wrote:
> Hi Ricardo,
>
> Thank you for the bug report. Mark Moll is the current maintainer and
> I have CC'd him.
>
> On Wed, May 4, 2011 at 6:45 AM, Santiago-mozos, Ricardo
> <ric...@nu...> wrote:
>> Dear Patrick,
>>
>>
>>
>> Thanks for writing bib2html.pl and making it available.
>>
>> I have found a minor bug on it. The bug is the incorrect translation of \~n
>> to ñ
>>
>> Even the code is there for doing the translation, it does not work because
>> you remove spaces "~" before reaching the conversion.
>>
>> I propose you a work-around that is making the space removal at the end of
>> the function after have checking for conversions that use "~"
>>
>>
>>
>> Thanks again and best regards,
>>
>> Ricardo.
>
>
>
> --
> Patrick Riley
>
--
Mark Moll
|
|
From: Patrick R. <pf...@cs...> - 2010-04-25 18:05:06
|
Glad you like them! If you have any questions about bib2html, there's a user's list and Mark Moll is now the primary developer. On Sun, Apr 25, 2010 at 8:57 AM, Graeme Bell <G....@mu...> wrote: > Dear Patrick, > > Thanks for bib2html and the todo package. I think they will come in very handy in future! > > Graeme. -- Patrick Riley |
|
From: Jason <bua...@gm...> - 2009-10-25 21:44:03
|
Thanks, Patrick. I think I figured out what the problem is.
It seems that "." in "cs.uol" caused the problem in bib2html, and changing
it to "-" prevented the trouble.
Jason
Patrick Riley wrote:
> Hi Jason,
>
> I'm glad you like the tool. Mark Moll has now taken over maintenance
> of this, so maybe the two of you should talk about this fix.
>
> On Fri, Oct 23, 2009 at 2:22 PM, Jason <bua...@gm...> wrote:
>> Hi Patrick,
>>
>> I found your bib2html tool very handy and useful. But I have the following
>> things in my bib file that bib2html doesn't seem to be able to process
>> while bibtex is okay with it:
>>
>> @string{cs = "Department of Computer Science"}
>> @string{uol = "University of Liverpool"}
>> @string{cs.uol = cs # ", " # uol}
>>
>> That's I used nested named strings.
>>
>> I wonder if I would need to use a different format for bib2html to deal with
>> it, or can you change the code a little bit to allow this? I don't know much
>> about Perl, and understanding the regex stuff is a headache for me.
>>
>> Thank you for your help!
>>
>> Jason
>>
>
>
>
|
|
From: Patrick R. <pat...@gm...> - 2009-10-24 17:35:19
|
Hi Jason,
I'm glad you like the tool. Mark Moll has now taken over maintenance
of this, so maybe the two of you should talk about this fix.
On Fri, Oct 23, 2009 at 2:22 PM, Jason <bua...@gm...> wrote:
> Hi Patrick,
>
> I found your bib2html tool very handy and useful. But I have the following
> things in my bib file that bib2html doesn't seem to be able to process
> while bibtex is okay with it:
>
> @string{cs = "Department of Computer Science"}
> @string{uol = "University of Liverpool"}
> @string{cs.uol = cs # ", " # uol}
>
> That's I used nested named strings.
>
> I wonder if I would need to use a different format for bib2html to deal with
> it, or can you change the code a little bit to allow this? I don't know much
> about Perl, and understanding the regex stuff is a headache for me.
>
> Thank you for your help!
>
> Jason
>
--
Patrick Riley
|
|
From: Mark M. <mm...@cs...> - 2009-05-30 19:13:42
|
Hi Pat & Matthijs,
The fix is checked into the repository.
On May 30, 2009, at 1:25 PM, Patrick Riley wrote:
> Thank you Matthijs!
>
> Mark Moll is now the bib2html maintainer, so I'll leave it to him to
> incorporate your patch.
>
> On Mon, May 25, 2009 at 2:23 PM, Matthijs Spaan <mtj...@is...
> > wrote:
>> Dear Patrick,
>>
>> thanks for writing bib2html, I've been a happy customer for many
>> years now.
>>
>> I applied a small bugfix to the latest version, for formatting
>> names like
>> João. The ~ in {\~a} would get replaced by instead of expanded
>> correctly. The easy fix is to move these lines:
>>
>> # convert spaces
>> $str =~ s/~/ /g;
>> $str =~ s/\\ / /g;
>>
>> to the end of the htmlfm_from_tex function.
>>
>> Cheers,
>> --
>> [ Matthijs Spaan ] [ http://www.isr.ist.utl.pt/~mtjspaan
>> ]
>>
>
>
>
> --
> Patrick Riley
>
--
Mark
|
|
From: Patrick R. <pat...@gm...> - 2009-05-30 18:26:05
|
Thank you Matthijs!
Mark Moll is now the bib2html maintainer, so I'll leave it to him to
incorporate your patch.
On Mon, May 25, 2009 at 2:23 PM, Matthijs Spaan <mtj...@is...> wrote:
> Dear Patrick,
>
> thanks for writing bib2html, I've been a happy customer for many years now.
>
> I applied a small bugfix to the latest version, for formatting names like
> João. The ~ in {\~a} would get replaced by instead of expanded
> correctly. The easy fix is to move these lines:
>
> # convert spaces
> $str =~ s/~/ /g;
> $str =~ s/\\ / /g;
>
> to the end of the htmlfm_from_tex function.
>
> Cheers,
> --
> [ Matthijs Spaan ] [ http://www.isr.ist.utl.pt/~mtjspaan ]
>
--
Patrick Riley
|
|
From: Patrick R. <pat...@gm...> - 2007-06-24 16:23:20
|
Please use the bib2html-users list for questions
It appears that the saxon version you have doesn't like some of the
options. Can you get the actual saxon command line that is running?
Add a "debug: 1" to your conf file to get extra debug output.
On 6/19/07, Pooyan Fazli <po...@cs...> wrote:
> Hi Patrick
>
> First let me thank you for your efforts for developing Bib2HTML. I have a
> problem
> running it on my sample BIB database, It doesn't convert the XML file to
> HTML.
> I am using Saxon 6.5.5, JDK 1.5 and WindowsXP.
>
> The error is as below:
>
> ____________________________________________________________________
>
> C:\Documents and
> Settings\Administrator\Desktop\Pooyan\BIB2HTML\bib2html
> >bib2html.pl sample.bib
> This is bib2html v0.94 (date: March 11, 2006)
> C:\Documents and
> Settings\Administrator\Desktop\Pooyan\BIB2HTML\bib2html
> at C:\Documents and
> Settings\Administrator\Desktop\Pooyan\BIB2HTML\bib2
> html\bib2html.pl line 1844, <CONFFH> line 198.
> Reading bib files:
> Merging duplicates... 0 duplicates removed
> Finding all authors: Done
> Generating detail pages:
> Generating bibtex files:
> Generating list pages: ...
> Transforming XML files to HTML: Bad param=value pair on command line
> SAXON 6.5.5 from Michael Kay
> Usage: java com.icl.saxon.StyleSheet [options] source-doc style-doc
> {param=valu
> e}...
> Options:
> -a Use xml-stylesheet PI, not style-doc argument
> -ds Use standard tree data structure
> -dt Use tinytree data structure (default)
> -o filename Send output to named file or directory
> -m classname Use specified Emitter class for xsl:message output
> -r classname Use specified URIResolver class
> -t Display version and timing information
> -T Set standard TraceListener
> -TL classname Set a specific TraceListener
> -u Names are URLs not filenames
> -w0 Recover silently from recoverable errors
> -w1 Report recoverable errors and continue (default)
> -w2 Treat recoverable errors as fatal
> -x classname Use specified SAX parser for source file
> -y classname Use specified SAX parser for stylesheet
> -? Display this message
> Transformation of xml file 'C:\Documents and
> Settings\Administrator\Desktop\/sor
> t_date.xml' failed at C:\Documents and
> Settings\Administrator\Desktop\Pooyan\BIB2HTML\bib2html\bib2html.pl
> line 2155, <FH> line 160.
>
> ____________________________________________________
>
> I have also tried these in my config file:
>
> xsl_transform_cmdline: java -jar C:\Saxon\saxon.jar -o %OUTFN %INFN %XSLFN
> xsl_transform_cmdline: java com.icl.saxon.StyleSheet C:\Saxon\saxon.jar -o
> %OUTFN %INFN %XSLFN
> xsl_transform_cmdline: java -jar C:\Saxon\saxon.jar -o %INFN %XSLFN
> xsl_transform_cmdline: java com.icl.saxon.StyleSheet C:\Saxon\saxon.jar -o
> %OUTFN %INFN %XSLFN
>
>
> Thanks for your consideration
>
> Best
> --Pooyan
>
>
>
>
>
--
Patrick Riley
|
|
From: Patrick R. <pat...@gm...> - 2006-09-18 00:15:02
|
Hmm. I haven't run into that error before. Can you try getting the latest version from: https://sourceforge.net/projects/bib2html/ and see if you still have the problem? On 9/10/06, Nikunj Oza <oz...@em...> wrote: > Dear Patrick: > > Thank you for writing this program. A colleague of mine here at NASA > gave me this. Have you run into the error message depicted below? I > can't believe that your perl script has such a basic bug---I must have > screwed up something, but it won't tell me what. > > Thank you for any help that you can provide. > > Best wishes, > Nikunj Oza > > > ./bib2html.pl oza.bib > This is bib2html v0.91 (date: August 23, 2004) > Reading bib files: ................. > Merging duplicates... 0 duplicates removed > Finding all authors: Done > Generating detail pages: ................Modification of non-creatable > array value attempted, subscript -2 at ./bib2html.pl line 567, <FH> line > 342. > > -- > -------------------------------------- > Nikunj C. Oza, Ph.D. Tel: (650)604-2978 > Research Scientist Fax: (650)604-4036 > NASA Ames Research Center E-mail: oz...@em... > Mail Stop 269-3 Web: http://ic.arc.nasa.gov/people/oza > Moffett Field, CA 94035-1000 > USA > > -- Patrick Riley |