Moved the Agents into their own repo. Kept the agent.pl just for reference
This commit is contained in:
parent
22381be29a
commit
8680a02b13
18132 changed files with 0 additions and 2569420 deletions
|
|
@ -1,288 +0,0 @@
|
|||
<?php
|
||||
|
||||
// -------------------------------------------------------------------------------
|
||||
// | net2ftp: a web based FTP client |
|
||||
// | Copyright (c) 2003-2013 by David Gartner |
|
||||
// | |
|
||||
// | This program is free software; you can redistribute it and/or |
|
||||
// | modify it under the terms of the GNU General Public License |
|
||||
// | as published by the Free Software Foundation; either version 2 |
|
||||
// | of the License, or (at your option) any later version. |
|
||||
// | |
|
||||
// -------------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// **************************************************************************************
|
||||
// **************************************************************************************
|
||||
// ** **
|
||||
// ** **
|
||||
|
||||
function net2ftp_module_sendHttpHeaders() {
|
||||
|
||||
// --------------
|
||||
// This function sends HTTP headers
|
||||
// --------------
|
||||
|
||||
global $net2ftp_settings, $net2ftp_globals, $net2ftp_messages, $net2ftp_result;
|
||||
|
||||
if ($net2ftp_globals["state2"] != "") {
|
||||
|
||||
// Get file
|
||||
$text = ftp_readfile("", $net2ftp_globals["directory"], $net2ftp_globals["entry"]);
|
||||
if ($net2ftp_result["success"] == false) { return false; }
|
||||
|
||||
// Send headers
|
||||
header("Content-Type: " . getContentType($net2ftp_globals["entry"]));
|
||||
header("Content-Disposition: inline; filename=\"" . $net2ftp_globals["entry"] . "\"");
|
||||
|
||||
// Send file
|
||||
echo $text;
|
||||
flush();
|
||||
|
||||
// Close the connection
|
||||
header("Connection: close");
|
||||
|
||||
}
|
||||
|
||||
} // end net2ftp_sendHttpHeaders
|
||||
|
||||
// ** **
|
||||
// ** **
|
||||
// **************************************************************************************
|
||||
// **************************************************************************************
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// **************************************************************************************
|
||||
// **************************************************************************************
|
||||
// ** **
|
||||
// ** **
|
||||
|
||||
function net2ftp_module_printJavascript() {
|
||||
|
||||
// --------------
|
||||
// This function prints Javascript code and includes
|
||||
// --------------
|
||||
|
||||
// global $net2ftp_settings, $net2ftp_globals;
|
||||
|
||||
// Code
|
||||
// echo "<script type=\"text/javascript\"><!--\n";
|
||||
// echo "//--></script>\n";
|
||||
|
||||
// Include
|
||||
// echo "<script type=\"text/javascript\" src=\"". $net2ftp_globals["application_rootdir_url"] . "/modules/view/view.js\"></script>\n";
|
||||
|
||||
} // end net2ftp_printJavascript
|
||||
|
||||
// ** **
|
||||
// ** **
|
||||
// **************************************************************************************
|
||||
// **************************************************************************************
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// **************************************************************************************
|
||||
// **************************************************************************************
|
||||
// ** **
|
||||
// ** **
|
||||
|
||||
function net2ftp_module_printCss() {
|
||||
|
||||
// --------------
|
||||
// This function prints CSS code and includes
|
||||
// --------------
|
||||
|
||||
global $net2ftp_settings, $net2ftp_globals;
|
||||
|
||||
// Include
|
||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"". $net2ftp_globals["application_rootdir_url"] . "/skins/" . $net2ftp_globals["skin"] . "/css/main.css.php?ltr=" . __("ltr") . "&image_url=" . urlEncode2($net2ftp_globals["image_url"]) . "\" />\n";
|
||||
|
||||
// CSS for Luminous syntax highlighter
|
||||
$filename_extension = get_filename_extension($net2ftp_globals["entry"]);
|
||||
if (getFileType($net2ftp_globals["entry"]) == "IMAGE") { $filetype = "image"; }
|
||||
elseif ($filename_extension == "swf") { $filetype = "flash"; }
|
||||
else { $filetype = "text"; }
|
||||
if ($filetype == "text") {
|
||||
luminous::set("cache", FALSE);
|
||||
luminous::set("format", "html");
|
||||
luminous::set("line-numbers", FALSE);
|
||||
luminous::set("relative-root", $net2ftp_globals["application_rootdir_url"] . "/plugins/luminous/");
|
||||
// luminous::set("theme", "luminous_dark");
|
||||
echo luminous::head_html();
|
||||
}
|
||||
|
||||
} // end net2ftp_printCssInclude
|
||||
|
||||
// ** **
|
||||
// ** **
|
||||
// **************************************************************************************
|
||||
// **************************************************************************************
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// **************************************************************************************
|
||||
// **************************************************************************************
|
||||
// ** **
|
||||
// ** **
|
||||
|
||||
function net2ftp_module_printBodyOnload() {
|
||||
|
||||
// --------------
|
||||
// This function prints the <body onload="" actions
|
||||
// --------------
|
||||
|
||||
// global $net2ftp_settings, $net2ftp_globals, $net2ftp_messages, $net2ftp_result;
|
||||
// echo "";
|
||||
|
||||
} // end net2ftp_printBodyOnload
|
||||
|
||||
// ** **
|
||||
// ** **
|
||||
// **************************************************************************************
|
||||
// **************************************************************************************
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// **************************************************************************************
|
||||
// **************************************************************************************
|
||||
// ** **
|
||||
// ** **
|
||||
|
||||
function net2ftp_module_printBody() {
|
||||
|
||||
// --------------
|
||||
// This function prints the login screen
|
||||
// --------------
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Global variables
|
||||
// -------------------------------------------------------------------------
|
||||
global $net2ftp_settings, $net2ftp_globals, $net2ftp_messages, $net2ftp_result;
|
||||
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Variables
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
$filename_extension = get_filename_extension($net2ftp_globals["entry"]);
|
||||
|
||||
// ------------------------
|
||||
// Set the state2 variable depending on the file extension !!!!!
|
||||
// ------------------------
|
||||
if (getFileType($net2ftp_globals["entry"]) == "IMAGE") { $filetype = "image"; }
|
||||
elseif ($filename_extension == "swf") { $filetype = "flash"; }
|
||||
else { $filetype = "text"; }
|
||||
|
||||
// Form name, back and forward buttons
|
||||
$formname = "ViewForm";
|
||||
$back_onclick = "document.forms['" . $formname . "'].state.value='browse';document.forms['" . $formname . "'].state2.value='main';document.forms['" . $formname . "'].submit();";
|
||||
|
||||
// Next screen
|
||||
$nextscreen = 2;
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Text
|
||||
// -------------------------------------------------------------------------
|
||||
if ($filetype == "text") {
|
||||
|
||||
// Title
|
||||
$title = __("View file %1\$s", $net2ftp_globals["entry"]);
|
||||
|
||||
// ------------------------
|
||||
// luminous_text
|
||||
// ------------------------
|
||||
setStatus(2, 10, __("Reading the file"));
|
||||
$luminous_text = ftp_readfile("", $net2ftp_globals["directory"], $net2ftp_globals["entry"]);
|
||||
if ($net2ftp_result["success"] == false) { return false; }
|
||||
|
||||
// ------------------------
|
||||
// luminous_language
|
||||
// ------------------------
|
||||
$luminous_language = "";
|
||||
|
||||
$list_language_extensions = array(
|
||||
// List the most popular languages first for speed reasons
|
||||
'html' => array('html', 'htm'),
|
||||
'javascript' => array('js'),
|
||||
'css' => array('css'),
|
||||
'php' => array('php', 'php5', 'phtml', 'phps'),
|
||||
'perl' => array('pl', 'pm', 'cgi'),
|
||||
'sql' => array('sql'),
|
||||
'java' => array('java'),
|
||||
// Other languages in alphabetic order
|
||||
'ada' => array('a', 'ada', 'adb', 'ads'),
|
||||
'as' => array('as'),
|
||||
'asp' => array('asp'),
|
||||
'cpp' => array('cpp'),
|
||||
'csharp' => array('csharp'),
|
||||
'diff' => array('diff'),
|
||||
'go' => array('go'),
|
||||
'latex' => array('latex'),
|
||||
'matlab' => array('matlab'),
|
||||
'python' => array('py'),
|
||||
'rails' => array('rails'),
|
||||
'ruby' => array('ruby'),
|
||||
'sql' => array('sql'),
|
||||
'vb' => array('bas'),
|
||||
'vim' => array('vim'),
|
||||
'xml' => array('xml')
|
||||
);
|
||||
|
||||
while(list($language, $extensions) = each($list_language_extensions)) {
|
||||
if (in_array($filename_extension, $extensions)) {
|
||||
$luminous_language = $language;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// ------------------------
|
||||
// Call luminous
|
||||
// ------------------------
|
||||
setStatus(4, 10, __("Parsing the file"));
|
||||
|
||||
$luminous_text = luminous::highlight($luminous_language, $luminous_text, FALSE);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Image
|
||||
// -------------------------------------------------------------------------
|
||||
elseif ($filetype == "image") {
|
||||
$title = __("View image %1\$s", htmlEncode2($net2ftp_globals["entry"]));
|
||||
$image_url = printPHP_SELF("view");
|
||||
$image_alt = __("Image") . $net2ftp_globals["entry"];
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Flash movie
|
||||
// -------------------------------------------------------------------------
|
||||
elseif ($filetype == "flash") {
|
||||
$title = __("View Macromedia ShockWave Flash movie %1\$s", htmlEncode2($net2ftp_globals["entry"]));
|
||||
$flash_url = printPHP_SELF("view");
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Print the output
|
||||
// -------------------------------------------------------------------------
|
||||
require_once($net2ftp_globals["application_skinsdir"] . "/" . $net2ftp_globals["skin"] . "/manage.template.php");
|
||||
|
||||
|
||||
} // End net2ftp_printBody
|
||||
|
||||
// ** **
|
||||
// ** **
|
||||
// **************************************************************************************
|
||||
// **************************************************************************************
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue