summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-09-06 13:16:37 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-09-06 13:16:37 -0400
commita7c2cdb0c01185663834a00cee09b046d291de37 (patch)
tree6983d65c03ef43dd29a0e514f4c3aed667ca521e
parentb5abac0767b3ac4278ba21dfc2f423049695e594 (diff)
removes files no longer needed
-rw-r--r--ajax/exportopml.php127
-rw-r--r--js/jquery.onscreen.js22
2 files changed, 0 insertions, 149 deletions
diff --git a/ajax/exportopml.php b/ajax/exportopml.php
deleted file mode 100644
index 95558a5b4..000000000
--- a/ajax/exportopml.php
+++ /dev/null
@@ -1,127 +0,0 @@
-<?php
-/**
-* ownCloud - News app
-*
-* @author Alessandro Cosentino
-* Copyright (c) 2012 - Alessandro Cosentino <cosenal@gmail.com>
-*
-* This file is licensed under the Affero General Public License version 3 or later.
-* See the COPYING-README file
-*
-*/
-
-// Check if we are a user
-OCP\JSON::checkLoggedIn();
-OCP\JSON::checkAppEnabled('news');
-OCP\JSON::callCheck();
-
-$l = OC_L10N::get('news');
-
-function bailOut($msg) {
- OCP\JSON::error(array('data' => array('message' => $msg)));
- OCP\Util::writeLog('news','ajax/importopml.php: '.$msg, OCP\Util::ERROR);
- exit();
-}
-
-if(!isset($_POST['path'])) {
- bailOut($l->t('No file path was submitted.'));
-}
-
-require_once 'news/opmlparser.php';
-
-$raw = file_get_contents($_POST['path']);
-
-try {
- $parsed = OPMLParser::parse($raw);
-} catch (Exception $e) {
- bailOut($e->getMessage());
-}
-
-if ($parsed == null) {
- bailOut($l->t('An error occurred while parsing the file.'));
-}
-
-
-$data = $parsed->getData();
-
-function createFeed($feedurl, $folderid) {
- $feedmapper = new OCA\News\FeedMapper();
- $feedid = $feedmapper->findIdFromUrl($feedurl);
-
- $l = OC_L10N::get('news');
-
- if ($feedid === null) {
- $feed = OCA\News\Utils::fetch($feedurl);
-
- if ($feed !== null) {
- $feedid = $feedmapper->save($feed, $folderid);
- }
- } else {
- OCP\Util::writeLog('news','ajax/createfeed.php: Error adding feed: '. $feedurl, OCP\Util::ERROR);
- return false;
- }
-
- if($feed === null || !$feedid) {
- OCP\Util::writeLog('news','ajax/createfeed.php: Error adding feed: '. $feedurl, OCP\Util::ERROR);
- return false;
- }
-
- return true;
-}
-
-$countadded = 0;
-foreach($data as $collection) {
- if ($collection instanceOf Feed) {
- $feedurl = $collection->getUrl();
- $folderid = 0;
- if (createFeed($feedurl, $folderid)) {
- $countadded++;
- }
- }
-}
-
-
-// // $ch is the handler for the curl connection
-// function addFeed($feedurl, $folderid, $ch) {
-//
-// $data = array('feedurl' => $feedurl, 'folderid' => $folderid);
-// curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
-// $result = curl_exec($ch);
-// $status = curl_getinfo($ch);
-//
-// if($result === false) {
-// bailOut(curl_error($ch));
-// } else {
-// bailOut($status['http_code'] . $status['url']);
-// }
-// }
-
-// $url = OCP\Util::linkToAbsolute('news', 'ajax/createfeed.php');
-// $ch = curl_init($url);
-// if ($ch != false) {
-// curl_setopt($ch, CURLOPT_POST, TRUE);
-// curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
-// curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
-// curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
-// curl_setopt($ch, CURLOPT_USERPWD, 'acosenti:nopass');
-//
-//
-// foreach($data as $collection) {
-// if ($collection instanceOf OC_News_Feed) {
-// $feedurl = $collection->getUrl();
-// $folderid = 0;
-// addFeed($feedurl, $folderid, $ch);
-// }
-// }
-//
-// addFeed(null, null, $ch);
-// $result = curl_exec($ch);
-//
-// curl_close($ch);
-// } else {
-// bailOut($l->t('An error occurred while adding the feeds.'));
-// }
-
-OCP\JSON::success(array('data' => array('title'=>$parsed->getTitle(), 'count'=>$parsed->getCount(),
- 'countsuccess'=>$countadded)));
-
diff --git a/js/jquery.onscreen.js b/js/jquery.onscreen.js
deleted file mode 100644
index bbd1f3d4d..000000000
--- a/js/jquery.onscreen.js
+++ /dev/null
@@ -1,22 +0,0 @@
-// onScreen jQuery plugin v0.2.1
-// (c) 2011 Ben Pickles
-//
-// http://benpickles.github.com/onScreen
-//
-// Released under MIT license.
-;(function($) {
- $.expr[":"].onScreen = function(elem) {
- var $window = $(window)
- var viewport_top = $window.scrollTop()
- var viewport_height = $window.height()
- var viewport_bottom = viewport_top + viewport_height
- var $elem = $(elem)
- var top = $elem.offset().top
- var height = $elem.height()
- var bottom = top + height
-
- return (top >= viewport_top && top < viewport_bottom) ||
- (bottom > viewport_top && bottom <= viewport_bottom) ||
- (height > viewport_height && top <= viewport_top && bottom >= viewport_bottom)
- }
-})(jQuery);