1<?php 2if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../../'); 3define('DOKU_DISABLE_GZIP_OUTPUT', 1); 4require_once(DOKU_INC.'inc/init.php'); 5session_write_close(); 6 7/** @var action_plugin_nsexport_ajax $plugin */ 8$plugin = plugin_load('action','nsexport_ajax'); 9$packer = $plugin->getPacker(); 10if ($packer !== null) { 11 $packer->get_pack($_REQUEST['key']); 12} 13