Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.

Commit 6e2296d

Browse files
committed
Merge branch 'release/0.15.5'
2 parents 44c3740 + 1755a4b commit 6e2296d

File tree

6 files changed

+42
-9
lines changed

6 files changed

+42
-9
lines changed

CHANGELOG

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1+
CHANGELOG
2+
=========
3+
4+
2018-10-15 v0.15.5
5+
6+
* Update badges in README (Taeber Rapczak)
7+
* Merge pull request #230 from PFWhite/feature/rediRunDebugDocs (Christopher P. Barnes)
8+
* Update redi-run-debug.md (Patrick White)
9+
* added docs for debuging redi runs (Patrick White)
10+
* Update README-example-files.md (Michael Buchholz)
11+
* Improve configuration examples for use in vagrant installs (Roy Keyes)
12+
* Merge pull request #212 from ctsit/develop (Nicholas Rejack)
13+
* Merge pull request #211 from nrejack/fix_getemrdata_unittest (Nicholas Rejack)
14+
* Fixing broken unittest TestGetEMRData. Skipping problematic test. See issue #210. (Nicholas Rejack)
15+
16+
117
2016-07-12 v0.15.4
2-
18+
319
* Updating .gitignore. (Nicholas Rejack)
420
* Adding new test to verify behavior when keep_all_events is set to True. (Nicholas Rejack)
521
* Adding new logic to properly update event tree when keep_all_events is True. (Nicholas Rejack)
@@ -9,6 +25,7 @@
925
* Adding setuptools_scm to install_requires in setup.py. (Nicholas Rejack)
1026
* fixed merge messages left in TODO (Christopher Barnes)
1127

28+
1229
2016-05-19 v0.15.3
1330

1431
* modify TestSortElementTree to test for new commandline switch for keeping all results that bypasses the compress events functions (Christopher Barnes)
@@ -47,13 +64,15 @@
4764
* cleanup -K keep all switch (Christopher Barnes)
4865
* add switch to keep all results (Christopher Barnes)
4966

67+
5068
2016-03-17 v0.15.2
5169

5270
* Summary: Hotfix to fix logging behavior when input file is not present.
5371

5472
* Fixing check for input file in redi.py. Now log the file's location only if it's there. (Nicholas Rejack)
5573
* Update README.md (Nicholas Rejack)
5674

75+
5776
2016-03-17 v0.15.1
5877

5978
* Summary: RED-I now accepts a file as input from the command line, using -f FILENAME.

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
RED-I Project
22
=============
33

4-
<a href="https://zenodo.org/badge/latestdoi/4064/ctsit/redi"><img src="https://zenodo.org/badge/4064/ctsit/redi.svg" alt="10.5281/zenodo.47793"><a>
4+
[![10.5281/zenodo.47793](https://zenodo.org/badge/4064/ctsit/redi.svg)](http://ufl.to/ctsit)
55
[![Travis CI](https://api.travis-ci.org/ctsit/redi.svg?branch=master)](https://api.travis-ci.org/ctsit/redi.svg?branch=master)
6-
[![Version](https://pypip.in/v/redi/badge.png)](https://pypip.in/v/redi/badge.png)
7-
[![Coverage Status Master](https://coveralls.io/repos/ctsit/redi/badge.svg?branch=master)](https://coveralls.io/r/ctsit/redi?branch=master)
8-
[![Coverage Status Develop](https://coveralls.io/repos/ctsit/redi/badge.svg?branch=develop)](https://coveralls.io/r/ctsit/redi?branch=develop)
9-
[![Downloads](https://pypip.in/d/redi/badge.png)](https://pypip.in/d/redi/badge.png)
6+
[![PyPI version](https://badge.fury.io/py/redi.svg)](https://badge.fury.io/py/redi)
7+
[![Coverage Status Develop](https://coveralls.io/repos/ctsit/redi/badge.svg?branch=master)](https://coveralls.io/r/ctsit/redi?branch=master)
108

119

1210
Introduction
@@ -25,8 +23,9 @@ investigator with feedback on upload success in the form of summary
2523
reporting of the data upload process.
2624

2725
You can view a presentation of the RED-I tool in action on
28-
[youtube](https://www.youtube.com/watch?v=0x04y5SNPL8&feature=youtu.be)
26+
[youtube](https://www.youtube.com/watch?v=0x04y5SNPL8&feature=youtu.be).
2927

3028
For the official documentation please refer to
3129
[http://redi.readthedocs.io](http://redi.readthedocs.io) or
3230
[RED-I Project](https://github.com/ctsit/redi/blob/master/docs/about.rst).
31+

config-example.tgz

19.4 KB
Binary file not shown.

config-example/config-example.tgz

9.99 MB
Binary file not shown.

docs/redi-run-debug.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# So you didn't get the report? #
2+
3+
## Steps to debug ##
4+
5+
#### 1 check config.ini ####
6+
If the email setting is False then it wont have emailed, the run may have worked.
7+
8+
#### 2 check for reports ####
9+
Go to the project root. Run `ls -alh`. See when things were modified. Check to see if there are new files added or changed a little after the run should have run.
10+
11+
#### 3 Check the cron.d ####
12+
Go and look at the files in `/etc/cron.d`. See if the command is scheduled to run at the time you think.
13+
14+
#### 4 Check mail ####
15+
When cron jobs error they send a local mail to the root user. The `redi` user is forwarded these mails. You can switch users to `redi` by running `sudo su - redi`. To view the mails use the `mutt` command.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
setup(
2020
name='redi',
2121
use_scm_version=True,
22-
author='https://www.ctsi.ufl.edu/research/study-development/informatics-consulting/',
22+
author='CTS-IT at the University of Florida',
2323
author_email='[email protected]',
2424
packages=find_packages(exclude=['test']),
2525
include_package_data=True,
2626
package_data={
2727
'redi': ['utils/*.xsl', 'utils/*.xsd']
2828
},
2929
url='https://github.com/ctsit/redi',
30-
download_url = 'https://github.com/ctsit/redi/releases/tag/0.15.4',
30+
download_url = 'https://github.com/ctsit/redi/releases/tag/0.15.5',
3131
keywords = ['EMR', 'EHR', 'REDCap', 'Clinical Data'],
3232
license='BSD 3-Clause',
3333
description='REDCap Electronic Data Importer',

0 commit comments

Comments
 (0)