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
$('a.reveal').click(function(event) { | |
event.preventDefault(); | |
var $div = $('<div>').addClass('reveal-modal').appendTo('body'), | |
$this = $(this); | |
$.get($this.attr('href'), function(data) { | |
return $div.empty().html(data).append('<a class="close-reveal-modal">×</a>').reveal(); | |
}); | |
}); |
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
require 'json' | |
require 'open-uri' | |
require 'csv' | |
require 'date' | |
# Github credentials to access your private project | |
USERNAME="myusername" | |
PASSWORD="mypassword" | |
# Project you want to export issues from |
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
<?php if (!defined('APPLICATION')) exit(); | |
// Define the plugin: | |
$PluginInfo['RssFeed'] = array( | |
'Description' => 'This simple plugin for new discussions and discussions updates', | |
'Version' => '1.0', | |
'RequiredApplications' => FALSE, | |
'RequiredTheme' => FALSE, | |
'RequiredPlugins' => FALSE, | |
'HasLocale' => TRUE, |
NewerOlder