This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NEW | |
| ``disambiguate-add-year-suffix`` [Step (4)] | |
| If set to "true" ("false" is the default), an alphabetic year-suffix is | |
| added to ambiguous cites (e.g. "Doe 2007, Doe 2007" becomes "Doe 2007a, Doe | |
| 2007b") and to their corresponding bibliographic entries. The assignment of | |
| the year-suffixes follows the order of the bibliographies entries, and | |
| additional letters are used once "z" is reached ("z", "aa", "ab", ..., "az", | |
| "ba", etc.). By default the year-suffix is appended to the cite, and to the | |
| first year rendered through ``cs:date`` in the bibliographic entry, but its |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Config for Nginx to act as a front-end for Riak | |
| # The main goal is to proxy all GETs directly to Riak, and disallow anything else (POST, PUT, etc) | |
| # Also, disallow use of the map/reduce query links (i.e. /riak/bucket/key/_,_,_) | |
| # Config is in /etc/nginx/sites-available/default or somewhere like that | |
| # Set up load-balancing to send requests to all nodes in the Riak cluster | |
| # Replace these IPs/ports with the locations of your Riak nodes | |
| upstream riak_hosts { | |
| server 127.0.0.1:8098; |
NewerOlder