From b6faed7363921a3563d8bf1e8c7bebe5cc79e2f7 Mon Sep 17 00:00:00 2001 From: physikerwelt Date: Wed, 24 Apr 2013 06:35:47 +0000 Subject: [PATCH] remove unused code This code is never used and will not be used in the future. Adressing the equation for search will be handled by the MathSearch extension. There will be a hook function to label the equations. Change-Id: Ia2149460134b361fb44f8ad85660793b1951d988 --- Math.hooks.php | 1 - MathRenderer.php | 19 ------------------- 2 files changed, 20 deletions(-) diff --git a/Math.hooks.php b/Math.hooks.php index a70da28..a1d9fea 100644 --- a/Math.hooks.php +++ b/Math.hooks.php @@ -50,7 +50,6 @@ class MathHooks { $renderer = MathRenderer::getRenderer( $content, $attributes, $mode ); - $renderer->setAnchorID( $parser->nextLinkID() ); // Add an ID for referencing the equation later on only used by LaTeXML $renderedMath = $renderer->render(); if ( $wgUseMathJax && $mode == MW_MATH_MATHJAX ) { $parser->getOutput()->addModules( array( 'ext.math.mathjax.enabler' ) ); diff --git a/MathRenderer.php b/MathRenderer.php index e81b02f..feaf38e 100644 --- a/MathRenderer.php +++ b/MathRenderer.php @@ -28,7 +28,6 @@ abstract class MathRenderer { var $conservativeness = 0; var $params = ''; protected $recall; - protected $anchorID = 0; /** * Constructs a base MathRenderer @@ -204,24 +203,6 @@ abstract class MathRenderer { return $this->recall; } - /** - * Gets anchor ID - * - * @return string anchor ID - */ - public function getAnchorID() { - return $this->anchorID; - } - - /** - * Sets anchor ID - * - * @param string ID anchor ID - */ - public function setAnchorID( $ID ) { - $this->anchorID = $ID; - } - /** * Gets TeX markup *