Changeset 14947


Ignore:
Timestamp:
06/01/12 20:16:19 (12 months ago)
Author:
ArthurClemens
Message:

Item11919: Workaround for MacOSX fails on other platforms

Location:
trunk/BibtexPlugin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BibtexPlugin/data/System/BibtexPlugin.txt

    r14855 r14947  
    387387|  Release: | %$RELEASE% | 
    388388|  Change History: | <!-- versions below in reverse order -->&nbsp; | 
     389|  01 Jun 2012: | (v.2.2.1) Fix Foswiki:Tasks.Item11919 Workaround for !MacOSX fails on other platforms. | 
    389390|  18 May 2012: | (v.2.2.0) added Configure setting to specify the tmp directory. | 
    390391|  12 May 2012: | (v2.1) various bug fixes; path settings moved to Configure; made available on foswiki.org | 
  • trunk/BibtexPlugin/lib/Foswiki/Plugins/BibtexPlugin.pm

    r14855 r14947  
    2121 
    2222our $VERSION           = '$Rev: 14850 (2012-05-18) $'; 
    23 our $RELEASE           = '2.2.0'; 
     23our $RELEASE           = '2.2.1'; 
    2424our $pluginName        = 'BibtexPlugin'; 
    2525our $NO_PREFS_IN_TOPIC = 0; 
  • trunk/BibtexPlugin/lib/Foswiki/Plugins/BibtexPlugin/Config.spec

    r14855 r14947  
    3737$Foswiki::cfg{Plugins}{BibtexPlugin}{styleurl} = '$Foswiki::cfg{PubUrlPath}/$Foswiki::cfg{SystemWebName}/BibtexPlugin/style.css'; 
    3838 
    39 # **PERL** 
     39# **PERL H** 
    4040# This setting is required to enable executing the cgibibsearch script from the bin directory 
    4141$Foswiki::cfg{SwitchBoard}{bibsearch} = { 
  • trunk/BibtexPlugin/tools/bibtex_render.sh

    r14855 r14947  
    3333# http://www.lri.fr/~filliatr/bibtex2html/ 
    3434# A workaround consists in telling bibtex2html to use the current directory for temporary files, using the following shell command before running bibtex2html. 
    35 # 
    36 # Note Arthur Clemens: this seems to work well on Linux as well, so $os commented out. 
    37 # 
    38 #if [ "$os" == "darwin" ]; then 
     35if [ "$os" == "darwin" ]; then 
    3936        export TMPDIR=. 
    40 #fi 
     37fi 
    4138 
    4239# execute 
Note: See TracChangeset for help on using the changeset viewer.