Skip to content

Commit

Permalink
* Changed meta information
Browse files Browse the repository at this point in the history
* Changed wording from Piwik to Mamoto
  • Loading branch information
uf501ap authored and uf501ap committed Jun 20, 2018
1 parent 5d13041 commit e169d99
Show file tree
Hide file tree
Showing 5 changed files with 347 additions and 345 deletions.
20 changes: 11 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Changelog

* 0.1.0 Original release of the plugin (stable, 2016-07-04)
* 0.1.4 Added resources (stable, 2016-10-06)
* Resources (JavaScript example and SoSci Survey template) were added to integrate a selective exposure experiment into a survey
* A reference to the resources was added in the README, in the plugin description, and in the plugin itself
* 0.1.7 Compatibility with Piwik 3.x
* Changes report to appear in Piwik 3.x
* Shorten variable names for page times to comply with SPSS (max. 64 characters)
# Changelog

* 0.1.0 Original release of the plugin (stable, 2016-07-04)
* 0.1.4 Added resources (stable, 2016-10-06)
* Resources (JavaScript example and SoSci Survey template) were added to integrate a selective exposure experiment into a survey
* A reference to the resources was added in the README, in the plugin description, and in the plugin itself
* 0.1.7 Compatibility with Piwik 3.x
* Changes report to appear in Piwik 3.x
* Shorten variable names for page times to comply with SPSS (max. 64 characters)
* 0.1.8 Cleaning
* Removed two undefined variable issues that triggered error log entries
72 changes: 36 additions & 36 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
# ExposureResearchTools
Exposure Research Tools (Piwik Plugin)

This plugin restructures data collected via Piwik to be used in Selective Exposure research.
It extracts an iditification variable from the first visit's GET request to allow merging survey data with observational data from Piwik.

The tools adds a menu item "Research Tools" -> "Export Visits" to the Piwik menu.

## Background details

For a detailed discussion of the tool and its application in selective exposure research, please refer to our paper.

Leiner, D. J., Scherr, S., & Bartsch, A. (2016). Using Open-Source Tools to Measure Online Selective Exposure in Naturalistic Settings. Communication Methods and Measures, 10(4), 199–216. [doi:10.1080/19312458.2016.1224825](http://doi.org/10.1080/19312458.2016.1224825)

## Resources

We have prepared a template for [SoSci Survey](http://www.soscisurvey.com). The template ...

* opens a pop-up window with the stimulus (that should be monitored by Piwik to collect selective exposure data)
* stores the times when the pop-up was opened and closed (to compute the browsing time)
* closes the pop-up after a predefined time (optionally)
* supports pre and post surveys

Using the template:

* [Download the template](https://raw.githubusercontent.com/BurninLeo/ExposureResearchTools/master/resources/sosci.template.xml) -> Right-click + Save as
* Register an account on [SoSci Survey](http://www.soscisurvey.com) and create a new survey project
* Go to **Survey Project** -> **Project Settings** -> **Import Project or Questions**
* Select the XML file you just downloaded and import
* Go to **Compose Questionnaire** and try with the green play button

Opening a pop-up in a different survey software:

* There is a [JavaScript Example](https://github.com/BurninLeo/ExposureResearchTools/blob/master/resources/JavaScript%20Sample.txt) that could be used on other software that SoSci Survey.

**Note:** To collect selective exposure data, yo need a Piwik installation and must edit the stimulus website to report to Piwik. Please read the instructions in the paper (Leiner et al., forthcoming) for details.
# ExposureResearchTools
Exposure Research Tools (Matomo Plugin)

This plugin restructures data collected via Matomo (formerly known as Piwik) to be used in Selective Exposure research.
It extracts an iditification variable from the first visit's GET request to allow merging survey data with observational data from Matomo.

The tools adds a menu item "Research Tools" -> "Export Visits" to the Matomo menu.

## Background details

For a detailed discussion of the tool and its application in selective exposure research, please refer to our paper.

Leiner, D. J., Scherr, S., & Bartsch, A. (2016). Using Open-Source Tools to Measure Online Selective Exposure in Naturalistic Settings. Communication Methods and Measures, 10(4), 199–216. [doi:10.1080/19312458.2016.1224825](http://doi.org/10.1080/19312458.2016.1224825)

## Resources

We have prepared a template for [SoSci Survey](http://www.soscisurvey.com). The template ...

* opens a pop-up window with the stimulus (that should be monitored by Matomo to collect selective exposure data)
* stores the times when the pop-up was opened and closed (to compute the browsing time)
* closes the pop-up after a predefined time (optionally)
* supports pre and post surveys

Using the template:

* [Download the template](https://raw.githubusercontent.com/BurninLeo/ExposureResearchTools/master/resources/sosci.template.xml) -> Right-click + Save as
* Register an account on [SoSci Survey](http://www.soscisurvey.com) and create a new survey project
* Go to **Survey Project** -> **Project Settings** -> **Import Project or Questions**
* Select the XML file you just downloaded and import
* Go to **Compose Questionnaire** and try with the green play button

Opening a pop-up in a different survey software:

* There is a [JavaScript Example](https://github.com/BurninLeo/ExposureResearchTools/blob/master/resources/JavaScript%20Sample.txt) that could be used on other software that SoSci Survey.

**Note:** To collect selective exposure data, yo need a Matomo installation and must edit the stimulus website to report to Matomo. Please read the instructions in the paper (Leiner et al., forthcoming) for details.
36 changes: 18 additions & 18 deletions Reports/Base.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\ExposureResearchTools\Reports;

use Piwik\Plugin\Report;

abstract class Base extends Report
{

}

?>
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\ExposureResearchTools\Reports;

use Piwik\Plugin\Report;

abstract class Base extends Report
{

}

?>
Loading

0 comments on commit e169d99

Please sign in to comment.