From e316717b326568a83a656f894c4bbf2acbd16e80 Mon Sep 17 00:00:00 2001 From: pumamd Date: Wed, 9 Nov 2016 09:53:33 +0200 Subject: [PATCH 001/138] * add ability to add multiple ip addresses to objects using pattern x.x.x.x-x --- wwwroot/inc/ophandlers.php | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/wwwroot/inc/ophandlers.php b/wwwroot/inc/ophandlers.php index 154b08abc..4eeaa4306 100644 --- a/wwwroot/inc/ophandlers.php +++ b/wwwroot/inc/ophandlers.php @@ -994,6 +994,49 @@ function delIPAllocation () function addIPAllocation () { + if (preg_match("/(\d+\.\d+\.\d+\.)(\d+)-(\d+)/", $_REQUEST['ip'], $matches)) + { + $ip_first = $matches[1].$matches[2]; + $ip_last = $matches[1].$matches[3]; + + $ip_first_bin = ip2long($ip_first); + $ip_last_bin = ip2long($ip_last); + for ($i = $ip_first_bin; $i <= $ip_last_bin; $i++) + { + setFuncMessages (__FUNCTION__, array ('OK' => 48, 'ERR1' => 170)); + $ip_bin = pack ('N', $i); + $alloc_type = genericAssertion ('bond_type', 'enum/alloc_type'); + + // check if address is alread allocated + $address = getIPAddress ($ip_bin); + + if (!empty($address['allocs']) && ( ($address['allocs'][0]['type'] != 'shared') || ($alloc_type != 'shared') ) ) + showWarning("IP ".ip_format($ip_bin)." already in use by ".$address['allocs'][0]['object_name']." - ".$address['allocs'][0]['name']); + + if (getConfigVar ('IPV4_JAYWALK') != 'yes' and NULL === getIPAddressNetworkId ($ip_bin)) + { + showFuncMessage (__FUNCTION__, 'ERR1', array (ip_format ($ip_bin))); + return; + } + + if($address['reserved'] && strlen ($address['name'])) + { + showWarning("IP ".ip_format($ip_bin)." reservation \"".$address['name']."\" is removed"); + //TODO ask to take reserved IP or not ! + } + + bindIPToObject + ( + $ip_bin, + genericAssertion ('object_id', 'uint'), + genericAssertion ('bond_name', 'string0'), + $alloc_type + ); + + showFuncMessage (__FUNCTION__, 'OK'); + } + return buildRedirectURL (NULL, NULL, array ('hl_ip' => ip_format ($ip_bin))); + } setFuncMessages (__FUNCTION__, array ('OK' => 48, 'ERR1' => 170)); $ip_bin = assertIPArg ('ip'); $alloc_type = genericAssertion ('bond_type', 'enum/alloc_type'); From 832453d0f3f12a4db4e6bfed25d06777e690607b Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 18 May 2017 10:05:11 +0100 Subject: [PATCH 002/138] upgrade.php: add a section for 0.21.0 --- wwwroot/inc/upgrade.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wwwroot/inc/upgrade.php b/wwwroot/inc/upgrade.php index 1ca45ea47..bcc19753d 100644 --- a/wwwroot/inc/upgrade.php +++ b/wwwroot/inc/upgrade.php @@ -192,6 +192,7 @@ function getDBUpgradePath ($v1, $v2) '0.20.12', '0.20.13', '0.20.14', + '0.21.0', ); if (! in_array ($v1, $versionhistory) || ! in_array ($v2, $versionhistory)) return NULL; @@ -1228,6 +1229,9 @@ function getUpgradeBatch ($batchid) $query[] = "UPDATE ObjectHistory SET ctime = ctime, has_problems = 'no' WHERE objtype_id = 1561 AND has_problems = ''"; $query[] = "UPDATE Config SET varvalue = '0.20.14' WHERE varname = 'DB_VERSION'"; break; + case '0.21.0': + $query[] = "UPDATE Config SET varvalue = '0.21.0' WHERE varname = 'DB_VERSION'"; + break; case 'dictionary': $query = reloadDictionary(); break; From 1acbe8655da11204e9636173963a9be81d377e5c Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 18 May 2017 12:26:40 +0100 Subject: [PATCH 003/138] display MySQL warnings in debug mode This optional means of debugging can provide a feedback loop when the strict SQL mode is not enabled. * collectMySQLWarnings(): new function to buffer the warnings * usePreparedInsertBlade(): amend to call the above * usePreparedDeleteBlade(): idem * usePreparedUpdateBlade(): idem * showMySQLWarnings(): new function to display the buffer * index.php: call the above in the "redirect" case --- ChangeLog | 2 ++ wwwroot/inc/database.php | 32 +++++++++++++++++++++++++++++--- wwwroot/inc/interface-lib.php | 24 ++++++++++++++++++++++++ wwwroot/index.php | 1 + 4 files changed, 56 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index c22e2f5f8..974d1ad03 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +0.21.0 + update: display MySQL warnings in debug mode 0.20.13 2017-05-12 update: fix performance for pages with images (GH#190 by Michael A. Mikhailov) update: improve SNMP support for Brocade devices (GH#180 by Chris Jones) diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index 83982f445..82e24f285 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -3899,6 +3899,23 @@ function convertPDOException ($e) return new RTDatabaseError ($text); } +// The strict SQL mode, which is the default since MySQL 5.7 and MariaDB 10.2.4, +// generates an error (and in this case a PDO exception) when a column value is +// invalid or missing. When the strict SQL mode is not enabled (for whatever +// reason), the invalid or missing values (as well as other anomalies) end up in +// the warnings buffer and remain out of sight by default. This function saves +// the contents of the buffer such that it can be displayed later. +function collectMySQLWarnings() +{ + global $dbxlink, $debug_mode, $rtdebug_mysql_warnings; + if (! isset ($debug_mode) || ! $debug_mode) + return; + if (! isset ($rtdebug_mysql_warnings)) + $rtdebug_mysql_warnings = array(); + $result = $dbxlink->query ('SHOW WARNINGS'); + $rtdebug_mysql_warnings = array_merge ($rtdebug_mysql_warnings, $result->fetchAll (PDO::FETCH_ASSOC)); +} + // This is a swiss-knife blade to insert a record into a table. // The first argument is table name. // The second argument is an array of "name" => "value" pairs. @@ -3914,7 +3931,10 @@ function usePreparedInsertBlade ($tablename, $columns) { $prepared = $dbxlink->prepare ($query); $prepared->execute (array_values ($columns)); - return $prepared->rowCount(); + $ret = $prepared->rowCount(); + unset ($prepared); + collectMySQLWarnings(); + return $ret; } catch (PDOException $e) { @@ -3971,7 +3991,10 @@ function usePreparedDeleteBlade ($tablename, $columns = array(), $conjunction = { $prepared = $dbxlink->prepare ($query); $prepared->execute ($where_values); - return $prepared->rowCount(); + $ret = $prepared->rowCount(); + unset ($prepared); + collectMySQLWarnings(); + return $ret; } catch (PDOException $e) { @@ -4008,7 +4031,10 @@ function usePreparedUpdateBlade ($tablename, $set_columns = array(), $where_colu { $prepared = $dbxlink->prepare ($query); $prepared->execute (array_merge (array_values ($set_columns), $where_values)); - return $prepared->rowCount(); + $ret = $prepared->rowCount(); + unset ($prepared); + collectMySQLWarnings(); + return $ret; } catch (PDOException $e) { diff --git a/wwwroot/inc/interface-lib.php b/wwwroot/inc/interface-lib.php index 548ad4755..816f95b0d 100644 --- a/wwwroot/inc/interface-lib.php +++ b/wwwroot/inc/interface-lib.php @@ -1183,4 +1183,28 @@ function makeHtmlTag ($tagname, $attributes = array()) return $ret; } +function showMySQLWarnings() +{ + global $debug_mode, $rtdebug_mysql_warnings; + if (! isset ($debug_mode) || ! $debug_mode || ! isset ($rtdebug_mysql_warnings)) + return; + foreach ($rtdebug_mysql_warnings as $each) + { + $text = $each['Code'] . ': ' . $each['Message']; + switch ($each['Level']) + { + case 'Warning': + showWarning ($text); + break; + case 'Note': + showNotice ($text); + break; + default: + showError ($text); + break; + } + } + $rtdebug_mysql_warnings = array(); +} + ?> diff --git a/wwwroot/index.php b/wwwroot/index.php index 40aaa6122..a1a3777bb 100644 --- a/wwwroot/index.php +++ b/wwwroot/index.php @@ -254,6 +254,7 @@ printException ($e); break; } + showMySQLWarnings(); redirectUser ($location); // any other error requires no special handling and will be caught outside break; From 710bb27b1c3ba27c4395df3729904ee02689a53c Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 18 May 2017 12:56:42 +0100 Subject: [PATCH 004/138] copy complete 0.20.x releases only into master --- wwwroot/inc/upgrade.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/wwwroot/inc/upgrade.php b/wwwroot/inc/upgrade.php index bcc19753d..d5bc22bb1 100644 --- a/wwwroot/inc/upgrade.php +++ b/wwwroot/inc/upgrade.php @@ -1224,11 +1224,7 @@ function getUpgradeBatch ($batchid) $query[] = "DROP TRIGGER IF EXISTS `Port-before-update`"; $query[] = "UPDATE Config SET varvalue = '0.20.13' WHERE varname = 'DB_VERSION'"; break; - case '0.20.14': - $query[] = "UPDATE Object SET has_problems = 'no' WHERE objtype_id = 1561 AND has_problems = ''"; - $query[] = "UPDATE ObjectHistory SET ctime = ctime, has_problems = 'no' WHERE objtype_id = 1561 AND has_problems = ''"; - $query[] = "UPDATE Config SET varvalue = '0.20.14' WHERE varname = 'DB_VERSION'"; - break; + // FIXME: add remaining 0.20.x sections here after respective releases come out case '0.21.0': $query[] = "UPDATE Config SET varvalue = '0.21.0' WHERE varname = 'DB_VERSION'"; break; From 83ea38a9bde3deb3ad092d27b3e0b8d089912c4b Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 19 May 2017 10:45:38 +0100 Subject: [PATCH 005/138] suppress some more unnecessary default values Amend respective test to fail the right way. * usePreparedDeleteBlade() * usePreparedUpdateBlade() --- tests/EmptySQLWhereTest.php | 6 +++--- wwwroot/inc/database.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/EmptySQLWhereTest.php b/tests/EmptySQLWhereTest.php index 89e2f3d9a..432f3b95c 100644 --- a/tests/EmptySQLWhereTest.php +++ b/tests/EmptySQLWhereTest.php @@ -21,7 +21,7 @@ public function tearDown () */ public function testMalformedDelete () { - usePreparedDeleteBlade ('TagTree'); + usePreparedDeleteBlade ('TagTree', NULL); } /** @@ -30,7 +30,7 @@ public function testMalformedDelete () */ public function testMalformedUpdate1 () { - usePreparedUpdateBlade ('TagTree', array ('is_assignable' => 'yes')); + usePreparedUpdateBlade ('TagTree', array ('is_assignable' => 'yes'), NULL); } /** @@ -39,7 +39,7 @@ public function testMalformedUpdate1 () */ public function testMalformedUpdate2 () { - usePreparedUpdateBlade ('TagTree'); + usePreparedUpdateBlade ('TagTree', NULL, NULL); } } diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index 82e24f285..fa55b2fa2 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -3981,7 +3981,7 @@ function makeWhereSQL ($where_columns, $conjunction, &$params = array()) // This swiss-knife blade deletes any number of records from the specified table // using the specified key names and values. // returns integer - affected rows count. Throws exception on error -function usePreparedDeleteBlade ($tablename, $columns = array(), $conjunction = 'AND') +function usePreparedDeleteBlade ($tablename, $columns, $conjunction = 'AND') { global $dbxlink; if (! count ($columns)) @@ -4018,7 +4018,7 @@ function usePreparedSelectBlade ($query, $args = array()) } // returns integer - affected rows count. Throws exception on error -function usePreparedUpdateBlade ($tablename, $set_columns = array(), $where_columns = array(), $conjunction = 'AND') +function usePreparedUpdateBlade ($tablename, $set_columns, $where_columns, $conjunction = 'AND') { global $dbxlink; if (! count ($set_columns)) From ef82cfcff85bdf590a9b4e070791f378be73eac7 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 19 May 2017 10:48:53 +0100 Subject: [PATCH 006/138] tests: add a missing newline at EOF --- tests/EmptySQLWhereTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/EmptySQLWhereTest.php b/tests/EmptySQLWhereTest.php index 432f3b95c..45d1fcdd8 100644 --- a/tests/EmptySQLWhereTest.php +++ b/tests/EmptySQLWhereTest.php @@ -43,4 +43,4 @@ public function testMalformedUpdate2 () } } -?> \ No newline at end of file +?> From 2d07e596bf6dc0c8ba8dfcd9a47896856c053865 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 19 May 2017 11:43:55 +0100 Subject: [PATCH 007/138] renderSNMPPortFinder(): remove excess LABELs --- wwwroot/inc/interface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index a2c707464..0cbbb1667 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -4206,7 +4206,7 @@ function renderSNMPPortFinder ($object_id) 'sec_level'), 'noAuthNoPriv'); ?> - + Auth Type: @@ -4219,7 +4219,7 @@ function renderSNMPPortFinder ($object_id) - + Priv Type: From e984d86c8f00e3d6c3d4b0c862102a251de68a09 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 19 May 2017 12:04:35 +0100 Subject: [PATCH 008/138] set Port.label to NULL instead of an empty string This is how it was originally intended (also update the sample dataset). * commitAddPortReal(): use nullIfEmptyStr() * commitUpdatePortReal(): idem * upgrade.php: queue an UPDATE for 0.21.0 --- scripts/init-sample-racks.sql | 326 +++++++++++++++++----------------- wwwroot/inc/database.php | 4 +- wwwroot/inc/upgrade.php | 1 + 3 files changed, 166 insertions(+), 165 deletions(-) diff --git a/scripts/init-sample-racks.sql b/scripts/init-sample-racks.sql index bc551c940..79dd93100 100644 --- a/scripts/init-sample-racks.sql +++ b/scripts/init-sample-racks.sql @@ -1023,10 +1023,10 @@ INSERT INTO `PortInterfaceCompat` (`iif_id`, `oif_id`) VALUES (1,32); INSERT INTO `Port` (`id`, `object_id`, `name`, `iif_id`, `type`, `l2address`, `reservation_comment`, `label`) VALUES -(3057,905,'se1/0',1,32,NULL,NULL,''), -(3058,905,'se1/1',1,32,NULL,NULL,''), -(3059,905,'fa2/0',1,19,'00000000A001',NULL,''), -(3060,905,'fa2/1',1,19,'00000000A002','ISP uplink',''), +(3057,905,'se1/0',1,32,NULL,NULL,NULL), +(3058,905,'se1/1',1,32,NULL,NULL,NULL), +(3059,905,'fa2/0',1,19,'00000000A001',NULL,NULL), +(3060,905,'fa2/1',1,19,'00000000A002','ISP uplink',NULL), (3063,906,'gi1',1,24,'00000000B001',NULL,'1'), (3062,906,'gi2',1,24,'00000000B002',NULL,'2'), (3064,906,'gi3',1,24,'00000000B003',NULL,'3'), @@ -1035,8 +1035,8 @@ INSERT INTO `Port` (`id`, `object_id`, `name`, `iif_id`, `type`, `l2address`, `r (3067,906,'gi6',1,24,'00000000B006',NULL,'6'), (3068,906,'gi7',1,24,'00000000B007',NULL,'7'), (3069,906,'gi8',1,24,'00000000B008',NULL,'8'), -(3070,907,'se1/0',1,32,NULL,NULL,''), -(3071,907,'se1/1',1,32,NULL,NULL,''), +(3070,907,'se1/0',1,32,NULL,NULL,NULL), +(3071,907,'se1/1',1,32,NULL,NULL,NULL), (3072,915,'e1',1,19,NULL,NULL,'1'), (3073,915,'e2',1,19,NULL,NULL,'2'), (3074,915,'e3',1,19,NULL,NULL,'3'), @@ -1047,10 +1047,10 @@ INSERT INTO `Port` (`id`, `object_id`, `name`, `iif_id`, `type`, `l2address`, `r (3079,915,'e8',1,19,NULL,NULL,'8'), (3080,910,'eth0',1,24,NULL,NULL,'1'), (3081,910,'eth1',1,24,NULL,NULL,'2'), -(3082,909,'se1/0',1,32,NULL,NULL,''), -(3083,909,'se1/1',1,32,NULL,NULL,''), -(3084,908,'se1/0',1,32,NULL,NULL,''), -(3085,908,'se1/1',1,32,NULL,NULL,''), +(3082,909,'se1/0',1,32,NULL,NULL,NULL), +(3083,909,'se1/1',1,32,NULL,NULL,NULL), +(3084,908,'se1/0',1,32,NULL,NULL,NULL), +(3085,908,'se1/1',1,32,NULL,NULL,NULL), (3086,911,'eth0',1,24,NULL,NULL,'1'), (3087,911,'eth1',1,24,NULL,NULL,'2'), (3088,912,'eth0',1,24,NULL,NULL,'1'), @@ -1059,13 +1059,13 @@ INSERT INTO `Port` (`id`, `object_id`, `name`, `iif_id`, `type`, `l2address`, `r (3091,913,'eth1',1,24,NULL,NULL,'2'), (3092,914,'eth0',1,24,NULL,NULL,'1'), (3093,914,'eth1',1,24,NULL,NULL,'2'), -(3094,917,'fa0/0',1,19,NULL,NULL,''), -(3095,919,'bge0',1,24,NULL,NULL,''), -(3096,919,'bge1',1,24,NULL,NULL,''), -(3097,918,'bge0',1,24,NULL,NULL,''), -(3098,918,'bge1',1,24,NULL,NULL,''), -(3099,909,'fa2/0',1,19,NULL,NULL,''), -(3100,909,'fa2/1',1,19,NULL,'ISP uplink',''), +(3094,917,'fa0/0',1,19,NULL,NULL,NULL), +(3095,919,'bge0',1,24,NULL,NULL,NULL), +(3096,919,'bge1',1,24,NULL,NULL,NULL), +(3097,918,'bge0',1,24,NULL,NULL,NULL), +(3098,918,'bge1',1,24,NULL,NULL,NULL), +(3099,909,'fa2/0',1,19,NULL,NULL,NULL), +(3100,909,'fa2/1',1,19,NULL,'ISP uplink',NULL), (3101,926,'fa1',1,19,NULL,NULL,'1'), (3102,926,'fa2',1,19,NULL,NULL,'2'), (3103,926,'fa3',1,19,NULL,NULL,'3'), @@ -1084,156 +1084,156 @@ INSERT INTO `Port` (`id`, `object_id`, `name`, `iif_id`, `type`, `l2address`, `r (3116,924,'eth1',1,24,NULL,NULL,'2'), (3117,925,'eth0',1,24,NULL,NULL,'1'), (3118,925,'eth1',1,24,NULL,NULL,'2'), -(3119,908,'fa2/0',1,19,NULL,NULL,''), -(3120,908,'fa2/1',1,19,NULL,'ISP uplink',''), -(3121,907,'fa2/0',1,19,NULL,NULL,''), -(3122,907,'fa2/1',1,19,NULL,NULL,''), -(3123,927,'gi3/0',3,1202,NULL,'ISP uplink',''), -(3124,927,'gi4/0',3,1202,NULL,NULL,''), -(3125,907,'gi3/0',3,1202,NULL,'ISP uplink',''), -(3126,907,'gi4/0',3,1202,NULL,NULL,''), -(3127,956,'kvm',1,33,NULL,NULL,''), -(3128,956,'eth0',1,24,NULL,NULL,''), -(3129,956,'eth1',1,24,NULL,NULL,''), -(3130,957,'kvm',1,33,NULL,NULL,''), -(3131,957,'eth0',1,24,NULL,NULL,''), -(3132,957,'eth1',1,24,NULL,NULL,''), -(3133,958,'kvm',1,33,NULL,NULL,''), -(3134,958,'eth0',1,24,NULL,NULL,''), -(3135,958,'eth1',1,24,NULL,NULL,''), -(3136,959,'kvm',1,33,NULL,NULL,''), -(3137,959,'eth0',1,24,NULL,NULL,''), -(3138,959,'eth1',1,24,NULL,NULL,''), -(3139,960,'kvm',1,33,NULL,NULL,''), -(3140,960,'eth0',1,24,NULL,NULL,''), -(3141,960,'eth1',1,24,NULL,NULL,''), +(3119,908,'fa2/0',1,19,NULL,NULL,NULL), +(3120,908,'fa2/1',1,19,NULL,'ISP uplink',NULL), +(3121,907,'fa2/0',1,19,NULL,NULL,NULL), +(3122,907,'fa2/1',1,19,NULL,NULL,NULL), +(3123,927,'gi3/0',3,1202,NULL,'ISP uplink',NULL), +(3124,927,'gi4/0',3,1202,NULL,NULL,NULL), +(3125,907,'gi3/0',3,1202,NULL,'ISP uplink',NULL), +(3126,907,'gi4/0',3,1202,NULL,NULL,NULL), +(3127,956,'kvm',1,33,NULL,NULL,NULL), +(3128,956,'eth0',1,24,NULL,NULL,NULL), +(3129,956,'eth1',1,24,NULL,NULL,NULL), +(3130,957,'kvm',1,33,NULL,NULL,NULL), +(3131,957,'eth0',1,24,NULL,NULL,NULL), +(3132,957,'eth1',1,24,NULL,NULL,NULL), +(3133,958,'kvm',1,33,NULL,NULL,NULL), +(3134,958,'eth0',1,24,NULL,NULL,NULL), +(3135,958,'eth1',1,24,NULL,NULL,NULL), +(3136,959,'kvm',1,33,NULL,NULL,NULL), +(3137,959,'eth0',1,24,NULL,NULL,NULL), +(3138,959,'eth1',1,24,NULL,NULL,NULL), +(3139,960,'kvm',1,33,NULL,NULL,NULL), +(3140,960,'eth0',1,24,NULL,NULL,NULL), +(3141,960,'eth1',1,24,NULL,NULL,NULL), (3142,908,'con0',1,29,NULL,NULL,'console'), -(3143,961,'1',1,24,'01040104AA00',NULL,''), -(3144,961,'2',1,24,'01040104AA01','for field engineer',''), -(3145,961,'3',1,24,'01040104AA02',NULL,''), -(3146,961,'4',1,24,'01040104AA03',NULL,''), -(3147,961,'5',1,24,'01040104AA04',NULL,''), -(3148,961,'6',1,24,'01040104AA05',NULL,''), -(3149,961,'7',1,24,'01040104AA06',NULL,''), -(3150,961,'8',1,24,'01040104AA07',NULL,''), -(3151,961,'9',1,24,'01040104AA08',NULL,''), -(3152,961,'10',1,24,'01040104AA09',NULL,''), -(3153,961,'11',1,24,'01040104AA0A',NULL,''), -(3154,961,'12',1,24,'01040104AA0B',NULL,''), -(3155,961,'13',1,24,'01040104AA0C',NULL,''), -(3156,961,'14',1,24,'01040104AA0D',NULL,''), -(3157,961,'15',1,24,'01040104AA0E',NULL,''), -(3158,961,'16',1,24,'01040104AA0F',NULL,''), +(3143,961,'1',1,24,'01040104AA00',NULL,NULL), +(3144,961,'2',1,24,'01040104AA01','for field engineer',NULL), +(3145,961,'3',1,24,'01040104AA02',NULL,NULL), +(3146,961,'4',1,24,'01040104AA03',NULL,NULL), +(3147,961,'5',1,24,'01040104AA04',NULL,NULL), +(3148,961,'6',1,24,'01040104AA05',NULL,NULL), +(3149,961,'7',1,24,'01040104AA06',NULL,NULL), +(3150,961,'8',1,24,'01040104AA07',NULL,NULL), +(3151,961,'9',1,24,'01040104AA08',NULL,NULL), +(3152,961,'10',1,24,'01040104AA09',NULL,NULL), +(3153,961,'11',1,24,'01040104AA0A',NULL,NULL), +(3154,961,'12',1,24,'01040104AA0B',NULL,NULL), +(3155,961,'13',1,24,'01040104AA0C',NULL,NULL), +(3156,961,'14',1,24,'01040104AA0D',NULL,NULL), +(3157,961,'15',1,24,'01040104AA0E',NULL,NULL), +(3158,961,'16',1,24,'01040104AA0F',NULL,NULL), (3159,961,'con',1,681,NULL,NULL,'console'), (3160,956,'ttyS0',1,681,NULL,NULL,'serial A'), (3161,956,'ttyS1',1,681,NULL,NULL,'serial B'), -(3162,962,'tail1',1,446,NULL,NULL,''), -(3163,962,'tail2',1,446,NULL,NULL,''), -(3164,962,'tail3',1,446,NULL,NULL,''), -(3165,962,'tail4',1,446,NULL,NULL,''), -(3166,962,'tail5',1,446,NULL,NULL,''), -(3167,962,'tail6',1,446,NULL,NULL,''), -(3168,962,'tail7',1,446,NULL,NULL,''), -(3169,962,'tail8',1,446,NULL,NULL,''), -(3170,962,'head',1,33,NULL,'monitor connected',''), -(3171,962,'net',1,19,'020002003333',NULL,''), -(3178,927,'fa1/0',1,19,NULL,NULL,''), -(3179,908,'fa1/0',1,19,NULL,NULL,''), -(3180,955,'in',1,16,NULL,'from local distribution',''), -(3181,955,'out1',1,1322,NULL,NULL,''), -(3182,955,'out2',1,1322,NULL,NULL,''), -(3183,955,'out3',1,1322,NULL,NULL,''), -(3184,955,'out4',1,1322,NULL,NULL,''), -(3185,955,'out5',1,1322,NULL,NULL,''), -(3186,923,'ps',1,16,NULL,NULL,''), -(3187,924,'ps',1,16,NULL,NULL,''), -(3188,925,'ps',1,16,NULL,NULL,''), -(3189,926,'ps',1,16,NULL,NULL,''), -(3190,909,'ps',1,16,NULL,NULL,''), -(3191,979,'gi0/1',1,24,NULL,NULL,''), -(3192,979,'gi0/2',1,24,NULL,NULL,''), -(3193,979,'gi0/3',1,24,NULL,NULL,''), -(3194,979,'gi0/4',1,24,NULL,NULL,''), -(3195,979,'gi0/5',1,24,NULL,NULL,''), -(3196,979,'gi0/6',1,24,NULL,NULL,''), -(3197,979,'gi0/7',1,24,NULL,NULL,''), -(3198,979,'gi0/8',1,24,NULL,NULL,''), -(3199,979,'gi0/9',1,24,NULL,NULL,''), -(3200,979,'gi0/10',1,24,NULL,NULL,''), -(3201,979,'gi0/11',1,24,NULL,NULL,''), -(3202,979,'gi0/12',1,24,NULL,NULL,''), -(3203,979,'gi0/13',1,24,NULL,NULL,''), -(3204,979,'gi0/14',1,24,NULL,NULL,''), -(3205,979,'gi0/15',1,24,NULL,NULL,''), -(3206,979,'gi0/16',1,24,NULL,NULL,''), -(3207,979,'gi0/17',1,24,NULL,NULL,''), -(3208,979,'gi0/18',1,24,NULL,NULL,''), -(3209,979,'gi0/19',1,24,NULL,NULL,''), -(3210,979,'gi0/20',1,24,NULL,NULL,''), -(3211,979,'gi0/21',1,24,NULL,NULL,''), -(3212,979,'gi0/22',1,24,NULL,NULL,''), -(3213,979,'gi0/23',1,24,NULL,NULL,''), -(3214,979,'gi0/24',1,24,NULL,NULL,''), -(3215,980,'gi0/0/1',1,24,NULL,NULL,''), -(3216,980,'gi0/0/2',1,24,NULL,NULL,''), -(3217,980,'gi0/0/3',1,24,NULL,NULL,''), -(3218,980,'gi0/0/4',1,24,NULL,NULL,''), -(3219,980,'gi0/0/5',1,24,NULL,NULL,''), -(3220,980,'gi0/0/6',1,24,NULL,NULL,''), -(3221,980,'gi0/0/7',1,24,NULL,NULL,''), -(3222,980,'gi0/0/8',1,24,NULL,NULL,''), -(3223,980,'gi0/0/9',1,24,NULL,NULL,''), -(3224,980,'gi0/0/10',1,24,NULL,NULL,''), -(3225,980,'gi0/0/11',1,24,NULL,NULL,''), -(3226,980,'gi0/0/12',1,24,NULL,NULL,''), -(3227,980,'gi0/0/13',1,24,NULL,NULL,''), -(3228,980,'gi0/0/14',1,24,NULL,NULL,''), -(3229,980,'gi0/0/15',1,24,NULL,NULL,''), -(3230,980,'gi0/0/16',1,24,NULL,NULL,''), -(3231,980,'gi0/0/17',1,24,NULL,NULL,''), -(3232,980,'gi0/0/18',1,24,NULL,NULL,''), -(3233,980,'gi0/0/19',1,24,NULL,NULL,''), -(3234,980,'gi0/0/20',1,24,NULL,NULL,''), -(3235,980,'gi0/0/21',1,24,NULL,NULL,''), -(3236,980,'gi0/0/22',1,24,NULL,NULL,''), -(3237,980,'gi0/0/23',1,24,NULL,NULL,''), -(3238,980,'gi0/0/24',1,24,NULL,NULL,''), -(3239,980,'gi0/0/25',1,24,NULL,NULL,''), -(3240,980,'gi0/0/26',1,24,NULL,NULL,''), -(3241,980,'gi0/0/27',1,24,NULL,NULL,''), -(3242,980,'gi0/0/28',1,24,NULL,NULL,''), -(3243,980,'gi0/0/29',1,24,NULL,NULL,''), -(3244,980,'gi0/0/30',1,24,NULL,NULL,''), -(3245,980,'gi0/0/31',1,24,NULL,NULL,''), -(3246,980,'gi0/0/32',1,24,NULL,NULL,''), -(3247,980,'gi0/0/33',1,24,NULL,NULL,''), -(3248,980,'gi0/0/34',1,24,NULL,NULL,''), -(3249,980,'gi0/0/35',1,24,NULL,NULL,''), -(3250,980,'gi0/0/36',1,24,NULL,NULL,''), -(3251,980,'gi0/0/37',1,24,NULL,NULL,''), -(3252,980,'gi0/0/38',1,24,NULL,NULL,''), -(3253,980,'gi0/0/39',1,24,NULL,NULL,''), -(3254,980,'gi0/0/40',1,24,NULL,NULL,''), -(3255,980,'gi0/0/41',1,24,NULL,NULL,''), -(3256,980,'gi0/0/42',1,24,NULL,NULL,''), -(3257,980,'gi0/0/43',1,24,NULL,NULL,''), -(3258,980,'gi0/0/44',1,24,NULL,NULL,''), -(3259,980,'gi0/0/45',1,24,NULL,NULL,''), -(3260,980,'gi0/0/46',1,24,NULL,NULL,''), -(3261,980,'gi0/0/47',1,24,NULL,NULL,''), -(3262,980,'gi0/0/48',1,24,NULL,NULL,''), -(3263,981,'gi0/1',1,24,NULL,NULL,''), -(3264,981,'gi0/2',1,24,NULL,NULL,''), -(3265,981,'gi0/3',1,24,NULL,NULL,''), -(3266,981,'gi0/4',1,24,NULL,NULL,''), -(3267,981,'gi0/5',1,24,NULL,NULL,''), -(3268,981,'gi0/6',1,24,NULL,NULL,''), -(3269,981,'gi0/7',1,24,NULL,NULL,''), -(3270,981,'gi0/8',1,24,NULL,NULL,''), -(3271,981,'gi0/9',1,24,NULL,NULL,''), -(3272,981,'gi0/10',1,24,NULL,NULL,''), -(3273,981,'gi0/11',1,24,NULL,NULL,''), -(3274,981,'gi0/12',1,24,NULL,NULL,''); +(3162,962,'tail1',1,446,NULL,NULL,NULL), +(3163,962,'tail2',1,446,NULL,NULL,NULL), +(3164,962,'tail3',1,446,NULL,NULL,NULL), +(3165,962,'tail4',1,446,NULL,NULL,NULL), +(3166,962,'tail5',1,446,NULL,NULL,NULL), +(3167,962,'tail6',1,446,NULL,NULL,NULL), +(3168,962,'tail7',1,446,NULL,NULL,NULL), +(3169,962,'tail8',1,446,NULL,NULL,NULL), +(3170,962,'head',1,33,NULL,'monitor connected',NULL), +(3171,962,'net',1,19,'020002003333',NULL,NULL), +(3178,927,'fa1/0',1,19,NULL,NULL,NULL), +(3179,908,'fa1/0',1,19,NULL,NULL,NULL), +(3180,955,'in',1,16,NULL,'from local distribution',NULL), +(3181,955,'out1',1,1322,NULL,NULL,NULL), +(3182,955,'out2',1,1322,NULL,NULL,NULL), +(3183,955,'out3',1,1322,NULL,NULL,NULL), +(3184,955,'out4',1,1322,NULL,NULL,NULL), +(3185,955,'out5',1,1322,NULL,NULL,NULL), +(3186,923,'ps',1,16,NULL,NULL,NULL), +(3187,924,'ps',1,16,NULL,NULL,NULL), +(3188,925,'ps',1,16,NULL,NULL,NULL), +(3189,926,'ps',1,16,NULL,NULL,NULL), +(3190,909,'ps',1,16,NULL,NULL,NULL), +(3191,979,'gi0/1',1,24,NULL,NULL,NULL), +(3192,979,'gi0/2',1,24,NULL,NULL,NULL), +(3193,979,'gi0/3',1,24,NULL,NULL,NULL), +(3194,979,'gi0/4',1,24,NULL,NULL,NULL), +(3195,979,'gi0/5',1,24,NULL,NULL,NULL), +(3196,979,'gi0/6',1,24,NULL,NULL,NULL), +(3197,979,'gi0/7',1,24,NULL,NULL,NULL), +(3198,979,'gi0/8',1,24,NULL,NULL,NULL), +(3199,979,'gi0/9',1,24,NULL,NULL,NULL), +(3200,979,'gi0/10',1,24,NULL,NULL,NULL), +(3201,979,'gi0/11',1,24,NULL,NULL,NULL), +(3202,979,'gi0/12',1,24,NULL,NULL,NULL), +(3203,979,'gi0/13',1,24,NULL,NULL,NULL), +(3204,979,'gi0/14',1,24,NULL,NULL,NULL), +(3205,979,'gi0/15',1,24,NULL,NULL,NULL), +(3206,979,'gi0/16',1,24,NULL,NULL,NULL), +(3207,979,'gi0/17',1,24,NULL,NULL,NULL), +(3208,979,'gi0/18',1,24,NULL,NULL,NULL), +(3209,979,'gi0/19',1,24,NULL,NULL,NULL), +(3210,979,'gi0/20',1,24,NULL,NULL,NULL), +(3211,979,'gi0/21',1,24,NULL,NULL,NULL), +(3212,979,'gi0/22',1,24,NULL,NULL,NULL), +(3213,979,'gi0/23',1,24,NULL,NULL,NULL), +(3214,979,'gi0/24',1,24,NULL,NULL,NULL), +(3215,980,'gi0/0/1',1,24,NULL,NULL,NULL), +(3216,980,'gi0/0/2',1,24,NULL,NULL,NULL), +(3217,980,'gi0/0/3',1,24,NULL,NULL,NULL), +(3218,980,'gi0/0/4',1,24,NULL,NULL,NULL), +(3219,980,'gi0/0/5',1,24,NULL,NULL,NULL), +(3220,980,'gi0/0/6',1,24,NULL,NULL,NULL), +(3221,980,'gi0/0/7',1,24,NULL,NULL,NULL), +(3222,980,'gi0/0/8',1,24,NULL,NULL,NULL), +(3223,980,'gi0/0/9',1,24,NULL,NULL,NULL), +(3224,980,'gi0/0/10',1,24,NULL,NULL,NULL), +(3225,980,'gi0/0/11',1,24,NULL,NULL,NULL), +(3226,980,'gi0/0/12',1,24,NULL,NULL,NULL), +(3227,980,'gi0/0/13',1,24,NULL,NULL,NULL), +(3228,980,'gi0/0/14',1,24,NULL,NULL,NULL), +(3229,980,'gi0/0/15',1,24,NULL,NULL,NULL), +(3230,980,'gi0/0/16',1,24,NULL,NULL,NULL), +(3231,980,'gi0/0/17',1,24,NULL,NULL,NULL), +(3232,980,'gi0/0/18',1,24,NULL,NULL,NULL), +(3233,980,'gi0/0/19',1,24,NULL,NULL,NULL), +(3234,980,'gi0/0/20',1,24,NULL,NULL,NULL), +(3235,980,'gi0/0/21',1,24,NULL,NULL,NULL), +(3236,980,'gi0/0/22',1,24,NULL,NULL,NULL), +(3237,980,'gi0/0/23',1,24,NULL,NULL,NULL), +(3238,980,'gi0/0/24',1,24,NULL,NULL,NULL), +(3239,980,'gi0/0/25',1,24,NULL,NULL,NULL), +(3240,980,'gi0/0/26',1,24,NULL,NULL,NULL), +(3241,980,'gi0/0/27',1,24,NULL,NULL,NULL), +(3242,980,'gi0/0/28',1,24,NULL,NULL,NULL), +(3243,980,'gi0/0/29',1,24,NULL,NULL,NULL), +(3244,980,'gi0/0/30',1,24,NULL,NULL,NULL), +(3245,980,'gi0/0/31',1,24,NULL,NULL,NULL), +(3246,980,'gi0/0/32',1,24,NULL,NULL,NULL), +(3247,980,'gi0/0/33',1,24,NULL,NULL,NULL), +(3248,980,'gi0/0/34',1,24,NULL,NULL,NULL), +(3249,980,'gi0/0/35',1,24,NULL,NULL,NULL), +(3250,980,'gi0/0/36',1,24,NULL,NULL,NULL), +(3251,980,'gi0/0/37',1,24,NULL,NULL,NULL), +(3252,980,'gi0/0/38',1,24,NULL,NULL,NULL), +(3253,980,'gi0/0/39',1,24,NULL,NULL,NULL), +(3254,980,'gi0/0/40',1,24,NULL,NULL,NULL), +(3255,980,'gi0/0/41',1,24,NULL,NULL,NULL), +(3256,980,'gi0/0/42',1,24,NULL,NULL,NULL), +(3257,980,'gi0/0/43',1,24,NULL,NULL,NULL), +(3258,980,'gi0/0/44',1,24,NULL,NULL,NULL), +(3259,980,'gi0/0/45',1,24,NULL,NULL,NULL), +(3260,980,'gi0/0/46',1,24,NULL,NULL,NULL), +(3261,980,'gi0/0/47',1,24,NULL,NULL,NULL), +(3262,980,'gi0/0/48',1,24,NULL,NULL,NULL), +(3263,981,'gi0/1',1,24,NULL,NULL,NULL), +(3264,981,'gi0/2',1,24,NULL,NULL,NULL), +(3265,981,'gi0/3',1,24,NULL,NULL,NULL), +(3266,981,'gi0/4',1,24,NULL,NULL,NULL), +(3267,981,'gi0/5',1,24,NULL,NULL,NULL), +(3268,981,'gi0/6',1,24,NULL,NULL,NULL), +(3269,981,'gi0/7',1,24,NULL,NULL,NULL), +(3270,981,'gi0/8',1,24,NULL,NULL,NULL), +(3271,981,'gi0/9',1,24,NULL,NULL,NULL), +(3272,981,'gi0/10',1,24,NULL,NULL,NULL), +(3273,981,'gi0/11',1,24,NULL,NULL,NULL), +(3274,981,'gi0/12',1,24,NULL,NULL,NULL); INSERT INTO `Link` (`porta`, `portb`) VALUES (3057,3071), diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index fa55b2fa2..e13b28a4d 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -1716,7 +1716,7 @@ function commitAddPortReal ($object_id, $port_name, $iif_id, $oif_id, $port_labe ( 'name' => $port_name, 'object_id' => $object_id, - 'label' => $port_label, + 'label' => nullIfEmptyStr ($port_label), 'iif_id' => $iif_id, 'type' => $oif_id, 'l2address' => nullIfEmptyStr ($db_l2address), @@ -1767,7 +1767,7 @@ function commitUpdatePortReal ($object_id, $port_id, $port_name, $iif_id, $oif_i 'name' => $port_name, 'iif_id' => $iif_id, 'type' => $oif_id, - 'label' => $port_label, + 'label' => nullIfEmptyStr ($port_label), 'reservation_comment' => $port_reservation_comment, 'l2address' => nullIfEmptyStr ($db_l2address), ), diff --git a/wwwroot/inc/upgrade.php b/wwwroot/inc/upgrade.php index d5bc22bb1..101efa38d 100644 --- a/wwwroot/inc/upgrade.php +++ b/wwwroot/inc/upgrade.php @@ -1226,6 +1226,7 @@ function getUpgradeBatch ($batchid) break; // FIXME: add remaining 0.20.x sections here after respective releases come out case '0.21.0': + $query[] = "UPDATE Port SET label = NULL WHERE label = ''"; $query[] = "UPDATE Config SET varvalue = '0.21.0' WHERE varname = 'DB_VERSION'"; break; case 'dictionary': From 07d22cecff02e80ad2c0241547fecf84e3ed5b93 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 19 May 2017 13:03:45 +0100 Subject: [PATCH 009/138] simplify a few functions * lastInsertID(): use PDOStatement::fetchColumn() * getIPv4Stats(): idem * getIPv6Stats(): idem * getRackspaceStats(): idem * sortPortList(): use array_fetch() --- wwwroot/inc/database.php | 13 +++++-------- wwwroot/inc/functions.php | 8 ++++---- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index e13b28a4d..e4d74ef5f 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -1586,8 +1586,7 @@ function getMolecule ($mid) function lastInsertID () { $result = usePreparedSelectBlade ('select last_insert_id()'); - $row = $result->fetch (PDO::FETCH_NUM); - return $row[0]; + return $result->fetchColumn(); } // This function creates a new record in Molecule and number of linked @@ -3512,8 +3511,7 @@ function getIPv4Stats () foreach ($subject as $item) { $result = usePreparedSelectBlade ($item['q']); - $row = $result->fetch (PDO::FETCH_NUM); - $ret[$item['txt']] = $row[0]; + $ret[$item['txt']] = $result->fetchColumn(); unset ($result); } return $ret; @@ -3530,8 +3528,7 @@ function getIPv6Stats () foreach ($subject as $item) { $result = usePreparedSelectBlade ($item['q']); - $row = $result->fetch (PDO::FETCH_NUM); - $ret[$item['txt']] = $row[0]; + $ret[$item['txt']] = $result->fetchColumn(); unset ($result); } return $ret; @@ -3549,8 +3546,8 @@ function getRackspaceStats () foreach ($subject as $item) { $result = usePreparedSelectBlade ($item['q']); - $row = $result->fetch (PDO::FETCH_NUM); - $ret[$item['txt']] = $row[0] == '' ? 0 : $row[0]; + $tmp = $result->fetchColumn(); + $ret[$item['txt']] = $tmp == '' ? 0 : $tmp; unset ($result); } return $ret; diff --git a/wwwroot/inc/functions.php b/wwwroot/inc/functions.php index 39d9f59e8..0860ddbf6 100644 --- a/wwwroot/inc/functions.php +++ b/wwwroot/inc/functions.php @@ -4851,10 +4851,10 @@ function sortPortList ($plist, $name_in_value = FALSE) 'numidx' => count ($numbers), 'index' => $numbers, 'idx_parent' => $parent, - 'iif_id' => isset($plist[$pkey]['iif_id']) ? $plist[$pkey]['iif_id'] : 0, - 'label' => isset($plist[$pkey]['label']) ? $plist[$pkey]['label'] : '', - 'l2address' => isset($plist[$pkey]['l2address']) ? $plist[$pkey]['l2address'] : '', - 'id' => isset($plist[$pkey]['id']) ? $plist[$pkey]['id'] : 0, + 'iif_id' => array_fetch ($pvalue, 'iif_id', 0), + 'label' => array_fetch ($pvalue, 'label', ''), + 'l2address' => array_fetch ($pvalue, 'l2address', ''), + 'id' => array_fetch ($pvalue, 'id', 0), 'name' => $pn, ); } From 70c0cb088d5982bdccf7cd7fa02c8756659ad364 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Tue, 23 May 2017 12:09:34 +0100 Subject: [PATCH 010/138] refine renderPortsForObject() Convert a repeated code block to a function, fixup a TD alignment, simplify portlet rendering, do not show the multiport form if permissions would not allow to submit. --- wwwroot/inc/interface.php | 71 ++++++++++++++++----------------------- 1 file changed, 29 insertions(+), 42 deletions(-) diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index 0cbbb1667..c99ddf446 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -1708,13 +1708,9 @@ function printNewItemTR ($prefs) printImageHREF ('add', 'add a port', TRUE); echo ""; } - if (getConfigVar('ENABLE_MULTIPORT_FORM') == 'yes' || getConfigVar('ENABLE_BULKPORT_FORM') == 'yes' ) - startPortlet ('Ports and interfaces'); - else - echo '
'; - $object = spotEntity ('object', $object_id); - amplifyCell ($object); - if (getConfigVar ('ADDNEW_AT_TOP') == 'yes' && getConfigVar('ENABLE_BULKPORT_FORM') == 'yes'){ + + function printBulkForm ($prefs) + { echo "\n"; echo ""; echo "\n"; @@ -1732,6 +1728,12 @@ function printNewItemTR ($prefs) echo "
 Local nameVisible labelInterfaceStart NumberCount 

\n"; } + startPortlet ('Ports and interfaces'); + $object = spotEntity ('object', $object_id); + amplifyCell ($object); + if (getConfigVar ('ADDNEW_AT_TOP') == 'yes' && getConfigVar ('ENABLE_BULKPORT_FORM') == 'yes') + printBulkForm ($prefs); + echo "\n"; echo ""; echo "\n"; @@ -1770,7 +1772,7 @@ function printNewItemTR ($prefs) $a_class = isEthernetPort ($port) ? 'port-menu' : ''; echo ""; echo ""; - echo '
 Local nameVisible labelInterfaceL2 addressRemote object and portCable ID(Un)link or (un)reserve 
'; + echo ''; if ($port['iif_id'] != 1) echo '

\n"; - if (getConfigVar ('ADDNEW_AT_TOP') != 'yes' && getConfigVar('ENABLE_BULKPORT_FORM') == 'yes'){ - echo "\n"; - echo ""; - echo "\n"; - printOpFormIntro ('addBulkPorts'); - echo "\n"; - echo "\n"; - echo "\n"; - echo ""; - echo "
 Local nameVisible labelInterfaceStart NumberCount 
"; - printImageHREF ('add', 'add ports', TRUE); - echo ""; - printNiftySelect (getNewPortTypeOptions(), array ('name' => 'port_type_id'), $prefs['selected']); - echo " "; - printImageHREF ('add', 'add ports', TRUE); - echo "

\n"; - } - if (getConfigVar('ENABLE_MULTIPORT_FORM') == 'yes') - finishPortlet(); - if (getConfigVar('ENABLE_MULTIPORT_FORM') != 'yes') - return; - - startPortlet ('Add/update multiple ports'); - printOpFormIntro ('addMultiPorts'); - $formats = array - ( - 'ssv1' => 'SSV: []', - ); - echo 'Format: ' . getSelect ($formats, array ('name' => 'format'), 'ssv1') . ' '; - echo 'Default port type: '; - printNiftySelect (getNewPortTypeOptions(), array ('name' => 'port_type'), $prefs['selected']); - echo "
\n"; - echo "
\n"; - echo ''; + if (getConfigVar ('ADDNEW_AT_TOP') != 'yes' && getConfigVar ('ENABLE_BULKPORT_FORM') == 'yes') + printBulkForm ($prefs); finishPortlet(); + + if (getConfigVar ('ENABLE_MULTIPORT_FORM') == 'yes' && permitted (NULL, NULL, 'addMultiPorts')) + { + startPortlet ('Add/update multiple ports'); + printOpFormIntro ('addMultiPorts'); + $formats = array + ( + 'ssv1' => 'SSV: []', + ); + echo 'Format: ' . getSelect ($formats, array ('name' => 'format'), 'ssv1') . ' '; + echo 'Default port type: '; + printNiftySelect (getNewPortTypeOptions(), array ('name' => 'port_type'), $prefs['selected']); + echo "
\n"; + echo "
\n"; + echo ''; + finishPortlet(); + } } function renderIPForObject ($object_id) From 88441715f9bc4d5929fed967bfd5d2853473b6de Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Tue, 23 May 2017 12:27:04 +0100 Subject: [PATCH 011/138] setUserConfigVar(): use REPLACE INTO consistently --- wwwroot/inc/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index e4d74ef5f..10acae466 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -5709,7 +5709,7 @@ function setUserConfigVar ($varname, $varvalue) // Update cache only if the changes went into DB. usePreparedExecuteBlade ( - 'REPLACE UserConfig SET varvalue=?, varname=?, user=?', + 'REPLACE INTO UserConfig SET varvalue=?, varname=?, user=?', array ($varvalue, $varname, $remote_username) ); $configCache[$varname]['varvalue'] = $varvalue; From bb216c1c123ff88d4b28b89ac7080df4c26c2e5f Mon Sep 17 00:00:00 2001 From: Shazaum Date: Tue, 23 May 2017 10:15:23 -0300 Subject: [PATCH 012/138] Edge-Core had the product discontinued --- wwwroot/inc/dictionary.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wwwroot/inc/dictionary.php b/wwwroot/inc/dictionary.php index 77be7d243..398b202e9 100644 --- a/wwwroot/inc/dictionary.php +++ b/wwwroot/inc/dictionary.php @@ -2103,11 +2103,11 @@ function platform_is_ok () 2211 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%CGS-2520-24TC'), 2212 => array ('chapter_id' => 12, 'dict_value' => 'Linksys%GPASS%SRW2024P'), 2213 => array ('chapter_id' => 12, 'dict_value' => 'HP ProCurve%GPASS%2920-48G J9728A'), - 2214 => array ('chapter_id' => 12, 'dict_value' => '[[Edge-Core%GPASS%AS6700-32X | http://www.edge-core.com/ProdDtl.asp?sno=435&AS6700-32X%20with%20ONIE]]'), - 2215 => array ('chapter_id' => 12, 'dict_value' => '[[Edge-Core%GPASS%AS6701-32X | http://www.edge-core.com/ProdDtl.asp?sno=435&AS6700-32X%20with%20ONIE]]'), - 2216 => array ('chapter_id' => 12, 'dict_value' => '[[Edge-Core%GPASS%AS5610-52X | http://www.edge-core.com/ProdDtl.asp?sno=436&AS5610-52X%20with%20ONIE]]'), - 2217 => array ('chapter_id' => 12, 'dict_value' => '[[Edge-Core%GPASS%AS5600-52X | http://www.edge-core.com/ProdDtl.asp?sno=423&AS5600-52X%20with%20ONIE]]'), - 2218 => array ('chapter_id' => 12, 'dict_value' => '[[Edge-Core%GPASS%AS4600-54T | http://www.edge-core.com/ProdDtl.asp?sno=425&AS4600-54T%20with%20ONIE]]'), + 2214 => array ('chapter_id' => 12, 'dict_value' => 'Edge-Core%GPASS%AS6700-32X'), + 2215 => array ('chapter_id' => 12, 'dict_value' => 'Edge-Core%GPASS%AS6701-32X'), + 2216 => array ('chapter_id' => 12, 'dict_value' => 'Edge-Core%GPASS%AS5610-52X'), + 2217 => array ('chapter_id' => 12, 'dict_value' => 'Edge-Core%GPASS%AS5600-52X'), + 2218 => array ('chapter_id' => 12, 'dict_value' => 'Edge-Core%GPASS%AS4600-54T'), 2219 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-Plus 48TC-S'), 2220 => array ('chapter_id' => 31, 'dict_value' => 'Cisco%GPASS%UCS 5108 AC2 Blade Chassis%L4,2H%'), 2221 => array ('chapter_id' => 31, 'dict_value' => 'Cisco%GPASS%UCS 5108 DC2 Blade Chassis%L4,2H%'), From ecd0c5a0c2301c64995b1e7f5deaf3b22efefc9f Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Wed, 24 May 2017 12:08:35 +0100 Subject: [PATCH 013/138] recognize context in CodeMirror RackCode lexer --- wwwroot/js/codemirror/rackcode.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wwwroot/js/codemirror/rackcode.js b/wwwroot/js/codemirror/rackcode.js index b6f82c292..394228676 100644 --- a/wwwroot/js/codemirror/rackcode.js +++ b/wwwroot/js/codemirror/rackcode.js @@ -1,6 +1,7 @@ CodeMirror.defineMode('rackcode', function() { var allowkeywords = /^(allow)\b/i; var denykeywords = /^(deny)\b/i; + var contextkeywords = /^(context|clear|insert|remove|on)\b/i; var operatorkeywords = /^(define|and|or|not|true|false)\b/i; return { @@ -21,6 +22,8 @@ CodeMirror.defineMode('rackcode', function() { return 'negative'; } else if (operatorkeywords.test(w)) { return 'operator'; + } else if (contextkeywords.test(w)) { + return 'keyword'; } } else if (stream.eat('#')) { From f4d00faf0481a0e4f76f86eae2324c9acd63471c Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Wed, 24 May 2017 18:54:31 +0100 Subject: [PATCH 014/138] better display objects that have no common name Address a long-standing glitch: when a port on the currently displayed object was (or was suggested to be) linked to a port of an object that had no name, the displayed remote object name would be an empty string. This change makes the interface display a standard substitute instead, which among other things makes the remote object hyperlink clickable. * fetchPortList(): add remote object type ID to the result columns * renderObjectPortRow(): make use of formatObjectDisplayedName() * renderPortsForObject(): idem * findSparePorts(): all of the above --- ChangeLog | 1 + wwwroot/inc/database.php | 1 + wwwroot/inc/interface.php | 10 ++++++---- wwwroot/inc/popup.php | 4 +++- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 974d1ad03..8c9230328 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ 0.21.0 update: display MySQL warnings in debug mode + update: better display objects that have no common name 0.20.13 2017-05-12 update: fix performance for pages with images (GH#190 by Michael A. Mikhailov) update: improve SNMP support for Brocade devices (GH#180 by Chris Jones) diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index 10acae466..f412a3e41 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -849,6 +849,7 @@ function fetchPortList ($sql_where_clause, $query_params = array()) IF(la.porta, pa.name, pb.name) AS remote_name, IF(la.porta, pa.object_id, pb.object_id) AS remote_object_id, IF(la.porta, oa.name, ob.name) AS remote_object_name, + IF(la.porta, oa.objtype_id, ob.objtype_id) AS remote_object_tid, (SELECT COUNT(*) FROM PortLog WHERE PortLog.port_id = Port.id) AS log_count, PortLog.user, UNIX_TIMESTAMP(PortLog.date) as time diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index c99ddf446..8ac9b0996 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -1401,8 +1401,9 @@ function renderObjectPortRow ($port, $is_highlighted) echo "" . formatPortIIFOIF ($port) . "${port['l2address']}"; if ($port['remote_object_id']) { + $dname = formatObjectDisplayedName ($port['remote_object_name'], $port['remote_object_tid']); echo "" . - formatPortLink ($port['remote_object_id'], $port['remote_object_name'], $port['remote_id'], NULL) . + formatPortLink ($port['remote_object_id'], $dname, $port['remote_id'], NULL) . ""; echo "" . formatLoggedSpan ($port['last_log'], $port['remote_name'], 'underline') . ""; $editable = permitted ('object', 'ports', 'editPort') @@ -1791,10 +1792,11 @@ function printBulkForm ($prefs) echo "\n"; if ($port['remote_object_id']) { - echo "" . - formatLoggedSpan ($port['last_log'], formatPortLink ($port['remote_object_id'], $port['remote_object_name'], $port['remote_id'], NULL)) . + $dname = formatObjectDisplayedName ($port['remote_object_name'], $port['remote_object_tid']); + echo "" . + formatLoggedSpan ($port['last_log'], formatPortLink ($port['remote_object_id'], $dname, $port['remote_id'], NULL)) . ""; - echo " " . formatLoggedSpan ($port['last_log'], $port['remote_name'], 'underline') . + echo " " . formatLoggedSpan ($port['last_log'], $port['remote_name'], 'underline') . ""; echo ""; echo ""; diff --git a/wwwroot/inc/popup.php b/wwwroot/inc/popup.php index bd5594eed..fa90c610b 100644 --- a/wwwroot/inc/popup.php +++ b/wwwroot/inc/popup.php @@ -17,6 +17,7 @@ function findSparePorts ($port_info, $filter) pii.iif_name, poi.oif_name, p.object_id, + o.objtype_id as object_tid, o.name as object_name FROM Port p INNER JOIN Object o ON o.id = p.object_id @@ -123,7 +124,8 @@ function findSparePorts ($port_info, $filter) foreach (sortPortList ($rows_by_pn) as $ports_subarray) foreach ($ports_subarray as $port_row) { - $port_description = $port_row['object_name'] . ' -- ' . $port_row['name']; + $port_description = formatObjectDisplayedName ($port_row['object_name'], $port_row['object_tid']) . + ' -- ' . $port_row['name']; if (count ($ports_subarray) > 1) { $if_type = $port_row['iif_id'] == 1 ? $port_row['oif_name'] : $port_row['iif_name']; From a63746604c54cc8153f01baa9a47357915c98297 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 25 May 2017 09:54:12 +0100 Subject: [PATCH 015/138] revert to pristine CodeMirror-3.24 --- wwwroot/js/codemirror/codemirror.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/wwwroot/js/codemirror/codemirror.css b/wwwroot/js/codemirror/codemirror.css index f87c24569..6cf5bae38 100644 --- a/wwwroot/js/codemirror/codemirror.css +++ b/wwwroot/js/codemirror/codemirror.css @@ -3,8 +3,7 @@ .CodeMirror { /* Set height, width, borders, and global font properties here */ font-family: monospace; - height: 500px; - width: 100%; + height: 300px; } .CodeMirror-scroll { /* Set scrolling behaviour here */ @@ -75,8 +74,8 @@ .cm-s-default .cm-def {color: #00f;} .cm-s-default .cm-variable, .cm-s-default .cm-punctuation, -.cm-s-default .cm-property {} -.cm-s-default .cm-operator {color: blue;} +.cm-s-default .cm-property, +.cm-s-default .cm-operator {} .cm-s-default .cm-variable-2 {color: #05a;} .cm-s-default .cm-variable-3 {color: #085;} .cm-s-default .cm-comment {color: #a50;} @@ -86,7 +85,7 @@ .cm-s-default .cm-qualifier {color: #555;} .cm-s-default .cm-builtin {color: #30a;} .cm-s-default .cm-bracket {color: #997;} -.cm-s-default .cm-tag {color: orange;} +.cm-s-default .cm-tag {color: #170;} .cm-s-default .cm-attribute {color: #00c;} .cm-s-default .cm-header {color: blue;} .cm-s-default .cm-quote {color: #090;} From d765a3df276b8011e51373955f60873640c31130 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 25 May 2017 18:16:42 +0100 Subject: [PATCH 016/138] upgrade CodeMirror from 3.24 to 5.26.0 For simpler maintenance the RackTables-specific CSS modifications now reside in css/codemirror/rackcode.css. Do not include the CSS, HTML, JavaScript, PHP and SQL CodeMirror tokenizers anymore as they had not proved to be useful. --- wwwroot/{js => css}/codemirror/codemirror.css | 165 +- wwwroot/css/codemirror/rackcode.css | 3 + wwwroot/inc/interface-config.php | 3 +- wwwroot/js/codemirror/codemirror.js | 15039 ++++++++++------ wwwroot/js/codemirror/css.js | 710 - wwwroot/js/codemirror/htmlmixed.js | 105 - wwwroot/js/codemirror/javascript.js | 645 - wwwroot/js/codemirror/php.js | 221 - wwwroot/js/codemirror/rackcode.js | 10 + wwwroot/js/codemirror/sql.js | 377 - 10 files changed, 9262 insertions(+), 8016 deletions(-) rename wwwroot/{js => css}/codemirror/codemirror.css (63%) create mode 100644 wwwroot/css/codemirror/rackcode.css delete mode 100644 wwwroot/js/codemirror/css.js delete mode 100644 wwwroot/js/codemirror/htmlmixed.js delete mode 100644 wwwroot/js/codemirror/javascript.js delete mode 100644 wwwroot/js/codemirror/php.js delete mode 100644 wwwroot/js/codemirror/sql.js diff --git a/wwwroot/js/codemirror/codemirror.css b/wwwroot/css/codemirror/codemirror.css similarity index 63% rename from wwwroot/js/codemirror/codemirror.css rename to wwwroot/css/codemirror/codemirror.css index 6cf5bae38..b962b3837 100644 --- a/wwwroot/js/codemirror/codemirror.css +++ b/wwwroot/css/codemirror/codemirror.css @@ -4,10 +4,7 @@ /* Set height, width, borders, and global font properties here */ font-family: monospace; height: 300px; -} -.CodeMirror-scroll { - /* Set scrolling behaviour here */ - overflow: auto; + color: black; } /* PADDING */ @@ -36,38 +33,83 @@ min-width: 20px; text-align: right; color: #999; - -moz-box-sizing: content-box; - box-sizing: content-box; + white-space: nowrap; } +.CodeMirror-guttermarker { color: black; } +.CodeMirror-guttermarker-subtle { color: #999; } + /* CURSOR */ -.CodeMirror div.CodeMirror-cursor { +.CodeMirror-cursor { border-left: 1px solid black; - z-index: 3; + border-right: none; + width: 0; } /* Shown when moving in bi-directional text */ .CodeMirror div.CodeMirror-secondarycursor { border-left: 1px solid silver; } -.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor { +.cm-fat-cursor .CodeMirror-cursor { width: auto; - border: 0; + border: 0 !important; background: #7e7; +} +.cm-fat-cursor div.CodeMirror-cursors { z-index: 1; } + +.cm-animate-fat-cursor { + width: auto; + border: 0; + -webkit-animation: blink 1.06s steps(1) infinite; + -moz-animation: blink 1.06s steps(1) infinite; + animation: blink 1.06s steps(1) infinite; + background-color: #7e7; +} +@-moz-keyframes blink { + 0% {} + 50% { background-color: transparent; } + 100% {} +} +@-webkit-keyframes blink { + 0% {} + 50% { background-color: transparent; } + 100% {} +} +@keyframes blink { + 0% {} + 50% { background-color: transparent; } + 100% {} +} + /* Can style cursor different in overwrite (non-insert) mode */ -.CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {} +.CodeMirror-overwrite .CodeMirror-cursor {} -.cm-tab { display: inline-block; } +.cm-tab { display: inline-block; text-decoration: inherit; } +.CodeMirror-rulers { + position: absolute; + left: 0; right: 0; top: -50px; bottom: -20px; + overflow: hidden; +} .CodeMirror-ruler { border-left: 1px solid #ccc; + top: 0; bottom: 0; position: absolute; } /* DEFAULT THEME */ +.cm-s-default .cm-header {color: blue;} +.cm-s-default .cm-quote {color: #090;} +.cm-negative {color: #d44;} +.cm-positive {color: #292;} +.cm-header, .cm-strong {font-weight: bold;} +.cm-em {font-style: italic;} +.cm-link {text-decoration: underline;} +.cm-strikethrough {text-decoration: line-through;} + .cm-s-default .cm-keyword {color: #708;} .cm-s-default .cm-atom {color: #219;} .cm-s-default .cm-number {color: #164;} @@ -87,22 +129,19 @@ .cm-s-default .cm-bracket {color: #997;} .cm-s-default .cm-tag {color: #170;} .cm-s-default .cm-attribute {color: #00c;} -.cm-s-default .cm-header {color: blue;} -.cm-s-default .cm-quote {color: #090;} .cm-s-default .cm-hr {color: #999;} .cm-s-default .cm-link {color: #00c;} -.cm-negative {color: #d44;} -.cm-positive {color: #292;} -.cm-header, .cm-strong {font-weight: bold;} -.cm-em {font-style: italic;} -.cm-link {text-decoration: underline;} - .cm-s-default .cm-error {color: #f00;} .cm-invalidchar {color: #f00;} +.CodeMirror-composing { border-bottom: 2px solid; } + +/* Default styles for common addons */ + div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;} div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;} +.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); } .CodeMirror-activeline-background {background: #e8f2ff;} /* STOP */ @@ -111,14 +150,13 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;} the editor. You probably shouldn't touch them. */ .CodeMirror { - line-height: 1; position: relative; overflow: hidden; background: white; - color: black; } .CodeMirror-scroll { + overflow: scroll !important; /* Things will break if this is overridden */ /* 30px is the magic margin used to hide the element's real scrollbars */ /* See overflow: hidden in .CodeMirror */ margin-bottom: -30px; margin-right: -30px; @@ -126,18 +164,14 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;} height: 100%; outline: none; /* Prevent dragging from highlighting the element */ position: relative; - -moz-box-sizing: content-box; - box-sizing: content-box; } .CodeMirror-sizer { position: relative; border-right: 30px solid transparent; - -moz-box-sizing: content-box; - box-sizing: content-box; } /* The fake, visible scrollbars. Used to force redraw during scrolling - before actuall scrolling happens, thus preventing shaking and + before actual scrolling happens, thus preventing shaking and flickering artifacts. */ .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { position: absolute; @@ -163,29 +197,38 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;} .CodeMirror-gutters { position: absolute; left: 0; top: 0; - padding-bottom: 30px; + min-height: 100%; z-index: 3; } .CodeMirror-gutter { white-space: normal; height: 100%; - -moz-box-sizing: content-box; - box-sizing: content-box; - padding-bottom: 30px; - margin-bottom: -32px; display: inline-block; - /* Hack to make IE7 behave */ - *zoom:1; - *display:inline; + vertical-align: top; + margin-bottom: -30px; +} +.CodeMirror-gutter-wrapper { + position: absolute; + z-index: 4; + background: none !important; + border: none !important; +} +.CodeMirror-gutter-background { + position: absolute; + top: 0; bottom: 0; + z-index: 4; } .CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; } +.CodeMirror-gutter-wrapper ::selection { background-color: transparent } +.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent } .CodeMirror-lines { cursor: text; + min-height: 1px; /* prevents collapsing before first draw */ } .CodeMirror pre { /* Reset some styles that the rest of the page might have set */ @@ -202,6 +245,9 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;} z-index: 2; position: relative; overflow: visible; + -webkit-tap-highlight-color: transparent; + -webkit-font-variant-ligatures: contextual; + font-variant-ligatures: contextual; } .CodeMirror-wrap pre { word-wrap: break-word; @@ -223,8 +269,20 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;} .CodeMirror-widget {} -.CodeMirror-wrap .CodeMirror-scroll { - overflow-x: hidden; +.CodeMirror-rtl pre { direction: rtl; } + +.CodeMirror-code { + outline: none; +} + +/* Force content-box sizing for the elements where we expect it */ +.CodeMirror-scroll, +.CodeMirror-sizer, +.CodeMirror-gutter, +.CodeMirror-gutters, +.CodeMirror-linenumber { + -moz-box-sizing: content-box; + box-sizing: content-box; } .CodeMirror-measure { @@ -234,32 +292,49 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;} overflow: hidden; visibility: hidden; } -.CodeMirror-measure pre { position: static; } -.CodeMirror div.CodeMirror-cursor { +.CodeMirror-cursor { position: absolute; + pointer-events: none; +} +.CodeMirror-measure pre { position: static; } + +div.CodeMirror-cursors { visibility: hidden; - border-right: none; - width: 0; + position: relative; + z-index: 3; } -.CodeMirror-focused div.CodeMirror-cursor { +div.CodeMirror-dragcursors { + visibility: visible; +} + +.CodeMirror-focused div.CodeMirror-cursors { visibility: visible; } .CodeMirror-selected { background: #d9d9d9; } .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; } +.CodeMirror-crosshair { cursor: crosshair; } +.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; } +.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; } .cm-searching { background: #ffa; background: rgba(255, 255, 0, .4); } -/* IE7 hack to prevent it from returning funny offsetTops on the spans */ -.CodeMirror span { *vertical-align: text-bottom; } +/* Used to force a border model for a node */ +.cm-force-border { padding-right: .1px; } @media print { /* Hide the cursor when printing */ - .CodeMirror div.CodeMirror-cursor { + .CodeMirror div.CodeMirror-cursors { visibility: hidden; } } + +/* See issue #2901 */ +.cm-tab-wrap-hack:after { content: ''; } + +/* Help users use markselection to safely style text background */ +span.CodeMirror-selectedtext { background: none; } diff --git a/wwwroot/css/codemirror/rackcode.css b/wwwroot/css/codemirror/rackcode.css new file mode 100644 index 000000000..39e4da8c9 --- /dev/null +++ b/wwwroot/css/codemirror/rackcode.css @@ -0,0 +1,3 @@ +.CodeMirror {height: 500px;} +.cm-s-default .cm-operator {color: blue;} +.cm-s-default .cm-tag {color: orange;} diff --git a/wwwroot/inc/interface-config.php b/wwwroot/inc/interface-config.php index d7043f1a3..41e4a11f1 100644 --- a/wwwroot/inc/interface-config.php +++ b/wwwroot/inc/interface-config.php @@ -103,7 +103,8 @@ function renderRackCodeEditor () { addJS ('js/codemirror/codemirror.js'); addJS ('js/codemirror/rackcode.js'); - addCSS ('js/codemirror/codemirror.css'); + addCSS ('css/codemirror/codemirror.css'); + addCSS ('css/codemirror/rackcode.css'); addJS (<<= 15) { opera = false; webkit = true; } - // Some browsers use the wrong event properties to signal cmd/ctrl on OS X - var flipCtrlCmd = mac && (qtwebkit || opera && (opera_version == null || opera_version < 12.11)); - var captureMiddleClick = gecko || (ie && !ie_lt9); - - // Optimize some code when these features are not used - var sawReadOnlySpans = false, sawCollapsedSpans = false; - - // CONSTRUCTOR - - function CodeMirror(place, options) { - if (!(this instanceof CodeMirror)) return new CodeMirror(place, options); - - this.options = options = options || {}; - // Determine effective options based on given values and defaults. - for (var opt in defaults) if (!options.hasOwnProperty(opt) && defaults.hasOwnProperty(opt)) - options[opt] = defaults[opt]; - setGuttersForLineNumbers(options); - - var docStart = typeof options.value == "string" ? 0 : options.value.first; - var display = this.display = makeDisplay(place, docStart); - display.wrapper.CodeMirror = this; - updateGutters(this); - if (options.autofocus && !mobile) focusInput(this); - - this.state = {keyMaps: [], - overlays: [], - modeGen: 0, - overwrite: false, focused: false, - suppressEdits: false, - pasteIncoming: false, cutIncoming: false, - draggingText: false, - highlight: new Delayed()}; - - themeChanged(this); - if (options.lineWrapping) - this.display.wrapper.className += " CodeMirror-wrap"; - - var doc = options.value; - if (typeof doc == "string") doc = new Doc(options.value, options.mode); - operation(this, attachDoc)(this, doc); - - // Override magic textarea content restore that IE sometimes does - // on our hidden textarea on reload - if (old_ie) setTimeout(bind(resetInput, this, true), 20); - - registerEventHandlers(this); - // IE throws unspecified error in certain cases, when - // trying to access activeElement before onload - var hasFocus; try { hasFocus = (document.activeElement == display.input); } catch(e) { } - if (hasFocus || (options.autofocus && !mobile)) setTimeout(bind(onFocus, this), 20); - else onBlur(this); - - operation(this, function() { - for (var opt in optionHandlers) - if (optionHandlers.propertyIsEnumerable(opt)) - optionHandlers[opt](this, options[opt], Init); - for (var i = 0; i < initHooks.length; ++i) initHooks[i](this); - })(); - } - - // DISPLAY CONSTRUCTOR - - function makeDisplay(place, docStart) { - var d = {}; - - var input = d.input = elt("textarea", null, null, "position: absolute; padding: 0; width: 1px; height: 1em; outline: none"); - if (webkit) input.style.width = "1000px"; - else input.setAttribute("wrap", "off"); - // if border: 0; -- iOS fails to open keyboard (issue #1287) - if (ios) input.style.border = "1px solid black"; - input.setAttribute("autocorrect", "off"); input.setAttribute("autocapitalize", "off"); input.setAttribute("spellcheck", "false"); - - // Wraps and hides input textarea - d.inputDiv = elt("div", [input], null, "overflow: hidden; position: relative; width: 3px; height: 0px;"); - // The actual fake scrollbars. - d.scrollbarH = elt("div", [elt("div", null, null, "height: 100%; min-height: 1px")], "CodeMirror-hscrollbar"); - d.scrollbarV = elt("div", [elt("div", null, null, "min-width: 1px")], "CodeMirror-vscrollbar"); - d.scrollbarFiller = elt("div", null, "CodeMirror-scrollbar-filler"); - d.gutterFiller = elt("div", null, "CodeMirror-gutter-filler"); - // DIVs containing the selection and the actual code - d.lineDiv = elt("div", null, "CodeMirror-code"); - d.selectionDiv = elt("div", null, null, "position: relative; z-index: 1"); - // Blinky cursor, and element used to ensure cursor fits at the end of a line - d.cursor = elt("div", "\u00a0", "CodeMirror-cursor"); - // Secondary cursor, shown when on a 'jump' in bi-directional text - d.otherCursor = elt("div", "\u00a0", "CodeMirror-cursor CodeMirror-secondarycursor"); - // Used to measure text size - d.measure = elt("div", null, "CodeMirror-measure"); - // Wraps everything that needs to exist inside the vertically-padded coordinate system - d.lineSpace = elt("div", [d.measure, d.selectionDiv, d.lineDiv, d.cursor, d.otherCursor], - null, "position: relative; outline: none"); - // Moved around its parent to cover visible view - d.mover = elt("div", [elt("div", [d.lineSpace], "CodeMirror-lines")], null, "position: relative"); - // Set to the height of the text, causes scrolling - d.sizer = elt("div", [d.mover], "CodeMirror-sizer"); - // D is needed because behavior of elts with overflow: auto and padding is inconsistent across browsers - d.heightForcer = elt("div", null, null, "position: absolute; height: " + scrollerCutOff + "px; width: 1px;"); - // Will contain the gutters, if any - d.gutters = elt("div", null, "CodeMirror-gutters"); - d.lineGutter = null; - // Provides scrolling - d.scroller = elt("div", [d.sizer, d.heightForcer, d.gutters], "CodeMirror-scroll"); - d.scroller.setAttribute("tabIndex", "-1"); - // The element in which the editor lives. - d.wrapper = elt("div", [d.inputDiv, d.scrollbarH, d.scrollbarV, - d.scrollbarFiller, d.gutterFiller, d.scroller], "CodeMirror"); - // Work around IE7 z-index bug - if (ie_lt8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0; } - if (place.appendChild) place.appendChild(d.wrapper); else place(d.wrapper); - - // Needed to hide big blue blinking cursor on Mobile Safari - if (ios) input.style.width = "0px"; - if (!webkit) d.scroller.draggable = true; - // Needed to handle Tab key in KHTML - if (khtml) { d.inputDiv.style.height = "1px"; d.inputDiv.style.position = "absolute"; } - // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8). - else if (ie_lt8) d.scrollbarH.style.minWidth = d.scrollbarV.style.minWidth = "18px"; - - // Current visible range (may be bigger than the view window). - d.viewOffset = d.lastSizeC = 0; - d.showingFrom = d.showingTo = docStart; - - // Used to only resize the line number gutter when necessary (when - // the amount of lines crosses a boundary that makes its width change) - d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null; - // See readInput and resetInput - d.prevInput = ""; - // Set to true when a non-horizontal-scrolling widget is added. As - // an optimization, widget aligning is skipped when d is false. - d.alignWidgets = false; - // Flag that indicates whether we currently expect input to appear - // (after some event like 'keypress' or 'input') and are polling - // intensively. - d.pollingFast = false; - // Self-resetting timeout for the poller - d.poll = new Delayed(); - - d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null; - d.measureLineCache = []; - d.measureLineCachePos = 0; - - // Tracks when resetInput has punted to just putting a short - // string instead of the (large) selection. - d.inaccurateSelection = false; - - // Tracks the maximum line length so that the horizontal scrollbar - // can be kept static when scrolling. - d.maxLine = null; - d.maxLineLength = 0; - d.maxLineChanged = false; - - // Used for measuring wheel scrolling granularity - d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null; - - return d; - } - - // STATE UPDATES - - // Used to get the editor into a consistent state again when options change. - - function loadMode(cm) { - cm.doc.mode = CodeMirror.getMode(cm.options, cm.doc.modeOption); - resetModeState(cm); - } - - function resetModeState(cm) { - cm.doc.iter(function(line) { - if (line.stateAfter) line.stateAfter = null; - if (line.styles) line.styles = null; - }); - cm.doc.frontier = cm.doc.first; - startWorker(cm, 100); - cm.state.modeGen++; - if (cm.curOp) regChange(cm); - } - - function wrappingChanged(cm) { - if (cm.options.lineWrapping) { - cm.display.wrapper.className += " CodeMirror-wrap"; - cm.display.sizer.style.minWidth = ""; - } else { - cm.display.wrapper.className = cm.display.wrapper.className.replace(" CodeMirror-wrap", ""); - computeMaxLength(cm); +// CodeMirror, copyright (c) by Marijn Haverbeke and others +// Distributed under an MIT license: http://codemirror.net/LICENSE + +// This is CodeMirror (http://codemirror.net), a code editor +// implemented in JavaScript on top of the browser's DOM. +// +// You can find some technical background for some of the code below +// at http://marijnhaverbeke.nl/blog/#cm-internals . + +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + (global.CodeMirror = factory()); +}(this, (function () { 'use strict'; + +// Kludges for bugs and behavior differences that can't be feature +// detected are enabled based on userAgent etc sniffing. +var userAgent = navigator.userAgent +var platform = navigator.platform + +var gecko = /gecko\/\d/i.test(userAgent) +var ie_upto10 = /MSIE \d/.test(userAgent) +var ie_11up = /Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(userAgent) +var edge = /Edge\/(\d+)/.exec(userAgent) +var ie = ie_upto10 || ie_11up || edge +var ie_version = ie && (ie_upto10 ? document.documentMode || 6 : +(edge || ie_11up)[1]) +var webkit = !edge && /WebKit\//.test(userAgent) +var qtwebkit = webkit && /Qt\/\d+\.\d+/.test(userAgent) +var chrome = !edge && /Chrome\//.test(userAgent) +var presto = /Opera\//.test(userAgent) +var safari = /Apple Computer/.test(navigator.vendor) +var mac_geMountainLion = /Mac OS X 1\d\D([8-9]|\d\d)\D/.test(userAgent) +var phantom = /PhantomJS/.test(userAgent) + +var ios = !edge && /AppleWebKit/.test(userAgent) && /Mobile\/\w+/.test(userAgent) +var android = /Android/.test(userAgent) +// This is woefully incomplete. Suggestions for alternative methods welcome. +var mobile = ios || android || /webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(userAgent) +var mac = ios || /Mac/.test(platform) +var chromeOS = /\bCrOS\b/.test(userAgent) +var windows = /win/i.test(platform) + +var presto_version = presto && userAgent.match(/Version\/(\d*\.\d*)/) +if (presto_version) { presto_version = Number(presto_version[1]) } +if (presto_version && presto_version >= 15) { presto = false; webkit = true } +// Some browsers use the wrong event properties to signal cmd/ctrl on OS X +var flipCtrlCmd = mac && (qtwebkit || presto && (presto_version == null || presto_version < 12.11)) +var captureRightClick = gecko || (ie && ie_version >= 9) + +function classTest(cls) { return new RegExp("(^|\\s)" + cls + "(?:$|\\s)\\s*") } + +var rmClass = function(node, cls) { + var current = node.className + var match = classTest(cls).exec(current) + if (match) { + var after = current.slice(match.index + match[0].length) + node.className = current.slice(0, match.index) + (after ? match[1] + after : "") + } +} + +function removeChildren(e) { + for (var count = e.childNodes.length; count > 0; --count) + { e.removeChild(e.firstChild) } + return e +} + +function removeChildrenAndAdd(parent, e) { + return removeChildren(parent).appendChild(e) +} + +function elt(tag, content, className, style) { + var e = document.createElement(tag) + if (className) { e.className = className } + if (style) { e.style.cssText = style } + if (typeof content == "string") { e.appendChild(document.createTextNode(content)) } + else if (content) { for (var i = 0; i < content.length; ++i) { e.appendChild(content[i]) } } + return e +} +// wrapper for elt, which removes the elt from the accessibility tree +function eltP(tag, content, className, style) { + var e = elt(tag, content, className, style) + e.setAttribute("role", "presentation") + return e +} + +var range +if (document.createRange) { range = function(node, start, end, endNode) { + var r = document.createRange() + r.setEnd(endNode || node, end) + r.setStart(node, start) + return r +} } +else { range = function(node, start, end) { + var r = document.body.createTextRange() + try { r.moveToElementText(node.parentNode) } + catch(e) { return r } + r.collapse(true) + r.moveEnd("character", end) + r.moveStart("character", start) + return r +} } + +function contains(parent, child) { + if (child.nodeType == 3) // Android browser always returns false when child is a textnode + { child = child.parentNode } + if (parent.contains) + { return parent.contains(child) } + do { + if (child.nodeType == 11) { child = child.host } + if (child == parent) { return true } + } while (child = child.parentNode) +} + +function activeElt() { + // IE and Edge may throw an "Unspecified Error" when accessing document.activeElement. + // IE < 10 will throw when accessed while the page is loading or in an iframe. + // IE > 9 and Edge will throw when accessed in an iframe if document.body is unavailable. + var activeElement + try { + activeElement = document.activeElement + } catch(e) { + activeElement = document.body || null + } + while (activeElement && activeElement.shadowRoot && activeElement.shadowRoot.activeElement) + { activeElement = activeElement.shadowRoot.activeElement } + return activeElement +} + +function addClass(node, cls) { + var current = node.className + if (!classTest(cls).test(current)) { node.className += (current ? " " : "") + cls } +} +function joinClasses(a, b) { + var as = a.split(" ") + for (var i = 0; i < as.length; i++) + { if (as[i] && !classTest(as[i]).test(b)) { b += " " + as[i] } } + return b +} + +var selectInput = function(node) { node.select() } +if (ios) // Mobile Safari apparently has a bug where select() is broken. + { selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length } } +else if (ie) // Suppress mysterious IE10 errors + { selectInput = function(node) { try { node.select() } catch(_e) {} } } + +function bind(f) { + var args = Array.prototype.slice.call(arguments, 1) + return function(){return f.apply(null, args)} +} + +function copyObj(obj, target, overwrite) { + if (!target) { target = {} } + for (var prop in obj) + { if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop))) + { target[prop] = obj[prop] } } + return target +} + +// Counts the column offset in a string, taking tabs into account. +// Used mostly to find indentation. +function countColumn(string, end, tabSize, startIndex, startValue) { + if (end == null) { + end = string.search(/[^\s\u00a0]/) + if (end == -1) { end = string.length } + } + for (var i = startIndex || 0, n = startValue || 0;;) { + var nextTab = string.indexOf("\t", i) + if (nextTab < 0 || nextTab >= end) + { return n + (end - i) } + n += nextTab - i + n += tabSize - (n % tabSize) + i = nextTab + 1 + } +} + +var Delayed = function() {this.id = null}; +Delayed.prototype.set = function (ms, f) { + clearTimeout(this.id) + this.id = setTimeout(f, ms) +}; + +function indexOf(array, elt) { + for (var i = 0; i < array.length; ++i) + { if (array[i] == elt) { return i } } + return -1 +} + +// Number of pixels added to scroller and sizer to hide scrollbar +var scrollerGap = 30 + +// Returned or thrown by various protocols to signal 'I'm not +// handling this'. +var Pass = {toString: function(){return "CodeMirror.Pass"}} + +// Reused option objects for setSelection & friends +var sel_dontScroll = {scroll: false}; +var sel_mouse = {origin: "*mouse"}; +var sel_move = {origin: "+move"}; +// The inverse of countColumn -- find the offset that corresponds to +// a particular column. +function findColumn(string, goal, tabSize) { + for (var pos = 0, col = 0;;) { + var nextTab = string.indexOf("\t", pos) + if (nextTab == -1) { nextTab = string.length } + var skipped = nextTab - pos + if (nextTab == string.length || col + skipped >= goal) + { return pos + Math.min(skipped, goal - col) } + col += nextTab - pos + col += tabSize - (col % tabSize) + pos = nextTab + 1 + if (col >= goal) { return pos } + } +} + +var spaceStrs = [""] +function spaceStr(n) { + while (spaceStrs.length <= n) + { spaceStrs.push(lst(spaceStrs) + " ") } + return spaceStrs[n] +} + +function lst(arr) { return arr[arr.length-1] } + +function map(array, f) { + var out = [] + for (var i = 0; i < array.length; i++) { out[i] = f(array[i], i) } + return out +} + +function insertSorted(array, value, score) { + var pos = 0, priority = score(value) + while (pos < array.length && score(array[pos]) <= priority) { pos++ } + array.splice(pos, 0, value) +} + +function nothing() {} + +function createObj(base, props) { + var inst + if (Object.create) { + inst = Object.create(base) + } else { + nothing.prototype = base + inst = new nothing() + } + if (props) { copyObj(props, inst) } + return inst +} + +var nonASCIISingleCaseWordChar = /[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/ +function isWordCharBasic(ch) { + return /\w/.test(ch) || ch > "\x80" && + (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch)) +} +function isWordChar(ch, helper) { + if (!helper) { return isWordCharBasic(ch) } + if (helper.source.indexOf("\\w") > -1 && isWordCharBasic(ch)) { return true } + return helper.test(ch) +} + +function isEmpty(obj) { + for (var n in obj) { if (obj.hasOwnProperty(n) && obj[n]) { return false } } + return true +} + +// Extending unicode characters. A series of a non-extending char + +// any number of extending chars is treated as a single unit as far +// as editing and measuring is concerned. This is not fully correct, +// since some scripts/fonts/browsers also treat other configurations +// of code points as a group. +var extendingChars = /[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/ +function isExtendingChar(ch) { return ch.charCodeAt(0) >= 768 && extendingChars.test(ch) } + +// Returns a number from the range [`0`; `str.length`] unless `pos` is outside that range. +function skipExtendingChars(str, pos, dir) { + while ((dir < 0 ? pos > 0 : pos < str.length) && isExtendingChar(str.charAt(pos))) { pos += dir } + return pos +} + +// Returns the value from the range [`from`; `to`] that satisfies +// `pred` and is closest to `from`. Assumes that at least `to` satisfies `pred`. +function findFirst(pred, from, to) { + for (;;) { + if (Math.abs(from - to) <= 1) { return pred(from) ? from : to } + var mid = Math.floor((from + to) / 2) + if (pred(mid)) { to = mid } + else { from = mid } + } +} + +// The display handles the DOM integration, both for input reading +// and content drawing. It holds references to DOM nodes and +// display-related state. + +function Display(place, doc, input) { + var d = this + this.input = input + + // Covers bottom-right square when both scrollbars are present. + d.scrollbarFiller = elt("div", null, "CodeMirror-scrollbar-filler") + d.scrollbarFiller.setAttribute("cm-not-content", "true") + // Covers bottom of gutter when coverGutterNextToScrollbar is on + // and h scrollbar is present. + d.gutterFiller = elt("div", null, "CodeMirror-gutter-filler") + d.gutterFiller.setAttribute("cm-not-content", "true") + // Will contain the actual code, positioned to cover the viewport. + d.lineDiv = eltP("div", null, "CodeMirror-code") + // Elements are added to these to represent selection and cursors. + d.selectionDiv = elt("div", null, null, "position: relative; z-index: 1") + d.cursorDiv = elt("div", null, "CodeMirror-cursors") + // A visibility: hidden element used to find the size of things. + d.measure = elt("div", null, "CodeMirror-measure") + // When lines outside of the viewport are measured, they are drawn in this. + d.lineMeasure = elt("div", null, "CodeMirror-measure") + // Wraps everything that needs to exist inside the vertically-padded coordinate system + d.lineSpace = eltP("div", [d.measure, d.lineMeasure, d.selectionDiv, d.cursorDiv, d.lineDiv], + null, "position: relative; outline: none") + var lines = eltP("div", [d.lineSpace], "CodeMirror-lines") + // Moved around its parent to cover visible view. + d.mover = elt("div", [lines], null, "position: relative") + // Set to the height of the document, allowing scrolling. + d.sizer = elt("div", [d.mover], "CodeMirror-sizer") + d.sizerWidth = null + // Behavior of elts with overflow: auto and padding is + // inconsistent across browsers. This is used to ensure the + // scrollable area is big enough. + d.heightForcer = elt("div", null, null, "position: absolute; height: " + scrollerGap + "px; width: 1px;") + // Will contain the gutters, if any. + d.gutters = elt("div", null, "CodeMirror-gutters") + d.lineGutter = null + // Actual scrollable element. + d.scroller = elt("div", [d.sizer, d.heightForcer, d.gutters], "CodeMirror-scroll") + d.scroller.setAttribute("tabIndex", "-1") + // The element in which the editor lives. + d.wrapper = elt("div", [d.scrollbarFiller, d.gutterFiller, d.scroller], "CodeMirror") + + // Work around IE7 z-index bug (not perfect, hence IE7 not really being supported) + if (ie && ie_version < 8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0 } + if (!webkit && !(gecko && mobile)) { d.scroller.draggable = true } + + if (place) { + if (place.appendChild) { place.appendChild(d.wrapper) } + else { place(d.wrapper) } + } + + // Current rendered range (may be bigger than the view window). + d.viewFrom = d.viewTo = doc.first + d.reportedViewFrom = d.reportedViewTo = doc.first + // Information about the rendered lines. + d.view = [] + d.renderedView = null + // Holds info about a single rendered line when it was rendered + // for measurement, while not in view. + d.externalMeasured = null + // Empty space (in pixels) above the view + d.viewOffset = 0 + d.lastWrapHeight = d.lastWrapWidth = 0 + d.updateLineNumbers = null + + d.nativeBarWidth = d.barHeight = d.barWidth = 0 + d.scrollbarsClipped = false + + // Used to only resize the line number gutter when necessary (when + // the amount of lines crosses a boundary that makes its width change) + d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null + // Set to true when a non-horizontal-scrolling line widget is + // added. As an optimization, line widget aligning is skipped when + // this is false. + d.alignWidgets = false + + d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null + + // Tracks the maximum line length so that the horizontal scrollbar + // can be kept static when scrolling. + d.maxLine = null + d.maxLineLength = 0 + d.maxLineChanged = false + + // Used for measuring wheel scrolling granularity + d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null + + // True when shift is held down. + d.shift = false + + // Used to track whether anything happened since the context menu + // was opened. + d.selForContextMenu = null + + d.activeTouch = null + + input.init(d) +} + +// Find the line object corresponding to the given line number. +function getLine(doc, n) { + n -= doc.first + if (n < 0 || n >= doc.size) { throw new Error("There is no line " + (n + doc.first) + " in the document.") } + var chunk = doc + while (!chunk.lines) { + for (var i = 0;; ++i) { + var child = chunk.children[i], sz = child.chunkSize() + if (n < sz) { chunk = child; break } + n -= sz + } + } + return chunk.lines[n] +} + +// Get the part of a document between two positions, as an array of +// strings. +function getBetween(doc, start, end) { + var out = [], n = start.line + doc.iter(start.line, end.line + 1, function (line) { + var text = line.text + if (n == end.line) { text = text.slice(0, end.ch) } + if (n == start.line) { text = text.slice(start.ch) } + out.push(text) + ++n + }) + return out +} +// Get the lines between from and to, as array of strings. +function getLines(doc, from, to) { + var out = [] + doc.iter(from, to, function (line) { out.push(line.text) }) // iter aborts when callback returns truthy value + return out +} + +// Update the height of a line, propagating the height change +// upwards to parent nodes. +function updateLineHeight(line, height) { + var diff = height - line.height + if (diff) { for (var n = line; n; n = n.parent) { n.height += diff } } +} + +// Given a line object, find its line number by walking up through +// its parent links. +function lineNo(line) { + if (line.parent == null) { return null } + var cur = line.parent, no = indexOf(cur.lines, line) + for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) { + for (var i = 0;; ++i) { + if (chunk.children[i] == cur) { break } + no += chunk.children[i].chunkSize() + } + } + return no + cur.first +} + +// Find the line at the given vertical position, using the height +// information in the document tree. +function lineAtHeight(chunk, h) { + var n = chunk.first + outer: do { + for (var i$1 = 0; i$1 < chunk.children.length; ++i$1) { + var child = chunk.children[i$1], ch = child.height + if (h < ch) { chunk = child; continue outer } + h -= ch + n += child.chunkSize() + } + return n + } while (!chunk.lines) + var i = 0 + for (; i < chunk.lines.length; ++i) { + var line = chunk.lines[i], lh = line.height + if (h < lh) { break } + h -= lh + } + return n + i +} + +function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size} + +function lineNumberFor(options, i) { + return String(options.lineNumberFormatter(i + options.firstLineNumber)) +} + +// A Pos instance represents a position within the text. +function Pos(line, ch, sticky) { + if ( sticky === void 0 ) sticky = null; + + if (!(this instanceof Pos)) { return new Pos(line, ch, sticky) } + this.line = line + this.ch = ch + this.sticky = sticky +} + +// Compare two positions, return 0 if they are the same, a negative +// number when a is less, and a positive number otherwise. +function cmp(a, b) { return a.line - b.line || a.ch - b.ch } + +function equalCursorPos(a, b) { return a.sticky == b.sticky && cmp(a, b) == 0 } + +function copyPos(x) {return Pos(x.line, x.ch)} +function maxPos(a, b) { return cmp(a, b) < 0 ? b : a } +function minPos(a, b) { return cmp(a, b) < 0 ? a : b } + +// Most of the external API clips given positions to make sure they +// actually exist within the document. +function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1))} +function clipPos(doc, pos) { + if (pos.line < doc.first) { return Pos(doc.first, 0) } + var last = doc.first + doc.size - 1 + if (pos.line > last) { return Pos(last, getLine(doc, last).text.length) } + return clipToLen(pos, getLine(doc, pos.line).text.length) +} +function clipToLen(pos, linelen) { + var ch = pos.ch + if (ch == null || ch > linelen) { return Pos(pos.line, linelen) } + else if (ch < 0) { return Pos(pos.line, 0) } + else { return pos } +} +function clipPosArray(doc, array) { + var out = [] + for (var i = 0; i < array.length; i++) { out[i] = clipPos(doc, array[i]) } + return out +} + +// Optimize some code when these features are not used. +var sawReadOnlySpans = false; +var sawCollapsedSpans = false; +function seeReadOnlySpans() { + sawReadOnlySpans = true +} + +function seeCollapsedSpans() { + sawCollapsedSpans = true +} + +// TEXTMARKER SPANS + +function MarkedSpan(marker, from, to) { + this.marker = marker + this.from = from; this.to = to +} + +// Search an array of spans for a span matching the given marker. +function getMarkedSpanFor(spans, marker) { + if (spans) { for (var i = 0; i < spans.length; ++i) { + var span = spans[i] + if (span.marker == marker) { return span } + } } +} +// Remove a span from an array, returning undefined if no spans are +// left (we don't store arrays for lines without spans). +function removeMarkedSpan(spans, span) { + var r + for (var i = 0; i < spans.length; ++i) + { if (spans[i] != span) { (r || (r = [])).push(spans[i]) } } + return r +} +// Add a span to a line. +function addMarkedSpan(line, span) { + line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span] + span.marker.attachLine(line) +} + +// Used for the algorithm that adjusts markers for a change in the +// document. These functions cut an array of spans at a given +// character position, returning an array of remaining chunks (or +// undefined if nothing remains). +function markedSpansBefore(old, startCh, isInsert) { + var nw + if (old) { for (var i = 0; i < old.length; ++i) { + var span = old[i], marker = span.marker + var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh) + if (startsBefore || span.from == startCh && marker.type == "bookmark" && (!isInsert || !span.marker.insertLeft)) { + var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh) + ;(nw || (nw = [])).push(new MarkedSpan(marker, span.from, endsAfter ? null : span.to)) + } + } } + return nw +} +function markedSpansAfter(old, endCh, isInsert) { + var nw + if (old) { for (var i = 0; i < old.length; ++i) { + var span = old[i], marker = span.marker + var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh) + if (endsAfter || span.from == endCh && marker.type == "bookmark" && (!isInsert || span.marker.insertLeft)) { + var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh) + ;(nw || (nw = [])).push(new MarkedSpan(marker, startsBefore ? null : span.from - endCh, + span.to == null ? null : span.to - endCh)) + } + } } + return nw +} + +// Given a change object, compute the new set of marker spans that +// cover the line in which the change took place. Removes spans +// entirely within the change, reconnects spans belonging to the +// same marker that appear on both sides of the change, and cuts off +// spans partially within the change. Returns an array of span +// arrays with one element for each line in (after) the change. +function stretchSpansOverChange(doc, change) { + if (change.full) { return null } + var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans + var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans + if (!oldFirst && !oldLast) { return null } + + var startCh = change.from.ch, endCh = change.to.ch, isInsert = cmp(change.from, change.to) == 0 + // Get the spans that 'stick out' on both sides + var first = markedSpansBefore(oldFirst, startCh, isInsert) + var last = markedSpansAfter(oldLast, endCh, isInsert) + + // Next, merge those two ends + var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0) + if (first) { + // Fix up .to properties of first + for (var i = 0; i < first.length; ++i) { + var span = first[i] + if (span.to == null) { + var found = getMarkedSpanFor(last, span.marker) + if (!found) { span.to = startCh } + else if (sameLine) { span.to = found.to == null ? null : found.to + offset } + } } - estimateLineHeights(cm); - regChange(cm); - clearCaches(cm); - setTimeout(function(){updateScrollbars(cm);}, 100); } - - function estimateHeight(cm) { - var th = textHeight(cm.display), wrapping = cm.options.lineWrapping; - var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3); - return function(line) { - if (lineIsHidden(cm.doc, line)) return 0; - - var widgetsHeight = 0; - if (line.widgets) for (var i = 0; i < line.widgets.length; i++) { - if (line.widgets[i].height) widgetsHeight += line.widgets[i].height; + if (last) { + // Fix up .from in last (or move them into first in case of sameLine) + for (var i$1 = 0; i$1 < last.length; ++i$1) { + var span$1 = last[i$1] + if (span$1.to != null) { span$1.to += offset } + if (span$1.from == null) { + var found$1 = getMarkedSpanFor(first, span$1.marker) + if (!found$1) { + span$1.from = offset + if (sameLine) { (first || (first = [])).push(span$1) } + } + } else { + span$1.from += offset + if (sameLine) { (first || (first = [])).push(span$1) } } - - if (wrapping) - return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th; - else - return widgetsHeight + th; - }; - } - - function estimateLineHeights(cm) { - var doc = cm.doc, est = estimateHeight(cm); - doc.iter(function(line) { - var estHeight = est(line); - if (estHeight != line.height) updateLineHeight(line, estHeight); - }); - } - - function keyMapChanged(cm) { - var map = keyMap[cm.options.keyMap], style = map.style; - cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-keymap-\S+/g, "") + - (style ? " cm-keymap-" + style : ""); - } - - function themeChanged(cm) { - cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-s-\S+/g, "") + - cm.options.theme.replace(/(^|\s)\s*/g, " cm-s-"); - clearCaches(cm); - } - - function guttersChanged(cm) { - updateGutters(cm); - regChange(cm); - setTimeout(function(){alignHorizontally(cm);}, 20); + } } + // Make sure we didn't create any zero-length spans + if (first) { first = clearEmptySpans(first) } + if (last && last != first) { last = clearEmptySpans(last) } + + var newMarkers = [first] + if (!sameLine) { + // Fill gap with whole-line-spans + var gap = change.text.length - 2, gapMarkers + if (gap > 0 && first) + { for (var i$2 = 0; i$2 < first.length; ++i$2) + { if (first[i$2].to == null) + { (gapMarkers || (gapMarkers = [])).push(new MarkedSpan(first[i$2].marker, null, null)) } } } + for (var i$3 = 0; i$3 < gap; ++i$3) + { newMarkers.push(gapMarkers) } + newMarkers.push(last) + } + return newMarkers +} + +// Remove spans that are empty and don't have a clearWhenEmpty +// option of false. +function clearEmptySpans(spans) { + for (var i = 0; i < spans.length; ++i) { + var span = spans[i] + if (span.from != null && span.from == span.to && span.marker.clearWhenEmpty !== false) + { spans.splice(i--, 1) } + } + if (!spans.length) { return null } + return spans +} + +// Used to 'clip' out readOnly ranges when making a change. +function removeReadOnlyRanges(doc, from, to) { + var markers = null + doc.iter(from.line, to.line + 1, function (line) { + if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) { + var mark = line.markedSpans[i].marker + if (mark.readOnly && (!markers || indexOf(markers, mark) == -1)) + { (markers || (markers = [])).push(mark) } + } } + }) + if (!markers) { return null } + var parts = [{from: from, to: to}] + for (var i = 0; i < markers.length; ++i) { + var mk = markers[i], m = mk.find(0) + for (var j = 0; j < parts.length; ++j) { + var p = parts[j] + if (cmp(p.to, m.from) < 0 || cmp(p.from, m.to) > 0) { continue } + var newParts = [j, 1], dfrom = cmp(p.from, m.from), dto = cmp(p.to, m.to) + if (dfrom < 0 || !mk.inclusiveLeft && !dfrom) + { newParts.push({from: p.from, to: m.from}) } + if (dto > 0 || !mk.inclusiveRight && !dto) + { newParts.push({from: m.to, to: p.to}) } + parts.splice.apply(parts, newParts) + j += newParts.length - 3 + } + } + return parts +} + +// Connect or disconnect spans from a line. +function detachMarkedSpans(line) { + var spans = line.markedSpans + if (!spans) { return } + for (var i = 0; i < spans.length; ++i) + { spans[i].marker.detachLine(line) } + line.markedSpans = null +} +function attachMarkedSpans(line, spans) { + if (!spans) { return } + for (var i = 0; i < spans.length; ++i) + { spans[i].marker.attachLine(line) } + line.markedSpans = spans +} + +// Helpers used when computing which overlapping collapsed span +// counts as the larger one. +function extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0 } +function extraRight(marker) { return marker.inclusiveRight ? 1 : 0 } + +// Returns a number indicating which of two overlapping collapsed +// spans is larger (and thus includes the other). Falls back to +// comparing ids when the spans cover exactly the same range. +function compareCollapsedMarkers(a, b) { + var lenDiff = a.lines.length - b.lines.length + if (lenDiff != 0) { return lenDiff } + var aPos = a.find(), bPos = b.find() + var fromCmp = cmp(aPos.from, bPos.from) || extraLeft(a) - extraLeft(b) + if (fromCmp) { return -fromCmp } + var toCmp = cmp(aPos.to, bPos.to) || extraRight(a) - extraRight(b) + if (toCmp) { return toCmp } + return b.id - a.id +} + +// Find out whether a line ends or starts in a collapsed span. If +// so, return the marker for that span. +function collapsedSpanAtSide(line, start) { + var sps = sawCollapsedSpans && line.markedSpans, found + if (sps) { for (var sp = (void 0), i = 0; i < sps.length; ++i) { + sp = sps[i] + if (sp.marker.collapsed && (start ? sp.from : sp.to) == null && + (!found || compareCollapsedMarkers(found, sp.marker) < 0)) + { found = sp.marker } + } } + return found +} +function collapsedSpanAtStart(line) { return collapsedSpanAtSide(line, true) } +function collapsedSpanAtEnd(line) { return collapsedSpanAtSide(line, false) } + +// Test whether there exists a collapsed span that partially +// overlaps (covers the start or end, but not both) of a new span. +// Such overlap is not allowed. +function conflictingCollapsedRange(doc, lineNo, from, to, marker) { + var line = getLine(doc, lineNo) + var sps = sawCollapsedSpans && line.markedSpans + if (sps) { for (var i = 0; i < sps.length; ++i) { + var sp = sps[i] + if (!sp.marker.collapsed) { continue } + var found = sp.marker.find(0) + var fromCmp = cmp(found.from, from) || extraLeft(sp.marker) - extraLeft(marker) + var toCmp = cmp(found.to, to) || extraRight(sp.marker) - extraRight(marker) + if (fromCmp >= 0 && toCmp <= 0 || fromCmp <= 0 && toCmp >= 0) { continue } + if (fromCmp <= 0 && (sp.marker.inclusiveRight && marker.inclusiveLeft ? cmp(found.to, from) >= 0 : cmp(found.to, from) > 0) || + fromCmp >= 0 && (sp.marker.inclusiveRight && marker.inclusiveLeft ? cmp(found.from, to) <= 0 : cmp(found.from, to) < 0)) + { return true } + } } +} + +// A visual line is a line as drawn on the screen. Folding, for +// example, can cause multiple logical lines to appear on the same +// visual line. This finds the start of the visual line that the +// given line is part of (usually that is the line itself). +function visualLine(line) { + var merged + while (merged = collapsedSpanAtStart(line)) + { line = merged.find(-1, true).line } + return line +} + +function visualLineEnd(line) { + var merged + while (merged = collapsedSpanAtEnd(line)) + { line = merged.find(1, true).line } + return line +} + +// Returns an array of logical lines that continue the visual line +// started by the argument, or undefined if there are no such lines. +function visualLineContinued(line) { + var merged, lines + while (merged = collapsedSpanAtEnd(line)) { + line = merged.find(1, true).line + ;(lines || (lines = [])).push(line) + } + return lines +} + +// Get the line number of the start of the visual line that the +// given line number is part of. +function visualLineNo(doc, lineN) { + var line = getLine(doc, lineN), vis = visualLine(line) + if (line == vis) { return lineN } + return lineNo(vis) +} + +// Get the line number of the start of the next visual line after +// the given line. +function visualLineEndNo(doc, lineN) { + if (lineN > doc.lastLine()) { return lineN } + var line = getLine(doc, lineN), merged + if (!lineIsHidden(doc, line)) { return lineN } + while (merged = collapsedSpanAtEnd(line)) + { line = merged.find(1, true).line } + return lineNo(line) + 1 +} + +// Compute whether a line is hidden. Lines count as hidden when they +// are part of a visual line that starts with another line, or when +// they are entirely covered by collapsed, non-widget span. +function lineIsHidden(doc, line) { + var sps = sawCollapsedSpans && line.markedSpans + if (sps) { for (var sp = (void 0), i = 0; i < sps.length; ++i) { + sp = sps[i] + if (!sp.marker.collapsed) { continue } + if (sp.from == null) { return true } + if (sp.marker.widgetNode) { continue } + if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp)) + { return true } + } } +} +function lineIsHiddenInner(doc, line, span) { + if (span.to == null) { + var end = span.marker.find(1, true) + return lineIsHiddenInner(doc, end.line, getMarkedSpanFor(end.line.markedSpans, span.marker)) + } + if (span.marker.inclusiveRight && span.to == line.text.length) + { return true } + for (var sp = (void 0), i = 0; i < line.markedSpans.length; ++i) { + sp = line.markedSpans[i] + if (sp.marker.collapsed && !sp.marker.widgetNode && sp.from == span.to && + (sp.to == null || sp.to != span.from) && + (sp.marker.inclusiveLeft || span.marker.inclusiveRight) && + lineIsHiddenInner(doc, line, sp)) { return true } + } +} + +// Find the height above the given line. +function heightAtLine(lineObj) { + lineObj = visualLine(lineObj) + + var h = 0, chunk = lineObj.parent + for (var i = 0; i < chunk.lines.length; ++i) { + var line = chunk.lines[i] + if (line == lineObj) { break } + else { h += line.height } + } + for (var p = chunk.parent; p; chunk = p, p = chunk.parent) { + for (var i$1 = 0; i$1 < p.children.length; ++i$1) { + var cur = p.children[i$1] + if (cur == chunk) { break } + else { h += cur.height } + } + } + return h +} + +// Compute the character length of a line, taking into account +// collapsed ranges (see markText) that might hide parts, and join +// other lines onto it. +function lineLength(line) { + if (line.height == 0) { return 0 } + var len = line.text.length, merged, cur = line + while (merged = collapsedSpanAtStart(cur)) { + var found = merged.find(0, true) + cur = found.from.line + len += found.from.ch - found.to.ch + } + cur = line + while (merged = collapsedSpanAtEnd(cur)) { + var found$1 = merged.find(0, true) + len -= cur.text.length - found$1.from.ch + cur = found$1.to.line + len += cur.text.length - found$1.to.ch + } + return len +} + +// Find the longest line in the document. +function findMaxLine(cm) { + var d = cm.display, doc = cm.doc + d.maxLine = getLine(doc, doc.first) + d.maxLineLength = lineLength(d.maxLine) + d.maxLineChanged = true + doc.iter(function (line) { + var len = lineLength(line) + if (len > d.maxLineLength) { + d.maxLineLength = len + d.maxLine = line + } + }) +} + +// BIDI HELPERS + +function iterateBidiSections(order, from, to, f) { + if (!order) { return f(from, to, "ltr") } + var found = false + for (var i = 0; i < order.length; ++i) { + var part = order[i] + if (part.from < to && part.to > from || from == to && part.to == from) { + f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? "rtl" : "ltr") + found = true + } + } + if (!found) { f(from, to, "ltr") } +} + +var bidiOther = null +function getBidiPartAt(order, ch, sticky) { + var found + bidiOther = null + for (var i = 0; i < order.length; ++i) { + var cur = order[i] + if (cur.from < ch && cur.to > ch) { return i } + if (cur.to == ch) { + if (cur.from != cur.to && sticky == "before") { found = i } + else { bidiOther = i } + } + if (cur.from == ch) { + if (cur.from != cur.to && sticky != "before") { found = i } + else { bidiOther = i } + } + } + return found != null ? found : bidiOther +} + +// Bidirectional ordering algorithm +// See http://unicode.org/reports/tr9/tr9-13.html for the algorithm +// that this (partially) implements. + +// One-char codes used for character types: +// L (L): Left-to-Right +// R (R): Right-to-Left +// r (AL): Right-to-Left Arabic +// 1 (EN): European Number +// + (ES): European Number Separator +// % (ET): European Number Terminator +// n (AN): Arabic Number +// , (CS): Common Number Separator +// m (NSM): Non-Spacing Mark +// b (BN): Boundary Neutral +// s (B): Paragraph Separator +// t (S): Segment Separator +// w (WS): Whitespace +// N (ON): Other Neutrals + +// Returns null if characters are ordered as they appear +// (left-to-right), or an array of sections ({from, to, level} +// objects) in the order in which they occur visually. +var bidiOrdering = (function() { + // Character types for codepoints 0 to 0xff + var lowTypes = "bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN" + // Character types for codepoints 0x600 to 0x6f9 + var arabicTypes = "nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111" + function charType(code) { + if (code <= 0xf7) { return lowTypes.charAt(code) } + else if (0x590 <= code && code <= 0x5f4) { return "R" } + else if (0x600 <= code && code <= 0x6f9) { return arabicTypes.charAt(code - 0x600) } + else if (0x6ee <= code && code <= 0x8ac) { return "r" } + else if (0x2000 <= code && code <= 0x200b) { return "w" } + else if (code == 0x200c) { return "b" } + else { return "L" } + } + + var bidiRE = /[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/ + var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/ + + function BidiSpan(level, from, to) { + this.level = level + this.from = from; this.to = to + } + + return function(str, direction) { + var outerType = direction == "ltr" ? "L" : "R" + + if (str.length == 0 || direction == "ltr" && !bidiRE.test(str)) { return false } + var len = str.length, types = [] + for (var i = 0; i < len; ++i) + { types.push(charType(str.charCodeAt(i))) } + + // W1. Examine each non-spacing mark (NSM) in the level run, and + // change the type of the NSM to the type of the previous + // character. If the NSM is at the start of the level run, it will + // get the type of sor. + for (var i$1 = 0, prev = outerType; i$1 < len; ++i$1) { + var type = types[i$1] + if (type == "m") { types[i$1] = prev } + else { prev = type } + } + + // W2. Search backwards from each instance of a European number + // until the first strong type (R, L, AL, or sor) is found. If an + // AL is found, change the type of the European number to Arabic + // number. + // W3. Change all ALs to R. + for (var i$2 = 0, cur = outerType; i$2 < len; ++i$2) { + var type$1 = types[i$2] + if (type$1 == "1" && cur == "r") { types[i$2] = "n" } + else if (isStrong.test(type$1)) { cur = type$1; if (type$1 == "r") { types[i$2] = "R" } } + } + + // W4. A single European separator between two European numbers + // changes to a European number. A single common separator between + // two numbers of the same type changes to that type. + for (var i$3 = 1, prev$1 = types[0]; i$3 < len - 1; ++i$3) { + var type$2 = types[i$3] + if (type$2 == "+" && prev$1 == "1" && types[i$3+1] == "1") { types[i$3] = "1" } + else if (type$2 == "," && prev$1 == types[i$3+1] && + (prev$1 == "1" || prev$1 == "n")) { types[i$3] = prev$1 } + prev$1 = type$2 + } + + // W5. A sequence of European terminators adjacent to European + // numbers changes to all European numbers. + // W6. Otherwise, separators and terminators change to Other + // Neutral. + for (var i$4 = 0; i$4 < len; ++i$4) { + var type$3 = types[i$4] + if (type$3 == ",") { types[i$4] = "N" } + else if (type$3 == "%") { + var end = (void 0) + for (end = i$4 + 1; end < len && types[end] == "%"; ++end) {} + var replace = (i$4 && types[i$4-1] == "!") || (end < len && types[end] == "1") ? "1" : "N" + for (var j = i$4; j < end; ++j) { types[j] = replace } + i$4 = end - 1 + } + } - function updateGutters(cm) { - var gutters = cm.display.gutters, specs = cm.options.gutters; - removeChildren(gutters); - for (var i = 0; i < specs.length; ++i) { - var gutterClass = specs[i]; - var gElt = gutters.appendChild(elt("div", null, "CodeMirror-gutter " + gutterClass)); - if (gutterClass == "CodeMirror-linenumbers") { - cm.display.lineGutter = gElt; - gElt.style.width = (cm.display.lineNumWidth || 1) + "px"; + // W7. Search backwards from each instance of a European number + // until the first strong type (R, L, or sor) is found. If an L is + // found, then change the type of the European number to L. + for (var i$5 = 0, cur$1 = outerType; i$5 < len; ++i$5) { + var type$4 = types[i$5] + if (cur$1 == "L" && type$4 == "1") { types[i$5] = "L" } + else if (isStrong.test(type$4)) { cur$1 = type$4 } + } + + // N1. A sequence of neutrals takes the direction of the + // surrounding strong text if the text on both sides has the same + // direction. European and Arabic numbers act as if they were R in + // terms of their influence on neutrals. Start-of-level-run (sor) + // and end-of-level-run (eor) are used at level run boundaries. + // N2. Any remaining neutrals take the embedding direction. + for (var i$6 = 0; i$6 < len; ++i$6) { + if (isNeutral.test(types[i$6])) { + var end$1 = (void 0) + for (end$1 = i$6 + 1; end$1 < len && isNeutral.test(types[end$1]); ++end$1) {} + var before = (i$6 ? types[i$6-1] : outerType) == "L" + var after = (end$1 < len ? types[end$1] : outerType) == "L" + var replace$1 = before == after ? (before ? "L" : "R") : outerType + for (var j$1 = i$6; j$1 < end$1; ++j$1) { types[j$1] = replace$1 } + i$6 = end$1 - 1 } } - gutters.style.display = i ? "" : "none"; - } - - function lineLength(doc, line) { - if (line.height == 0) return 0; - var len = line.text.length, merged, cur = line; - while (merged = collapsedSpanAtStart(cur)) { - var found = merged.find(); - cur = getLine(doc, found.from.line); - len += found.from.ch - found.to.ch; - } - cur = line; - while (merged = collapsedSpanAtEnd(cur)) { - var found = merged.find(); - len -= cur.text.length - found.from.ch; - cur = getLine(doc, found.to.line); - len += cur.text.length - found.to.ch; - } - return len; - } - - function computeMaxLength(cm) { - var d = cm.display, doc = cm.doc; - d.maxLine = getLine(doc, doc.first); - d.maxLineLength = lineLength(doc, d.maxLine); - d.maxLineChanged = true; - doc.iter(function(line) { - var len = lineLength(doc, line); - if (len > d.maxLineLength) { - d.maxLineLength = len; - d.maxLine = line; + + // Here we depart from the documented algorithm, in order to avoid + // building up an actual levels array. Since there are only three + // levels (0, 1, 2) in an implementation that doesn't take + // explicit embedding into account, we can build up the order on + // the fly, without following the level-based algorithm. + var order = [], m + for (var i$7 = 0; i$7 < len;) { + if (countsAsLeft.test(types[i$7])) { + var start = i$7 + for (++i$7; i$7 < len && countsAsLeft.test(types[i$7]); ++i$7) {} + order.push(new BidiSpan(0, start, i$7)) + } else { + var pos = i$7, at = order.length + for (++i$7; i$7 < len && types[i$7] != "L"; ++i$7) {} + for (var j$2 = pos; j$2 < i$7;) { + if (countsAsNum.test(types[j$2])) { + if (pos < j$2) { order.splice(at, 0, new BidiSpan(1, pos, j$2)) } + var nstart = j$2 + for (++j$2; j$2 < i$7 && countsAsNum.test(types[j$2]); ++j$2) {} + order.splice(at, 0, new BidiSpan(2, nstart, j$2)) + pos = j$2 + } else { ++j$2 } + } + if (pos < i$7) { order.splice(at, 0, new BidiSpan(1, pos, i$7)) } } - }); - } - - // Make sure the gutters options contains the element - // "CodeMirror-linenumbers" when the lineNumbers option is true. - function setGuttersForLineNumbers(options) { - var found = indexOf(options.gutters, "CodeMirror-linenumbers"); - if (found == -1 && options.lineNumbers) { - options.gutters = options.gutters.concat(["CodeMirror-linenumbers"]); - } else if (found > -1 && !options.lineNumbers) { - options.gutters = options.gutters.slice(0); - options.gutters.splice(found, 1); - } - } - - // SCROLLBARS - - // Re-synchronize the fake scrollbars with the actual size of the - // content. Optionally force a scrollTop. - function updateScrollbars(cm) { - var d = cm.display, docHeight = cm.doc.height; - var totalHeight = docHeight + paddingVert(d); - d.sizer.style.minHeight = d.heightForcer.style.top = totalHeight + "px"; - d.gutters.style.height = Math.max(totalHeight, d.scroller.clientHeight - scrollerCutOff) + "px"; - var scrollHeight = Math.max(totalHeight, d.scroller.scrollHeight); - var needsH = d.scroller.scrollWidth > d.scroller.clientWidth; - var needsV = scrollHeight > d.scroller.clientHeight; - if (needsV) { - d.scrollbarV.style.display = "block"; - d.scrollbarV.style.bottom = needsH ? scrollbarWidth(d.measure) + "px" : "0"; - // A bug in IE8 can cause this value to be negative, so guard it. - d.scrollbarV.firstChild.style.height = - Math.max(0, scrollHeight - d.scroller.clientHeight + d.scrollbarV.clientHeight) + "px"; - } else { - d.scrollbarV.style.display = ""; - d.scrollbarV.firstChild.style.height = "0"; - } - if (needsH) { - d.scrollbarH.style.display = "block"; - d.scrollbarH.style.right = needsV ? scrollbarWidth(d.measure) + "px" : "0"; - d.scrollbarH.firstChild.style.width = - (d.scroller.scrollWidth - d.scroller.clientWidth + d.scrollbarH.clientWidth) + "px"; + } + if (order[0].level == 1 && (m = str.match(/^\s+/))) { + order[0].from = m[0].length + order.unshift(new BidiSpan(0, 0, m[0].length)) + } + if (lst(order).level == 1 && (m = str.match(/\s+$/))) { + lst(order).to -= m[0].length + order.push(new BidiSpan(0, len - m[0].length, len)) + } + + return direction == "rtl" ? order.reverse() : order + } +})() + +// Get the bidi ordering for the given line (and cache it). Returns +// false for lines that are fully left-to-right, and an array of +// BidiSpan objects otherwise. +function getOrder(line, direction) { + var order = line.order + if (order == null) { order = line.order = bidiOrdering(line.text, direction) } + return order +} + +function moveCharLogically(line, ch, dir) { + var target = skipExtendingChars(line.text, ch + dir, dir) + return target < 0 || target > line.text.length ? null : target +} + +function moveLogically(line, start, dir) { + var ch = moveCharLogically(line, start.ch, dir) + return ch == null ? null : new Pos(start.line, ch, dir < 0 ? "after" : "before") +} + +function endOfLine(visually, cm, lineObj, lineNo, dir) { + if (visually) { + var order = getOrder(lineObj, cm.doc.direction) + if (order) { + var part = dir < 0 ? lst(order) : order[0] + var moveInStorageOrder = (dir < 0) == (part.level == 1) + var sticky = moveInStorageOrder ? "after" : "before" + var ch + // With a wrapped rtl chunk (possibly spanning multiple bidi parts), + // it could be that the last bidi part is not on the last visual line, + // since visual lines contain content order-consecutive chunks. + // Thus, in rtl, we are looking for the first (content-order) character + // in the rtl chunk that is on the last line (that is, the same line + // as the last (content-order) character). + if (part.level > 0) { + var prep = prepareMeasureForLine(cm, lineObj) + ch = dir < 0 ? lineObj.text.length - 1 : 0 + var targetTop = measureCharPrepared(cm, prep, ch).top + ch = findFirst(function (ch) { return measureCharPrepared(cm, prep, ch).top == targetTop; }, (dir < 0) == (part.level == 1) ? part.from : part.to - 1, ch) + if (sticky == "before") { ch = moveCharLogically(lineObj, ch, 1) } + } else { ch = dir < 0 ? part.to : part.from } + return new Pos(lineNo, ch, sticky) + } + } + return new Pos(lineNo, dir < 0 ? lineObj.text.length : 0, dir < 0 ? "before" : "after") +} + +function moveVisually(cm, line, start, dir) { + var bidi = getOrder(line, cm.doc.direction) + if (!bidi) { return moveLogically(line, start, dir) } + if (start.ch >= line.text.length) { + start.ch = line.text.length + start.sticky = "before" + } else if (start.ch <= 0) { + start.ch = 0 + start.sticky = "after" + } + var partPos = getBidiPartAt(bidi, start.ch, start.sticky), part = bidi[partPos] + if (cm.doc.direction == "ltr" && part.level % 2 == 0 && (dir > 0 ? part.to > start.ch : part.from < start.ch)) { + // Case 1: We move within an ltr part in an ltr editor. Even with wrapped lines, + // nothing interesting happens. + return moveLogically(line, start, dir) + } + + var mv = function (pos, dir) { return moveCharLogically(line, pos instanceof Pos ? pos.ch : pos, dir); } + var prep + var getWrappedLineExtent = function (ch) { + if (!cm.options.lineWrapping) { return {begin: 0, end: line.text.length} } + prep = prep || prepareMeasureForLine(cm, line) + return wrappedLineExtentChar(cm, line, prep, ch) + } + var wrappedLineExtent = getWrappedLineExtent(start.sticky == "before" ? mv(start, -1) : start.ch) + + if (cm.doc.direction == "rtl" || part.level == 1) { + var moveInStorageOrder = (part.level == 1) == (dir < 0) + var ch = mv(start, moveInStorageOrder ? 1 : -1) + if (ch != null && (!moveInStorageOrder ? ch >= part.from && ch >= wrappedLineExtent.begin : ch <= part.to && ch <= wrappedLineExtent.end)) { + // Case 2: We move within an rtl part or in an rtl editor on the same visual line + var sticky = moveInStorageOrder ? "before" : "after" + return new Pos(start.line, ch, sticky) + } + } + + // Case 3: Could not move within this bidi part in this visual line, so leave + // the current bidi part + + var searchInVisualLine = function (partPos, dir, wrappedLineExtent) { + var getRes = function (ch, moveInStorageOrder) { return moveInStorageOrder + ? new Pos(start.line, mv(ch, 1), "before") + : new Pos(start.line, ch, "after"); } + + for (; partPos >= 0 && partPos < bidi.length; partPos += dir) { + var part = bidi[partPos] + var moveInStorageOrder = (dir > 0) == (part.level != 1) + var ch = moveInStorageOrder ? wrappedLineExtent.begin : mv(wrappedLineExtent.end, -1) + if (part.from <= ch && ch < part.to) { return getRes(ch, moveInStorageOrder) } + ch = moveInStorageOrder ? part.from : mv(part.to, -1) + if (wrappedLineExtent.begin <= ch && ch < wrappedLineExtent.end) { return getRes(ch, moveInStorageOrder) } + } + } + + // Case 3a: Look for other bidi parts on the same visual line + var res = searchInVisualLine(partPos + dir, dir, wrappedLineExtent) + if (res) { return res } + + // Case 3b: Look for other bidi parts on the next visual line + var nextCh = dir > 0 ? wrappedLineExtent.end : mv(wrappedLineExtent.begin, -1) + if (nextCh != null && !(dir > 0 && nextCh == line.text.length)) { + res = searchInVisualLine(dir > 0 ? 0 : bidi.length - 1, dir, getWrappedLineExtent(nextCh)) + if (res) { return res } + } + + // Case 4: Nowhere to move + return null +} + +// EVENT HANDLING + +// Lightweight event framework. on/off also work on DOM nodes, +// registering native DOM handlers. + +var noHandlers = [] + +var on = function(emitter, type, f) { + if (emitter.addEventListener) { + emitter.addEventListener(type, f, false) + } else if (emitter.attachEvent) { + emitter.attachEvent("on" + type, f) + } else { + var map = emitter._handlers || (emitter._handlers = {}) + map[type] = (map[type] || noHandlers).concat(f) + } +} + +function getHandlers(emitter, type) { + return emitter._handlers && emitter._handlers[type] || noHandlers +} + +function off(emitter, type, f) { + if (emitter.removeEventListener) { + emitter.removeEventListener(type, f, false) + } else if (emitter.detachEvent) { + emitter.detachEvent("on" + type, f) + } else { + var map = emitter._handlers, arr = map && map[type] + if (arr) { + var index = indexOf(arr, f) + if (index > -1) + { map[type] = arr.slice(0, index).concat(arr.slice(index + 1)) } + } + } +} + +function signal(emitter, type /*, values...*/) { + var handlers = getHandlers(emitter, type) + if (!handlers.length) { return } + var args = Array.prototype.slice.call(arguments, 2) + for (var i = 0; i < handlers.length; ++i) { handlers[i].apply(null, args) } +} + +// The DOM events that CodeMirror handles can be overridden by +// registering a (non-DOM) handler on the editor for the event name, +// and preventDefault-ing the event in that handler. +function signalDOMEvent(cm, e, override) { + if (typeof e == "string") + { e = {type: e, preventDefault: function() { this.defaultPrevented = true }} } + signal(cm, override || e.type, cm, e) + return e_defaultPrevented(e) || e.codemirrorIgnore +} + +function signalCursorActivity(cm) { + var arr = cm._handlers && cm._handlers.cursorActivity + if (!arr) { return } + var set = cm.curOp.cursorActivityHandlers || (cm.curOp.cursorActivityHandlers = []) + for (var i = 0; i < arr.length; ++i) { if (indexOf(set, arr[i]) == -1) + { set.push(arr[i]) } } +} + +function hasHandler(emitter, type) { + return getHandlers(emitter, type).length > 0 +} + +// Add on and off methods to a constructor's prototype, to make +// registering events on such objects more convenient. +function eventMixin(ctor) { + ctor.prototype.on = function(type, f) {on(this, type, f)} + ctor.prototype.off = function(type, f) {off(this, type, f)} +} + +// Due to the fact that we still support jurassic IE versions, some +// compatibility wrappers are needed. + +function e_preventDefault(e) { + if (e.preventDefault) { e.preventDefault() } + else { e.returnValue = false } +} +function e_stopPropagation(e) { + if (e.stopPropagation) { e.stopPropagation() } + else { e.cancelBubble = true } +} +function e_defaultPrevented(e) { + return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false +} +function e_stop(e) {e_preventDefault(e); e_stopPropagation(e)} + +function e_target(e) {return e.target || e.srcElement} +function e_button(e) { + var b = e.which + if (b == null) { + if (e.button & 1) { b = 1 } + else if (e.button & 2) { b = 3 } + else if (e.button & 4) { b = 2 } + } + if (mac && e.ctrlKey && b == 1) { b = 3 } + return b +} + +// Detect drag-and-drop +var dragAndDrop = function() { + // There is *some* kind of drag-and-drop support in IE6-8, but I + // couldn't get it to work yet. + if (ie && ie_version < 9) { return false } + var div = elt('div') + return "draggable" in div || "dragDrop" in div +}() + +var zwspSupported +function zeroWidthElement(measure) { + if (zwspSupported == null) { + var test = elt("span", "\u200b") + removeChildrenAndAdd(measure, elt("span", [test, document.createTextNode("x")])) + if (measure.firstChild.offsetHeight != 0) + { zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !(ie && ie_version < 8) } + } + var node = zwspSupported ? elt("span", "\u200b") : + elt("span", "\u00a0", null, "display: inline-block; width: 1px; margin-right: -1px") + node.setAttribute("cm-text", "") + return node +} + +// Feature-detect IE's crummy client rect reporting for bidi text +var badBidiRects +function hasBadBidiRects(measure) { + if (badBidiRects != null) { return badBidiRects } + var txt = removeChildrenAndAdd(measure, document.createTextNode("A\u062eA")) + var r0 = range(txt, 0, 1).getBoundingClientRect() + var r1 = range(txt, 1, 2).getBoundingClientRect() + removeChildren(measure) + if (!r0 || r0.left == r0.right) { return false } // Safari returns null in some cases (#2780) + return badBidiRects = (r1.right - r0.right < 3) +} + +// See if "".split is the broken IE version, if so, provide an +// alternative way to split lines. +var splitLinesAuto = "\n\nb".split(/\n/).length != 3 ? function (string) { + var pos = 0, result = [], l = string.length + while (pos <= l) { + var nl = string.indexOf("\n", pos) + if (nl == -1) { nl = string.length } + var line = string.slice(pos, string.charAt(nl - 1) == "\r" ? nl - 1 : nl) + var rt = line.indexOf("\r") + if (rt != -1) { + result.push(line.slice(0, rt)) + pos += rt + 1 } else { - d.scrollbarH.style.display = ""; - d.scrollbarH.firstChild.style.width = "0"; - } - if (needsH && needsV) { - d.scrollbarFiller.style.display = "block"; - d.scrollbarFiller.style.height = d.scrollbarFiller.style.width = scrollbarWidth(d.measure) + "px"; - } else d.scrollbarFiller.style.display = ""; - if (needsH && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) { - d.gutterFiller.style.display = "block"; - d.gutterFiller.style.height = scrollbarWidth(d.measure) + "px"; - d.gutterFiller.style.width = d.gutters.offsetWidth + "px"; - } else d.gutterFiller.style.display = ""; - - if (mac_geLion && scrollbarWidth(d.measure) === 0) { - d.scrollbarV.style.minWidth = d.scrollbarH.style.minHeight = mac_geMountainLion ? "18px" : "12px"; - var barMouseDown = function(e) { - if (e_target(e) != d.scrollbarV && e_target(e) != d.scrollbarH) - operation(cm, onMouseDown)(e); - }; - on(d.scrollbarV, "mousedown", barMouseDown); - on(d.scrollbarH, "mousedown", barMouseDown); - } - } - - function visibleLines(display, doc, viewPort) { - var top = display.scroller.scrollTop, height = display.wrapper.clientHeight; - if (typeof viewPort == "number") top = viewPort; - else if (viewPort) {top = viewPort.top; height = viewPort.bottom - viewPort.top;} - top = Math.floor(top - paddingTop(display)); - var bottom = Math.ceil(top + height); - return {from: lineAtHeight(doc, top), to: lineAtHeight(doc, bottom)}; - } - - // LINE NUMBERS - - function alignHorizontally(cm) { - var display = cm.display; - if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) return; - var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft; - var gutterW = display.gutters.offsetWidth, l = comp + "px"; - for (var n = display.lineDiv.firstChild; n; n = n.nextSibling) if (n.alignable) { - for (var i = 0, a = n.alignable; i < a.length; ++i) a[i].style.left = l; - } - if (cm.options.fixedGutter) - display.gutters.style.left = (comp + gutterW) + "px"; - } - - function maybeUpdateLineNumberWidth(cm) { - if (!cm.options.lineNumbers) return false; - var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display; - if (last.length != display.lineNumChars) { - var test = display.measure.appendChild(elt("div", [elt("div", last)], - "CodeMirror-linenumber CodeMirror-gutter-elt")); - var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW; - display.lineGutter.style.width = ""; - display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding); - display.lineNumWidth = display.lineNumInnerWidth + padding; - display.lineNumChars = display.lineNumInnerWidth ? last.length : -1; - display.lineGutter.style.width = display.lineNumWidth + "px"; - return true; - } - return false; - } - - function lineNumberFor(options, i) { - return String(options.lineNumberFormatter(i + options.firstLineNumber)); - } - function compensateForHScroll(display) { - return getRect(display.scroller).left - getRect(display.sizer).left; - } - - // DISPLAY DRAWING - - function updateDisplay(cm, changes, viewPort, forced) { - var oldFrom = cm.display.showingFrom, oldTo = cm.display.showingTo, updated; - var visible = visibleLines(cm.display, cm.doc, viewPort); - for (var first = true;; first = false) { - var oldWidth = cm.display.scroller.clientWidth; - if (!updateDisplayInner(cm, changes, visible, forced)) break; - updated = true; - changes = []; - updateSelection(cm); - updateScrollbars(cm); - if (first && cm.options.lineWrapping && oldWidth != cm.display.scroller.clientWidth) { - forced = true; - continue; + result.push(line) + pos = nl + 1 + } + } + return result +} : function (string) { return string.split(/\r\n?|\n/); } + +var hasSelection = window.getSelection ? function (te) { + try { return te.selectionStart != te.selectionEnd } + catch(e) { return false } +} : function (te) { + var range + try {range = te.ownerDocument.selection.createRange()} + catch(e) {} + if (!range || range.parentElement() != te) { return false } + return range.compareEndPoints("StartToEnd", range) != 0 +} + +var hasCopyEvent = (function () { + var e = elt("div") + if ("oncopy" in e) { return true } + e.setAttribute("oncopy", "return;") + return typeof e.oncopy == "function" +})() + +var badZoomedRects = null +function hasBadZoomedRects(measure) { + if (badZoomedRects != null) { return badZoomedRects } + var node = removeChildrenAndAdd(measure, elt("span", "x")) + var normal = node.getBoundingClientRect() + var fromRange = range(node, 0, 1).getBoundingClientRect() + return badZoomedRects = Math.abs(normal.left - fromRange.left) > 1 +} + +var modes = {}; +var mimeModes = {}; +// Extra arguments are stored as the mode's dependencies, which is +// used by (legacy) mechanisms like loadmode.js to automatically +// load a mode. (Preferred mechanism is the require/define calls.) +function defineMode(name, mode) { + if (arguments.length > 2) + { mode.dependencies = Array.prototype.slice.call(arguments, 2) } + modes[name] = mode +} + +function defineMIME(mime, spec) { + mimeModes[mime] = spec +} + +// Given a MIME type, a {name, ...options} config object, or a name +// string, return a mode config object. +function resolveMode(spec) { + if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) { + spec = mimeModes[spec] + } else if (spec && typeof spec.name == "string" && mimeModes.hasOwnProperty(spec.name)) { + var found = mimeModes[spec.name] + if (typeof found == "string") { found = {name: found} } + spec = createObj(found, spec) + spec.name = found.name + } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+xml$/.test(spec)) { + return resolveMode("application/xml") + } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+json$/.test(spec)) { + return resolveMode("application/json") + } + if (typeof spec == "string") { return {name: spec} } + else { return spec || {name: "null"} } +} + +// Given a mode spec (anything that resolveMode accepts), find and +// initialize an actual mode object. +function getMode(options, spec) { + spec = resolveMode(spec) + var mfactory = modes[spec.name] + if (!mfactory) { return getMode(options, "text/plain") } + var modeObj = mfactory(options, spec) + if (modeExtensions.hasOwnProperty(spec.name)) { + var exts = modeExtensions[spec.name] + for (var prop in exts) { + if (!exts.hasOwnProperty(prop)) { continue } + if (modeObj.hasOwnProperty(prop)) { modeObj["_" + prop] = modeObj[prop] } + modeObj[prop] = exts[prop] + } + } + modeObj.name = spec.name + if (spec.helperType) { modeObj.helperType = spec.helperType } + if (spec.modeProps) { for (var prop$1 in spec.modeProps) + { modeObj[prop$1] = spec.modeProps[prop$1] } } + + return modeObj +} + +// This can be used to attach properties to mode objects from +// outside the actual mode definition. +var modeExtensions = {} +function extendMode(mode, properties) { + var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {}) + copyObj(properties, exts) +} + +function copyState(mode, state) { + if (state === true) { return state } + if (mode.copyState) { return mode.copyState(state) } + var nstate = {} + for (var n in state) { + var val = state[n] + if (val instanceof Array) { val = val.concat([]) } + nstate[n] = val + } + return nstate +} + +// Given a mode and a state (for that mode), find the inner mode and +// state at the position that the state refers to. +function innerMode(mode, state) { + var info + while (mode.innerMode) { + info = mode.innerMode(state) + if (!info || info.mode == mode) { break } + state = info.state + mode = info.mode + } + return info || {mode: mode, state: state} +} + +function startState(mode, a1, a2) { + return mode.startState ? mode.startState(a1, a2) : true +} + +// STRING STREAM + +// Fed to the mode parsers, provides helper functions to make +// parsers more succinct. + +var StringStream = function(string, tabSize) { + this.pos = this.start = 0 + this.string = string + this.tabSize = tabSize || 8 + this.lastColumnPos = this.lastColumnValue = 0 + this.lineStart = 0 +}; + +StringStream.prototype.eol = function () {return this.pos >= this.string.length}; +StringStream.prototype.sol = function () {return this.pos == this.lineStart}; +StringStream.prototype.peek = function () {return this.string.charAt(this.pos) || undefined}; +StringStream.prototype.next = function () { + if (this.pos < this.string.length) + { return this.string.charAt(this.pos++) } +}; +StringStream.prototype.eat = function (match) { + var ch = this.string.charAt(this.pos) + var ok + if (typeof match == "string") { ok = ch == match } + else { ok = ch && (match.test ? match.test(ch) : match(ch)) } + if (ok) {++this.pos; return ch} +}; +StringStream.prototype.eatWhile = function (match) { + var start = this.pos + while (this.eat(match)){} + return this.pos > start +}; +StringStream.prototype.eatSpace = function () { + var this$1 = this; + + var start = this.pos + while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) { ++this$1.pos } + return this.pos > start +}; +StringStream.prototype.skipToEnd = function () {this.pos = this.string.length}; +StringStream.prototype.skipTo = function (ch) { + var found = this.string.indexOf(ch, this.pos) + if (found > -1) {this.pos = found; return true} +}; +StringStream.prototype.backUp = function (n) {this.pos -= n}; +StringStream.prototype.column = function () { + if (this.lastColumnPos < this.start) { + this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue) + this.lastColumnPos = this.start + } + return this.lastColumnValue - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0) +}; +StringStream.prototype.indentation = function () { + return countColumn(this.string, null, this.tabSize) - + (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0) +}; +StringStream.prototype.match = function (pattern, consume, caseInsensitive) { + if (typeof pattern == "string") { + var cased = function (str) { return caseInsensitive ? str.toLowerCase() : str; } + var substr = this.string.substr(this.pos, pattern.length) + if (cased(substr) == cased(pattern)) { + if (consume !== false) { this.pos += pattern.length } + return true + } + } else { + var match = this.string.slice(this.pos).match(pattern) + if (match && match.index > 0) { return null } + if (match && consume !== false) { this.pos += match[0].length } + return match + } +}; +StringStream.prototype.current = function (){return this.string.slice(this.start, this.pos)}; +StringStream.prototype.hideFirstChars = function (n, inner) { + this.lineStart += n + try { return inner() } + finally { this.lineStart -= n } +}; + +// Compute a style array (an array starting with a mode generation +// -- for invalidation -- followed by pairs of end positions and +// style strings), which is used to highlight the tokens on the +// line. +function highlightLine(cm, line, state, forceToEnd) { + // A styles array always starts with a number identifying the + // mode/overlays that it is based on (for easy invalidation). + var st = [cm.state.modeGen], lineClasses = {} + // Compute the base array of styles + runMode(cm, line.text, cm.doc.mode, state, function (end, style) { return st.push(end, style); }, + lineClasses, forceToEnd) + + // Run overlays, adjust style array. + var loop = function ( o ) { + var overlay = cm.state.overlays[o], i = 1, at = 0 + runMode(cm, line.text, overlay.mode, true, function (end, style) { + var start = i + // Ensure there's a token end at the current position, and that i points at it + while (at < end) { + var i_end = st[i] + if (i_end > end) + { st.splice(i, 1, end, st[i+1], i_end) } + i += 2 + at = Math.min(end, i_end) } - forced = false; - - // Clip forced viewport to actual scrollable area - if (viewPort) - viewPort = Math.min(cm.display.scroller.scrollHeight - cm.display.scroller.clientHeight, - typeof viewPort == "number" ? viewPort : viewPort.top); - visible = visibleLines(cm.display, cm.doc, viewPort); - if (visible.from >= cm.display.showingFrom && visible.to <= cm.display.showingTo) - break; - } - - if (updated) { - signalLater(cm, "update", cm); - if (cm.display.showingFrom != oldFrom || cm.display.showingTo != oldTo) - signalLater(cm, "viewportChange", cm, cm.display.showingFrom, cm.display.showingTo); - } - return updated; - } - - // Uses a set of changes plus the current scroll position to - // determine which DOM updates have to be made, and makes the - // updates. - function updateDisplayInner(cm, changes, visible, forced) { - var display = cm.display, doc = cm.doc; - if (!display.wrapper.offsetWidth) { - display.showingFrom = display.showingTo = doc.first; - display.viewOffset = 0; - return; - } - - // Bail out if the visible area is already rendered and nothing changed. - if (!forced && changes.length == 0 && - visible.from > display.showingFrom && visible.to < display.showingTo) - return; - - if (maybeUpdateLineNumberWidth(cm)) - changes = [{from: doc.first, to: doc.first + doc.size}]; - var gutterW = display.sizer.style.marginLeft = display.gutters.offsetWidth + "px"; - display.scrollbarH.style.left = cm.options.fixedGutter ? gutterW : "0"; - - // Used to determine which lines need their line numbers updated - var positionsChangedFrom = Infinity; - if (cm.options.lineNumbers) - for (var i = 0; i < changes.length; ++i) - if (changes[i].diff && changes[i].from < positionsChangedFrom) { positionsChangedFrom = changes[i].from; } - - var end = doc.first + doc.size; - var from = Math.max(visible.from - cm.options.viewportMargin, doc.first); - var to = Math.min(end, visible.to + cm.options.viewportMargin); - if (display.showingFrom < from && from - display.showingFrom < 20) from = Math.max(doc.first, display.showingFrom); - if (display.showingTo > to && display.showingTo - to < 20) to = Math.min(end, display.showingTo); - if (sawCollapsedSpans) { - from = lineNo(visualLine(doc, getLine(doc, from))); - while (to < end && lineIsHidden(doc, getLine(doc, to))) ++to; - } - - // Create a range of theoretically intact lines, and punch holes - // in that using the change info. - var intact = [{from: Math.max(display.showingFrom, doc.first), - to: Math.min(display.showingTo, end)}]; - if (intact[0].from >= intact[0].to) intact = []; - else intact = computeIntact(intact, changes); - // When merged lines are present, we might have to reduce the - // intact ranges because changes in continued fragments of the - // intact lines do require the lines to be redrawn. - if (sawCollapsedSpans) - for (var i = 0; i < intact.length; ++i) { - var range = intact[i], merged; - while (merged = collapsedSpanAtEnd(getLine(doc, range.to - 1))) { - var newTo = merged.find().from.line; - if (newTo > range.from) range.to = newTo; - else { intact.splice(i--, 1); break; } + if (!style) { return } + if (overlay.opaque) { + st.splice(start, i - start, end, "overlay " + style) + i = start + 2 + } else { + for (; start < i; start += 2) { + var cur = st[start+1] + st[start+1] = (cur ? cur + " " : "") + "overlay " + style } } + }, lineClasses) + }; - // Clip off the parts that won't be visible - var intactLines = 0; - for (var i = 0; i < intact.length; ++i) { - var range = intact[i]; - if (range.from < from) range.from = from; - if (range.to > to) range.to = to; - if (range.from >= range.to) intact.splice(i--, 1); - else intactLines += range.to - range.from; + for (var o = 0; o < cm.state.overlays.length; ++o) loop( o ); + + return {styles: st, classes: lineClasses.bgClass || lineClasses.textClass ? lineClasses : null} +} + +function getLineStyles(cm, line, updateFrontier) { + if (!line.styles || line.styles[0] != cm.state.modeGen) { + var state = getStateBefore(cm, lineNo(line)) + var result = highlightLine(cm, line, line.text.length > cm.options.maxHighlightLength ? copyState(cm.doc.mode, state) : state) + line.stateAfter = state + line.styles = result.styles + if (result.classes) { line.styleClasses = result.classes } + else if (line.styleClasses) { line.styleClasses = null } + if (updateFrontier === cm.doc.frontier) { cm.doc.frontier++ } + } + return line.styles +} + +function getStateBefore(cm, n, precise) { + var doc = cm.doc, display = cm.display + if (!doc.mode.startState) { return true } + var pos = findStartLine(cm, n, precise), state = pos > doc.first && getLine(doc, pos-1).stateAfter + if (!state) { state = startState(doc.mode) } + else { state = copyState(doc.mode, state) } + doc.iter(pos, n, function (line) { + processLine(cm, line.text, state) + var save = pos == n - 1 || pos % 5 == 0 || pos >= display.viewFrom && pos < display.viewTo + line.stateAfter = save ? copyState(doc.mode, state) : null + ++pos + }) + if (precise) { doc.frontier = pos } + return state +} + +// Lightweight form of highlight -- proceed over this line and +// update state, but don't save a style array. Used for lines that +// aren't currently visible. +function processLine(cm, text, state, startAt) { + var mode = cm.doc.mode + var stream = new StringStream(text, cm.options.tabSize) + stream.start = stream.pos = startAt || 0 + if (text == "") { callBlankLine(mode, state) } + while (!stream.eol()) { + readToken(mode, stream, state) + stream.start = stream.pos + } +} + +function callBlankLine(mode, state) { + if (mode.blankLine) { return mode.blankLine(state) } + if (!mode.innerMode) { return } + var inner = innerMode(mode, state) + if (inner.mode.blankLine) { return inner.mode.blankLine(inner.state) } +} + +function readToken(mode, stream, state, inner) { + for (var i = 0; i < 10; i++) { + if (inner) { inner[0] = innerMode(mode, state).mode } + var style = mode.token(stream, state) + if (stream.pos > stream.start) { return style } + } + throw new Error("Mode " + mode.name + " failed to advance stream.") +} + +// Utility for getTokenAt and getLineTokens +function takeToken(cm, pos, precise, asArray) { + var getObj = function (copy) { return ({ + start: stream.start, end: stream.pos, + string: stream.current(), + type: style || null, + state: copy ? copyState(doc.mode, state) : state + }); } + + var doc = cm.doc, mode = doc.mode, style + pos = clipPos(doc, pos) + var line = getLine(doc, pos.line), state = getStateBefore(cm, pos.line, precise) + var stream = new StringStream(line.text, cm.options.tabSize), tokens + if (asArray) { tokens = [] } + while ((asArray || stream.pos < pos.ch) && !stream.eol()) { + stream.start = stream.pos + style = readToken(mode, stream, state) + if (asArray) { tokens.push(getObj(true)) } + } + return asArray ? tokens : getObj() +} + +function extractLineClasses(type, output) { + if (type) { for (;;) { + var lineClass = type.match(/(?:^|\s+)line-(background-)?(\S+)/) + if (!lineClass) { break } + type = type.slice(0, lineClass.index) + type.slice(lineClass.index + lineClass[0].length) + var prop = lineClass[1] ? "bgClass" : "textClass" + if (output[prop] == null) + { output[prop] = lineClass[2] } + else if (!(new RegExp("(?:^|\s)" + lineClass[2] + "(?:$|\s)")).test(output[prop])) + { output[prop] += " " + lineClass[2] } + } } + return type +} + +// Run the given mode's parser over a line, calling f for each token. +function runMode(cm, text, mode, state, f, lineClasses, forceToEnd) { + var flattenSpans = mode.flattenSpans + if (flattenSpans == null) { flattenSpans = cm.options.flattenSpans } + var curStart = 0, curStyle = null + var stream = new StringStream(text, cm.options.tabSize), style + var inner = cm.options.addModeClass && [null] + if (text == "") { extractLineClasses(callBlankLine(mode, state), lineClasses) } + while (!stream.eol()) { + if (stream.pos > cm.options.maxHighlightLength) { + flattenSpans = false + if (forceToEnd) { processLine(cm, text, state, stream.pos) } + stream.pos = text.length + style = null + } else { + style = extractLineClasses(readToken(mode, stream, state, inner), lineClasses) } - if (!forced && intactLines == to - from && from == display.showingFrom && to == display.showingTo) { - updateViewOffset(cm); - return; + if (inner) { + var mName = inner[0].name + if (mName) { style = "m-" + (style ? mName + " " + style : mName) } } - intact.sort(function(a, b) {return a.from - b.from;}); - - // Avoid crashing on IE's "unspecified error" when in iframes - try { - var focused = document.activeElement; - } catch(e) {} - if (intactLines < (to - from) * .7) display.lineDiv.style.display = "none"; - patchDisplay(cm, from, to, intact, positionsChangedFrom); - display.lineDiv.style.display = ""; - if (focused && document.activeElement != focused && focused.offsetHeight) focused.focus(); - - var different = from != display.showingFrom || to != display.showingTo || - display.lastSizeC != display.wrapper.clientHeight; - // This is just a bogus formula that detects when the editor is - // resized or the font size changes. - if (different) { - display.lastSizeC = display.wrapper.clientHeight; - startWorker(cm, 400); - } - display.showingFrom = from; display.showingTo = to; - - display.gutters.style.height = ""; - updateHeightsInViewport(cm); - updateViewOffset(cm); - - return true; - } - - function updateHeightsInViewport(cm) { - var display = cm.display; - var prevBottom = display.lineDiv.offsetTop; - for (var node = display.lineDiv.firstChild, height; node; node = node.nextSibling) if (node.lineObj) { - if (ie_lt8) { - var bot = node.offsetTop + node.offsetHeight; - height = bot - prevBottom; - prevBottom = bot; - } else { - var box = getRect(node); - height = box.bottom - box.top; - } - var diff = node.lineObj.height - height; - if (height < 2) height = textHeight(display); - if (diff > .001 || diff < -.001) { - updateLineHeight(node.lineObj, height); - var widgets = node.lineObj.widgets; - if (widgets) for (var i = 0; i < widgets.length; ++i) - widgets[i].height = widgets[i].node.offsetHeight; + if (!flattenSpans || curStyle != style) { + while (curStart < stream.start) { + curStart = Math.min(stream.start, curStart + 5000) + f(curStart, curStyle) } - } - } - - function updateViewOffset(cm) { - var off = cm.display.viewOffset = heightAtLine(cm, getLine(cm.doc, cm.display.showingFrom)); - // Position the mover div to align with the current virtual scroll position - cm.display.mover.style.top = off + "px"; - } - - function computeIntact(intact, changes) { - for (var i = 0, l = changes.length || 0; i < l; ++i) { - var change = changes[i], intact2 = [], diff = change.diff || 0; - for (var j = 0, l2 = intact.length; j < l2; ++j) { - var range = intact[j]; - if (change.to <= range.from && change.diff) { - intact2.push({from: range.from + diff, to: range.to + diff}); - } else if (change.to <= range.from || change.from >= range.to) { - intact2.push(range); - } else { - if (change.from > range.from) - intact2.push({from: range.from, to: change.from}); - if (change.to < range.to) - intact2.push({from: change.to + diff, to: range.to + diff}); - } + curStyle = style + } + stream.start = stream.pos + } + while (curStart < stream.pos) { + // Webkit seems to refuse to render text nodes longer than 57444 + // characters, and returns inaccurate measurements in nodes + // starting around 5000 chars. + var pos = Math.min(stream.pos, curStart + 5000) + f(pos, curStyle) + curStart = pos + } +} + +// Finds the line to start with when starting a parse. Tries to +// find a line with a stateAfter, so that it can start with a +// valid state. If that fails, it returns the line with the +// smallest indentation, which tends to need the least context to +// parse correctly. +function findStartLine(cm, n, precise) { + var minindent, minline, doc = cm.doc + var lim = precise ? -1 : n - (cm.doc.mode.innerMode ? 1000 : 100) + for (var search = n; search > lim; --search) { + if (search <= doc.first) { return doc.first } + var line = getLine(doc, search - 1) + if (line.stateAfter && (!precise || search <= doc.frontier)) { return search } + var indented = countColumn(line.text, null, cm.options.tabSize) + if (minline == null || minindent > indented) { + minline = search - 1 + minindent = indented + } + } + return minline +} + +// LINE DATA STRUCTURE + +// Line objects. These hold state related to a line, including +// highlighting info (the styles array). +var Line = function(text, markedSpans, estimateHeight) { + this.text = text + attachMarkedSpans(this, markedSpans) + this.height = estimateHeight ? estimateHeight(this) : 1 +}; + +Line.prototype.lineNo = function () { return lineNo(this) }; +eventMixin(Line) + +// Change the content (text, markers) of a line. Automatically +// invalidates cached information and tries to re-estimate the +// line's height. +function updateLine(line, text, markedSpans, estimateHeight) { + line.text = text + if (line.stateAfter) { line.stateAfter = null } + if (line.styles) { line.styles = null } + if (line.order != null) { line.order = null } + detachMarkedSpans(line) + attachMarkedSpans(line, markedSpans) + var estHeight = estimateHeight ? estimateHeight(line) : 1 + if (estHeight != line.height) { updateLineHeight(line, estHeight) } +} + +// Detach a line from the document tree and its markers. +function cleanUpLine(line) { + line.parent = null + detachMarkedSpans(line) +} + +// Convert a style as returned by a mode (either null, or a string +// containing one or more styles) to a CSS style. This is cached, +// and also looks for line-wide styles. +var styleToClassCache = {}; +var styleToClassCacheWithMode = {}; +function interpretTokenStyle(style, options) { + if (!style || /^\s*$/.test(style)) { return null } + var cache = options.addModeClass ? styleToClassCacheWithMode : styleToClassCache + return cache[style] || + (cache[style] = style.replace(/\S+/g, "cm-$&")) +} + +// Render the DOM representation of the text of a line. Also builds +// up a 'line map', which points at the DOM nodes that represent +// specific stretches of text, and is used by the measuring code. +// The returned object contains the DOM node, this map, and +// information about line-wide styles that were set by the mode. +function buildLineContent(cm, lineView) { + // The padding-right forces the element to have a 'border', which + // is needed on Webkit to be able to get line-level bounding + // rectangles for it (in measureChar). + var content = eltP("span", null, null, webkit ? "padding-right: .1px" : null) + var builder = {pre: eltP("pre", [content], "CodeMirror-line"), content: content, + col: 0, pos: 0, cm: cm, + trailingSpace: false, + splitSpaces: (ie || webkit) && cm.getOption("lineWrapping")} + lineView.measure = {} + + // Iterate over the logical lines that make up this visual line. + for (var i = 0; i <= (lineView.rest ? lineView.rest.length : 0); i++) { + var line = i ? lineView.rest[i - 1] : lineView.line, order = (void 0) + builder.pos = 0 + builder.addToken = buildToken + // Optionally wire in some hacks into the token-rendering + // algorithm, to deal with browser quirks. + if (hasBadBidiRects(cm.display.measure) && (order = getOrder(line, cm.doc.direction))) + { builder.addToken = buildTokenBadBidi(builder.addToken, order) } + builder.map = [] + var allowFrontierUpdate = lineView != cm.display.externalMeasured && lineNo(line) + insertLineContent(line, builder, getLineStyles(cm, line, allowFrontierUpdate)) + if (line.styleClasses) { + if (line.styleClasses.bgClass) + { builder.bgClass = joinClasses(line.styleClasses.bgClass, builder.bgClass || "") } + if (line.styleClasses.textClass) + { builder.textClass = joinClasses(line.styleClasses.textClass, builder.textClass || "") } + } + + // Ensure at least a single node is present, for measuring. + if (builder.map.length == 0) + { builder.map.push(0, 0, builder.content.appendChild(zeroWidthElement(cm.display.measure))) } + + // Store the map and a cache object for the current logical line + if (i == 0) { + lineView.measure.map = builder.map + lineView.measure.cache = {} + } else { + ;(lineView.measure.maps || (lineView.measure.maps = [])).push(builder.map) + ;(lineView.measure.caches || (lineView.measure.caches = [])).push({}) + } + } + + // See issue #2901 + if (webkit) { + var last = builder.content.lastChild + if (/\bcm-tab\b/.test(last.className) || (last.querySelector && last.querySelector(".cm-tab"))) + { builder.content.className = "cm-tab-wrap-hack" } + } + + signal(cm, "renderLine", cm, lineView.line, builder.pre) + if (builder.pre.className) + { builder.textClass = joinClasses(builder.pre.className, builder.textClass || "") } + + return builder +} + +function defaultSpecialCharPlaceholder(ch) { + var token = elt("span", "\u2022", "cm-invalidchar") + token.title = "\\u" + ch.charCodeAt(0).toString(16) + token.setAttribute("aria-label", token.title) + return token +} + +// Build up the DOM representation for a single token, and add it to +// the line map. Takes care to render special characters separately. +function buildToken(builder, text, style, startStyle, endStyle, title, css) { + if (!text) { return } + var displayText = builder.splitSpaces ? splitSpaces(text, builder.trailingSpace) : text + var special = builder.cm.state.specialChars, mustWrap = false + var content + if (!special.test(text)) { + builder.col += text.length + content = document.createTextNode(displayText) + builder.map.push(builder.pos, builder.pos + text.length, content) + if (ie && ie_version < 9) { mustWrap = true } + builder.pos += text.length + } else { + content = document.createDocumentFragment() + var pos = 0 + while (true) { + special.lastIndex = pos + var m = special.exec(text) + var skipped = m ? m.index - pos : text.length - pos + if (skipped) { + var txt = document.createTextNode(displayText.slice(pos, pos + skipped)) + if (ie && ie_version < 9) { content.appendChild(elt("span", [txt])) } + else { content.appendChild(txt) } + builder.map.push(builder.pos, builder.pos + skipped, txt) + builder.col += skipped + builder.pos += skipped } - intact = intact2; - } - return intact; - } - - function getDimensions(cm) { - var d = cm.display, left = {}, width = {}; - for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) { - left[cm.options.gutters[i]] = n.offsetLeft; - width[cm.options.gutters[i]] = n.offsetWidth; - } - return {fixedPos: compensateForHScroll(d), - gutterTotalWidth: d.gutters.offsetWidth, - gutterLeft: left, - gutterWidth: width, - wrapperWidth: d.wrapper.clientWidth}; - } - - function patchDisplay(cm, from, to, intact, updateNumbersFrom) { - var dims = getDimensions(cm); - var display = cm.display, lineNumbers = cm.options.lineNumbers; - if (!intact.length && (!webkit || !cm.display.currentWheelTarget)) - removeChildren(display.lineDiv); - var container = display.lineDiv, cur = container.firstChild; - - function rm(node) { - var next = node.nextSibling; - if (webkit && mac && cm.display.currentWheelTarget == node) { - node.style.display = "none"; - node.lineObj = null; + if (!m) { break } + pos += skipped + 1 + var txt$1 = (void 0) + if (m[0] == "\t") { + var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize + txt$1 = content.appendChild(elt("span", spaceStr(tabWidth), "cm-tab")) + txt$1.setAttribute("role", "presentation") + txt$1.setAttribute("cm-text", "\t") + builder.col += tabWidth + } else if (m[0] == "\r" || m[0] == "\n") { + txt$1 = content.appendChild(elt("span", m[0] == "\r" ? "\u240d" : "\u2424", "cm-invalidchar")) + txt$1.setAttribute("cm-text", m[0]) + builder.col += 1 } else { - node.parentNode.removeChild(node); + txt$1 = builder.cm.options.specialCharPlaceholder(m[0]) + txt$1.setAttribute("cm-text", m[0]) + if (ie && ie_version < 9) { content.appendChild(elt("span", [txt$1])) } + else { content.appendChild(txt$1) } + builder.col += 1 } - return next; - } - - var nextIntact = intact.shift(), lineN = from; - cm.doc.iter(from, to, function(line) { - if (nextIntact && nextIntact.to == lineN) nextIntact = intact.shift(); - if (lineIsHidden(cm.doc, line)) { - if (line.height != 0) updateLineHeight(line, 0); - if (line.widgets && cur && cur.previousSibling) for (var i = 0; i < line.widgets.length; ++i) { - var w = line.widgets[i]; - if (w.showIfHidden) { - var prev = cur.previousSibling; - if (/pre/i.test(prev.nodeName)) { - var wrap = elt("div", null, null, "position: relative"); - prev.parentNode.replaceChild(wrap, prev); - wrap.appendChild(prev); - prev = wrap; - } - var wnode = prev.appendChild(elt("div", [w.node], "CodeMirror-linewidget")); - if (!w.handleMouseEvents) wnode.ignoreEvents = true; - positionLineWidget(w, wnode, prev, dims); - } - } - } else if (nextIntact && nextIntact.from <= lineN && nextIntact.to > lineN) { - // This line is intact. Skip to the actual node. Update its - // line number if needed. - while (cur.lineObj != line) cur = rm(cur); - if (lineNumbers && updateNumbersFrom <= lineN && cur.lineNumber) - setTextContent(cur.lineNumber, lineNumberFor(cm.options, lineN)); - cur = cur.nextSibling; - } else { - // For lines with widgets, make an attempt to find and reuse - // the existing element, so that widgets aren't needlessly - // removed and re-inserted into the dom - if (line.widgets) for (var j = 0, search = cur, reuse; search && j < 20; ++j, search = search.nextSibling) - if (search.lineObj == line && /div/i.test(search.nodeName)) { reuse = search; break; } - // This line needs to be generated. - var lineNode = buildLineElement(cm, line, lineN, dims, reuse); - if (lineNode != reuse) { - container.insertBefore(lineNode, cur); - } else { - while (cur != reuse) cur = rm(cur); - cur = cur.nextSibling; - } - - lineNode.lineObj = line; + builder.map.push(builder.pos, builder.pos + 1, txt$1) + builder.pos++ + } + } + builder.trailingSpace = displayText.charCodeAt(text.length - 1) == 32 + if (style || startStyle || endStyle || mustWrap || css) { + var fullStyle = style || "" + if (startStyle) { fullStyle += startStyle } + if (endStyle) { fullStyle += endStyle } + var token = elt("span", [content], fullStyle, css) + if (title) { token.title = title } + return builder.content.appendChild(token) + } + builder.content.appendChild(content) +} + +function splitSpaces(text, trailingBefore) { + if (text.length > 1 && !/ /.test(text)) { return text } + var spaceBefore = trailingBefore, result = "" + for (var i = 0; i < text.length; i++) { + var ch = text.charAt(i) + if (ch == " " && spaceBefore && (i == text.length - 1 || text.charCodeAt(i + 1) == 32)) + { ch = "\u00a0" } + result += ch + spaceBefore = ch == " " + } + return result +} + +// Work around nonsense dimensions being reported for stretches of +// right-to-left text. +function buildTokenBadBidi(inner, order) { + return function (builder, text, style, startStyle, endStyle, title, css) { + style = style ? style + " cm-force-border" : "cm-force-border" + var start = builder.pos, end = start + text.length + for (;;) { + // Find the part that overlaps with the start of this text + var part = (void 0) + for (var i = 0; i < order.length; i++) { + part = order[i] + if (part.to > start && part.from <= start) { break } } - ++lineN; - }); - while (cur) cur = rm(cur); - } - - function buildLineElement(cm, line, lineNo, dims, reuse) { - var built = buildLineContent(cm, line), lineElement = built.pre; - var markers = line.gutterMarkers, display = cm.display, wrap; - - var bgClass = built.bgClass ? built.bgClass + " " + (line.bgClass || "") : line.bgClass; - if (!cm.options.lineNumbers && !markers && !bgClass && !line.wrapClass && !line.widgets) - return lineElement; - - // Lines with gutter elements, widgets or a background class need - // to be wrapped again, and have the extra elements added to the - // wrapper div - - if (reuse) { - reuse.alignable = null; - var isOk = true, widgetsSeen = 0, insertBefore = null; - for (var n = reuse.firstChild, next; n; n = next) { - next = n.nextSibling; - if (!/\bCodeMirror-linewidget\b/.test(n.className)) { - reuse.removeChild(n); - } else { - for (var i = 0; i < line.widgets.length; ++i) { - var widget = line.widgets[i]; - if (widget.node == n.firstChild) { - if (!widget.above && !insertBefore) insertBefore = n; - positionLineWidget(widget, n, reuse, dims); - ++widgetsSeen; - break; - } + if (part.to >= end) { return inner(builder, text, style, startStyle, endStyle, title, css) } + inner(builder, text.slice(0, part.to - start), style, startStyle, null, title, css) + startStyle = null + text = text.slice(part.to - start) + start = part.to + } + } +} + +function buildCollapsedSpan(builder, size, marker, ignoreWidget) { + var widget = !ignoreWidget && marker.widgetNode + if (widget) { builder.map.push(builder.pos, builder.pos + size, widget) } + if (!ignoreWidget && builder.cm.display.input.needsContentAttribute) { + if (!widget) + { widget = builder.content.appendChild(document.createElement("span")) } + widget.setAttribute("cm-marker", marker.id) + } + if (widget) { + builder.cm.display.input.setUneditable(widget) + builder.content.appendChild(widget) + } + builder.pos += size + builder.trailingSpace = false +} + +// Outputs a number of spans to make up a line, taking highlighting +// and marked text into account. +function insertLineContent(line, builder, styles) { + var spans = line.markedSpans, allText = line.text, at = 0 + if (!spans) { + for (var i$1 = 1; i$1 < styles.length; i$1+=2) + { builder.addToken(builder, allText.slice(at, at = styles[i$1]), interpretTokenStyle(styles[i$1+1], builder.cm.options)) } + return + } + + var len = allText.length, pos = 0, i = 1, text = "", style, css + var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed + for (;;) { + if (nextChange == pos) { // Update current marker set + spanStyle = spanEndStyle = spanStartStyle = title = css = "" + collapsed = null; nextChange = Infinity + var foundBookmarks = [], endStyles = (void 0) + for (var j = 0; j < spans.length; ++j) { + var sp = spans[j], m = sp.marker + if (m.type == "bookmark" && sp.from == pos && m.widgetNode) { + foundBookmarks.push(m) + } else if (sp.from <= pos && (sp.to == null || sp.to > pos || m.collapsed && sp.to == pos && sp.from == pos)) { + if (sp.to != null && sp.to != pos && nextChange > sp.to) { + nextChange = sp.to + spanEndStyle = "" } - if (i == line.widgets.length) { isOk = false; break; } + if (m.className) { spanStyle += " " + m.className } + if (m.css) { css = (css ? css + ";" : "") + m.css } + if (m.startStyle && sp.from == pos) { spanStartStyle += " " + m.startStyle } + if (m.endStyle && sp.to == nextChange) { (endStyles || (endStyles = [])).push(m.endStyle, sp.to) } + if (m.title && !title) { title = m.title } + if (m.collapsed && (!collapsed || compareCollapsedMarkers(collapsed.marker, m) < 0)) + { collapsed = sp } + } else if (sp.from > pos && nextChange > sp.from) { + nextChange = sp.from } } - reuse.insertBefore(lineElement, insertBefore); - if (isOk && widgetsSeen == line.widgets.length) { - wrap = reuse; - reuse.className = line.wrapClass || ""; + if (endStyles) { for (var j$1 = 0; j$1 < endStyles.length; j$1 += 2) + { if (endStyles[j$1 + 1] == nextChange) { spanEndStyle += " " + endStyles[j$1] } } } + + if (!collapsed || collapsed.from == pos) { for (var j$2 = 0; j$2 < foundBookmarks.length; ++j$2) + { buildCollapsedSpan(builder, 0, foundBookmarks[j$2]) } } + if (collapsed && (collapsed.from || 0) == pos) { + buildCollapsedSpan(builder, (collapsed.to == null ? len + 1 : collapsed.to) - pos, + collapsed.marker, collapsed.from == null) + if (collapsed.to == null) { return } + if (collapsed.to == pos) { collapsed = false } } } - if (!wrap) { - wrap = elt("div", null, line.wrapClass, "position: relative"); - wrap.appendChild(lineElement); - } - // Kludge to make sure the styled element lies behind the selection (by z-index) - if (bgClass) - wrap.insertBefore(elt("div", null, bgClass + " CodeMirror-linebackground"), wrap.firstChild); - if (cm.options.lineNumbers || markers) { - var gutterWrap = wrap.insertBefore(elt("div", null, "CodeMirror-gutter-wrapper", "position: absolute; left: " + - (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px"), - lineElement); - if (cm.options.fixedGutter) (wrap.alignable || (wrap.alignable = [])).push(gutterWrap); - if (cm.options.lineNumbers && (!markers || !markers["CodeMirror-linenumbers"])) - wrap.lineNumber = gutterWrap.appendChild( - elt("div", lineNumberFor(cm.options, lineNo), - "CodeMirror-linenumber CodeMirror-gutter-elt", - "left: " + dims.gutterLeft["CodeMirror-linenumbers"] + "px; width: " - + display.lineNumInnerWidth + "px")); - if (markers) - for (var k = 0; k < cm.options.gutters.length; ++k) { - var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id]; - if (found) - gutterWrap.appendChild(elt("div", [found], "CodeMirror-gutter-elt", "left: " + - dims.gutterLeft[id] + "px; width: " + dims.gutterWidth[id] + "px")); + if (pos >= len) { break } + + var upto = Math.min(len, nextChange) + while (true) { + if (text) { + var end = pos + text.length + if (!collapsed) { + var tokenText = end > upto ? text.slice(0, upto - pos) : text + builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle, + spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : "", title, css) } - } - if (ie_lt8) wrap.style.zIndex = 2; - if (line.widgets && wrap != reuse) for (var i = 0, ws = line.widgets; i < ws.length; ++i) { - var widget = ws[i], node = elt("div", [widget.node], "CodeMirror-linewidget"); - if (!widget.handleMouseEvents) node.ignoreEvents = true; - positionLineWidget(widget, node, wrap, dims); - if (widget.above) - wrap.insertBefore(node, cm.options.lineNumbers && line.height != 0 ? gutterWrap : lineElement); - else - wrap.appendChild(node); - signalLater(widget, "redraw"); - } - return wrap; - } + if (end >= upto) {text = text.slice(upto - pos); pos = upto; break} + pos = end + spanStartStyle = "" + } + text = allText.slice(at, at = styles[i++]) + style = interpretTokenStyle(styles[i++], builder.cm.options) + } + } +} + + +// These objects are used to represent the visible (currently drawn) +// part of the document. A LineView may correspond to multiple +// logical lines, if those are connected by collapsed ranges. +function LineView(doc, line, lineN) { + // The starting line + this.line = line + // Continuing lines, if any + this.rest = visualLineContinued(line) + // Number of logical lines in this visual line + this.size = this.rest ? lineNo(lst(this.rest)) - lineN + 1 : 1 + this.node = this.text = null + this.hidden = lineIsHidden(doc, line) +} + +// Create a range of LineView objects for the given lines. +function buildViewArray(cm, from, to) { + var array = [], nextPos + for (var pos = from; pos < to; pos = nextPos) { + var view = new LineView(cm.doc, getLine(cm.doc, pos), pos) + nextPos = pos + view.size + array.push(view) + } + return array +} + +var operationGroup = null + +function pushOperation(op) { + if (operationGroup) { + operationGroup.ops.push(op) + } else { + op.ownsGroup = operationGroup = { + ops: [op], + delayedCallbacks: [] + } + } +} + +function fireCallbacksForOps(group) { + // Calls delayed callbacks and cursorActivity handlers until no + // new ones appear + var callbacks = group.delayedCallbacks, i = 0 + do { + for (; i < callbacks.length; i++) + { callbacks[i].call(null) } + for (var j = 0; j < group.ops.length; j++) { + var op = group.ops[j] + if (op.cursorActivityHandlers) + { while (op.cursorActivityCalled < op.cursorActivityHandlers.length) + { op.cursorActivityHandlers[op.cursorActivityCalled++].call(null, op.cm) } } + } + } while (i < callbacks.length) +} + +function finishOperation(op, endCb) { + var group = op.ownsGroup + if (!group) { return } + + try { fireCallbacksForOps(group) } + finally { + operationGroup = null + endCb(group) + } +} + +var orphanDelayedCallbacks = null + +// Often, we want to signal events at a point where we are in the +// middle of some work, but don't want the handler to start calling +// other methods on the editor, which might be in an inconsistent +// state or simply not expect any other events to happen. +// signalLater looks whether there are any handlers, and schedules +// them to be executed when the last operation ends, or, if no +// operation is active, when a timeout fires. +function signalLater(emitter, type /*, values...*/) { + var arr = getHandlers(emitter, type) + if (!arr.length) { return } + var args = Array.prototype.slice.call(arguments, 2), list + if (operationGroup) { + list = operationGroup.delayedCallbacks + } else if (orphanDelayedCallbacks) { + list = orphanDelayedCallbacks + } else { + list = orphanDelayedCallbacks = [] + setTimeout(fireOrphanDelayed, 0) + } + var loop = function ( i ) { + list.push(function () { return arr[i].apply(null, args); }) + }; - function positionLineWidget(widget, node, wrap, dims) { - if (widget.noHScroll) { - (wrap.alignable || (wrap.alignable = [])).push(node); - var width = dims.wrapperWidth; - node.style.left = dims.fixedPos + "px"; - if (!widget.coverGutter) { - width -= dims.gutterTotalWidth; - node.style.paddingLeft = dims.gutterTotalWidth + "px"; + for (var i = 0; i < arr.length; ++i) + loop( i ); +} + +function fireOrphanDelayed() { + var delayed = orphanDelayedCallbacks + orphanDelayedCallbacks = null + for (var i = 0; i < delayed.length; ++i) { delayed[i]() } +} + +// When an aspect of a line changes, a string is added to +// lineView.changes. This updates the relevant part of the line's +// DOM structure. +function updateLineForChanges(cm, lineView, lineN, dims) { + for (var j = 0; j < lineView.changes.length; j++) { + var type = lineView.changes[j] + if (type == "text") { updateLineText(cm, lineView) } + else if (type == "gutter") { updateLineGutter(cm, lineView, lineN, dims) } + else if (type == "class") { updateLineClasses(cm, lineView) } + else if (type == "widget") { updateLineWidgets(cm, lineView, dims) } + } + lineView.changes = null +} + +// Lines with gutter elements, widgets or a background class need to +// be wrapped, and have the extra elements added to the wrapper div +function ensureLineWrapped(lineView) { + if (lineView.node == lineView.text) { + lineView.node = elt("div", null, null, "position: relative") + if (lineView.text.parentNode) + { lineView.text.parentNode.replaceChild(lineView.node, lineView.text) } + lineView.node.appendChild(lineView.text) + if (ie && ie_version < 8) { lineView.node.style.zIndex = 2 } + } + return lineView.node +} + +function updateLineBackground(cm, lineView) { + var cls = lineView.bgClass ? lineView.bgClass + " " + (lineView.line.bgClass || "") : lineView.line.bgClass + if (cls) { cls += " CodeMirror-linebackground" } + if (lineView.background) { + if (cls) { lineView.background.className = cls } + else { lineView.background.parentNode.removeChild(lineView.background); lineView.background = null } + } else if (cls) { + var wrap = ensureLineWrapped(lineView) + lineView.background = wrap.insertBefore(elt("div", null, cls), wrap.firstChild) + cm.display.input.setUneditable(lineView.background) + } +} + +// Wrapper around buildLineContent which will reuse the structure +// in display.externalMeasured when possible. +function getLineContent(cm, lineView) { + var ext = cm.display.externalMeasured + if (ext && ext.line == lineView.line) { + cm.display.externalMeasured = null + lineView.measure = ext.measure + return ext.built + } + return buildLineContent(cm, lineView) +} + +// Redraw the line's text. Interacts with the background and text +// classes because the mode may output tokens that influence these +// classes. +function updateLineText(cm, lineView) { + var cls = lineView.text.className + var built = getLineContent(cm, lineView) + if (lineView.text == lineView.node) { lineView.node = built.pre } + lineView.text.parentNode.replaceChild(built.pre, lineView.text) + lineView.text = built.pre + if (built.bgClass != lineView.bgClass || built.textClass != lineView.textClass) { + lineView.bgClass = built.bgClass + lineView.textClass = built.textClass + updateLineClasses(cm, lineView) + } else if (cls) { + lineView.text.className = cls + } +} + +function updateLineClasses(cm, lineView) { + updateLineBackground(cm, lineView) + if (lineView.line.wrapClass) + { ensureLineWrapped(lineView).className = lineView.line.wrapClass } + else if (lineView.node != lineView.text) + { lineView.node.className = "" } + var textClass = lineView.textClass ? lineView.textClass + " " + (lineView.line.textClass || "") : lineView.line.textClass + lineView.text.className = textClass || "" +} + +function updateLineGutter(cm, lineView, lineN, dims) { + if (lineView.gutter) { + lineView.node.removeChild(lineView.gutter) + lineView.gutter = null + } + if (lineView.gutterBackground) { + lineView.node.removeChild(lineView.gutterBackground) + lineView.gutterBackground = null + } + if (lineView.line.gutterClass) { + var wrap = ensureLineWrapped(lineView) + lineView.gutterBackground = elt("div", null, "CodeMirror-gutter-background " + lineView.line.gutterClass, + ("left: " + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px; width: " + (dims.gutterTotalWidth) + "px")) + cm.display.input.setUneditable(lineView.gutterBackground) + wrap.insertBefore(lineView.gutterBackground, lineView.text) + } + var markers = lineView.line.gutterMarkers + if (cm.options.lineNumbers || markers) { + var wrap$1 = ensureLineWrapped(lineView) + var gutterWrap = lineView.gutter = elt("div", null, "CodeMirror-gutter-wrapper", ("left: " + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px")) + cm.display.input.setUneditable(gutterWrap) + wrap$1.insertBefore(gutterWrap, lineView.text) + if (lineView.line.gutterClass) + { gutterWrap.className += " " + lineView.line.gutterClass } + if (cm.options.lineNumbers && (!markers || !markers["CodeMirror-linenumbers"])) + { lineView.lineNumber = gutterWrap.appendChild( + elt("div", lineNumberFor(cm.options, lineN), + "CodeMirror-linenumber CodeMirror-gutter-elt", + ("left: " + (dims.gutterLeft["CodeMirror-linenumbers"]) + "px; width: " + (cm.display.lineNumInnerWidth) + "px"))) } + if (markers) { for (var k = 0; k < cm.options.gutters.length; ++k) { + var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id] + if (found) + { gutterWrap.appendChild(elt("div", [found], "CodeMirror-gutter-elt", + ("left: " + (dims.gutterLeft[id]) + "px; width: " + (dims.gutterWidth[id]) + "px"))) } + } } + } +} + +function updateLineWidgets(cm, lineView, dims) { + if (lineView.alignable) { lineView.alignable = null } + for (var node = lineView.node.firstChild, next = (void 0); node; node = next) { + next = node.nextSibling + if (node.className == "CodeMirror-linewidget") + { lineView.node.removeChild(node) } + } + insertLineWidgets(cm, lineView, dims) +} + +// Build a line's DOM representation from scratch +function buildLineElement(cm, lineView, lineN, dims) { + var built = getLineContent(cm, lineView) + lineView.text = lineView.node = built.pre + if (built.bgClass) { lineView.bgClass = built.bgClass } + if (built.textClass) { lineView.textClass = built.textClass } + + updateLineClasses(cm, lineView) + updateLineGutter(cm, lineView, lineN, dims) + insertLineWidgets(cm, lineView, dims) + return lineView.node +} + +// A lineView may contain multiple logical lines (when merged by +// collapsed spans). The widgets for all of them need to be drawn. +function insertLineWidgets(cm, lineView, dims) { + insertLineWidgetsFor(cm, lineView.line, lineView, dims, true) + if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++) + { insertLineWidgetsFor(cm, lineView.rest[i], lineView, dims, false) } } +} + +function insertLineWidgetsFor(cm, line, lineView, dims, allowAbove) { + if (!line.widgets) { return } + var wrap = ensureLineWrapped(lineView) + for (var i = 0, ws = line.widgets; i < ws.length; ++i) { + var widget = ws[i], node = elt("div", [widget.node], "CodeMirror-linewidget") + if (!widget.handleMouseEvents) { node.setAttribute("cm-ignore-events", "true") } + positionLineWidget(widget, node, lineView, dims) + cm.display.input.setUneditable(node) + if (allowAbove && widget.above) + { wrap.insertBefore(node, lineView.gutter || lineView.text) } + else + { wrap.appendChild(node) } + signalLater(widget, "redraw") + } +} + +function positionLineWidget(widget, node, lineView, dims) { + if (widget.noHScroll) { + ;(lineView.alignable || (lineView.alignable = [])).push(node) + var width = dims.wrapperWidth + node.style.left = dims.fixedPos + "px" + if (!widget.coverGutter) { + width -= dims.gutterTotalWidth + node.style.paddingLeft = dims.gutterTotalWidth + "px" + } + node.style.width = width + "px" + } + if (widget.coverGutter) { + node.style.zIndex = 5 + node.style.position = "relative" + if (!widget.noHScroll) { node.style.marginLeft = -dims.gutterTotalWidth + "px" } + } +} + +function widgetHeight(widget) { + if (widget.height != null) { return widget.height } + var cm = widget.doc.cm + if (!cm) { return 0 } + if (!contains(document.body, widget.node)) { + var parentStyle = "position: relative;" + if (widget.coverGutter) + { parentStyle += "margin-left: -" + cm.display.gutters.offsetWidth + "px;" } + if (widget.noHScroll) + { parentStyle += "width: " + cm.display.wrapper.clientWidth + "px;" } + removeChildrenAndAdd(cm.display.measure, elt("div", [widget.node], null, parentStyle)) + } + return widget.height = widget.node.parentNode.offsetHeight +} + +// Return true when the given mouse event happened in a widget +function eventInWidget(display, e) { + for (var n = e_target(e); n != display.wrapper; n = n.parentNode) { + if (!n || (n.nodeType == 1 && n.getAttribute("cm-ignore-events") == "true") || + (n.parentNode == display.sizer && n != display.mover)) + { return true } + } +} + +// POSITION MEASUREMENT + +function paddingTop(display) {return display.lineSpace.offsetTop} +function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight} +function paddingH(display) { + if (display.cachedPaddingH) { return display.cachedPaddingH } + var e = removeChildrenAndAdd(display.measure, elt("pre", "x")) + var style = window.getComputedStyle ? window.getComputedStyle(e) : e.currentStyle + var data = {left: parseInt(style.paddingLeft), right: parseInt(style.paddingRight)} + if (!isNaN(data.left) && !isNaN(data.right)) { display.cachedPaddingH = data } + return data +} + +function scrollGap(cm) { return scrollerGap - cm.display.nativeBarWidth } +function displayWidth(cm) { + return cm.display.scroller.clientWidth - scrollGap(cm) - cm.display.barWidth +} +function displayHeight(cm) { + return cm.display.scroller.clientHeight - scrollGap(cm) - cm.display.barHeight +} + +// Ensure the lineView.wrapping.heights array is populated. This is +// an array of bottom offsets for the lines that make up a drawn +// line. When lineWrapping is on, there might be more than one +// height. +function ensureLineHeights(cm, lineView, rect) { + var wrapping = cm.options.lineWrapping + var curWidth = wrapping && displayWidth(cm) + if (!lineView.measure.heights || wrapping && lineView.measure.width != curWidth) { + var heights = lineView.measure.heights = [] + if (wrapping) { + lineView.measure.width = curWidth + var rects = lineView.text.firstChild.getClientRects() + for (var i = 0; i < rects.length - 1; i++) { + var cur = rects[i], next = rects[i + 1] + if (Math.abs(cur.bottom - next.bottom) > 2) + { heights.push((cur.bottom + next.top) / 2 - rect.top) } } - node.style.width = width + "px"; - } - if (widget.coverGutter) { - node.style.zIndex = 5; - node.style.position = "relative"; - if (!widget.noHScroll) node.style.marginLeft = -dims.gutterTotalWidth + "px"; } + heights.push(rect.bottom - rect.top) + } +} + +// Find a line map (mapping character offsets to text nodes) and a +// measurement cache for the given line number. (A line view might +// contain multiple lines when collapsed ranges are present.) +function mapFromLineView(lineView, line, lineN) { + if (lineView.line == line) + { return {map: lineView.measure.map, cache: lineView.measure.cache} } + for (var i = 0; i < lineView.rest.length; i++) + { if (lineView.rest[i] == line) + { return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i]} } } + for (var i$1 = 0; i$1 < lineView.rest.length; i$1++) + { if (lineNo(lineView.rest[i$1]) > lineN) + { return {map: lineView.measure.maps[i$1], cache: lineView.measure.caches[i$1], before: true} } } +} + +// Render a line into the hidden node display.externalMeasured. Used +// when measurement is needed for a line that's not in the viewport. +function updateExternalMeasurement(cm, line) { + line = visualLine(line) + var lineN = lineNo(line) + var view = cm.display.externalMeasured = new LineView(cm.doc, line, lineN) + view.lineN = lineN + var built = view.built = buildLineContent(cm, view) + view.text = built.pre + removeChildrenAndAdd(cm.display.lineMeasure, built.pre) + return view +} + +// Get a {top, bottom, left, right} box (in line-local coordinates) +// for a given character. +function measureChar(cm, line, ch, bias) { + return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias) +} + +// Find a line view that corresponds to the given line number. +function findViewForLine(cm, lineN) { + if (lineN >= cm.display.viewFrom && lineN < cm.display.viewTo) + { return cm.display.view[findViewIndex(cm, lineN)] } + var ext = cm.display.externalMeasured + if (ext && lineN >= ext.lineN && lineN < ext.lineN + ext.size) + { return ext } +} + +// Measurement can be split in two steps, the set-up work that +// applies to the whole line, and the measurement of the actual +// character. Functions like coordsChar, that need to do a lot of +// measurements in a row, can thus ensure that the set-up work is +// only done once. +function prepareMeasureForLine(cm, line) { + var lineN = lineNo(line) + var view = findViewForLine(cm, lineN) + if (view && !view.text) { + view = null + } else if (view && view.changes) { + updateLineForChanges(cm, view, lineN, getDimensions(cm)) + cm.curOp.forceUpdate = true + } + if (!view) + { view = updateExternalMeasurement(cm, line) } + + var info = mapFromLineView(view, line, lineN) + return { + line: line, view: view, rect: null, + map: info.map, cache: info.cache, before: info.before, + hasHeights: false + } +} + +// Given a prepared measurement object, measures the position of an +// actual character (or fetches it from the cache). +function measureCharPrepared(cm, prepared, ch, bias, varHeight) { + if (prepared.before) { ch = -1 } + var key = ch + (bias || ""), found + if (prepared.cache.hasOwnProperty(key)) { + found = prepared.cache[key] + } else { + if (!prepared.rect) + { prepared.rect = prepared.view.text.getBoundingClientRect() } + if (!prepared.hasHeights) { + ensureLineHeights(cm, prepared.view, prepared.rect) + prepared.hasHeights = true + } + found = measureCharInner(cm, prepared, ch, bias) + if (!found.bogus) { prepared.cache[key] = found } + } + return {left: found.left, right: found.right, + top: varHeight ? found.rtop : found.top, + bottom: varHeight ? found.rbottom : found.bottom} +} + +var nullRect = {left: 0, right: 0, top: 0, bottom: 0} + +function nodeAndOffsetInLineMap(map, ch, bias) { + var node, start, end, collapse, mStart, mEnd + // First, search the line map for the text node corresponding to, + // or closest to, the target character. + for (var i = 0; i < map.length; i += 3) { + mStart = map[i] + mEnd = map[i + 1] + if (ch < mStart) { + start = 0; end = 1 + collapse = "left" + } else if (ch < mEnd) { + start = ch - mStart + end = start + 1 + } else if (i == map.length - 3 || ch == mEnd && map[i + 3] > ch) { + end = mEnd - mStart + start = end - 1 + if (ch >= mEnd) { collapse = "right" } + } + if (start != null) { + node = map[i + 2] + if (mStart == mEnd && bias == (node.insertLeft ? "left" : "right")) + { collapse = bias } + if (bias == "left" && start == 0) + { while (i && map[i - 2] == map[i - 3] && map[i - 1].insertLeft) { + node = map[(i -= 3) + 2] + collapse = "left" + } } + if (bias == "right" && start == mEnd - mStart) + { while (i < map.length - 3 && map[i + 3] == map[i + 4] && !map[i + 5].insertLeft) { + node = map[(i += 3) + 2] + collapse = "right" + } } + break + } + } + return {node: node, start: start, end: end, collapse: collapse, coverStart: mStart, coverEnd: mEnd} +} + +function getUsefulRect(rects, bias) { + var rect = nullRect + if (bias == "left") { for (var i = 0; i < rects.length; i++) { + if ((rect = rects[i]).left != rect.right) { break } + } } else { for (var i$1 = rects.length - 1; i$1 >= 0; i$1--) { + if ((rect = rects[i$1]).left != rect.right) { break } + } } + return rect +} + +function measureCharInner(cm, prepared, ch, bias) { + var place = nodeAndOffsetInLineMap(prepared.map, ch, bias) + var node = place.node, start = place.start, end = place.end, collapse = place.collapse + + var rect + if (node.nodeType == 3) { // If it is a text node, use a range to retrieve the coordinates. + for (var i$1 = 0; i$1 < 4; i$1++) { // Retry a maximum of 4 times when nonsense rectangles are returned + while (start && isExtendingChar(prepared.line.text.charAt(place.coverStart + start))) { --start } + while (place.coverStart + end < place.coverEnd && isExtendingChar(prepared.line.text.charAt(place.coverStart + end))) { ++end } + if (ie && ie_version < 9 && start == 0 && end == place.coverEnd - place.coverStart) + { rect = node.parentNode.getBoundingClientRect() } + else + { rect = getUsefulRect(range(node, start, end).getClientRects(), bias) } + if (rect.left || rect.right || start == 0) { break } + end = start + start = start - 1 + collapse = "right" + } + if (ie && ie_version < 11) { rect = maybeUpdateRectForZooming(cm.display.measure, rect) } + } else { // If it is a widget, simply get the box for the whole widget. + if (start > 0) { collapse = bias = "right" } + var rects + if (cm.options.lineWrapping && (rects = node.getClientRects()).length > 1) + { rect = rects[bias == "right" ? rects.length - 1 : 0] } + else + { rect = node.getBoundingClientRect() } } - - // SELECTION / CURSOR - - function updateSelection(cm) { - var display = cm.display; - var collapsed = posEq(cm.doc.sel.from, cm.doc.sel.to); - if (collapsed || cm.options.showCursorWhenSelecting) - updateSelectionCursor(cm); + if (ie && ie_version < 9 && !start && (!rect || !rect.left && !rect.right)) { + var rSpan = node.parentNode.getClientRects()[0] + if (rSpan) + { rect = {left: rSpan.left, right: rSpan.left + charWidth(cm.display), top: rSpan.top, bottom: rSpan.bottom} } else - display.cursor.style.display = display.otherCursor.style.display = "none"; - if (!collapsed) - updateSelectionRange(cm); + { rect = nullRect } + } + + var rtop = rect.top - prepared.rect.top, rbot = rect.bottom - prepared.rect.top + var mid = (rtop + rbot) / 2 + var heights = prepared.view.measure.heights + var i = 0 + for (; i < heights.length - 1; i++) + { if (mid < heights[i]) { break } } + var top = i ? heights[i - 1] : 0, bot = heights[i] + var result = {left: (collapse == "right" ? rect.right : rect.left) - prepared.rect.left, + right: (collapse == "left" ? rect.left : rect.right) - prepared.rect.left, + top: top, bottom: bot} + if (!rect.left && !rect.right) { result.bogus = true } + if (!cm.options.singleCursorHeightPerLine) { result.rtop = rtop; result.rbottom = rbot } + + return result +} + +// Work around problem with bounding client rects on ranges being +// returned incorrectly when zoomed on IE10 and below. +function maybeUpdateRectForZooming(measure, rect) { + if (!window.screen || screen.logicalXDPI == null || + screen.logicalXDPI == screen.deviceXDPI || !hasBadZoomedRects(measure)) + { return rect } + var scaleX = screen.logicalXDPI / screen.deviceXDPI + var scaleY = screen.logicalYDPI / screen.deviceYDPI + return {left: rect.left * scaleX, right: rect.right * scaleX, + top: rect.top * scaleY, bottom: rect.bottom * scaleY} +} + +function clearLineMeasurementCacheFor(lineView) { + if (lineView.measure) { + lineView.measure.cache = {} + lineView.measure.heights = null + if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++) + { lineView.measure.caches[i] = {} } } + } +} + +function clearLineMeasurementCache(cm) { + cm.display.externalMeasure = null + removeChildren(cm.display.lineMeasure) + for (var i = 0; i < cm.display.view.length; i++) + { clearLineMeasurementCacheFor(cm.display.view[i]) } +} + +function clearCaches(cm) { + clearLineMeasurementCache(cm) + cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null + if (!cm.options.lineWrapping) { cm.display.maxLineChanged = true } + cm.display.lineNumChars = null +} + +function pageScrollX() { + // Work around https://bugs.chromium.org/p/chromium/issues/detail?id=489206 + // which causes page_Offset and bounding client rects to use + // different reference viewports and invalidate our calculations. + if (chrome && android) { return -(document.body.getBoundingClientRect().left - parseInt(getComputedStyle(document.body).marginLeft)) } + return window.pageXOffset || (document.documentElement || document.body).scrollLeft +} +function pageScrollY() { + if (chrome && android) { return -(document.body.getBoundingClientRect().top - parseInt(getComputedStyle(document.body).marginTop)) } + return window.pageYOffset || (document.documentElement || document.body).scrollTop +} + +// Converts a {top, bottom, left, right} box from line-local +// coordinates into another coordinate system. Context may be one of +// "line", "div" (display.lineDiv), "local"./null (editor), "window", +// or "page". +function intoCoordSystem(cm, lineObj, rect, context, includeWidgets) { + if (!includeWidgets && lineObj.widgets) { for (var i = 0; i < lineObj.widgets.length; ++i) { if (lineObj.widgets[i].above) { + var size = widgetHeight(lineObj.widgets[i]) + rect.top += size; rect.bottom += size + } } } + if (context == "line") { return rect } + if (!context) { context = "local" } + var yOff = heightAtLine(lineObj) + if (context == "local") { yOff += paddingTop(cm.display) } + else { yOff -= cm.display.viewOffset } + if (context == "page" || context == "window") { + var lOff = cm.display.lineSpace.getBoundingClientRect() + yOff += lOff.top + (context == "window" ? 0 : pageScrollY()) + var xOff = lOff.left + (context == "window" ? 0 : pageScrollX()) + rect.left += xOff; rect.right += xOff + } + rect.top += yOff; rect.bottom += yOff + return rect +} + +// Coverts a box from "div" coords to another coordinate system. +// Context may be "window", "page", "div", or "local"./null. +function fromCoordSystem(cm, coords, context) { + if (context == "div") { return coords } + var left = coords.left, top = coords.top + // First move into "page" coordinate system + if (context == "page") { + left -= pageScrollX() + top -= pageScrollY() + } else if (context == "local" || !context) { + var localBox = cm.display.sizer.getBoundingClientRect() + left += localBox.left + top += localBox.top + } + + var lineSpaceBox = cm.display.lineSpace.getBoundingClientRect() + return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top} +} + +function charCoords(cm, pos, context, lineObj, bias) { + if (!lineObj) { lineObj = getLine(cm.doc, pos.line) } + return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context) +} + +// Returns a box for a given cursor position, which may have an +// 'other' property containing the position of the secondary cursor +// on a bidi boundary. +// A cursor Pos(line, char, "before") is on the same visual line as `char - 1` +// and after `char - 1` in writing order of `char - 1` +// A cursor Pos(line, char, "after") is on the same visual line as `char` +// and before `char` in writing order of `char` +// Examples (upper-case letters are RTL, lower-case are LTR): +// Pos(0, 1, ...) +// before after +// ab a|b a|b +// aB a|B aB| +// Ab |Ab A|b +// AB B|A B|A +// Every position after the last character on a line is considered to stick +// to the last character on the line. +function cursorCoords(cm, pos, context, lineObj, preparedMeasure, varHeight) { + lineObj = lineObj || getLine(cm.doc, pos.line) + if (!preparedMeasure) { preparedMeasure = prepareMeasureForLine(cm, lineObj) } + function get(ch, right) { + var m = measureCharPrepared(cm, preparedMeasure, ch, right ? "right" : "left", varHeight) + if (right) { m.left = m.right; } else { m.right = m.left } + return intoCoordSystem(cm, lineObj, m, context) + } + var order = getOrder(lineObj, cm.doc.direction), ch = pos.ch, sticky = pos.sticky + if (ch >= lineObj.text.length) { + ch = lineObj.text.length + sticky = "before" + } else if (ch <= 0) { + ch = 0 + sticky = "after" + } + if (!order) { return get(sticky == "before" ? ch - 1 : ch, sticky == "before") } + + function getBidi(ch, partPos, invert) { + var part = order[partPos], right = (part.level % 2) != 0 + return get(invert ? ch - 1 : ch, right != invert) + } + var partPos = getBidiPartAt(order, ch, sticky) + var other = bidiOther + var val = getBidi(ch, partPos, sticky == "before") + if (other != null) { val.other = getBidi(ch, other, sticky != "before") } + return val +} + +// Used to cheaply estimate the coordinates for a position. Used for +// intermediate scroll updates. +function estimateCoords(cm, pos) { + var left = 0 + pos = clipPos(cm.doc, pos) + if (!cm.options.lineWrapping) { left = charWidth(cm.display) * pos.ch } + var lineObj = getLine(cm.doc, pos.line) + var top = heightAtLine(lineObj) + paddingTop(cm.display) + return {left: left, right: left, top: top, bottom: top + lineObj.height} +} + +// Positions returned by coordsChar contain some extra information. +// xRel is the relative x position of the input coordinates compared +// to the found position (so xRel > 0 means the coordinates are to +// the right of the character position, for example). When outside +// is true, that means the coordinates lie outside the line's +// vertical range. +function PosWithInfo(line, ch, sticky, outside, xRel) { + var pos = Pos(line, ch, sticky) + pos.xRel = xRel + if (outside) { pos.outside = true } + return pos +} + +// Compute the character position closest to the given coordinates. +// Input must be lineSpace-local ("div" coordinate system). +function coordsChar(cm, x, y) { + var doc = cm.doc + y += cm.display.viewOffset + if (y < 0) { return PosWithInfo(doc.first, 0, null, true, -1) } + var lineN = lineAtHeight(doc, y), last = doc.first + doc.size - 1 + if (lineN > last) + { return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, null, true, 1) } + if (x < 0) { x = 0 } + + var lineObj = getLine(doc, lineN) + for (;;) { + var found = coordsCharInner(cm, lineObj, lineN, x, y) + var merged = collapsedSpanAtEnd(lineObj) + var mergedPos = merged && merged.find(0, true) + if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0)) + { lineN = lineNo(lineObj = mergedPos.to.line) } else - display.selectionDiv.style.display = "none"; - - // Move the hidden textarea near the cursor to prevent scrolling artifacts - if (cm.options.moveInputWithCursor) { - var headPos = cursorCoords(cm, cm.doc.sel.head, "div"); - var wrapOff = getRect(display.wrapper), lineOff = getRect(display.lineDiv); - display.inputDiv.style.top = Math.max(0, Math.min(display.wrapper.clientHeight - 10, - headPos.top + lineOff.top - wrapOff.top)) + "px"; - display.inputDiv.style.left = Math.max(0, Math.min(display.wrapper.clientWidth - 10, - headPos.left + lineOff.left - wrapOff.left)) + "px"; - } - } - - // No selection, plain cursor - function updateSelectionCursor(cm) { - var display = cm.display, pos = cursorCoords(cm, cm.doc.sel.head, "div"); - display.cursor.style.left = pos.left + "px"; - display.cursor.style.top = pos.top + "px"; - display.cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + "px"; - display.cursor.style.display = ""; - - if (pos.other) { - display.otherCursor.style.display = ""; - display.otherCursor.style.left = pos.other.left + "px"; - display.otherCursor.style.top = pos.other.top + "px"; - display.otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + "px"; - } else { display.otherCursor.style.display = "none"; } - } - - // Highlight selection - function updateSelectionRange(cm) { - var display = cm.display, doc = cm.doc, sel = cm.doc.sel; - var fragment = document.createDocumentFragment(); - var padding = paddingH(cm.display), leftSide = padding.left, rightSide = display.lineSpace.offsetWidth - padding.right; - - function add(left, top, width, bottom) { - if (top < 0) top = 0; - fragment.appendChild(elt("div", null, "CodeMirror-selected", "position: absolute; left: " + left + - "px; top: " + top + "px; width: " + (width == null ? rightSide - left : width) + - "px; height: " + (bottom - top) + "px")); - } - - function drawForLine(line, fromArg, toArg) { - var lineObj = getLine(doc, line); - var lineLen = lineObj.text.length; - var start, end; - function coords(ch, bias) { - return charCoords(cm, Pos(line, ch), "div", lineObj, bias); - } - - iterateBidiSections(getOrder(lineObj), fromArg || 0, toArg == null ? lineLen : toArg, function(from, to, dir) { - var leftPos = coords(from, "left"), rightPos, left, right; - if (from == to) { - rightPos = leftPos; - left = right = leftPos.left; - } else { - rightPos = coords(to - 1, "right"); - if (dir == "rtl") { var tmp = leftPos; leftPos = rightPos; rightPos = tmp; } - left = leftPos.left; - right = rightPos.right; - } - if (fromArg == null && from == 0) left = leftSide; - if (rightPos.top - leftPos.top > 3) { // Different lines, draw top part - add(left, leftPos.top, null, leftPos.bottom); - left = leftSide; - if (leftPos.bottom < rightPos.top) add(left, leftPos.bottom, null, rightPos.top); - } - if (toArg == null && to == lineLen) right = rightSide; - if (!start || leftPos.top < start.top || leftPos.top == start.top && leftPos.left < start.left) - start = leftPos; - if (!end || rightPos.bottom > end.bottom || rightPos.bottom == end.bottom && rightPos.right > end.right) - end = rightPos; - if (left < leftSide + 1) left = leftSide; - add(left, rightPos.top, right - left, rightPos.bottom); - }); - return {start: start, end: end}; - } - - if (sel.from.line == sel.to.line) { - drawForLine(sel.from.line, sel.from.ch, sel.to.ch); - } else { - var fromLine = getLine(doc, sel.from.line), toLine = getLine(doc, sel.to.line); - var singleVLine = visualLine(doc, fromLine) == visualLine(doc, toLine); - var leftEnd = drawForLine(sel.from.line, sel.from.ch, singleVLine ? fromLine.text.length : null).end; - var rightStart = drawForLine(sel.to.line, singleVLine ? 0 : null, sel.to.ch).start; - if (singleVLine) { - if (leftEnd.top < rightStart.top - 2) { - add(leftEnd.right, leftEnd.top, null, leftEnd.bottom); - add(leftSide, rightStart.top, rightStart.left, rightStart.bottom); - } else { - add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom); - } - } - if (leftEnd.bottom < rightStart.top) - add(leftSide, leftEnd.bottom, null, rightStart.top); - } - - removeChildrenAndAdd(display.selectionDiv, fragment); - display.selectionDiv.style.display = ""; - } - - // Cursor-blinking - function restartBlink(cm) { - if (!cm.state.focused) return; - var display = cm.display; - clearInterval(display.blinker); - var on = true; - display.cursor.style.visibility = display.otherCursor.style.visibility = ""; - if (cm.options.cursorBlinkRate > 0) - display.blinker = setInterval(function() { - display.cursor.style.visibility = display.otherCursor.style.visibility = (on = !on) ? "" : "hidden"; - }, cm.options.cursorBlinkRate); - } - - // HIGHLIGHT WORKER - - function startWorker(cm, time) { - if (cm.doc.mode.startState && cm.doc.frontier < cm.display.showingTo) - cm.state.highlight.set(time, bind(highlightWorker, cm)); - } - - function highlightWorker(cm) { - var doc = cm.doc; - if (doc.frontier < doc.first) doc.frontier = doc.first; - if (doc.frontier >= cm.display.showingTo) return; - var end = +new Date + cm.options.workTime; - var state = copyState(doc.mode, getStateBefore(cm, doc.frontier)); - var changed = [], prevChange; - doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.showingTo + 500), function(line) { - if (doc.frontier >= cm.display.showingFrom) { // Visible - var oldStyles = line.styles; - line.styles = highlightLine(cm, line, state, true); - var ischange = !oldStyles || oldStyles.length != line.styles.length; - for (var i = 0; !ischange && i < oldStyles.length; ++i) ischange = oldStyles[i] != line.styles[i]; - if (ischange) { - if (prevChange && prevChange.end == doc.frontier) prevChange.end++; - else changed.push(prevChange = {start: doc.frontier, end: doc.frontier + 1}); - } - line.stateAfter = copyState(doc.mode, state); - } else { - processLine(cm, line.text, state); - line.stateAfter = doc.frontier % 5 == 0 ? copyState(doc.mode, state) : null; - } - ++doc.frontier; - if (+new Date > end) { - startWorker(cm, cm.options.workDelay); - return true; - } - }); - if (changed.length) - operation(cm, function() { - for (var i = 0; i < changed.length; ++i) - regChange(this, changed[i].start, changed[i].end); - })(); - } - - // Finds the line to start with when starting a parse. Tries to - // find a line with a stateAfter, so that it can start with a - // valid state. If that fails, it returns the line with the - // smallest indentation, which tends to need the least context to - // parse correctly. - function findStartLine(cm, n, precise) { - var minindent, minline, doc = cm.doc; - var lim = precise ? -1 : n - (cm.doc.mode.innerMode ? 1000 : 100); - for (var search = n; search > lim; --search) { - if (search <= doc.first) return doc.first; - var line = getLine(doc, search - 1); - if (line.stateAfter && (!precise || search <= doc.frontier)) return search; - var indented = countColumn(line.text, null, cm.options.tabSize); - if (minline == null || minindent > indented) { - minline = search - 1; - minindent = indented; - } + { return found } + } +} + +function wrappedLineExtent(cm, lineObj, preparedMeasure, y) { + var measure = function (ch) { return intoCoordSystem(cm, lineObj, measureCharPrepared(cm, preparedMeasure, ch), "line"); } + var end = lineObj.text.length + var begin = findFirst(function (ch) { return measure(ch - 1).bottom <= y; }, end, 0) + end = findFirst(function (ch) { return measure(ch).top > y; }, begin, end) + return {begin: begin, end: end} +} + +function wrappedLineExtentChar(cm, lineObj, preparedMeasure, target) { + var targetTop = intoCoordSystem(cm, lineObj, measureCharPrepared(cm, preparedMeasure, target), "line").top + return wrappedLineExtent(cm, lineObj, preparedMeasure, targetTop) +} + +function coordsCharInner(cm, lineObj, lineNo, x, y) { + y -= heightAtLine(lineObj) + var begin = 0, end = lineObj.text.length + var preparedMeasure = prepareMeasureForLine(cm, lineObj) + var pos + var order = getOrder(lineObj, cm.doc.direction) + if (order) { + if (cm.options.lineWrapping) { + ;var assign; + ((assign = wrappedLineExtent(cm, lineObj, preparedMeasure, y), begin = assign.begin, end = assign.end, assign)) } - return minline; - } - - function getStateBefore(cm, n, precise) { - var doc = cm.doc, display = cm.display; - if (!doc.mode.startState) return true; - var pos = findStartLine(cm, n, precise), state = pos > doc.first && getLine(doc, pos-1).stateAfter; - if (!state) state = startState(doc.mode); - else state = copyState(doc.mode, state); - doc.iter(pos, n, function(line) { - processLine(cm, line.text, state); - var save = pos == n - 1 || pos % 5 == 0 || pos >= display.showingFrom && pos < display.showingTo; - line.stateAfter = save ? copyState(doc.mode, state) : null; - ++pos; - }); - if (precise) doc.frontier = pos; - return state; - } - - // POSITION MEASUREMENT - - function paddingTop(display) {return display.lineSpace.offsetTop;} - function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight;} - function paddingH(display) { - if (display.cachedPaddingH) return display.cachedPaddingH; - var e = removeChildrenAndAdd(display.measure, elt("pre", "x")); - var style = window.getComputedStyle ? window.getComputedStyle(e) : e.currentStyle; - return display.cachedPaddingH = {left: parseInt(style.paddingLeft), - right: parseInt(style.paddingRight)}; - } - - function measureChar(cm, line, ch, data, bias) { - var dir = -1; - data = data || measureLine(cm, line); - if (data.crude) { - var left = data.left + ch * data.width; - return {left: left, right: left + data.width, top: data.top, bottom: data.bottom}; - } - - for (var pos = ch;; pos += dir) { - var r = data[pos]; - if (r) break; - if (dir < 0 && pos == 0) dir = 1; - } - bias = pos > ch ? "left" : pos < ch ? "right" : bias; - if (bias == "left" && r.leftSide) r = r.leftSide; - else if (bias == "right" && r.rightSide) r = r.rightSide; - return {left: pos < ch ? r.right : r.left, - right: pos > ch ? r.left : r.right, - top: r.top, - bottom: r.bottom}; - } - - function findCachedMeasurement(cm, line) { - var cache = cm.display.measureLineCache; - for (var i = 0; i < cache.length; ++i) { - var memo = cache[i]; - if (memo.text == line.text && memo.markedSpans == line.markedSpans && - cm.display.scroller.clientWidth == memo.width && - memo.classes == line.textClass + "|" + line.wrapClass) - return memo; - } - } - - function clearCachedMeasurement(cm, line) { - var exists = findCachedMeasurement(cm, line); - if (exists) exists.text = exists.measure = exists.markedSpans = null; - } - - function measureLine(cm, line) { - // First look in the cache - var cached = findCachedMeasurement(cm, line); - if (cached) return cached.measure; - - // Failing that, recompute and store result in cache - var measure = measureLineInner(cm, line); - var cache = cm.display.measureLineCache; - var memo = {text: line.text, width: cm.display.scroller.clientWidth, - markedSpans: line.markedSpans, measure: measure, - classes: line.textClass + "|" + line.wrapClass}; - if (cache.length == 16) cache[++cm.display.measureLineCachePos % 16] = memo; - else cache.push(memo); - return measure; - } - - function measureLineInner(cm, line) { - if (!cm.options.lineWrapping && line.text.length >= cm.options.crudeMeasuringFrom) - return crudelyMeasureLine(cm, line); - - var display = cm.display, measure = emptyArray(line.text.length); - var pre = buildLineContent(cm, line, measure, true).pre; - - // IE does not cache element positions of inline elements between - // calls to getBoundingClientRect. This makes the loop below, - // which gathers the positions of all the characters on the line, - // do an amount of layout work quadratic to the number of - // characters. When line wrapping is off, we try to improve things - // by first subdividing the line into a bunch of inline blocks, so - // that IE can reuse most of the layout information from caches - // for those blocks. This does interfere with line wrapping, so it - // doesn't work when wrapping is on, but in that case the - // situation is slightly better, since IE does cache line-wrapping - // information and only recomputes per-line. - if (old_ie && !ie_lt8 && !cm.options.lineWrapping && pre.childNodes.length > 100) { - var fragment = document.createDocumentFragment(); - var chunk = 10, n = pre.childNodes.length; - for (var i = 0, chunks = Math.ceil(n / chunk); i < chunks; ++i) { - var wrap = elt("div", null, null, "display: inline-block"); - for (var j = 0; j < chunk && n; ++j) { - wrap.appendChild(pre.firstChild); - --n; - } - fragment.appendChild(wrap); - } - pre.appendChild(fragment); - } - - removeChildrenAndAdd(display.measure, pre); - - var outer = getRect(display.lineDiv); - var vranges = [], data = emptyArray(line.text.length), maxBot = pre.offsetHeight; - // Work around an IE7/8 bug where it will sometimes have randomly - // replaced our pre with a clone at this point. - if (ie_lt9 && display.measure.first != pre) - removeChildrenAndAdd(display.measure, pre); - - function measureRect(rect) { - var top = rect.top - outer.top, bot = rect.bottom - outer.top; - if (bot > maxBot) bot = maxBot; - if (top < 0) top = 0; - for (var i = vranges.length - 2; i >= 0; i -= 2) { - var rtop = vranges[i], rbot = vranges[i+1]; - if (rtop > bot || rbot < top) continue; - if (rtop <= top && rbot >= bot || - top <= rtop && bot >= rbot || - Math.min(bot, rbot) - Math.max(top, rtop) >= (bot - top) >> 1) { - vranges[i] = Math.min(top, rtop); - vranges[i+1] = Math.max(bot, rbot); - break; - } - } - if (i < 0) { i = vranges.length; vranges.push(top, bot); } - return {left: rect.left - outer.left, - right: rect.right - outer.left, - top: i, bottom: null}; - } - function finishRect(rect) { - rect.bottom = vranges[rect.top+1]; - rect.top = vranges[rect.top]; - } - - for (var i = 0, cur; i < measure.length; ++i) if (cur = measure[i]) { - var node = cur, rect = null; - // A widget might wrap, needs special care - if (/\bCodeMirror-widget\b/.test(cur.className) && cur.getClientRects) { - if (cur.firstChild.nodeType == 1) node = cur.firstChild; - var rects = node.getClientRects(); - if (rects.length > 1) { - rect = data[i] = measureRect(rects[0]); - rect.rightSide = measureRect(rects[rects.length - 1]); - } + pos = new Pos(lineNo, begin) + var beginLeft = cursorCoords(cm, pos, "line", lineObj, preparedMeasure).left + var dir = beginLeft < x ? 1 : -1 + var prevDiff, diff = beginLeft - x, prevPos + do { + prevDiff = diff + prevPos = pos + pos = moveVisually(cm, lineObj, pos, dir) + if (pos == null || pos.ch < begin || end <= (pos.sticky == "before" ? pos.ch - 1 : pos.ch)) { + pos = prevPos + break } - if (!rect) rect = data[i] = measureRect(getRect(node)); - if (cur.measureRight) rect.right = getRect(cur.measureRight).left - outer.left; - if (cur.leftSide) rect.leftSide = measureRect(getRect(cur.leftSide)); - } - removeChildren(cm.display.measure); - for (var i = 0, cur; i < data.length; ++i) if (cur = data[i]) { - finishRect(cur); - if (cur.leftSide) finishRect(cur.leftSide); - if (cur.rightSide) finishRect(cur.rightSide); - } - return data; - } - - function crudelyMeasureLine(cm, line) { - var copy = new Line(line.text.slice(0, 100), null); - if (line.textClass) copy.textClass = line.textClass; - var measure = measureLineInner(cm, copy); - var left = measureChar(cm, copy, 0, measure, "left"); - var right = measureChar(cm, copy, 99, measure, "right"); - return {crude: true, top: left.top, left: left.left, bottom: left.bottom, width: (right.right - left.left) / 100}; - } - - function measureLineWidth(cm, line) { - var hasBadSpan = false; - if (line.markedSpans) for (var i = 0; i < line.markedSpans; ++i) { - var sp = line.markedSpans[i]; - if (sp.collapsed && (sp.to == null || sp.to == line.text.length)) hasBadSpan = true; - } - var cached = !hasBadSpan && findCachedMeasurement(cm, line); - if (cached || line.text.length >= cm.options.crudeMeasuringFrom) - return measureChar(cm, line, line.text.length, cached && cached.measure, "right").right; - - var pre = buildLineContent(cm, line, null, true).pre; - var end = pre.appendChild(zeroWidthElement(cm.display.measure)); - removeChildrenAndAdd(cm.display.measure, pre); - var rect = getRect(end); - if (rect.right == 0 && rect.bottom == 0) { - end = pre.appendChild(elt("span", "\u00a0")); - rect = getRect(end); - } - return rect.left - getRect(cm.display.lineDiv).left; - } - - function clearCaches(cm) { - cm.display.measureLineCache.length = cm.display.measureLineCachePos = 0; - cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null; - if (!cm.options.lineWrapping) cm.display.maxLineChanged = true; - cm.display.lineNumChars = null; - } - - function pageScrollX() { return window.pageXOffset || (document.documentElement || document.body).scrollLeft; } - function pageScrollY() { return window.pageYOffset || (document.documentElement || document.body).scrollTop; } - - // Context is one of "line", "div" (display.lineDiv), "local"/null (editor), or "page" - function intoCoordSystem(cm, lineObj, rect, context) { - if (lineObj.widgets) for (var i = 0; i < lineObj.widgets.length; ++i) if (lineObj.widgets[i].above) { - var size = widgetHeight(lineObj.widgets[i]); - rect.top += size; rect.bottom += size; - } - if (context == "line") return rect; - if (!context) context = "local"; - var yOff = heightAtLine(cm, lineObj); - if (context == "local") yOff += paddingTop(cm.display); - else yOff -= cm.display.viewOffset; - if (context == "page" || context == "window") { - var lOff = getRect(cm.display.lineSpace); - yOff += lOff.top + (context == "window" ? 0 : pageScrollY()); - var xOff = lOff.left + (context == "window" ? 0 : pageScrollX()); - rect.left += xOff; rect.right += xOff; - } - rect.top += yOff; rect.bottom += yOff; - return rect; - } - - // Context may be "window", "page", "div", or "local"/null - // Result is in "div" coords - function fromCoordSystem(cm, coords, context) { - if (context == "div") return coords; - var left = coords.left, top = coords.top; - // First move into "page" coordinate system - if (context == "page") { - left -= pageScrollX(); - top -= pageScrollY(); - } else if (context == "local" || !context) { - var localBox = getRect(cm.display.sizer); - left += localBox.left; - top += localBox.top; - } - - var lineSpaceBox = getRect(cm.display.lineSpace); - return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top}; - } - - function charCoords(cm, pos, context, lineObj, bias) { - if (!lineObj) lineObj = getLine(cm.doc, pos.line); - return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, null, bias), context); - } - - function cursorCoords(cm, pos, context, lineObj, measurement) { - lineObj = lineObj || getLine(cm.doc, pos.line); - if (!measurement) measurement = measureLine(cm, lineObj); - function get(ch, right) { - var m = measureChar(cm, lineObj, ch, measurement, right ? "right" : "left"); - if (right) m.left = m.right; else m.right = m.left; - return intoCoordSystem(cm, lineObj, m, context); - } - function getBidi(ch, partPos) { - var part = order[partPos], right = part.level % 2; - if (ch == bidiLeft(part) && partPos && part.level < order[partPos - 1].level) { - part = order[--partPos]; - ch = bidiRight(part) - (part.level % 2 ? 0 : 1); - right = true; - } else if (ch == bidiRight(part) && partPos < order.length - 1 && part.level < order[partPos + 1].level) { - part = order[++partPos]; - ch = bidiLeft(part) - part.level % 2; - right = false; + diff = cursorCoords(cm, pos, "line", lineObj, preparedMeasure).left - x + } while ((dir < 0) != (diff < 0) && (Math.abs(diff) <= Math.abs(prevDiff))) + if (Math.abs(diff) > Math.abs(prevDiff)) { + if ((diff < 0) == (prevDiff < 0)) { throw new Error("Broke out of infinite loop in coordsCharInner") } + pos = prevPos + } + } else { + var ch = findFirst(function (ch) { + var box = intoCoordSystem(cm, lineObj, measureCharPrepared(cm, preparedMeasure, ch), "line") + if (box.top > y) { + // For the cursor stickiness + end = Math.min(ch, end) + return true } - if (right && ch == part.to && ch > part.from) return get(ch - 1); - return get(ch, right); - } - var order = getOrder(lineObj), ch = pos.ch; - if (!order) return get(ch); - var partPos = getBidiPartAt(order, ch); - var val = getBidi(ch, partPos); - if (bidiOther != null) val.other = getBidi(ch, bidiOther); - return val; - } - - function PosWithInfo(line, ch, outside, xRel) { - var pos = new Pos(line, ch); - pos.xRel = xRel; - if (outside) pos.outside = true; - return pos; - } - - // Coords must be lineSpace-local - function coordsChar(cm, x, y) { - var doc = cm.doc; - y += cm.display.viewOffset; - if (y < 0) return PosWithInfo(doc.first, 0, true, -1); - var lineNo = lineAtHeight(doc, y), last = doc.first + doc.size - 1; - if (lineNo > last) - return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, true, 1); - if (x < 0) x = 0; - - for (;;) { - var lineObj = getLine(doc, lineNo); - var found = coordsCharInner(cm, lineObj, lineNo, x, y); - var merged = collapsedSpanAtEnd(lineObj); - var mergedPos = merged && merged.find(); - if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0)) - lineNo = mergedPos.to.line; - else - return found; - } + else if (box.bottom <= y) { return false } + else if (box.left > x) { return true } + else if (box.right < x) { return false } + else { return (x - box.left < box.right - x) } + }, begin, end) + ch = skipExtendingChars(lineObj.text, ch, 1) + pos = new Pos(lineNo, ch, ch == end ? "before" : "after") + } + var coords = cursorCoords(cm, pos, "line", lineObj, preparedMeasure) + if (y < coords.top || coords.bottom < y) { pos.outside = true } + pos.xRel = x < coords.left ? -1 : (x > coords.right ? 1 : 0) + return pos +} + +var measureText +// Compute the default text height. +function textHeight(display) { + if (display.cachedTextHeight != null) { return display.cachedTextHeight } + if (measureText == null) { + measureText = elt("pre") + // Measure a bunch of lines, for browsers that compute + // fractional heights. + for (var i = 0; i < 49; ++i) { + measureText.appendChild(document.createTextNode("x")) + measureText.appendChild(elt("br")) + } + measureText.appendChild(document.createTextNode("x")) + } + removeChildrenAndAdd(display.measure, measureText) + var height = measureText.offsetHeight / 50 + if (height > 3) { display.cachedTextHeight = height } + removeChildren(display.measure) + return height || 1 +} + +// Compute the default character width. +function charWidth(display) { + if (display.cachedCharWidth != null) { return display.cachedCharWidth } + var anchor = elt("span", "xxxxxxxxxx") + var pre = elt("pre", [anchor]) + removeChildrenAndAdd(display.measure, pre) + var rect = anchor.getBoundingClientRect(), width = (rect.right - rect.left) / 10 + if (width > 2) { display.cachedCharWidth = width } + return width || 10 +} + +// Do a bulk-read of the DOM positions and sizes needed to draw the +// view, so that we don't interleave reading and writing to the DOM. +function getDimensions(cm) { + var d = cm.display, left = {}, width = {} + var gutterLeft = d.gutters.clientLeft + for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) { + left[cm.options.gutters[i]] = n.offsetLeft + n.clientLeft + gutterLeft + width[cm.options.gutters[i]] = n.clientWidth + } + return {fixedPos: compensateForHScroll(d), + gutterTotalWidth: d.gutters.offsetWidth, + gutterLeft: left, + gutterWidth: width, + wrapperWidth: d.wrapper.clientWidth} +} + +// Computes display.scroller.scrollLeft + display.gutters.offsetWidth, +// but using getBoundingClientRect to get a sub-pixel-accurate +// result. +function compensateForHScroll(display) { + return display.scroller.getBoundingClientRect().left - display.sizer.getBoundingClientRect().left +} + +// Returns a function that estimates the height of a line, to use as +// first approximation until the line becomes visible (and is thus +// properly measurable). +function estimateHeight(cm) { + var th = textHeight(cm.display), wrapping = cm.options.lineWrapping + var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3) + return function (line) { + if (lineIsHidden(cm.doc, line)) { return 0 } + + var widgetsHeight = 0 + if (line.widgets) { for (var i = 0; i < line.widgets.length; i++) { + if (line.widgets[i].height) { widgetsHeight += line.widgets[i].height } + } } + + if (wrapping) + { return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th } + else + { return widgetsHeight + th } + } +} + +function estimateLineHeights(cm) { + var doc = cm.doc, est = estimateHeight(cm) + doc.iter(function (line) { + var estHeight = est(line) + if (estHeight != line.height) { updateLineHeight(line, estHeight) } + }) +} + +// Given a mouse event, find the corresponding position. If liberal +// is false, it checks whether a gutter or scrollbar was clicked, +// and returns null if it was. forRect is used by rectangular +// selections, and tries to estimate a character position even for +// coordinates beyond the right of the text. +function posFromMouse(cm, e, liberal, forRect) { + var display = cm.display + if (!liberal && e_target(e).getAttribute("cm-not-content") == "true") { return null } + + var x, y, space = display.lineSpace.getBoundingClientRect() + // Fails unpredictably on IE[67] when mouse is dragged around quickly. + try { x = e.clientX - space.left; y = e.clientY - space.top } + catch (e) { return null } + var coords = coordsChar(cm, x, y), line + if (forRect && coords.xRel == 1 && (line = getLine(cm.doc, coords.line).text).length == coords.ch) { + var colDiff = countColumn(line, line.length, cm.options.tabSize) - line.length + coords = Pos(coords.line, Math.max(0, Math.round((x - paddingH(cm.display).left) / charWidth(cm.display)) - colDiff)) + } + return coords +} + +// Find the view element corresponding to a given line. Return null +// when the line isn't visible. +function findViewIndex(cm, n) { + if (n >= cm.display.viewTo) { return null } + n -= cm.display.viewFrom + if (n < 0) { return null } + var view = cm.display.view + for (var i = 0; i < view.length; i++) { + n -= view[i].size + if (n < 0) { return i } + } +} + +function updateSelection(cm) { + cm.display.input.showSelection(cm.display.input.prepareSelection()) +} + +function prepareSelection(cm, primary) { + var doc = cm.doc, result = {} + var curFragment = result.cursors = document.createDocumentFragment() + var selFragment = result.selection = document.createDocumentFragment() + + for (var i = 0; i < doc.sel.ranges.length; i++) { + if (primary === false && i == doc.sel.primIndex) { continue } + var range = doc.sel.ranges[i] + if (range.from().line >= cm.display.viewTo || range.to().line < cm.display.viewFrom) { continue } + var collapsed = range.empty() + if (collapsed || cm.options.showCursorWhenSelecting) + { drawSelectionCursor(cm, range.head, curFragment) } + if (!collapsed) + { drawSelectionRange(cm, range, selFragment) } } + return result +} - function coordsCharInner(cm, lineObj, lineNo, x, y) { - var innerOff = y - heightAtLine(cm, lineObj); - var wrongLine = false, adjust = 2 * cm.display.wrapper.clientWidth; - var measurement = measureLine(cm, lineObj); +// Draws a cursor for the given range +function drawSelectionCursor(cm, head, output) { + var pos = cursorCoords(cm, head, "div", null, null, !cm.options.singleCursorHeightPerLine) - function getX(ch) { - var sp = cursorCoords(cm, Pos(lineNo, ch), "line", - lineObj, measurement); - wrongLine = true; - if (innerOff > sp.bottom) return sp.left - adjust; - else if (innerOff < sp.top) return sp.left + adjust; - else wrongLine = false; - return sp.left; - } - - var bidi = getOrder(lineObj), dist = lineObj.text.length; - var from = lineLeft(lineObj), to = lineRight(lineObj); - var fromX = getX(from), fromOutside = wrongLine, toX = getX(to), toOutside = wrongLine; + var cursor = output.appendChild(elt("div", "\u00a0", "CodeMirror-cursor")) + cursor.style.left = pos.left + "px" + cursor.style.top = pos.top + "px" + cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + "px" - if (x > toX) return PosWithInfo(lineNo, to, toOutside, 1); - // Do a binary search between these bounds. - for (;;) { - if (bidi ? to == from || to == moveVisually(lineObj, from, 1) : to - from <= 1) { - var ch = x < fromX || x - fromX <= toX - x ? from : to; - var xDiff = x - (ch == from ? fromX : toX); - while (isExtendingChar(lineObj.text.charAt(ch))) ++ch; - var pos = PosWithInfo(lineNo, ch, ch == from ? fromOutside : toOutside, - xDiff < 0 ? -1 : xDiff ? 1 : 0); - return pos; + if (pos.other) { + // Secondary cursor, shown when on a 'jump' in bi-directional text + var otherCursor = output.appendChild(elt("div", "\u00a0", "CodeMirror-cursor CodeMirror-secondarycursor")) + otherCursor.style.display = "" + otherCursor.style.left = pos.other.left + "px" + otherCursor.style.top = pos.other.top + "px" + otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + "px" + } +} + +// Draws the given range as a highlighted selection +function drawSelectionRange(cm, range, output) { + var display = cm.display, doc = cm.doc + var fragment = document.createDocumentFragment() + var padding = paddingH(cm.display), leftSide = padding.left + var rightSide = Math.max(display.sizerWidth, displayWidth(cm) - display.sizer.offsetLeft) - padding.right + + function add(left, top, width, bottom) { + if (top < 0) { top = 0 } + top = Math.round(top) + bottom = Math.round(bottom) + fragment.appendChild(elt("div", null, "CodeMirror-selected", ("position: absolute; left: " + left + "px;\n top: " + top + "px; width: " + (width == null ? rightSide - left : width) + "px;\n height: " + (bottom - top) + "px"))) + } + + function drawForLine(line, fromArg, toArg) { + var lineObj = getLine(doc, line) + var lineLen = lineObj.text.length + var start, end + function coords(ch, bias) { + return charCoords(cm, Pos(line, ch), "div", lineObj, bias) + } + + iterateBidiSections(getOrder(lineObj, doc.direction), fromArg || 0, toArg == null ? lineLen : toArg, function (from, to, dir) { + var leftPos = coords(from, "left"), rightPos, left, right + if (from == to) { + rightPos = leftPos + left = right = leftPos.left + } else { + rightPos = coords(to - 1, "right") + if (dir == "rtl") { var tmp = leftPos; leftPos = rightPos; rightPos = tmp } + left = leftPos.left + right = rightPos.right } - var step = Math.ceil(dist / 2), middle = from + step; - if (bidi) { - middle = from; - for (var i = 0; i < step; ++i) middle = moveVisually(lineObj, middle, 1); + if (fromArg == null && from == 0) { left = leftSide } + if (rightPos.top - leftPos.top > 3) { // Different lines, draw top part + add(left, leftPos.top, null, leftPos.bottom) + left = leftSide + if (leftPos.bottom < rightPos.top) { add(left, leftPos.bottom, null, rightPos.top) } } - var middleX = getX(middle); - if (middleX > x) {to = middle; toX = middleX; if (toOutside = wrongLine) toX += 1000; dist = step;} - else {from = middle; fromX = middleX; fromOutside = wrongLine; dist -= step;} - } - } - - var measureText; - function textHeight(display) { - if (display.cachedTextHeight != null) return display.cachedTextHeight; - if (measureText == null) { - measureText = elt("pre"); - // Measure a bunch of lines, for browsers that compute - // fractional heights. - for (var i = 0; i < 49; ++i) { - measureText.appendChild(document.createTextNode("x")); - measureText.appendChild(elt("br")); + if (toArg == null && to == lineLen) { right = rightSide } + if (!start || leftPos.top < start.top || leftPos.top == start.top && leftPos.left < start.left) + { start = leftPos } + if (!end || rightPos.bottom > end.bottom || rightPos.bottom == end.bottom && rightPos.right > end.right) + { end = rightPos } + if (left < leftSide + 1) { left = leftSide } + add(left, rightPos.top, right - left, rightPos.bottom) + }) + return {start: start, end: end} + } + + var sFrom = range.from(), sTo = range.to() + if (sFrom.line == sTo.line) { + drawForLine(sFrom.line, sFrom.ch, sTo.ch) + } else { + var fromLine = getLine(doc, sFrom.line), toLine = getLine(doc, sTo.line) + var singleVLine = visualLine(fromLine) == visualLine(toLine) + var leftEnd = drawForLine(sFrom.line, sFrom.ch, singleVLine ? fromLine.text.length + 1 : null).end + var rightStart = drawForLine(sTo.line, singleVLine ? 0 : null, sTo.ch).start + if (singleVLine) { + if (leftEnd.top < rightStart.top - 2) { + add(leftEnd.right, leftEnd.top, null, leftEnd.bottom) + add(leftSide, rightStart.top, rightStart.left, rightStart.bottom) + } else { + add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom) } - measureText.appendChild(document.createTextNode("x")); - } - removeChildrenAndAdd(display.measure, measureText); - var height = measureText.offsetHeight / 50; - if (height > 3) display.cachedTextHeight = height; - removeChildren(display.measure); - return height || 1; - } - - function charWidth(display) { - if (display.cachedCharWidth != null) return display.cachedCharWidth; - var anchor = elt("span", "x"); - var pre = elt("pre", [anchor]); - removeChildrenAndAdd(display.measure, pre); - var width = anchor.offsetWidth; - if (width > 2) display.cachedCharWidth = width; - return width || 10; - } - - // OPERATIONS - - // Operations are used to wrap changes in such a way that each - // change won't have to update the cursor and display (which would - // be awkward, slow, and error-prone), but instead updates are - // batched and then all combined and executed at once. - - var nextOpId = 0; - function startOperation(cm) { - cm.curOp = { - // An array of ranges of lines that have to be updated. See - // updateDisplay. - changes: [], - forceUpdate: false, - updateInput: null, - userSelChange: null, - textChanged: null, - selectionChanged: false, - cursorActivity: false, - updateMaxLine: false, - updateScrollPos: false, - id: ++nextOpId - }; - if (!delayedCallbackDepth++) delayedCallbacks = []; - } - - function endOperation(cm) { - var op = cm.curOp, doc = cm.doc, display = cm.display; - cm.curOp = null; - - if (op.updateMaxLine) computeMaxLength(cm); - if (display.maxLineChanged && !cm.options.lineWrapping && display.maxLine) { - var width = measureLineWidth(cm, display.maxLine); - display.sizer.style.minWidth = Math.max(0, width + 3) + "px"; - display.maxLineChanged = false; - var maxScrollLeft = Math.max(0, display.sizer.offsetLeft + display.sizer.offsetWidth - display.scroller.clientWidth); - if (maxScrollLeft < doc.scrollLeft && !op.updateScrollPos) - setScrollLeft(cm, Math.min(display.scroller.scrollLeft, maxScrollLeft), true); - } - var newScrollPos, updated; - if (op.updateScrollPos) { - newScrollPos = op.updateScrollPos; - } else if (op.selectionChanged && display.scroller.clientHeight) { // don't rescroll if not visible - var coords = cursorCoords(cm, doc.sel.head); - newScrollPos = calculateScrollPos(cm, coords.left, coords.top, coords.left, coords.bottom); - } - if (op.changes.length || op.forceUpdate || newScrollPos && newScrollPos.scrollTop != null) { - updated = updateDisplay(cm, op.changes, newScrollPos && newScrollPos.scrollTop, op.forceUpdate); - if (cm.display.scroller.offsetHeight) cm.doc.scrollTop = cm.display.scroller.scrollTop; - } - if (!updated && op.selectionChanged) updateSelection(cm); - if (op.updateScrollPos) { - var top = Math.max(0, Math.min(display.scroller.scrollHeight - display.scroller.clientHeight, newScrollPos.scrollTop)); - var left = Math.max(0, Math.min(display.scroller.scrollWidth - display.scroller.clientWidth, newScrollPos.scrollLeft)); - display.scroller.scrollTop = display.scrollbarV.scrollTop = doc.scrollTop = top; - display.scroller.scrollLeft = display.scrollbarH.scrollLeft = doc.scrollLeft = left; - alignHorizontally(cm); - if (op.scrollToPos) - scrollPosIntoView(cm, clipPos(cm.doc, op.scrollToPos.from), - clipPos(cm.doc, op.scrollToPos.to), op.scrollToPos.margin); - } else if (newScrollPos) { - scrollCursorIntoView(cm); - } - if (op.selectionChanged) restartBlink(cm); - - if (cm.state.focused && op.updateInput) - resetInput(cm, op.userSelChange); - - var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers; - if (hidden) for (var i = 0; i < hidden.length; ++i) - if (!hidden[i].lines.length) signal(hidden[i], "hide"); - if (unhidden) for (var i = 0; i < unhidden.length; ++i) - if (unhidden[i].lines.length) signal(unhidden[i], "unhide"); - - var delayed; - if (!--delayedCallbackDepth) { - delayed = delayedCallbacks; - delayedCallbacks = null; - } - if (op.textChanged) - signal(cm, "change", cm, op.textChanged); - if (op.cursorActivity) signal(cm, "cursorActivity", cm); - if (delayed) for (var i = 0; i < delayed.length; ++i) delayed[i](); - } - - // Wraps a function in an operation. Returns the wrapped function. - function operation(cm1, f) { - return function() { - var cm = cm1 || this, withOp = !cm.curOp; - if (withOp) startOperation(cm); - try { var result = f.apply(cm, arguments); } - finally { if (withOp) endOperation(cm); } - return result; - }; - } - function docOperation(f) { - return function() { - var withOp = this.cm && !this.cm.curOp, result; - if (withOp) startOperation(this.cm); - try { result = f.apply(this, arguments); } - finally { if (withOp) endOperation(this.cm); } - return result; - }; - } - function runInOp(cm, f) { - var withOp = !cm.curOp, result; - if (withOp) startOperation(cm); - try { result = f(); } - finally { if (withOp) endOperation(cm); } - return result; - } - - function regChange(cm, from, to, lendiff) { - if (from == null) from = cm.doc.first; - if (to == null) to = cm.doc.first + cm.doc.size; - cm.curOp.changes.push({from: from, to: to, diff: lendiff}); - } - - // INPUT HANDLING - - function slowPoll(cm) { - if (cm.display.pollingFast) return; - cm.display.poll.set(cm.options.pollInterval, function() { - readInput(cm); - if (cm.state.focused) slowPoll(cm); - }); - } - - function fastPoll(cm) { - var missed = false; - cm.display.pollingFast = true; - function p() { - var changed = readInput(cm); - if (!changed && !missed) {missed = true; cm.display.poll.set(60, p);} - else {cm.display.pollingFast = false; slowPoll(cm);} - } - cm.display.poll.set(20, p); - } - - // prevInput is a hack to work with IME. If we reset the textarea - // on every change, that breaks IME. So we look for changes - // compared to the previous content instead. (Modern browsers have - // events that indicate IME taking place, but these are not widely - // supported or compatible enough yet to rely on.) - function readInput(cm) { - var input = cm.display.input, prevInput = cm.display.prevInput, doc = cm.doc, sel = doc.sel; - if (!cm.state.focused || hasSelection(input) || isReadOnly(cm) || cm.options.disableInput) return false; - var text = input.value; - if (text == prevInput && posEq(sel.from, sel.to)) return false; - if (ie && !ie_lt9 && cm.display.inputHasSelection === text) { - resetInput(cm, true); - return false; - } - - var withOp = !cm.curOp; - if (withOp) startOperation(cm); - sel.shift = false; - var same = 0, l = Math.min(prevInput.length, text.length); - while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) ++same; - var from = sel.from, to = sel.to; - var inserted = text.slice(same); - if (same < prevInput.length) - from = Pos(from.line, from.ch - (prevInput.length - same)); - else if (cm.state.overwrite && posEq(from, to) && !cm.state.pasteIncoming) - to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + inserted.length)); - - var updateInput = cm.curOp.updateInput; - var changeEvent = {from: from, to: to, text: splitLines(inserted), - origin: cm.state.pasteIncoming ? "paste" : cm.state.cutIncoming ? "cut" : "+input"}; - makeChange(cm.doc, changeEvent, "end"); - cm.curOp.updateInput = updateInput; - signalLater(cm, "inputRead", cm, changeEvent); - if (inserted && !cm.state.pasteIncoming && cm.options.electricChars && - cm.options.smartIndent && sel.head.ch < 100) { - var electric = cm.getModeAt(sel.head).electricChars; - if (electric) for (var i = 0; i < electric.length; i++) - if (inserted.indexOf(electric.charAt(i)) > -1) { - indentLine(cm, sel.head.line, "smart"); - break; - } } - - if (text.length > 1000 || text.indexOf("\n") > -1) input.value = cm.display.prevInput = ""; - else cm.display.prevInput = text; - if (withOp) endOperation(cm); - cm.state.pasteIncoming = cm.state.cutIncoming = false; - return true; - } - - function resetInput(cm, user) { - var minimal, selected, doc = cm.doc; - if (!posEq(doc.sel.from, doc.sel.to)) { - cm.display.prevInput = ""; - minimal = hasCopyEvent && - (doc.sel.to.line - doc.sel.from.line > 100 || (selected = cm.getSelection()).length > 1000); - var content = minimal ? "-" : selected || cm.getSelection(); - cm.display.input.value = content; - if (cm.state.focused) selectInput(cm.display.input); - if (ie && !ie_lt9) cm.display.inputHasSelection = content; - } else if (user) { - cm.display.prevInput = cm.display.input.value = ""; - if (ie && !ie_lt9) cm.display.inputHasSelection = null; + if (leftEnd.bottom < rightStart.top) + { add(leftSide, leftEnd.bottom, null, rightStart.top) } + } + + output.appendChild(fragment) +} + +// Cursor-blinking +function restartBlink(cm) { + if (!cm.state.focused) { return } + var display = cm.display + clearInterval(display.blinker) + var on = true + display.cursorDiv.style.visibility = "" + if (cm.options.cursorBlinkRate > 0) + { display.blinker = setInterval(function () { return display.cursorDiv.style.visibility = (on = !on) ? "" : "hidden"; }, + cm.options.cursorBlinkRate) } + else if (cm.options.cursorBlinkRate < 0) + { display.cursorDiv.style.visibility = "hidden" } +} + +function ensureFocus(cm) { + if (!cm.state.focused) { cm.display.input.focus(); onFocus(cm) } +} + +function delayBlurEvent(cm) { + cm.state.delayingBlurEvent = true + setTimeout(function () { if (cm.state.delayingBlurEvent) { + cm.state.delayingBlurEvent = false + onBlur(cm) + } }, 100) +} + +function onFocus(cm, e) { + if (cm.state.delayingBlurEvent) { cm.state.delayingBlurEvent = false } + + if (cm.options.readOnly == "nocursor") { return } + if (!cm.state.focused) { + signal(cm, "focus", cm, e) + cm.state.focused = true + addClass(cm.display.wrapper, "CodeMirror-focused") + // This test prevents this from firing when a context + // menu is closed (since the input reset would kill the + // select-all detection hack) + if (!cm.curOp && cm.display.selForContextMenu != cm.doc.sel) { + cm.display.input.reset() + if (webkit) { setTimeout(function () { return cm.display.input.reset(true); }, 20) } // Issue #1730 + } + cm.display.input.receivedFocus() + } + restartBlink(cm) +} +function onBlur(cm, e) { + if (cm.state.delayingBlurEvent) { return } + + if (cm.state.focused) { + signal(cm, "blur", cm, e) + cm.state.focused = false + rmClass(cm.display.wrapper, "CodeMirror-focused") + } + clearInterval(cm.display.blinker) + setTimeout(function () { if (!cm.state.focused) { cm.display.shift = false } }, 150) +} + +// Read the actual heights of the rendered lines, and update their +// stored heights to match. +function updateHeightsInViewport(cm) { + var display = cm.display + var prevBottom = display.lineDiv.offsetTop + for (var i = 0; i < display.view.length; i++) { + var cur = display.view[i], height = (void 0) + if (cur.hidden) { continue } + if (ie && ie_version < 8) { + var bot = cur.node.offsetTop + cur.node.offsetHeight + height = bot - prevBottom + prevBottom = bot + } else { + var box = cur.node.getBoundingClientRect() + height = box.bottom - box.top + } + var diff = cur.line.height - height + if (height < 2) { height = textHeight(display) } + if (diff > .001 || diff < -.001) { + updateLineHeight(cur.line, height) + updateWidgetHeight(cur.line) + if (cur.rest) { for (var j = 0; j < cur.rest.length; j++) + { updateWidgetHeight(cur.rest[j]) } } + } + } +} + +// Read and store the height of line widgets associated with the +// given line. +function updateWidgetHeight(line) { + if (line.widgets) { for (var i = 0; i < line.widgets.length; ++i) + { line.widgets[i].height = line.widgets[i].node.parentNode.offsetHeight } } +} + +// Compute the lines that are visible in a given viewport (defaults +// the the current scroll position). viewport may contain top, +// height, and ensure (see op.scrollToPos) properties. +function visibleLines(display, doc, viewport) { + var top = viewport && viewport.top != null ? Math.max(0, viewport.top) : display.scroller.scrollTop + top = Math.floor(top - paddingTop(display)) + var bottom = viewport && viewport.bottom != null ? viewport.bottom : top + display.wrapper.clientHeight + + var from = lineAtHeight(doc, top), to = lineAtHeight(doc, bottom) + // Ensure is a {from: {line, ch}, to: {line, ch}} object, and + // forces those lines into the viewport (if possible). + if (viewport && viewport.ensure) { + var ensureFrom = viewport.ensure.from.line, ensureTo = viewport.ensure.to.line + if (ensureFrom < from) { + from = ensureFrom + to = lineAtHeight(doc, heightAtLine(getLine(doc, ensureFrom)) + display.wrapper.clientHeight) + } else if (Math.min(ensureTo, doc.lastLine()) >= to) { + from = lineAtHeight(doc, heightAtLine(getLine(doc, ensureTo)) - display.wrapper.clientHeight) + to = ensureTo + } + } + return {from: from, to: Math.max(to, from + 1)} +} + +// Re-align line numbers and gutter marks to compensate for +// horizontal scrolling. +function alignHorizontally(cm) { + var display = cm.display, view = display.view + if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) { return } + var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft + var gutterW = display.gutters.offsetWidth, left = comp + "px" + for (var i = 0; i < view.length; i++) { if (!view[i].hidden) { + if (cm.options.fixedGutter) { + if (view[i].gutter) + { view[i].gutter.style.left = left } + if (view[i].gutterBackground) + { view[i].gutterBackground.style.left = left } + } + var align = view[i].alignable + if (align) { for (var j = 0; j < align.length; j++) + { align[j].style.left = left } } + } } + if (cm.options.fixedGutter) + { display.gutters.style.left = (comp + gutterW) + "px" } +} + +// Used to ensure that the line number gutter is still the right +// size for the current document size. Returns true when an update +// is needed. +function maybeUpdateLineNumberWidth(cm) { + if (!cm.options.lineNumbers) { return false } + var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display + if (last.length != display.lineNumChars) { + var test = display.measure.appendChild(elt("div", [elt("div", last)], + "CodeMirror-linenumber CodeMirror-gutter-elt")) + var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW + display.lineGutter.style.width = "" + display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding) + 1 + display.lineNumWidth = display.lineNumInnerWidth + padding + display.lineNumChars = display.lineNumInnerWidth ? last.length : -1 + display.lineGutter.style.width = display.lineNumWidth + "px" + updateGutterSpace(cm) + return true + } + return false +} + +// SCROLLING THINGS INTO VIEW + +// If an editor sits on the top or bottom of the window, partially +// scrolled out of view, this ensures that the cursor is visible. +function maybeScrollWindow(cm, rect) { + if (signalDOMEvent(cm, "scrollCursorIntoView")) { return } + + var display = cm.display, box = display.sizer.getBoundingClientRect(), doScroll = null + if (rect.top + box.top < 0) { doScroll = true } + else if (rect.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) { doScroll = false } + if (doScroll != null && !phantom) { + var scrollNode = elt("div", "\u200b", null, ("position: absolute;\n top: " + (rect.top - display.viewOffset - paddingTop(cm.display)) + "px;\n height: " + (rect.bottom - rect.top + scrollGap(cm) + display.barHeight) + "px;\n left: " + (rect.left) + "px; width: " + (Math.max(2, rect.right - rect.left)) + "px;")) + cm.display.lineSpace.appendChild(scrollNode) + scrollNode.scrollIntoView(doScroll) + cm.display.lineSpace.removeChild(scrollNode) + } +} + +// Scroll a given position into view (immediately), verifying that +// it actually became visible (as line heights are accurately +// measured, the position of something may 'drift' during drawing). +function scrollPosIntoView(cm, pos, end, margin) { + if (margin == null) { margin = 0 } + var rect + for (var limit = 0; limit < 5; limit++) { + var changed = false + var coords = cursorCoords(cm, pos) + var endCoords = !end || end == pos ? coords : cursorCoords(cm, end) + rect = {left: Math.min(coords.left, endCoords.left), + top: Math.min(coords.top, endCoords.top) - margin, + right: Math.max(coords.left, endCoords.left), + bottom: Math.max(coords.bottom, endCoords.bottom) + margin} + var scrollPos = calculateScrollPos(cm, rect) + var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft + if (scrollPos.scrollTop != null) { + updateScrollTop(cm, scrollPos.scrollTop) + if (Math.abs(cm.doc.scrollTop - startTop) > 1) { changed = true } + } + if (scrollPos.scrollLeft != null) { + setScrollLeft(cm, scrollPos.scrollLeft) + if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) { changed = true } + } + if (!changed) { break } + } + return rect +} + +// Scroll a given set of coordinates into view (immediately). +function scrollIntoView(cm, rect) { + var scrollPos = calculateScrollPos(cm, rect) + if (scrollPos.scrollTop != null) { updateScrollTop(cm, scrollPos.scrollTop) } + if (scrollPos.scrollLeft != null) { setScrollLeft(cm, scrollPos.scrollLeft) } +} + +// Calculate a new scroll position needed to scroll the given +// rectangle into view. Returns an object with scrollTop and +// scrollLeft properties. When these are undefined, the +// vertical/horizontal position does not need to be adjusted. +function calculateScrollPos(cm, rect) { + var display = cm.display, snapMargin = textHeight(cm.display) + if (rect.top < 0) { rect.top = 0 } + var screentop = cm.curOp && cm.curOp.scrollTop != null ? cm.curOp.scrollTop : display.scroller.scrollTop + var screen = displayHeight(cm), result = {} + if (rect.bottom - rect.top > screen) { rect.bottom = rect.top + screen } + var docBottom = cm.doc.height + paddingVert(display) + var atTop = rect.top < snapMargin, atBottom = rect.bottom > docBottom - snapMargin + if (rect.top < screentop) { + result.scrollTop = atTop ? 0 : rect.top + } else if (rect.bottom > screentop + screen) { + var newTop = Math.min(rect.top, (atBottom ? docBottom : rect.bottom) - screen) + if (newTop != screentop) { result.scrollTop = newTop } + } + + var screenleft = cm.curOp && cm.curOp.scrollLeft != null ? cm.curOp.scrollLeft : display.scroller.scrollLeft + var screenw = displayWidth(cm) - (cm.options.fixedGutter ? display.gutters.offsetWidth : 0) + var tooWide = rect.right - rect.left > screenw + if (tooWide) { rect.right = rect.left + screenw } + if (rect.left < 10) + { result.scrollLeft = 0 } + else if (rect.left < screenleft) + { result.scrollLeft = Math.max(0, rect.left - (tooWide ? 0 : 10)) } + else if (rect.right > screenw + screenleft - 3) + { result.scrollLeft = rect.right + (tooWide ? 0 : 10) - screenw } + return result +} + +// Store a relative adjustment to the scroll position in the current +// operation (to be applied when the operation finishes). +function addToScrollTop(cm, top) { + if (top == null) { return } + resolveScrollToPos(cm) + cm.curOp.scrollTop = (cm.curOp.scrollTop == null ? cm.doc.scrollTop : cm.curOp.scrollTop) + top +} + +// Make sure that at the end of the operation the current cursor is +// shown. +function ensureCursorVisible(cm) { + resolveScrollToPos(cm) + var cur = cm.getCursor(), from = cur, to = cur + if (!cm.options.lineWrapping) { + from = cur.ch ? Pos(cur.line, cur.ch - 1) : cur + to = Pos(cur.line, cur.ch + 1) + } + cm.curOp.scrollToPos = {from: from, to: to, margin: cm.options.cursorScrollMargin} +} + +function scrollToCoords(cm, x, y) { + if (x != null || y != null) { resolveScrollToPos(cm) } + if (x != null) { cm.curOp.scrollLeft = x } + if (y != null) { cm.curOp.scrollTop = y } +} + +function scrollToRange(cm, range) { + resolveScrollToPos(cm) + cm.curOp.scrollToPos = range +} + +// When an operation has its scrollToPos property set, and another +// scroll action is applied before the end of the operation, this +// 'simulates' scrolling that position into view in a cheap way, so +// that the effect of intermediate scroll commands is not ignored. +function resolveScrollToPos(cm) { + var range = cm.curOp.scrollToPos + if (range) { + cm.curOp.scrollToPos = null + var from = estimateCoords(cm, range.from), to = estimateCoords(cm, range.to) + scrollToCoordsRange(cm, from, to, range.margin) + } +} + +function scrollToCoordsRange(cm, from, to, margin) { + var sPos = calculateScrollPos(cm, { + left: Math.min(from.left, to.left), + top: Math.min(from.top, to.top) - margin, + right: Math.max(from.right, to.right), + bottom: Math.max(from.bottom, to.bottom) + margin + }) + scrollToCoords(cm, sPos.scrollLeft, sPos.scrollTop) +} + +// Sync the scrollable area and scrollbars, ensure the viewport +// covers the visible area. +function updateScrollTop(cm, val) { + if (Math.abs(cm.doc.scrollTop - val) < 2) { return } + if (!gecko) { updateDisplaySimple(cm, {top: val}) } + setScrollTop(cm, val, true) + if (gecko) { updateDisplaySimple(cm) } + startWorker(cm, 100) +} + +function setScrollTop(cm, val, forceScroll) { + val = Math.min(cm.display.scroller.scrollHeight - cm.display.scroller.clientHeight, val) + if (cm.display.scroller.scrollTop == val && !forceScroll) { return } + cm.doc.scrollTop = val + cm.display.scrollbars.setScrollTop(val) + if (cm.display.scroller.scrollTop != val) { cm.display.scroller.scrollTop = val } +} + +// Sync scroller and scrollbar, ensure the gutter elements are +// aligned. +function setScrollLeft(cm, val, isScroller, forceScroll) { + val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth) + if ((isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) && !forceScroll) { return } + cm.doc.scrollLeft = val + alignHorizontally(cm) + if (cm.display.scroller.scrollLeft != val) { cm.display.scroller.scrollLeft = val } + cm.display.scrollbars.setScrollLeft(val) +} + +// SCROLLBARS + +// Prepare DOM reads needed to update the scrollbars. Done in one +// shot to minimize update/measure roundtrips. +function measureForScrollbars(cm) { + var d = cm.display, gutterW = d.gutters.offsetWidth + var docH = Math.round(cm.doc.height + paddingVert(cm.display)) + return { + clientHeight: d.scroller.clientHeight, + viewHeight: d.wrapper.clientHeight, + scrollWidth: d.scroller.scrollWidth, clientWidth: d.scroller.clientWidth, + viewWidth: d.wrapper.clientWidth, + barLeft: cm.options.fixedGutter ? gutterW : 0, + docHeight: docH, + scrollHeight: docH + scrollGap(cm) + d.barHeight, + nativeBarWidth: d.nativeBarWidth, + gutterWidth: gutterW + } +} + +var NativeScrollbars = function(place, scroll, cm) { + this.cm = cm + var vert = this.vert = elt("div", [elt("div", null, null, "min-width: 1px")], "CodeMirror-vscrollbar") + var horiz = this.horiz = elt("div", [elt("div", null, null, "height: 100%; min-height: 1px")], "CodeMirror-hscrollbar") + place(vert); place(horiz) + + on(vert, "scroll", function () { + if (vert.clientHeight) { scroll(vert.scrollTop, "vertical") } + }) + on(horiz, "scroll", function () { + if (horiz.clientWidth) { scroll(horiz.scrollLeft, "horizontal") } + }) + + this.checkedZeroWidth = false + // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8). + if (ie && ie_version < 8) { this.horiz.style.minHeight = this.vert.style.minWidth = "18px" } +}; + +NativeScrollbars.prototype.update = function (measure) { + var needsH = measure.scrollWidth > measure.clientWidth + 1 + var needsV = measure.scrollHeight > measure.clientHeight + 1 + var sWidth = measure.nativeBarWidth + + if (needsV) { + this.vert.style.display = "block" + this.vert.style.bottom = needsH ? sWidth + "px" : "0" + var totalHeight = measure.viewHeight - (needsH ? sWidth : 0) + // A bug in IE8 can cause this value to be negative, so guard it. + this.vert.firstChild.style.height = + Math.max(0, measure.scrollHeight - measure.clientHeight + totalHeight) + "px" + } else { + this.vert.style.display = "" + this.vert.firstChild.style.height = "0" + } + + if (needsH) { + this.horiz.style.display = "block" + this.horiz.style.right = needsV ? sWidth + "px" : "0" + this.horiz.style.left = measure.barLeft + "px" + var totalWidth = measure.viewWidth - measure.barLeft - (needsV ? sWidth : 0) + this.horiz.firstChild.style.width = + Math.max(0, measure.scrollWidth - measure.clientWidth + totalWidth) + "px" + } else { + this.horiz.style.display = "" + this.horiz.firstChild.style.width = "0" + } + + if (!this.checkedZeroWidth && measure.clientHeight > 0) { + if (sWidth == 0) { this.zeroWidthHack() } + this.checkedZeroWidth = true + } + + return {right: needsV ? sWidth : 0, bottom: needsH ? sWidth : 0} +}; + +NativeScrollbars.prototype.setScrollLeft = function (pos) { + if (this.horiz.scrollLeft != pos) { this.horiz.scrollLeft = pos } + if (this.disableHoriz) { this.enableZeroWidthBar(this.horiz, this.disableHoriz, "horiz") } +}; + +NativeScrollbars.prototype.setScrollTop = function (pos) { + if (this.vert.scrollTop != pos) { this.vert.scrollTop = pos } + if (this.disableVert) { this.enableZeroWidthBar(this.vert, this.disableVert, "vert") } +}; + +NativeScrollbars.prototype.zeroWidthHack = function () { + var w = mac && !mac_geMountainLion ? "12px" : "18px" + this.horiz.style.height = this.vert.style.width = w + this.horiz.style.pointerEvents = this.vert.style.pointerEvents = "none" + this.disableHoriz = new Delayed + this.disableVert = new Delayed +}; + +NativeScrollbars.prototype.enableZeroWidthBar = function (bar, delay, type) { + bar.style.pointerEvents = "auto" + function maybeDisable() { + // To find out whether the scrollbar is still visible, we + // check whether the element under the pixel in the bottom + // right corner of the scrollbar box is the scrollbar box + // itself (when the bar is still visible) or its filler child + // (when the bar is hidden). If it is still visible, we keep + // it enabled, if it's hidden, we disable pointer events. + var box = bar.getBoundingClientRect() + var elt = type == "vert" ? document.elementFromPoint(box.right - 1, (box.top + box.bottom) / 2) + : document.elementFromPoint((box.right + box.left) / 2, box.bottom - 1) + if (elt != bar) { bar.style.pointerEvents = "none" } + else { delay.set(1000, maybeDisable) } + } + delay.set(1000, maybeDisable) +}; + +NativeScrollbars.prototype.clear = function () { + var parent = this.horiz.parentNode + parent.removeChild(this.horiz) + parent.removeChild(this.vert) +}; + +var NullScrollbars = function () {}; + +NullScrollbars.prototype.update = function () { return {bottom: 0, right: 0} }; +NullScrollbars.prototype.setScrollLeft = function () {}; +NullScrollbars.prototype.setScrollTop = function () {}; +NullScrollbars.prototype.clear = function () {}; + +function updateScrollbars(cm, measure) { + if (!measure) { measure = measureForScrollbars(cm) } + var startWidth = cm.display.barWidth, startHeight = cm.display.barHeight + updateScrollbarsInner(cm, measure) + for (var i = 0; i < 4 && startWidth != cm.display.barWidth || startHeight != cm.display.barHeight; i++) { + if (startWidth != cm.display.barWidth && cm.options.lineWrapping) + { updateHeightsInViewport(cm) } + updateScrollbarsInner(cm, measureForScrollbars(cm)) + startWidth = cm.display.barWidth; startHeight = cm.display.barHeight + } +} + +// Re-synchronize the fake scrollbars with the actual size of the +// content. +function updateScrollbarsInner(cm, measure) { + var d = cm.display + var sizes = d.scrollbars.update(measure) + + d.sizer.style.paddingRight = (d.barWidth = sizes.right) + "px" + d.sizer.style.paddingBottom = (d.barHeight = sizes.bottom) + "px" + d.heightForcer.style.borderBottom = sizes.bottom + "px solid transparent" + + if (sizes.right && sizes.bottom) { + d.scrollbarFiller.style.display = "block" + d.scrollbarFiller.style.height = sizes.bottom + "px" + d.scrollbarFiller.style.width = sizes.right + "px" + } else { d.scrollbarFiller.style.display = "" } + if (sizes.bottom && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) { + d.gutterFiller.style.display = "block" + d.gutterFiller.style.height = sizes.bottom + "px" + d.gutterFiller.style.width = measure.gutterWidth + "px" + } else { d.gutterFiller.style.display = "" } +} + +var scrollbarModel = {"native": NativeScrollbars, "null": NullScrollbars} + +function initScrollbars(cm) { + if (cm.display.scrollbars) { + cm.display.scrollbars.clear() + if (cm.display.scrollbars.addClass) + { rmClass(cm.display.wrapper, cm.display.scrollbars.addClass) } + } + + cm.display.scrollbars = new scrollbarModel[cm.options.scrollbarStyle](function (node) { + cm.display.wrapper.insertBefore(node, cm.display.scrollbarFiller) + // Prevent clicks in the scrollbars from killing focus + on(node, "mousedown", function () { + if (cm.state.focused) { setTimeout(function () { return cm.display.input.focus(); }, 0) } + }) + node.setAttribute("cm-not-content", "true") + }, function (pos, axis) { + if (axis == "horizontal") { setScrollLeft(cm, pos) } + else { updateScrollTop(cm, pos) } + }, cm) + if (cm.display.scrollbars.addClass) + { addClass(cm.display.wrapper, cm.display.scrollbars.addClass) } +} + +// Operations are used to wrap a series of changes to the editor +// state in such a way that each change won't have to update the +// cursor and display (which would be awkward, slow, and +// error-prone). Instead, display updates are batched and then all +// combined and executed at once. + +var nextOpId = 0 +// Start a new operation. +function startOperation(cm) { + cm.curOp = { + cm: cm, + viewChanged: false, // Flag that indicates that lines might need to be redrawn + startHeight: cm.doc.height, // Used to detect need to update scrollbar + forceUpdate: false, // Used to force a redraw + updateInput: null, // Whether to reset the input textarea + typing: false, // Whether this reset should be careful to leave existing text (for compositing) + changeObjs: null, // Accumulated changes, for firing change events + cursorActivityHandlers: null, // Set of handlers to fire cursorActivity on + cursorActivityCalled: 0, // Tracks which cursorActivity handlers have been called already + selectionChanged: false, // Whether the selection needs to be redrawn + updateMaxLine: false, // Set when the widest line needs to be determined anew + scrollLeft: null, scrollTop: null, // Intermediate scroll position, not pushed to DOM yet + scrollToPos: null, // Used to scroll to a specific position + focus: false, + id: ++nextOpId // Unique ID + } + pushOperation(cm.curOp) +} + +// Finish an operation, updating the display and signalling delayed events +function endOperation(cm) { + var op = cm.curOp + finishOperation(op, function (group) { + for (var i = 0; i < group.ops.length; i++) + { group.ops[i].cm.curOp = null } + endOperations(group) + }) +} + +// The DOM updates done when an operation finishes are batched so +// that the minimum number of relayouts are required. +function endOperations(group) { + var ops = group.ops + for (var i = 0; i < ops.length; i++) // Read DOM + { endOperation_R1(ops[i]) } + for (var i$1 = 0; i$1 < ops.length; i$1++) // Write DOM (maybe) + { endOperation_W1(ops[i$1]) } + for (var i$2 = 0; i$2 < ops.length; i$2++) // Read DOM + { endOperation_R2(ops[i$2]) } + for (var i$3 = 0; i$3 < ops.length; i$3++) // Write DOM (maybe) + { endOperation_W2(ops[i$3]) } + for (var i$4 = 0; i$4 < ops.length; i$4++) // Read DOM + { endOperation_finish(ops[i$4]) } +} + +function endOperation_R1(op) { + var cm = op.cm, display = cm.display + maybeClipScrollbars(cm) + if (op.updateMaxLine) { findMaxLine(cm) } + + op.mustUpdate = op.viewChanged || op.forceUpdate || op.scrollTop != null || + op.scrollToPos && (op.scrollToPos.from.line < display.viewFrom || + op.scrollToPos.to.line >= display.viewTo) || + display.maxLineChanged && cm.options.lineWrapping + op.update = op.mustUpdate && + new DisplayUpdate(cm, op.mustUpdate && {top: op.scrollTop, ensure: op.scrollToPos}, op.forceUpdate) +} + +function endOperation_W1(op) { + op.updatedDisplay = op.mustUpdate && updateDisplayIfNeeded(op.cm, op.update) +} + +function endOperation_R2(op) { + var cm = op.cm, display = cm.display + if (op.updatedDisplay) { updateHeightsInViewport(cm) } + + op.barMeasure = measureForScrollbars(cm) + + // If the max line changed since it was last measured, measure it, + // and ensure the document's width matches it. + // updateDisplay_W2 will use these properties to do the actual resizing + if (display.maxLineChanged && !cm.options.lineWrapping) { + op.adjustWidthTo = measureChar(cm, display.maxLine, display.maxLine.text.length).left + 3 + cm.display.sizerWidth = op.adjustWidthTo + op.barMeasure.scrollWidth = + Math.max(display.scroller.clientWidth, display.sizer.offsetLeft + op.adjustWidthTo + scrollGap(cm) + cm.display.barWidth) + op.maxScrollLeft = Math.max(0, display.sizer.offsetLeft + op.adjustWidthTo - displayWidth(cm)) + } + + if (op.updatedDisplay || op.selectionChanged) + { op.preparedSelection = display.input.prepareSelection(op.focus) } +} + +function endOperation_W2(op) { + var cm = op.cm + + if (op.adjustWidthTo != null) { + cm.display.sizer.style.minWidth = op.adjustWidthTo + "px" + if (op.maxScrollLeft < cm.doc.scrollLeft) + { setScrollLeft(cm, Math.min(cm.display.scroller.scrollLeft, op.maxScrollLeft), true) } + cm.display.maxLineChanged = false + } + + var takeFocus = op.focus && op.focus == activeElt() && (!document.hasFocus || document.hasFocus()) + if (op.preparedSelection) + { cm.display.input.showSelection(op.preparedSelection, takeFocus) } + if (op.updatedDisplay || op.startHeight != cm.doc.height) + { updateScrollbars(cm, op.barMeasure) } + if (op.updatedDisplay) + { setDocumentHeight(cm, op.barMeasure) } + + if (op.selectionChanged) { restartBlink(cm) } + + if (cm.state.focused && op.updateInput) + { cm.display.input.reset(op.typing) } + if (takeFocus) { ensureFocus(op.cm) } +} + +function endOperation_finish(op) { + var cm = op.cm, display = cm.display, doc = cm.doc + + if (op.updatedDisplay) { postUpdateDisplay(cm, op.update) } + + // Abort mouse wheel delta measurement, when scrolling explicitly + if (display.wheelStartX != null && (op.scrollTop != null || op.scrollLeft != null || op.scrollToPos)) + { display.wheelStartX = display.wheelStartY = null } + + // Propagate the scroll position to the actual DOM scroller + if (op.scrollTop != null) { setScrollTop(cm, op.scrollTop, op.forceScroll) } + + if (op.scrollLeft != null) { setScrollLeft(cm, op.scrollLeft, true, true) } + // If we need to scroll a specific position into view, do so. + if (op.scrollToPos) { + var rect = scrollPosIntoView(cm, clipPos(doc, op.scrollToPos.from), + clipPos(doc, op.scrollToPos.to), op.scrollToPos.margin) + maybeScrollWindow(cm, rect) + } + + // Fire events for markers that are hidden/unidden by editing or + // undoing + var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers + if (hidden) { for (var i = 0; i < hidden.length; ++i) + { if (!hidden[i].lines.length) { signal(hidden[i], "hide") } } } + if (unhidden) { for (var i$1 = 0; i$1 < unhidden.length; ++i$1) + { if (unhidden[i$1].lines.length) { signal(unhidden[i$1], "unhide") } } } + + if (display.wrapper.offsetHeight) + { doc.scrollTop = cm.display.scroller.scrollTop } + + // Fire change events, and delayed event handlers + if (op.changeObjs) + { signal(cm, "changes", cm, op.changeObjs) } + if (op.update) + { op.update.finish() } +} + +// Run the given function in an operation +function runInOp(cm, f) { + if (cm.curOp) { return f() } + startOperation(cm) + try { return f() } + finally { endOperation(cm) } +} +// Wraps a function in an operation. Returns the wrapped function. +function operation(cm, f) { + return function() { + if (cm.curOp) { return f.apply(cm, arguments) } + startOperation(cm) + try { return f.apply(cm, arguments) } + finally { endOperation(cm) } + } +} +// Used to add methods to editor and doc instances, wrapping them in +// operations. +function methodOp(f) { + return function() { + if (this.curOp) { return f.apply(this, arguments) } + startOperation(this) + try { return f.apply(this, arguments) } + finally { endOperation(this) } + } +} +function docMethodOp(f) { + return function() { + var cm = this.cm + if (!cm || cm.curOp) { return f.apply(this, arguments) } + startOperation(cm) + try { return f.apply(this, arguments) } + finally { endOperation(cm) } + } +} + +// Updates the display.view data structure for a given change to the +// document. From and to are in pre-change coordinates. Lendiff is +// the amount of lines added or subtracted by the change. This is +// used for changes that span multiple lines, or change the way +// lines are divided into visual lines. regLineChange (below) +// registers single-line changes. +function regChange(cm, from, to, lendiff) { + if (from == null) { from = cm.doc.first } + if (to == null) { to = cm.doc.first + cm.doc.size } + if (!lendiff) { lendiff = 0 } + + var display = cm.display + if (lendiff && to < display.viewTo && + (display.updateLineNumbers == null || display.updateLineNumbers > from)) + { display.updateLineNumbers = from } + + cm.curOp.viewChanged = true + + if (from >= display.viewTo) { // Change after + if (sawCollapsedSpans && visualLineNo(cm.doc, from) < display.viewTo) + { resetView(cm) } + } else if (to <= display.viewFrom) { // Change before + if (sawCollapsedSpans && visualLineEndNo(cm.doc, to + lendiff) > display.viewFrom) { + resetView(cm) + } else { + display.viewFrom += lendiff + display.viewTo += lendiff + } + } else if (from <= display.viewFrom && to >= display.viewTo) { // Full overlap + resetView(cm) + } else if (from <= display.viewFrom) { // Top overlap + var cut = viewCuttingPoint(cm, to, to + lendiff, 1) + if (cut) { + display.view = display.view.slice(cut.index) + display.viewFrom = cut.lineN + display.viewTo += lendiff + } else { + resetView(cm) } - cm.display.inaccurateSelection = minimal; - } - - function focusInput(cm) { - if (cm.options.readOnly != "nocursor" && (!mobile || document.activeElement != cm.display.input)) - cm.display.input.focus(); - } - - function ensureFocus(cm) { - if (!cm.state.focused) { focusInput(cm); onFocus(cm); } - } - - function isReadOnly(cm) { - return cm.options.readOnly || cm.doc.cantEdit; - } - - // EVENT HANDLERS - - function registerEventHandlers(cm) { - var d = cm.display; - on(d.scroller, "mousedown", operation(cm, onMouseDown)); - if (old_ie) - on(d.scroller, "dblclick", operation(cm, function(e) { - if (signalDOMEvent(cm, e)) return; - var pos = posFromMouse(cm, e); - if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) return; - e_preventDefault(e); - var word = findWordAt(getLine(cm.doc, pos.line).text, pos); - extendSelection(cm.doc, word.from, word.to); - })); + } else if (to >= display.viewTo) { // Bottom overlap + var cut$1 = viewCuttingPoint(cm, from, from, -1) + if (cut$1) { + display.view = display.view.slice(0, cut$1.index) + display.viewTo = cut$1.lineN + } else { + resetView(cm) + } + } else { // Gap in the middle + var cutTop = viewCuttingPoint(cm, from, from, -1) + var cutBot = viewCuttingPoint(cm, to, to + lendiff, 1) + if (cutTop && cutBot) { + display.view = display.view.slice(0, cutTop.index) + .concat(buildViewArray(cm, cutTop.lineN, cutBot.lineN)) + .concat(display.view.slice(cutBot.index)) + display.viewTo += lendiff + } else { + resetView(cm) + } + } + + var ext = display.externalMeasured + if (ext) { + if (to < ext.lineN) + { ext.lineN += lendiff } + else if (from < ext.lineN + ext.size) + { display.externalMeasured = null } + } +} + +// Register a change to a single line. Type must be one of "text", +// "gutter", "class", "widget" +function regLineChange(cm, line, type) { + cm.curOp.viewChanged = true + var display = cm.display, ext = cm.display.externalMeasured + if (ext && line >= ext.lineN && line < ext.lineN + ext.size) + { display.externalMeasured = null } + + if (line < display.viewFrom || line >= display.viewTo) { return } + var lineView = display.view[findViewIndex(cm, line)] + if (lineView.node == null) { return } + var arr = lineView.changes || (lineView.changes = []) + if (indexOf(arr, type) == -1) { arr.push(type) } +} + +// Clear the view. +function resetView(cm) { + cm.display.viewFrom = cm.display.viewTo = cm.doc.first + cm.display.view = [] + cm.display.viewOffset = 0 +} + +function viewCuttingPoint(cm, oldN, newN, dir) { + var index = findViewIndex(cm, oldN), diff, view = cm.display.view + if (!sawCollapsedSpans || newN == cm.doc.first + cm.doc.size) + { return {index: index, lineN: newN} } + var n = cm.display.viewFrom + for (var i = 0; i < index; i++) + { n += view[i].size } + if (n != oldN) { + if (dir > 0) { + if (index == view.length - 1) { return null } + diff = (n + view[index].size) - oldN + index++ + } else { + diff = n - oldN + } + oldN += diff; newN += diff + } + while (visualLineNo(cm.doc, newN) != newN) { + if (index == (dir < 0 ? 0 : view.length - 1)) { return null } + newN += dir * view[index - (dir < 0 ? 1 : 0)].size + index += dir + } + return {index: index, lineN: newN} +} + +// Force the view to cover a given range, adding empty view element +// or clipping off existing ones as needed. +function adjustView(cm, from, to) { + var display = cm.display, view = display.view + if (view.length == 0 || from >= display.viewTo || to <= display.viewFrom) { + display.view = buildViewArray(cm, from, to) + display.viewFrom = from + } else { + if (display.viewFrom > from) + { display.view = buildViewArray(cm, from, display.viewFrom).concat(display.view) } + else if (display.viewFrom < from) + { display.view = display.view.slice(findViewIndex(cm, from)) } + display.viewFrom = from + if (display.viewTo < to) + { display.view = display.view.concat(buildViewArray(cm, display.viewTo, to)) } + else if (display.viewTo > to) + { display.view = display.view.slice(0, findViewIndex(cm, to)) } + } + display.viewTo = to +} + +// Count the number of lines in the view whose DOM representation is +// out of date (or nonexistent). +function countDirtyView(cm) { + var view = cm.display.view, dirty = 0 + for (var i = 0; i < view.length; i++) { + var lineView = view[i] + if (!lineView.hidden && (!lineView.node || lineView.changes)) { ++dirty } + } + return dirty +} + +// HIGHLIGHT WORKER + +function startWorker(cm, time) { + if (cm.doc.mode.startState && cm.doc.frontier < cm.display.viewTo) + { cm.state.highlight.set(time, bind(highlightWorker, cm)) } +} + +function highlightWorker(cm) { + var doc = cm.doc + if (doc.frontier < doc.first) { doc.frontier = doc.first } + if (doc.frontier >= cm.display.viewTo) { return } + var end = +new Date + cm.options.workTime + var state = copyState(doc.mode, getStateBefore(cm, doc.frontier)) + var changedLines = [] + + doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function (line) { + if (doc.frontier >= cm.display.viewFrom) { // Visible + var oldStyles = line.styles, tooLong = line.text.length > cm.options.maxHighlightLength + var highlighted = highlightLine(cm, line, tooLong ? copyState(doc.mode, state) : state, true) + line.styles = highlighted.styles + var oldCls = line.styleClasses, newCls = highlighted.classes + if (newCls) { line.styleClasses = newCls } + else if (oldCls) { line.styleClasses = null } + var ischange = !oldStyles || oldStyles.length != line.styles.length || + oldCls != newCls && (!oldCls || !newCls || oldCls.bgClass != newCls.bgClass || oldCls.textClass != newCls.textClass) + for (var i = 0; !ischange && i < oldStyles.length; ++i) { ischange = oldStyles[i] != line.styles[i] } + if (ischange) { changedLines.push(doc.frontier) } + line.stateAfter = tooLong ? state : copyState(doc.mode, state) + } else { + if (line.text.length <= cm.options.maxHighlightLength) + { processLine(cm, line.text, state) } + line.stateAfter = doc.frontier % 5 == 0 ? copyState(doc.mode, state) : null + } + ++doc.frontier + if (+new Date > end) { + startWorker(cm, cm.options.workDelay) + return true + } + }) + if (changedLines.length) { runInOp(cm, function () { + for (var i = 0; i < changedLines.length; i++) + { regLineChange(cm, changedLines[i], "text") } + }) } +} + +// DISPLAY DRAWING + +var DisplayUpdate = function(cm, viewport, force) { + var display = cm.display + + this.viewport = viewport + // Store some values that we'll need later (but don't want to force a relayout for) + this.visible = visibleLines(display, cm.doc, viewport) + this.editorIsHidden = !display.wrapper.offsetWidth + this.wrapperHeight = display.wrapper.clientHeight + this.wrapperWidth = display.wrapper.clientWidth + this.oldDisplayWidth = displayWidth(cm) + this.force = force + this.dims = getDimensions(cm) + this.events = [] +}; + +DisplayUpdate.prototype.signal = function (emitter, type) { + if (hasHandler(emitter, type)) + { this.events.push(arguments) } +}; +DisplayUpdate.prototype.finish = function () { + var this$1 = this; + + for (var i = 0; i < this.events.length; i++) + { signal.apply(null, this$1.events[i]) } +}; + +function maybeClipScrollbars(cm) { + var display = cm.display + if (!display.scrollbarsClipped && display.scroller.offsetWidth) { + display.nativeBarWidth = display.scroller.offsetWidth - display.scroller.clientWidth + display.heightForcer.style.height = scrollGap(cm) + "px" + display.sizer.style.marginBottom = -display.nativeBarWidth + "px" + display.sizer.style.borderRightWidth = scrollGap(cm) + "px" + display.scrollbarsClipped = true + } +} + +function selectionSnapshot(cm) { + if (cm.hasFocus()) { return null } + var active = activeElt() + if (!active || !contains(cm.display.lineDiv, active)) { return null } + var result = {activeElt: active} + if (window.getSelection) { + var sel = window.getSelection() + if (sel.anchorNode && sel.extend && contains(cm.display.lineDiv, sel.anchorNode)) { + result.anchorNode = sel.anchorNode + result.anchorOffset = sel.anchorOffset + result.focusNode = sel.focusNode + result.focusOffset = sel.focusOffset + } + } + return result +} + +function restoreSelection(snapshot) { + if (!snapshot || !snapshot.activeElt || snapshot.activeElt == activeElt()) { return } + snapshot.activeElt.focus() + if (snapshot.anchorNode && contains(document.body, snapshot.anchorNode) && contains(document.body, snapshot.focusNode)) { + var sel = window.getSelection(), range = document.createRange() + range.setEnd(snapshot.anchorNode, snapshot.anchorOffset) + range.collapse(false) + sel.removeAllRanges() + sel.addRange(range) + sel.extend(snapshot.focusNode, snapshot.focusOffset) + } +} + +// Does the actual updating of the line display. Bails out +// (returning false) when there is nothing to be done and forced is +// false. +function updateDisplayIfNeeded(cm, update) { + var display = cm.display, doc = cm.doc + + if (update.editorIsHidden) { + resetView(cm) + return false + } + + // Bail out if the visible area is already rendered and nothing changed. + if (!update.force && + update.visible.from >= display.viewFrom && update.visible.to <= display.viewTo && + (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo) && + display.renderedView == display.view && countDirtyView(cm) == 0) + { return false } + + if (maybeUpdateLineNumberWidth(cm)) { + resetView(cm) + update.dims = getDimensions(cm) + } + + // Compute a suitable new viewport (from & to) + var end = doc.first + doc.size + var from = Math.max(update.visible.from - cm.options.viewportMargin, doc.first) + var to = Math.min(end, update.visible.to + cm.options.viewportMargin) + if (display.viewFrom < from && from - display.viewFrom < 20) { from = Math.max(doc.first, display.viewFrom) } + if (display.viewTo > to && display.viewTo - to < 20) { to = Math.min(end, display.viewTo) } + if (sawCollapsedSpans) { + from = visualLineNo(cm.doc, from) + to = visualLineEndNo(cm.doc, to) + } + + var different = from != display.viewFrom || to != display.viewTo || + display.lastWrapHeight != update.wrapperHeight || display.lastWrapWidth != update.wrapperWidth + adjustView(cm, from, to) + + display.viewOffset = heightAtLine(getLine(cm.doc, display.viewFrom)) + // Position the mover div to align with the current scroll position + cm.display.mover.style.top = display.viewOffset + "px" + + var toUpdate = countDirtyView(cm) + if (!different && toUpdate == 0 && !update.force && display.renderedView == display.view && + (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo)) + { return false } + + // For big changes, we hide the enclosing element during the + // update, since that speeds up the operations on most browsers. + var selSnapshot = selectionSnapshot(cm) + if (toUpdate > 4) { display.lineDiv.style.display = "none" } + patchDisplay(cm, display.updateLineNumbers, update.dims) + if (toUpdate > 4) { display.lineDiv.style.display = "" } + display.renderedView = display.view + // There might have been a widget with a focused element that got + // hidden or updated, if so re-focus it. + restoreSelection(selSnapshot) + + // Prevent selection and cursors from interfering with the scroll + // width and height. + removeChildren(display.cursorDiv) + removeChildren(display.selectionDiv) + display.gutters.style.height = display.sizer.style.minHeight = 0 + + if (different) { + display.lastWrapHeight = update.wrapperHeight + display.lastWrapWidth = update.wrapperWidth + startWorker(cm, 400) + } + + display.updateLineNumbers = null + + return true +} + +function postUpdateDisplay(cm, update) { + var viewport = update.viewport + + for (var first = true;; first = false) { + if (!first || !cm.options.lineWrapping || update.oldDisplayWidth == displayWidth(cm)) { + // Clip forced viewport to actual scrollable area. + if (viewport && viewport.top != null) + { viewport = {top: Math.min(cm.doc.height + paddingVert(cm.display) - displayHeight(cm), viewport.top)} } + // Updated line heights might result in the drawn area not + // actually covering the viewport. Keep looping until it does. + update.visible = visibleLines(cm.display, cm.doc, viewport) + if (update.visible.from >= cm.display.viewFrom && update.visible.to <= cm.display.viewTo) + { break } + } + if (!updateDisplayIfNeeded(cm, update)) { break } + updateHeightsInViewport(cm) + var barMeasure = measureForScrollbars(cm) + updateSelection(cm) + updateScrollbars(cm, barMeasure) + setDocumentHeight(cm, barMeasure) + } + + update.signal(cm, "update", cm) + if (cm.display.viewFrom != cm.display.reportedViewFrom || cm.display.viewTo != cm.display.reportedViewTo) { + update.signal(cm, "viewportChange", cm, cm.display.viewFrom, cm.display.viewTo) + cm.display.reportedViewFrom = cm.display.viewFrom; cm.display.reportedViewTo = cm.display.viewTo + } +} + +function updateDisplaySimple(cm, viewport) { + var update = new DisplayUpdate(cm, viewport) + if (updateDisplayIfNeeded(cm, update)) { + updateHeightsInViewport(cm) + postUpdateDisplay(cm, update) + var barMeasure = measureForScrollbars(cm) + updateSelection(cm) + updateScrollbars(cm, barMeasure) + setDocumentHeight(cm, barMeasure) + update.finish() + } +} + +// Sync the actual display DOM structure with display.view, removing +// nodes for lines that are no longer in view, and creating the ones +// that are not there yet, and updating the ones that are out of +// date. +function patchDisplay(cm, updateNumbersFrom, dims) { + var display = cm.display, lineNumbers = cm.options.lineNumbers + var container = display.lineDiv, cur = container.firstChild + + function rm(node) { + var next = node.nextSibling + // Works around a throw-scroll bug in OS X Webkit + if (webkit && mac && cm.display.currentWheelTarget == node) + { node.style.display = "none" } else - on(d.scroller, "dblclick", function(e) { signalDOMEvent(cm, e) || e_preventDefault(e); }); - on(d.lineSpace, "selectstart", function(e) { - if (!eventInWidget(d, e)) e_preventDefault(e); - }); - // Gecko browsers fire contextmenu *after* opening the menu, at - // which point we can't mess with it anymore. Context menu is - // handled in onMouseDown for Gecko. - if (!captureMiddleClick) on(d.scroller, "contextmenu", function(e) {onContextMenu(cm, e);}); - - on(d.scroller, "scroll", function() { - if (d.scroller.clientHeight) { - setScrollTop(cm, d.scroller.scrollTop); - setScrollLeft(cm, d.scroller.scrollLeft, true); - signal(cm, "scroll", cm); + { node.parentNode.removeChild(node) } + return next + } + + var view = display.view, lineN = display.viewFrom + // Loop over the elements in the view, syncing cur (the DOM nodes + // in display.lineDiv) with the view as we go. + for (var i = 0; i < view.length; i++) { + var lineView = view[i] + if (lineView.hidden) { + } else if (!lineView.node || lineView.node.parentNode != container) { // Not drawn yet + var node = buildLineElement(cm, lineView, lineN, dims) + container.insertBefore(node, cur) + } else { // Already drawn + while (cur != lineView.node) { cur = rm(cur) } + var updateNumber = lineNumbers && updateNumbersFrom != null && + updateNumbersFrom <= lineN && lineView.lineNumber + if (lineView.changes) { + if (indexOf(lineView.changes, "gutter") > -1) { updateNumber = false } + updateLineForChanges(cm, lineView, lineN, dims) } - }); - on(d.scrollbarV, "scroll", function() { - if (d.scroller.clientHeight) setScrollTop(cm, d.scrollbarV.scrollTop); - }); - on(d.scrollbarH, "scroll", function() { - if (d.scroller.clientHeight) setScrollLeft(cm, d.scrollbarH.scrollLeft); - }); - - on(d.scroller, "mousewheel", function(e){onScrollWheel(cm, e);}); - on(d.scroller, "DOMMouseScroll", function(e){onScrollWheel(cm, e);}); - - function reFocus() { if (cm.state.focused) setTimeout(bind(focusInput, cm), 0); } - on(d.scrollbarH, "mousedown", reFocus); - on(d.scrollbarV, "mousedown", reFocus); - // Prevent wrapper from ever scrolling - on(d.wrapper, "scroll", function() { d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; }); - - var resizeTimer; - function onResize() { - if (resizeTimer == null) resizeTimer = setTimeout(function() { - resizeTimer = null; - // Might be a text scaling operation, clear size caches. - d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = knownScrollbarWidth = null; - clearCaches(cm); - runInOp(cm, bind(regChange, cm)); - }, 100); - } - on(window, "resize", onResize); - // Above handler holds on to the editor and its data structures. - // Here we poll to unregister it when the editor is no longer in - // the document, so that it can be garbage-collected. - function unregister() { - for (var p = d.wrapper.parentNode; p && p != document.body; p = p.parentNode) {} - if (p) setTimeout(unregister, 5000); - else off(window, "resize", onResize); - } - setTimeout(unregister, 5000); - - on(d.input, "keyup", operation(cm, onKeyUp)); - on(d.input, "input", function() { - if (ie && !ie_lt9 && cm.display.inputHasSelection) cm.display.inputHasSelection = null; - fastPoll(cm); - }); - on(d.input, "keydown", operation(cm, onKeyDown)); - on(d.input, "keypress", operation(cm, onKeyPress)); - on(d.input, "focus", bind(onFocus, cm)); - on(d.input, "blur", bind(onBlur, cm)); - - function drag_(e) { - if (signalDOMEvent(cm, e) || cm.options.onDragEvent && cm.options.onDragEvent(cm, addStop(e))) return; - e_stop(e); - } - if (cm.options.dragDrop) { - on(d.scroller, "dragstart", function(e){onDragStart(cm, e);}); - on(d.scroller, "dragenter", drag_); - on(d.scroller, "dragover", drag_); - on(d.scroller, "drop", operation(cm, onDrop)); - } - on(d.scroller, "paste", function(e) { - if (eventInWidget(d, e)) return; - focusInput(cm); - fastPoll(cm); - }); - on(d.input, "paste", function() { - cm.state.pasteIncoming = true; - fastPoll(cm); - }); - - function prepareCopy(e) { - if (d.inaccurateSelection) { - d.prevInput = ""; - d.inaccurateSelection = false; - d.input.value = cm.getSelection(); - selectInput(d.input); + if (updateNumber) { + removeChildren(lineView.lineNumber) + lineView.lineNumber.appendChild(document.createTextNode(lineNumberFor(cm.options, lineN))) + } + cur = lineView.node.nextSibling + } + lineN += lineView.size + } + while (cur) { cur = rm(cur) } +} + +function updateGutterSpace(cm) { + var width = cm.display.gutters.offsetWidth + cm.display.sizer.style.marginLeft = width + "px" +} + +function setDocumentHeight(cm, measure) { + cm.display.sizer.style.minHeight = measure.docHeight + "px" + cm.display.heightForcer.style.top = measure.docHeight + "px" + cm.display.gutters.style.height = (measure.docHeight + cm.display.barHeight + scrollGap(cm)) + "px" +} + +// Rebuild the gutter elements, ensure the margin to the left of the +// code matches their width. +function updateGutters(cm) { + var gutters = cm.display.gutters, specs = cm.options.gutters + removeChildren(gutters) + var i = 0 + for (; i < specs.length; ++i) { + var gutterClass = specs[i] + var gElt = gutters.appendChild(elt("div", null, "CodeMirror-gutter " + gutterClass)) + if (gutterClass == "CodeMirror-linenumbers") { + cm.display.lineGutter = gElt + gElt.style.width = (cm.display.lineNumWidth || 1) + "px" + } + } + gutters.style.display = i ? "" : "none" + updateGutterSpace(cm) +} + +// Make sure the gutters options contains the element +// "CodeMirror-linenumbers" when the lineNumbers option is true. +function setGuttersForLineNumbers(options) { + var found = indexOf(options.gutters, "CodeMirror-linenumbers") + if (found == -1 && options.lineNumbers) { + options.gutters = options.gutters.concat(["CodeMirror-linenumbers"]) + } else if (found > -1 && !options.lineNumbers) { + options.gutters = options.gutters.slice(0) + options.gutters.splice(found, 1) + } +} + +var wheelSamples = 0; +var wheelPixelsPerUnit = null; +// Fill in a browser-detected starting value on browsers where we +// know one. These don't have to be accurate -- the result of them +// being wrong would just be a slight flicker on the first wheel +// scroll (if it is large enough). +if (ie) { wheelPixelsPerUnit = -.53 } +else if (gecko) { wheelPixelsPerUnit = 15 } +else if (chrome) { wheelPixelsPerUnit = -.7 } +else if (safari) { wheelPixelsPerUnit = -1/3 } + +function wheelEventDelta(e) { + var dx = e.wheelDeltaX, dy = e.wheelDeltaY + if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) { dx = e.detail } + if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) { dy = e.detail } + else if (dy == null) { dy = e.wheelDelta } + return {x: dx, y: dy} +} +function wheelEventPixels(e) { + var delta = wheelEventDelta(e) + delta.x *= wheelPixelsPerUnit + delta.y *= wheelPixelsPerUnit + return delta +} + +function onScrollWheel(cm, e) { + var delta = wheelEventDelta(e), dx = delta.x, dy = delta.y + + var display = cm.display, scroll = display.scroller + // Quit if there's nothing to scroll here + var canScrollX = scroll.scrollWidth > scroll.clientWidth + var canScrollY = scroll.scrollHeight > scroll.clientHeight + if (!(dx && canScrollX || dy && canScrollY)) { return } + + // Webkit browsers on OS X abort momentum scrolls when the target + // of the scroll event is removed from the scrollable element. + // This hack (see related code in patchDisplay) makes sure the + // element is kept around. + if (dy && mac && webkit) { + outer: for (var cur = e.target, view = display.view; cur != scroll; cur = cur.parentNode) { + for (var i = 0; i < view.length; i++) { + if (view[i].node == cur) { + cm.display.currentWheelTarget = cur + break outer + } } - if (e.type == "cut") cm.state.cutIncoming = true; - } - on(d.input, "cut", prepareCopy); - on(d.input, "copy", prepareCopy); - - // Needed to handle Tab key in KHTML - if (khtml) on(d.sizer, "mouseup", function() { - if (document.activeElement == d.input) d.input.blur(); - focusInput(cm); - }); - } - - function eventInWidget(display, e) { - for (var n = e_target(e); n != display.wrapper; n = n.parentNode) { - if (!n || n.ignoreEvents || n.parentNode == display.sizer && n != display.mover) return true; - } - } - - function posFromMouse(cm, e, liberal) { - var display = cm.display; - if (!liberal) { - var target = e_target(e); - if (target == display.scrollbarH || target == display.scrollbarV || - target == display.scrollbarFiller || target == display.gutterFiller) return null; } - var x, y, space = getRect(display.lineSpace); - // Fails unpredictably on IE[67] when mouse is dragged around quickly. - try { x = e.clientX; y = e.clientY; } catch (e) { return null; } - return coordsChar(cm, x - space.left, y - space.top); } - var lastClick, lastDoubleClick; - function onMouseDown(e) { - if (signalDOMEvent(this, e)) return; - var cm = this, display = cm.display, doc = cm.doc, sel = doc.sel; - sel.shift = e.shiftKey; - - if (eventInWidget(display, e)) { - if (!webkit) { - display.scroller.draggable = false; - setTimeout(function(){display.scroller.draggable = true;}, 100); + // On some browsers, horizontal scrolling will cause redraws to + // happen before the gutter has been realigned, causing it to + // wriggle around in a most unseemly way. When we have an + // estimated pixels/delta value, we just handle horizontal + // scrolling entirely here. It'll be slightly off from native, but + // better than glitching out. + if (dx && !gecko && !presto && wheelPixelsPerUnit != null) { + if (dy && canScrollY) + { updateScrollTop(cm, Math.max(0, scroll.scrollTop + dy * wheelPixelsPerUnit)) } + setScrollLeft(cm, Math.max(0, scroll.scrollLeft + dx * wheelPixelsPerUnit)) + // Only prevent default scrolling if vertical scrolling is + // actually possible. Otherwise, it causes vertical scroll + // jitter on OSX trackpads when deltaX is small and deltaY + // is large (issue #3579) + if (!dy || (dy && canScrollY)) + { e_preventDefault(e) } + display.wheelStartX = null // Abort measurement, if in progress + return + } + + // 'Project' the visible viewport to cover the area that is being + // scrolled into view (if we know enough to estimate it). + if (dy && wheelPixelsPerUnit != null) { + var pixels = dy * wheelPixelsPerUnit + var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight + if (pixels < 0) { top = Math.max(0, top + pixels - 50) } + else { bot = Math.min(cm.doc.height, bot + pixels + 50) } + updateDisplaySimple(cm, {top: top, bottom: bot}) + } + + if (wheelSamples < 20) { + if (display.wheelStartX == null) { + display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop + display.wheelDX = dx; display.wheelDY = dy + setTimeout(function () { + if (display.wheelStartX == null) { return } + var movedX = scroll.scrollLeft - display.wheelStartX + var movedY = scroll.scrollTop - display.wheelStartY + var sample = (movedY && display.wheelDY && movedY / display.wheelDY) || + (movedX && display.wheelDX && movedX / display.wheelDX) + display.wheelStartX = display.wheelStartY = null + if (!sample) { return } + wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1) + ++wheelSamples + }, 200) + } else { + display.wheelDX += dx; display.wheelDY += dy + } + } +} + +// Selection objects are immutable. A new one is created every time +// the selection changes. A selection is one or more non-overlapping +// (and non-touching) ranges, sorted, and an integer that indicates +// which one is the primary selection (the one that's scrolled into +// view, that getCursor returns, etc). +var Selection = function(ranges, primIndex) { + this.ranges = ranges + this.primIndex = primIndex +}; + +Selection.prototype.primary = function () { return this.ranges[this.primIndex] }; + +Selection.prototype.equals = function (other) { + var this$1 = this; + + if (other == this) { return true } + if (other.primIndex != this.primIndex || other.ranges.length != this.ranges.length) { return false } + for (var i = 0; i < this.ranges.length; i++) { + var here = this$1.ranges[i], there = other.ranges[i] + if (!equalCursorPos(here.anchor, there.anchor) || !equalCursorPos(here.head, there.head)) { return false } + } + return true +}; + +Selection.prototype.deepCopy = function () { + var this$1 = this; + + var out = [] + for (var i = 0; i < this.ranges.length; i++) + { out[i] = new Range(copyPos(this$1.ranges[i].anchor), copyPos(this$1.ranges[i].head)) } + return new Selection(out, this.primIndex) +}; + +Selection.prototype.somethingSelected = function () { + var this$1 = this; + + for (var i = 0; i < this.ranges.length; i++) + { if (!this$1.ranges[i].empty()) { return true } } + return false +}; + +Selection.prototype.contains = function (pos, end) { + var this$1 = this; + + if (!end) { end = pos } + for (var i = 0; i < this.ranges.length; i++) { + var range = this$1.ranges[i] + if (cmp(end, range.from()) >= 0 && cmp(pos, range.to()) <= 0) + { return i } + } + return -1 +}; + +var Range = function(anchor, head) { + this.anchor = anchor; this.head = head +}; + +Range.prototype.from = function () { return minPos(this.anchor, this.head) }; +Range.prototype.to = function () { return maxPos(this.anchor, this.head) }; +Range.prototype.empty = function () { return this.head.line == this.anchor.line && this.head.ch == this.anchor.ch }; + +// Take an unsorted, potentially overlapping set of ranges, and +// build a selection out of it. 'Consumes' ranges array (modifying +// it). +function normalizeSelection(ranges, primIndex) { + var prim = ranges[primIndex] + ranges.sort(function (a, b) { return cmp(a.from(), b.from()); }) + primIndex = indexOf(ranges, prim) + for (var i = 1; i < ranges.length; i++) { + var cur = ranges[i], prev = ranges[i - 1] + if (cmp(prev.to(), cur.from()) >= 0) { + var from = minPos(prev.from(), cur.from()), to = maxPos(prev.to(), cur.to()) + var inv = prev.empty() ? cur.from() == cur.head : prev.from() == prev.head + if (i <= primIndex) { --primIndex } + ranges.splice(--i, 2, new Range(inv ? to : from, inv ? from : to)) + } + } + return new Selection(ranges, primIndex) +} + +function simpleSelection(anchor, head) { + return new Selection([new Range(anchor, head || anchor)], 0) +} + +// Compute the position of the end of a change (its 'to' property +// refers to the pre-change end). +function changeEnd(change) { + if (!change.text) { return change.to } + return Pos(change.from.line + change.text.length - 1, + lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0)) +} + +// Adjust a position to refer to the post-change position of the +// same text, or the end of the change if the change covers it. +function adjustForChange(pos, change) { + if (cmp(pos, change.from) < 0) { return pos } + if (cmp(pos, change.to) <= 0) { return changeEnd(change) } + + var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch + if (pos.line == change.to.line) { ch += changeEnd(change).ch - change.to.ch } + return Pos(line, ch) +} + +function computeSelAfterChange(doc, change) { + var out = [] + for (var i = 0; i < doc.sel.ranges.length; i++) { + var range = doc.sel.ranges[i] + out.push(new Range(adjustForChange(range.anchor, change), + adjustForChange(range.head, change))) + } + return normalizeSelection(out, doc.sel.primIndex) +} + +function offsetPos(pos, old, nw) { + if (pos.line == old.line) + { return Pos(nw.line, pos.ch - old.ch + nw.ch) } + else + { return Pos(nw.line + (pos.line - old.line), pos.ch) } +} + +// Used by replaceSelections to allow moving the selection to the +// start or around the replaced test. Hint may be "start" or "around". +function computeReplacedSel(doc, changes, hint) { + var out = [] + var oldPrev = Pos(doc.first, 0), newPrev = oldPrev + for (var i = 0; i < changes.length; i++) { + var change = changes[i] + var from = offsetPos(change.from, oldPrev, newPrev) + var to = offsetPos(changeEnd(change), oldPrev, newPrev) + oldPrev = change.to + newPrev = to + if (hint == "around") { + var range = doc.sel.ranges[i], inv = cmp(range.head, range.anchor) < 0 + out[i] = new Range(inv ? to : from, inv ? from : to) + } else { + out[i] = new Range(from, from) + } + } + return new Selection(out, doc.sel.primIndex) +} + +// Used to get the editor into a consistent state again when options change. + +function loadMode(cm) { + cm.doc.mode = getMode(cm.options, cm.doc.modeOption) + resetModeState(cm) +} + +function resetModeState(cm) { + cm.doc.iter(function (line) { + if (line.stateAfter) { line.stateAfter = null } + if (line.styles) { line.styles = null } + }) + cm.doc.frontier = cm.doc.first + startWorker(cm, 100) + cm.state.modeGen++ + if (cm.curOp) { regChange(cm) } +} + +// DOCUMENT DATA STRUCTURE + +// By default, updates that start and end at the beginning of a line +// are treated specially, in order to make the association of line +// widgets and marker elements with the text behave more intuitive. +function isWholeLineUpdate(doc, change) { + return change.from.ch == 0 && change.to.ch == 0 && lst(change.text) == "" && + (!doc.cm || doc.cm.options.wholeLineUpdateBefore) +} + +// Perform a change on the document data structure. +function updateDoc(doc, change, markedSpans, estimateHeight) { + function spansFor(n) {return markedSpans ? markedSpans[n] : null} + function update(line, text, spans) { + updateLine(line, text, spans, estimateHeight) + signalLater(line, "change", line, change) + } + function linesFor(start, end) { + var result = [] + for (var i = start; i < end; ++i) + { result.push(new Line(text[i], spansFor(i), estimateHeight)) } + return result + } + + var from = change.from, to = change.to, text = change.text + var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line) + var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line + + // Adjust the line structure + if (change.full) { + doc.insert(0, linesFor(0, text.length)) + doc.remove(text.length, doc.size - text.length) + } else if (isWholeLineUpdate(doc, change)) { + // This is a whole-line replace. Treated specially to make + // sure line objects move the way they are supposed to. + var added = linesFor(0, text.length - 1) + update(lastLine, lastLine.text, lastSpans) + if (nlines) { doc.remove(from.line, nlines) } + if (added.length) { doc.insert(from.line, added) } + } else if (firstLine == lastLine) { + if (text.length == 1) { + update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans) + } else { + var added$1 = linesFor(1, text.length - 1) + added$1.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight)) + update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0)) + doc.insert(from.line + 1, added$1) + } + } else if (text.length == 1) { + update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0)) + doc.remove(from.line + 1, nlines) + } else { + update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0)) + update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans) + var added$2 = linesFor(1, text.length - 1) + if (nlines > 1) { doc.remove(from.line + 1, nlines - 1) } + doc.insert(from.line + 1, added$2) + } + + signalLater(doc, "change", doc, change) +} + +// Call f for all linked documents. +function linkedDocs(doc, f, sharedHistOnly) { + function propagate(doc, skip, sharedHist) { + if (doc.linked) { for (var i = 0; i < doc.linked.length; ++i) { + var rel = doc.linked[i] + if (rel.doc == skip) { continue } + var shared = sharedHist && rel.sharedHist + if (sharedHistOnly && !shared) { continue } + f(rel.doc, shared) + propagate(rel.doc, doc, shared) + } } + } + propagate(doc, null, true) +} + +// Attach a document to an editor. +function attachDoc(cm, doc) { + if (doc.cm) { throw new Error("This document is already in use.") } + cm.doc = doc + doc.cm = cm + estimateLineHeights(cm) + loadMode(cm) + setDirectionClass(cm) + if (!cm.options.lineWrapping) { findMaxLine(cm) } + cm.options.mode = doc.modeOption + regChange(cm) +} + +function setDirectionClass(cm) { + ;(cm.doc.direction == "rtl" ? addClass : rmClass)(cm.display.lineDiv, "CodeMirror-rtl") +} + +function directionChanged(cm) { + runInOp(cm, function () { + setDirectionClass(cm) + regChange(cm) + }) +} + +function History(startGen) { + // Arrays of change events and selections. Doing something adds an + // event to done and clears undo. Undoing moves events from done + // to undone, redoing moves them in the other direction. + this.done = []; this.undone = [] + this.undoDepth = Infinity + // Used to track when changes can be merged into a single undo + // event + this.lastModTime = this.lastSelTime = 0 + this.lastOp = this.lastSelOp = null + this.lastOrigin = this.lastSelOrigin = null + // Used by the isClean() method + this.generation = this.maxGeneration = startGen || 1 +} + +// Create a history change event from an updateDoc-style change +// object. +function historyChangeFromChange(doc, change) { + var histChange = {from: copyPos(change.from), to: changeEnd(change), text: getBetween(doc, change.from, change.to)} + attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1) + linkedDocs(doc, function (doc) { return attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1); }, true) + return histChange +} + +// Pop all selection events off the end of a history array. Stop at +// a change event. +function clearSelectionEvents(array) { + while (array.length) { + var last = lst(array) + if (last.ranges) { array.pop() } + else { break } + } +} + +// Find the top change event in the history. Pop off selection +// events that are in the way. +function lastChangeEvent(hist, force) { + if (force) { + clearSelectionEvents(hist.done) + return lst(hist.done) + } else if (hist.done.length && !lst(hist.done).ranges) { + return lst(hist.done) + } else if (hist.done.length > 1 && !hist.done[hist.done.length - 2].ranges) { + hist.done.pop() + return lst(hist.done) + } +} + +// Register a change in the history. Merges changes that are within +// a single operation, or are close together with an origin that +// allows merging (starting with "+") into a single event. +function addChangeToHistory(doc, change, selAfter, opId) { + var hist = doc.history + hist.undone.length = 0 + var time = +new Date, cur + var last + + if ((hist.lastOp == opId || + hist.lastOrigin == change.origin && change.origin && + ((change.origin.charAt(0) == "+" && doc.cm && hist.lastModTime > time - doc.cm.options.historyEventDelay) || + change.origin.charAt(0) == "*")) && + (cur = lastChangeEvent(hist, hist.lastOp == opId))) { + // Merge this change into the last event + last = lst(cur.changes) + if (cmp(change.from, change.to) == 0 && cmp(change.from, last.to) == 0) { + // Optimized case for simple insertion -- don't want to add + // new changesets for every character typed + last.to = changeEnd(change) + } else { + // Add new sub-event + cur.changes.push(historyChangeFromChange(doc, change)) + } + } else { + // Can not be merged, start a new event. + var before = lst(hist.done) + if (!before || !before.ranges) + { pushSelectionToHistory(doc.sel, hist.done) } + cur = {changes: [historyChangeFromChange(doc, change)], + generation: hist.generation} + hist.done.push(cur) + while (hist.done.length > hist.undoDepth) { + hist.done.shift() + if (!hist.done[0].ranges) { hist.done.shift() } + } + } + hist.done.push(selAfter) + hist.generation = ++hist.maxGeneration + hist.lastModTime = hist.lastSelTime = time + hist.lastOp = hist.lastSelOp = opId + hist.lastOrigin = hist.lastSelOrigin = change.origin + + if (!last) { signal(doc, "historyAdded") } +} + +function selectionEventCanBeMerged(doc, origin, prev, sel) { + var ch = origin.charAt(0) + return ch == "*" || + ch == "+" && + prev.ranges.length == sel.ranges.length && + prev.somethingSelected() == sel.somethingSelected() && + new Date - doc.history.lastSelTime <= (doc.cm ? doc.cm.options.historyEventDelay : 500) +} + +// Called whenever the selection changes, sets the new selection as +// the pending selection in the history, and pushes the old pending +// selection into the 'done' array when it was significantly +// different (in number of selected ranges, emptiness, or time). +function addSelectionToHistory(doc, sel, opId, options) { + var hist = doc.history, origin = options && options.origin + + // A new event is started when the previous origin does not match + // the current, or the origins don't allow matching. Origins + // starting with * are always merged, those starting with + are + // merged when similar and close together in time. + if (opId == hist.lastSelOp || + (origin && hist.lastSelOrigin == origin && + (hist.lastModTime == hist.lastSelTime && hist.lastOrigin == origin || + selectionEventCanBeMerged(doc, origin, lst(hist.done), sel)))) + { hist.done[hist.done.length - 1] = sel } + else + { pushSelectionToHistory(sel, hist.done) } + + hist.lastSelTime = +new Date + hist.lastSelOrigin = origin + hist.lastSelOp = opId + if (options && options.clearRedo !== false) + { clearSelectionEvents(hist.undone) } +} + +function pushSelectionToHistory(sel, dest) { + var top = lst(dest) + if (!(top && top.ranges && top.equals(sel))) + { dest.push(sel) } +} + +// Used to store marked span information in the history. +function attachLocalSpans(doc, change, from, to) { + var existing = change["spans_" + doc.id], n = 0 + doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function (line) { + if (line.markedSpans) + { (existing || (existing = change["spans_" + doc.id] = {}))[n] = line.markedSpans } + ++n + }) +} + +// When un/re-doing restores text containing marked spans, those +// that have been explicitly cleared should not be restored. +function removeClearedSpans(spans) { + if (!spans) { return null } + var out + for (var i = 0; i < spans.length; ++i) { + if (spans[i].marker.explicitlyCleared) { if (!out) { out = spans.slice(0, i) } } + else if (out) { out.push(spans[i]) } + } + return !out ? spans : out.length ? out : null +} + +// Retrieve and filter the old marked spans stored in a change event. +function getOldSpans(doc, change) { + var found = change["spans_" + doc.id] + if (!found) { return null } + var nw = [] + for (var i = 0; i < change.text.length; ++i) + { nw.push(removeClearedSpans(found[i])) } + return nw +} + +// Used for un/re-doing changes from the history. Combines the +// result of computing the existing spans with the set of spans that +// existed in the history (so that deleting around a span and then +// undoing brings back the span). +function mergeOldSpans(doc, change) { + var old = getOldSpans(doc, change) + var stretched = stretchSpansOverChange(doc, change) + if (!old) { return stretched } + if (!stretched) { return old } + + for (var i = 0; i < old.length; ++i) { + var oldCur = old[i], stretchCur = stretched[i] + if (oldCur && stretchCur) { + spans: for (var j = 0; j < stretchCur.length; ++j) { + var span = stretchCur[j] + for (var k = 0; k < oldCur.length; ++k) + { if (oldCur[k].marker == span.marker) { continue spans } } + oldCur.push(span) } - return; - } - if (clickInGutter(cm, e)) return; - var start = posFromMouse(cm, e); - window.focus(); - - switch (e_button(e)) { - case 3: - if (captureMiddleClick) onContextMenu.call(cm, cm, e); - return; - case 2: - if (webkit) cm.state.lastMiddleDown = +new Date; - if (start) extendSelection(cm.doc, start); - setTimeout(bind(focusInput, cm), 20); - e_preventDefault(e); - return; - } - // For button 1, if it was clicked inside the editor - // (posFromMouse returning non-null), we have to adjust the - // selection. - if (!start) {if (e_target(e) == display.scroller) e_preventDefault(e); return;} - - setTimeout(bind(ensureFocus, cm), 0); - - var now = +new Date, type = "single"; - if (lastDoubleClick && lastDoubleClick.time > now - 400 && posEq(lastDoubleClick.pos, start)) { - type = "triple"; - e_preventDefault(e); - setTimeout(bind(focusInput, cm), 20); - selectLine(cm, start.line); - } else if (lastClick && lastClick.time > now - 400 && posEq(lastClick.pos, start)) { - type = "double"; - lastDoubleClick = {time: now, pos: start}; - e_preventDefault(e); - var word = findWordAt(getLine(doc, start.line).text, start); - extendSelection(cm.doc, word.from, word.to); - } else { lastClick = {time: now, pos: start}; } - - var last = start; - if (cm.options.dragDrop && dragAndDrop && !isReadOnly(cm) && !posEq(sel.from, sel.to) && - !posLess(start, sel.from) && !posLess(sel.to, start) && type == "single") { - var dragEnd = operation(cm, function(e2) { - if (webkit) display.scroller.draggable = false; - cm.state.draggingText = false; - off(document, "mouseup", dragEnd); - off(display.scroller, "drop", dragEnd); - if (Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) < 10) { - e_preventDefault(e2); - extendSelection(cm.doc, start); - focusInput(cm); - // Work around unexplainable focus problem in IE9 (#2127) - if (old_ie && !ie_lt9) - setTimeout(function() {document.body.focus(); focusInput(cm);}, 20); + } else if (stretchCur) { + old[i] = stretchCur + } + } + return old +} + +// Used both to provide a JSON-safe object in .getHistory, and, when +// detaching a document, to split the history in two +function copyHistoryArray(events, newGroup, instantiateSel) { + var copy = [] + for (var i = 0; i < events.length; ++i) { + var event = events[i] + if (event.ranges) { + copy.push(instantiateSel ? Selection.prototype.deepCopy.call(event) : event) + continue + } + var changes = event.changes, newChanges = [] + copy.push({changes: newChanges}) + for (var j = 0; j < changes.length; ++j) { + var change = changes[j], m = (void 0) + newChanges.push({from: change.from, to: change.to, text: change.text}) + if (newGroup) { for (var prop in change) { if (m = prop.match(/^spans_(\d+)$/)) { + if (indexOf(newGroup, Number(m[1])) > -1) { + lst(newChanges)[prop] = change[prop] + delete change[prop] } - }); - // Let the drag handler handle this. - if (webkit) display.scroller.draggable = true; - cm.state.draggingText = dragEnd; - // IE's approach to draggable - if (display.scroller.dragDrop) display.scroller.dragDrop(); - on(document, "mouseup", dragEnd); - on(display.scroller, "drop", dragEnd); - return; - } - e_preventDefault(e); - if (type == "single") extendSelection(cm.doc, clipPos(doc, start)); - - var startstart = sel.from, startend = sel.to, lastPos = start; - - function doSelect(cur) { - if (posEq(lastPos, cur)) return; - lastPos = cur; - - if (type == "single") { - extendSelection(cm.doc, clipPos(doc, start), cur); - return; - } - - startstart = clipPos(doc, startstart); - startend = clipPos(doc, startend); - if (type == "double") { - var word = findWordAt(getLine(doc, cur.line).text, cur); - if (posLess(cur, startstart)) extendSelection(cm.doc, word.from, startend); - else extendSelection(cm.doc, startstart, word.to); - } else if (type == "triple") { - if (posLess(cur, startstart)) extendSelection(cm.doc, startend, clipPos(doc, Pos(cur.line, 0))); - else extendSelection(cm.doc, startstart, clipPos(doc, Pos(cur.line + 1, 0))); + } } } + } + } + return copy +} + +// The 'scroll' parameter given to many of these indicated whether +// the new cursor position should be scrolled into view after +// modifying the selection. + +// If shift is held or the extend flag is set, extends a range to +// include a given position (and optionally a second position). +// Otherwise, simply returns the range between the given positions. +// Used for cursor motion and such. +function extendRange(doc, range, head, other) { + if (doc.cm && doc.cm.display.shift || doc.extend) { + var anchor = range.anchor + if (other) { + var posBefore = cmp(head, anchor) < 0 + if (posBefore != (cmp(other, anchor) < 0)) { + anchor = head + head = other + } else if (posBefore != (cmp(head, other) < 0)) { + head = other } } + return new Range(anchor, head) + } else { + return new Range(other || head, head) + } +} + +// Extend the primary selection range, discard the rest. +function extendSelection(doc, head, other, options) { + setSelection(doc, new Selection([extendRange(doc, doc.sel.primary(), head, other)], 0), options) +} + +// Extend all selections (pos is an array of selections with length +// equal the number of selections) +function extendSelections(doc, heads, options) { + var out = [] + for (var i = 0; i < doc.sel.ranges.length; i++) + { out[i] = extendRange(doc, doc.sel.ranges[i], heads[i], null) } + var newSel = normalizeSelection(out, doc.sel.primIndex) + setSelection(doc, newSel, options) +} + +// Updates a single range in the selection. +function replaceOneSelection(doc, i, range, options) { + var ranges = doc.sel.ranges.slice(0) + ranges[i] = range + setSelection(doc, normalizeSelection(ranges, doc.sel.primIndex), options) +} + +// Reset the selection to a single range. +function setSimpleSelection(doc, anchor, head, options) { + setSelection(doc, simpleSelection(anchor, head), options) +} + +// Give beforeSelectionChange handlers a change to influence a +// selection update. +function filterSelectionChange(doc, sel, options) { + var obj = { + ranges: sel.ranges, + update: function(ranges) { + var this$1 = this; + + this.ranges = [] + for (var i = 0; i < ranges.length; i++) + { this$1.ranges[i] = new Range(clipPos(doc, ranges[i].anchor), + clipPos(doc, ranges[i].head)) } + }, + origin: options && options.origin + } + signal(doc, "beforeSelectionChange", doc, obj) + if (doc.cm) { signal(doc.cm, "beforeSelectionChange", doc.cm, obj) } + if (obj.ranges != sel.ranges) { return normalizeSelection(obj.ranges, obj.ranges.length - 1) } + else { return sel } +} + +function setSelectionReplaceHistory(doc, sel, options) { + var done = doc.history.done, last = lst(done) + if (last && last.ranges) { + done[done.length - 1] = sel + setSelectionNoUndo(doc, sel, options) + } else { + setSelection(doc, sel, options) + } +} + +// Set a new selection. +function setSelection(doc, sel, options) { + setSelectionNoUndo(doc, sel, options) + addSelectionToHistory(doc, doc.sel, doc.cm ? doc.cm.curOp.id : NaN, options) +} + +function setSelectionNoUndo(doc, sel, options) { + if (hasHandler(doc, "beforeSelectionChange") || doc.cm && hasHandler(doc.cm, "beforeSelectionChange")) + { sel = filterSelectionChange(doc, sel, options) } + + var bias = options && options.bias || + (cmp(sel.primary().head, doc.sel.primary().head) < 0 ? -1 : 1) + setSelectionInner(doc, skipAtomicInSelection(doc, sel, bias, true)) + + if (!(options && options.scroll === false) && doc.cm) + { ensureCursorVisible(doc.cm) } +} + +function setSelectionInner(doc, sel) { + if (sel.equals(doc.sel)) { return } + + doc.sel = sel + + if (doc.cm) { + doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged = true + signalCursorActivity(doc.cm) + } + signalLater(doc, "cursorActivity", doc) +} + +// Verify that the selection does not partially select any atomic +// marked ranges. +function reCheckSelection(doc) { + setSelectionInner(doc, skipAtomicInSelection(doc, doc.sel, null, false)) +} + +// Return a selection that does not partially select any atomic +// ranges. +function skipAtomicInSelection(doc, sel, bias, mayClear) { + var out + for (var i = 0; i < sel.ranges.length; i++) { + var range = sel.ranges[i] + var old = sel.ranges.length == doc.sel.ranges.length && doc.sel.ranges[i] + var newAnchor = skipAtomic(doc, range.anchor, old && old.anchor, bias, mayClear) + var newHead = skipAtomic(doc, range.head, old && old.head, bias, mayClear) + if (out || newAnchor != range.anchor || newHead != range.head) { + if (!out) { out = sel.ranges.slice(0, i) } + out[i] = new Range(newAnchor, newHead) + } + } + return out ? normalizeSelection(out, sel.primIndex) : sel +} + +function skipAtomicInner(doc, pos, oldPos, dir, mayClear) { + var line = getLine(doc, pos.line) + if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) { + var sp = line.markedSpans[i], m = sp.marker + if ((sp.from == null || (m.inclusiveLeft ? sp.from <= pos.ch : sp.from < pos.ch)) && + (sp.to == null || (m.inclusiveRight ? sp.to >= pos.ch : sp.to > pos.ch))) { + if (mayClear) { + signal(m, "beforeCursorEnter") + if (m.explicitlyCleared) { + if (!line.markedSpans) { break } + else {--i; continue} + } + } + if (!m.atomic) { continue } + + if (oldPos) { + var near = m.find(dir < 0 ? 1 : -1), diff = (void 0) + if (dir < 0 ? m.inclusiveRight : m.inclusiveLeft) + { near = movePos(doc, near, -dir, near && near.line == pos.line ? line : null) } + if (near && near.line == pos.line && (diff = cmp(near, oldPos)) && (dir < 0 ? diff < 0 : diff > 0)) + { return skipAtomicInner(doc, near, pos, dir, mayClear) } + } - var editorSize = getRect(display.wrapper); - // Used to ensure timeout re-tries don't fire when another extend - // happened in the meantime (clearTimeout isn't reliable -- at - // least on Chrome, the timeouts still happen even when cleared, - // if the clear happens after their scheduled firing time). - var counter = 0; - - function extend(e) { - var curCount = ++counter; - var cur = posFromMouse(cm, e, true); - if (!cur) return; - if (!posEq(cur, last)) { - ensureFocus(cm); - last = cur; - doSelect(cur); - var visible = visibleLines(display, doc); - if (cur.line >= visible.to || cur.line < visible.from) - setTimeout(operation(cm, function(){if (counter == curCount) extend(e);}), 150); - } else { - var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0; - if (outside) setTimeout(operation(cm, function() { - if (counter != curCount) return; - display.scroller.scrollTop += outside; - extend(e); - }), 50); + var far = m.find(dir < 0 ? -1 : 1) + if (dir < 0 ? m.inclusiveLeft : m.inclusiveRight) + { far = movePos(doc, far, dir, far.line == pos.line ? line : null) } + return far ? skipAtomicInner(doc, far, pos, dir, mayClear) : null + } + } } + return pos +} + +// Ensure a given position is not inside an atomic range. +function skipAtomic(doc, pos, oldPos, bias, mayClear) { + var dir = bias || 1 + var found = skipAtomicInner(doc, pos, oldPos, dir, mayClear) || + (!mayClear && skipAtomicInner(doc, pos, oldPos, dir, true)) || + skipAtomicInner(doc, pos, oldPos, -dir, mayClear) || + (!mayClear && skipAtomicInner(doc, pos, oldPos, -dir, true)) + if (!found) { + doc.cantEdit = true + return Pos(doc.first, 0) + } + return found +} + +function movePos(doc, pos, dir, line) { + if (dir < 0 && pos.ch == 0) { + if (pos.line > doc.first) { return clipPos(doc, Pos(pos.line - 1)) } + else { return null } + } else if (dir > 0 && pos.ch == (line || getLine(doc, pos.line)).text.length) { + if (pos.line < doc.first + doc.size - 1) { return Pos(pos.line + 1, 0) } + else { return null } + } else { + return new Pos(pos.line, pos.ch + dir) + } +} + +function selectAll(cm) { + cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()), sel_dontScroll) +} + +// UPDATING + +// Allow "beforeChange" event handlers to influence a change +function filterChange(doc, change, update) { + var obj = { + canceled: false, + from: change.from, + to: change.to, + text: change.text, + origin: change.origin, + cancel: function () { return obj.canceled = true; } + } + if (update) { obj.update = function (from, to, text, origin) { + if (from) { obj.from = clipPos(doc, from) } + if (to) { obj.to = clipPos(doc, to) } + if (text) { obj.text = text } + if (origin !== undefined) { obj.origin = origin } + } } + signal(doc, "beforeChange", doc, obj) + if (doc.cm) { signal(doc.cm, "beforeChange", doc.cm, obj) } + + if (obj.canceled) { return null } + return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin} +} + +// Apply a change to a document, and add it to the document's +// history, and propagating it to all linked documents. +function makeChange(doc, change, ignoreReadOnly) { + if (doc.cm) { + if (!doc.cm.curOp) { return operation(doc.cm, makeChange)(doc, change, ignoreReadOnly) } + if (doc.cm.state.suppressEdits) { return } + } + + if (hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange")) { + change = filterChange(doc, change, true) + if (!change) { return } + } + + // Possibly split or suppress the update based on the presence + // of read-only spans in its range. + var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to) + if (split) { + for (var i = split.length - 1; i >= 0; --i) + { makeChangeInner(doc, {from: split[i].from, to: split[i].to, text: i ? [""] : change.text}) } + } else { + makeChangeInner(doc, change) + } +} + +function makeChangeInner(doc, change) { + if (change.text.length == 1 && change.text[0] == "" && cmp(change.from, change.to) == 0) { return } + var selAfter = computeSelAfterChange(doc, change) + addChangeToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN) + + makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change)) + var rebased = [] + + linkedDocs(doc, function (doc, sharedHist) { + if (!sharedHist && indexOf(rebased, doc.history) == -1) { + rebaseHist(doc.history, change) + rebased.push(doc.history) + } + makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change)) + }) +} + +// Revert a change stored in a document's history. +function makeChangeFromHistory(doc, type, allowSelectionOnly) { + if (doc.cm && doc.cm.state.suppressEdits && !allowSelectionOnly) { return } + + var hist = doc.history, event, selAfter = doc.sel + var source = type == "undo" ? hist.done : hist.undone, dest = type == "undo" ? hist.undone : hist.done + + // Verify that there is a useable event (so that ctrl-z won't + // needlessly clear selection events) + var i = 0 + for (; i < source.length; i++) { + event = source[i] + if (allowSelectionOnly ? event.ranges && !event.equals(doc.sel) : !event.ranges) + { break } + } + if (i == source.length) { return } + hist.lastOrigin = hist.lastSelOrigin = null + + for (;;) { + event = source.pop() + if (event.ranges) { + pushSelectionToHistory(event, dest) + if (allowSelectionOnly && !event.equals(doc.sel)) { + setSelection(doc, event, {clearRedo: false}) + return } + selAfter = event } + else { break } + } - function done(e) { - counter = Infinity; - e_preventDefault(e); - focusInput(cm); - off(document, "mousemove", move); - off(document, "mouseup", up); - } + // Build up a reverse change object to add to the opposite history + // stack (redo when undoing, and vice versa). + var antiChanges = [] + pushSelectionToHistory(selAfter, dest) + dest.push({changes: antiChanges, generation: hist.generation}) + hist.generation = event.generation || ++hist.maxGeneration - var move = operation(cm, function(e) { - if ((ie && !ie_lt10) ? !e.buttons : !e_button(e)) done(e); - else extend(e); - }); - var up = operation(cm, done); - on(document, "mousemove", move); - on(document, "mouseup", up); - } + var filter = hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange") - function gutterEvent(cm, e, type, prevent, signalfn) { - try { var mX = e.clientX, mY = e.clientY; } - catch(e) { return false; } - if (mX >= Math.floor(getRect(cm.display.gutters).right)) return false; - if (prevent) e_preventDefault(e); + var loop = function ( i ) { + var change = event.changes[i] + change.origin = type + if (filter && !filterChange(doc, change, false)) { + source.length = 0 + return {} + } - var display = cm.display; - var lineBox = getRect(display.lineDiv); + antiChanges.push(historyChangeFromChange(doc, change)) - if (mY > lineBox.bottom || !hasHandler(cm, type)) return e_defaultPrevented(e); - mY -= lineBox.top - display.viewOffset; + var after = i ? computeSelAfterChange(doc, change) : lst(source) + makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change)) + if (!i && doc.cm) { doc.cm.scrollIntoView({from: change.from, to: changeEnd(change)}) } + var rebased = [] - for (var i = 0; i < cm.options.gutters.length; ++i) { - var g = display.gutters.childNodes[i]; - if (g && getRect(g).right >= mX) { - var line = lineAtHeight(cm.doc, mY); - var gutter = cm.options.gutters[i]; - signalfn(cm, type, cm, line, gutter, e); - return e_defaultPrevented(e); + // Propagate to the linked documents + linkedDocs(doc, function (doc, sharedHist) { + if (!sharedHist && indexOf(rebased, doc.history) == -1) { + rebaseHist(doc.history, change) + rebased.push(doc.history) } - } - } + makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change)) + }) + }; - function contextMenuInGutter(cm, e) { - if (!hasHandler(cm, "gutterContextMenu")) return false; - return gutterEvent(cm, e, "gutterContextMenu", false, signal); + for (var i$1 = event.changes.length - 1; i$1 >= 0; --i$1) { + var returned = loop( i$1 ); + + if ( returned ) return returned.v; + } +} + +// Sub-views need their line numbers shifted when text is added +// above or below them in the parent document. +function shiftDoc(doc, distance) { + if (distance == 0) { return } + doc.first += distance + doc.sel = new Selection(map(doc.sel.ranges, function (range) { return new Range( + Pos(range.anchor.line + distance, range.anchor.ch), + Pos(range.head.line + distance, range.head.ch) + ); }), doc.sel.primIndex) + if (doc.cm) { + regChange(doc.cm, doc.first, doc.first - distance, distance) + for (var d = doc.cm.display, l = d.viewFrom; l < d.viewTo; l++) + { regLineChange(doc.cm, l, "gutter") } + } +} + +// More lower-level change function, handling only a single document +// (not linked ones). +function makeChangeSingleDoc(doc, change, selAfter, spans) { + if (doc.cm && !doc.cm.curOp) + { return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans) } + + if (change.to.line < doc.first) { + shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line)) + return + } + if (change.from.line > doc.lastLine()) { return } + + // Clip the change to the size of this doc + if (change.from.line < doc.first) { + var shift = change.text.length - 1 - (doc.first - change.from.line) + shiftDoc(doc, shift) + change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch), + text: [lst(change.text)], origin: change.origin} + } + var last = doc.lastLine() + if (change.to.line > last) { + change = {from: change.from, to: Pos(last, getLine(doc, last).text.length), + text: [change.text[0]], origin: change.origin} + } + + change.removed = getBetween(doc, change.from, change.to) + + if (!selAfter) { selAfter = computeSelAfterChange(doc, change) } + if (doc.cm) { makeChangeSingleDocInEditor(doc.cm, change, spans) } + else { updateDoc(doc, change, spans) } + setSelectionNoUndo(doc, selAfter, sel_dontScroll) +} + +// Handle the interaction of a change to a document with the editor +// that this document is part of. +function makeChangeSingleDocInEditor(cm, change, spans) { + var doc = cm.doc, display = cm.display, from = change.from, to = change.to + + var recomputeMaxLength = false, checkWidthStart = from.line + if (!cm.options.lineWrapping) { + checkWidthStart = lineNo(visualLine(getLine(doc, from.line))) + doc.iter(checkWidthStart, to.line + 1, function (line) { + if (line == display.maxLine) { + recomputeMaxLength = true + return true + } + }) } - function clickInGutter(cm, e) { - return gutterEvent(cm, e, "gutterClick", true, signalLater); - } + if (doc.sel.contains(change.from, change.to) > -1) + { signalCursorActivity(cm) } - // Kludge to work around strange IE behavior where it'll sometimes - // re-fire a series of drag-related events right after the drop (#1551) - var lastDrop = 0; + updateDoc(doc, change, spans, estimateHeight(cm)) - function onDrop(e) { - var cm = this; - if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e) || (cm.options.onDragEvent && cm.options.onDragEvent(cm, addStop(e)))) - return; - e_preventDefault(e); - if (ie) lastDrop = +new Date; - var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files; - if (!pos || isReadOnly(cm)) return; - if (files && files.length && window.FileReader && window.File) { - var n = files.length, text = Array(n), read = 0; - var loadFile = function(file, i) { - var reader = new FileReader; - reader.onload = function() { - text[i] = reader.result; - if (++read == n) { - pos = clipPos(cm.doc, pos); - makeChange(cm.doc, {from: pos, to: pos, text: splitLines(text.join("\n")), origin: "paste"}, "around"); - } - }; - reader.readAsText(file); - }; - for (var i = 0; i < n; ++i) loadFile(files[i], i); - } else { - // Don't do a replace if the drop happened inside of the selected text. - if (cm.state.draggingText && !(posLess(pos, cm.doc.sel.from) || posLess(cm.doc.sel.to, pos))) { - cm.state.draggingText(e); - // Ensure the editor is re-focused - setTimeout(bind(focusInput, cm), 20); - return; - } - try { - var text = e.dataTransfer.getData("Text"); - if (text) { - var curFrom = cm.doc.sel.from, curTo = cm.doc.sel.to; - setSelection(cm.doc, pos, pos); - if (cm.state.draggingText) replaceRange(cm.doc, "", curFrom, curTo, "paste"); - cm.replaceSelection(text, null, "paste"); - focusInput(cm); - } + if (!cm.options.lineWrapping) { + doc.iter(checkWidthStart, from.line + change.text.length, function (line) { + var len = lineLength(line) + if (len > display.maxLineLength) { + display.maxLine = line + display.maxLineLength = len + display.maxLineChanged = true + recomputeMaxLength = false } - catch(e){} - } + }) + if (recomputeMaxLength) { cm.curOp.updateMaxLine = true } } - function onDragStart(cm, e) { - if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return; } - if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) return; + // Adjust frontier, schedule worker + doc.frontier = Math.min(doc.frontier, from.line) + startWorker(cm, 400) - var txt = cm.getSelection(); - e.dataTransfer.setData("Text", txt); + var lendiff = change.text.length - (to.line - from.line) - 1 + // Remember that these lines changed, for updating the display + if (change.full) + { regChange(cm) } + else if (from.line == to.line && change.text.length == 1 && !isWholeLineUpdate(cm.doc, change)) + { regLineChange(cm, from.line, "text") } + else + { regChange(cm, from.line, to.line + 1, lendiff) } - // Use dummy image instead of default browsers image. - // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there. - if (e.dataTransfer.setDragImage && !safari) { - var img = elt("img", null, null, "position: fixed; left: 0; top: 0;"); - img.src = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="; - if (opera) { - img.width = img.height = 1; - cm.display.wrapper.appendChild(img); - // Force a relayout, or Opera won't use our image for some obscure reason - img._top = img.offsetTop; + var changesHandler = hasHandler(cm, "changes"), changeHandler = hasHandler(cm, "change") + if (changeHandler || changesHandler) { + var obj = { + from: from, to: to, + text: change.text, + removed: change.removed, + origin: change.origin + } + if (changeHandler) { signalLater(cm, "change", cm, obj) } + if (changesHandler) { (cm.curOp.changeObjs || (cm.curOp.changeObjs = [])).push(obj) } + } + cm.display.selForContextMenu = null +} + +function replaceRange(doc, code, from, to, origin) { + if (!to) { to = from } + if (cmp(to, from) < 0) { var tmp = to; to = from; from = tmp } + if (typeof code == "string") { code = doc.splitLines(code) } + makeChange(doc, {from: from, to: to, text: code, origin: origin}) +} + +// Rebasing/resetting history to deal with externally-sourced changes + +function rebaseHistSelSingle(pos, from, to, diff) { + if (to < pos.line) { + pos.line += diff + } else if (from < pos.line) { + pos.line = from + pos.ch = 0 + } +} + +// Tries to rebase an array of history events given a change in the +// document. If the change touches the same lines as the event, the +// event, and everything 'behind' it, is discarded. If the change is +// before the event, the event's positions are updated. Uses a +// copy-on-write scheme for the positions, to avoid having to +// reallocate them all on every rebase, but also avoid problems with +// shared position objects being unsafely updated. +function rebaseHistArray(array, from, to, diff) { + for (var i = 0; i < array.length; ++i) { + var sub = array[i], ok = true + if (sub.ranges) { + if (!sub.copied) { sub = array[i] = sub.deepCopy(); sub.copied = true } + for (var j = 0; j < sub.ranges.length; j++) { + rebaseHistSelSingle(sub.ranges[j].anchor, from, to, diff) + rebaseHistSelSingle(sub.ranges[j].head, from, to, diff) } - e.dataTransfer.setDragImage(img, 0, 0); - if (opera) img.parentNode.removeChild(img); - } - } - - function setScrollTop(cm, val) { - if (Math.abs(cm.doc.scrollTop - val) < 2) return; - cm.doc.scrollTop = val; - if (!gecko) updateDisplay(cm, [], val); - if (cm.display.scroller.scrollTop != val) cm.display.scroller.scrollTop = val; - if (cm.display.scrollbarV.scrollTop != val) cm.display.scrollbarV.scrollTop = val; - if (gecko) updateDisplay(cm, []); - startWorker(cm, 100); - } - function setScrollLeft(cm, val, isScroller) { - if (isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) return; - val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth); - cm.doc.scrollLeft = val; - alignHorizontally(cm); - if (cm.display.scroller.scrollLeft != val) cm.display.scroller.scrollLeft = val; - if (cm.display.scrollbarH.scrollLeft != val) cm.display.scrollbarH.scrollLeft = val; - } - - // Since the delta values reported on mouse wheel events are - // unstandardized between browsers and even browser versions, and - // generally horribly unpredictable, this code starts by measuring - // the scroll effect that the first few mouse wheel events have, - // and, from that, detects the way it can convert deltas to pixel - // offsets afterwards. - // - // The reason we want to know the amount a wheel event will scroll - // is that it gives us a chance to update the display before the - // actual scrolling happens, reducing flickering. - - var wheelSamples = 0, wheelPixelsPerUnit = null; - // Fill in a browser-detected starting value on browsers where we - // know one. These don't have to be accurate -- the result of them - // being wrong would just be a slight flicker on the first wheel - // scroll (if it is large enough). - if (ie) wheelPixelsPerUnit = -.53; - else if (gecko) wheelPixelsPerUnit = 15; - else if (chrome) wheelPixelsPerUnit = -.7; - else if (safari) wheelPixelsPerUnit = -1/3; - - function onScrollWheel(cm, e) { - var dx = e.wheelDeltaX, dy = e.wheelDeltaY; - if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) dx = e.detail; - if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) dy = e.detail; - else if (dy == null) dy = e.wheelDelta; - - var display = cm.display, scroll = display.scroller; - // Quit if there's nothing to scroll here - if (!(dx && scroll.scrollWidth > scroll.clientWidth || - dy && scroll.scrollHeight > scroll.clientHeight)) return; - - // Webkit browsers on OS X abort momentum scrolls when the target - // of the scroll event is removed from the scrollable element. - // This hack (see related code in patchDisplay) makes sure the - // element is kept around. - if (dy && mac && webkit) { - for (var cur = e.target; cur != scroll; cur = cur.parentNode) { - if (cur.lineObj) { - cm.display.currentWheelTarget = cur; - break; - } + continue + } + for (var j$1 = 0; j$1 < sub.changes.length; ++j$1) { + var cur = sub.changes[j$1] + if (to < cur.from.line) { + cur.from = Pos(cur.from.line + diff, cur.from.ch) + cur.to = Pos(cur.to.line + diff, cur.to.ch) + } else if (from <= cur.to.line) { + ok = false + break } } - - // On some browsers, horizontal scrolling will cause redraws to - // happen before the gutter has been realigned, causing it to - // wriggle around in a most unseemly way. When we have an - // estimated pixels/delta value, we just handle horizontal - // scrolling entirely here. It'll be slightly off from native, but - // better than glitching out. - if (dx && !gecko && !opera && wheelPixelsPerUnit != null) { - if (dy) - setScrollTop(cm, Math.max(0, Math.min(scroll.scrollTop + dy * wheelPixelsPerUnit, scroll.scrollHeight - scroll.clientHeight))); - setScrollLeft(cm, Math.max(0, Math.min(scroll.scrollLeft + dx * wheelPixelsPerUnit, scroll.scrollWidth - scroll.clientWidth))); - e_preventDefault(e); - display.wheelStartX = null; // Abort measurement, if in progress - return; - } - - if (dy && wheelPixelsPerUnit != null) { - var pixels = dy * wheelPixelsPerUnit; - var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight; - if (pixels < 0) top = Math.max(0, top + pixels - 50); - else bot = Math.min(cm.doc.height, bot + pixels + 50); - updateDisplay(cm, [], {top: top, bottom: bot}); - } - - if (wheelSamples < 20) { - if (display.wheelStartX == null) { - display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop; - display.wheelDX = dx; display.wheelDY = dy; - setTimeout(function() { - if (display.wheelStartX == null) return; - var movedX = scroll.scrollLeft - display.wheelStartX; - var movedY = scroll.scrollTop - display.wheelStartY; - var sample = (movedY && display.wheelDY && movedY / display.wheelDY) || - (movedX && display.wheelDX && movedX / display.wheelDX); - display.wheelStartX = display.wheelStartY = null; - if (!sample) return; - wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1); - ++wheelSamples; - }, 200); - } else { - display.wheelDX += dx; display.wheelDY += dy; + if (!ok) { + array.splice(0, i + 1) + i = 0 + } + } +} + +function rebaseHist(hist, change) { + var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1 + rebaseHistArray(hist.done, from, to, diff) + rebaseHistArray(hist.undone, from, to, diff) +} + +// Utility for applying a change to a line by handle or number, +// returning the number and optionally registering the line as +// changed. +function changeLine(doc, handle, changeType, op) { + var no = handle, line = handle + if (typeof handle == "number") { line = getLine(doc, clipLine(doc, handle)) } + else { no = lineNo(handle) } + if (no == null) { return null } + if (op(line, no) && doc.cm) { regLineChange(doc.cm, no, changeType) } + return line +} + +// The document is represented as a BTree consisting of leaves, with +// chunk of lines in them, and branches, with up to ten leaves or +// other branch nodes below them. The top node is always a branch +// node, and is the document object itself (meaning it has +// additional methods and properties). +// +// All nodes have parent links. The tree is used both to go from +// line numbers to line objects, and to go from objects to numbers. +// It also indexes by height, and is used to convert between height +// and line object, and to find the total height of the document. +// +// See also http://marijnhaverbeke.nl/blog/codemirror-line-tree.html + +var LeafChunk = function(lines) { + var this$1 = this; + + this.lines = lines + this.parent = null + var height = 0 + for (var i = 0; i < lines.length; ++i) { + lines[i].parent = this$1 + height += lines[i].height + } + this.height = height +}; + +LeafChunk.prototype.chunkSize = function () { return this.lines.length }; + +// Remove the n lines at offset 'at'. +LeafChunk.prototype.removeInner = function (at, n) { + var this$1 = this; + + for (var i = at, e = at + n; i < e; ++i) { + var line = this$1.lines[i] + this$1.height -= line.height + cleanUpLine(line) + signalLater(line, "delete") + } + this.lines.splice(at, n) +}; + +// Helper used to collapse a small branch into a single leaf. +LeafChunk.prototype.collapse = function (lines) { + lines.push.apply(lines, this.lines) +}; + +// Insert the given array of lines at offset 'at', count them as +// having the given height. +LeafChunk.prototype.insertInner = function (at, lines, height) { + var this$1 = this; + + this.height += height + this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at)) + for (var i = 0; i < lines.length; ++i) { lines[i].parent = this$1 } +}; + +// Used to iterate over a part of the tree. +LeafChunk.prototype.iterN = function (at, n, op) { + var this$1 = this; + + for (var e = at + n; at < e; ++at) + { if (op(this$1.lines[at])) { return true } } +}; + +var BranchChunk = function(children) { + var this$1 = this; + + this.children = children + var size = 0, height = 0 + for (var i = 0; i < children.length; ++i) { + var ch = children[i] + size += ch.chunkSize(); height += ch.height + ch.parent = this$1 + } + this.size = size + this.height = height + this.parent = null +}; + +BranchChunk.prototype.chunkSize = function () { return this.size }; + +BranchChunk.prototype.removeInner = function (at, n) { + var this$1 = this; + + this.size -= n + for (var i = 0; i < this.children.length; ++i) { + var child = this$1.children[i], sz = child.chunkSize() + if (at < sz) { + var rm = Math.min(n, sz - at), oldHeight = child.height + child.removeInner(at, rm) + this$1.height -= oldHeight - child.height + if (sz == rm) { this$1.children.splice(i--, 1); child.parent = null } + if ((n -= rm) == 0) { break } + at = 0 + } else { at -= sz } + } + // If the result is smaller than 25 lines, ensure that it is a + // single leaf node. + if (this.size - n < 25 && + (this.children.length > 1 || !(this.children[0] instanceof LeafChunk))) { + var lines = [] + this.collapse(lines) + this.children = [new LeafChunk(lines)] + this.children[0].parent = this + } +}; + +BranchChunk.prototype.collapse = function (lines) { + var this$1 = this; + + for (var i = 0; i < this.children.length; ++i) { this$1.children[i].collapse(lines) } +}; + +BranchChunk.prototype.insertInner = function (at, lines, height) { + var this$1 = this; + + this.size += lines.length + this.height += height + for (var i = 0; i < this.children.length; ++i) { + var child = this$1.children[i], sz = child.chunkSize() + if (at <= sz) { + child.insertInner(at, lines, height) + if (child.lines && child.lines.length > 50) { + // To avoid memory thrashing when child.lines is huge (e.g. first view of a large file), it's never spliced. + // Instead, small slices are taken. They're taken in order because sequential memory accesses are fastest. + var remaining = child.lines.length % 25 + 25 + for (var pos = remaining; pos < child.lines.length;) { + var leaf = new LeafChunk(child.lines.slice(pos, pos += 25)) + child.height -= leaf.height + this$1.children.splice(++i, 0, leaf) + leaf.parent = this$1 + } + child.lines = child.lines.slice(0, remaining) + this$1.maybeSpill() + } + break + } + at -= sz + } +}; + +// When a node has grown, check whether it should be split. +BranchChunk.prototype.maybeSpill = function () { + if (this.children.length <= 10) { return } + var me = this + do { + var spilled = me.children.splice(me.children.length - 5, 5) + var sibling = new BranchChunk(spilled) + if (!me.parent) { // Become the parent node + var copy = new BranchChunk(me.children) + copy.parent = me + me.children = [copy, sibling] + me = copy + } else { + me.size -= sibling.size + me.height -= sibling.height + var myIndex = indexOf(me.parent.children, me) + me.parent.children.splice(myIndex + 1, 0, sibling) + } + sibling.parent = me.parent + } while (me.children.length > 10) + me.parent.maybeSpill() +}; + +BranchChunk.prototype.iterN = function (at, n, op) { + var this$1 = this; + + for (var i = 0; i < this.children.length; ++i) { + var child = this$1.children[i], sz = child.chunkSize() + if (at < sz) { + var used = Math.min(n, sz - at) + if (child.iterN(at, used, op)) { return true } + if ((n -= used) == 0) { break } + at = 0 + } else { at -= sz } + } +}; + +// Line widgets are block elements displayed above or below a line. + +var LineWidget = function(doc, node, options) { + var this$1 = this; + + if (options) { for (var opt in options) { if (options.hasOwnProperty(opt)) + { this$1[opt] = options[opt] } } } + this.doc = doc + this.node = node +}; + +LineWidget.prototype.clear = function () { + var this$1 = this; + + var cm = this.doc.cm, ws = this.line.widgets, line = this.line, no = lineNo(line) + if (no == null || !ws) { return } + for (var i = 0; i < ws.length; ++i) { if (ws[i] == this$1) { ws.splice(i--, 1) } } + if (!ws.length) { line.widgets = null } + var height = widgetHeight(this) + updateLineHeight(line, Math.max(0, line.height - height)) + if (cm) { + runInOp(cm, function () { + adjustScrollWhenAboveVisible(cm, line, -height) + regLineChange(cm, no, "widget") + }) + signalLater(cm, "lineWidgetCleared", cm, this, no) + } +}; + +LineWidget.prototype.changed = function () { + var this$1 = this; + + var oldH = this.height, cm = this.doc.cm, line = this.line + this.height = null + var diff = widgetHeight(this) - oldH + if (!diff) { return } + updateLineHeight(line, line.height + diff) + if (cm) { + runInOp(cm, function () { + cm.curOp.forceUpdate = true + adjustScrollWhenAboveVisible(cm, line, diff) + signalLater(cm, "lineWidgetChanged", cm, this$1, lineNo(line)) + }) + } +}; +eventMixin(LineWidget) + +function adjustScrollWhenAboveVisible(cm, line, diff) { + if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop)) + { addToScrollTop(cm, diff) } +} + +function addLineWidget(doc, handle, node, options) { + var widget = new LineWidget(doc, node, options) + var cm = doc.cm + if (cm && widget.noHScroll) { cm.display.alignWidgets = true } + changeLine(doc, handle, "widget", function (line) { + var widgets = line.widgets || (line.widgets = []) + if (widget.insertAt == null) { widgets.push(widget) } + else { widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget) } + widget.line = line + if (cm && !lineIsHidden(doc, line)) { + var aboveVisible = heightAtLine(line) < doc.scrollTop + updateLineHeight(line, line.height + widgetHeight(widget)) + if (aboveVisible) { addToScrollTop(cm, widget.height) } + cm.curOp.forceUpdate = true + } + return true + }) + signalLater(cm, "lineWidgetAdded", cm, widget, typeof handle == "number" ? handle : lineNo(handle)) + return widget +} + +// TEXTMARKERS + +// Created with markText and setBookmark methods. A TextMarker is a +// handle that can be used to clear or find a marked position in the +// document. Line objects hold arrays (markedSpans) containing +// {from, to, marker} object pointing to such marker objects, and +// indicating that such a marker is present on that line. Multiple +// lines may point to the same marker when it spans across lines. +// The spans will have null for their from/to properties when the +// marker continues beyond the start/end of the line. Markers have +// links back to the lines they currently touch. + +// Collapsed markers have unique ids, in order to be able to order +// them, which is needed for uniquely determining an outer marker +// when they overlap (they may nest, but not partially overlap). +var nextMarkerId = 0 + +var TextMarker = function(doc, type) { + this.lines = [] + this.type = type + this.doc = doc + this.id = ++nextMarkerId +}; + +// Clear the marker. +TextMarker.prototype.clear = function () { + var this$1 = this; + + if (this.explicitlyCleared) { return } + var cm = this.doc.cm, withOp = cm && !cm.curOp + if (withOp) { startOperation(cm) } + if (hasHandler(this, "clear")) { + var found = this.find() + if (found) { signalLater(this, "clear", found.from, found.to) } + } + var min = null, max = null + for (var i = 0; i < this.lines.length; ++i) { + var line = this$1.lines[i] + var span = getMarkedSpanFor(line.markedSpans, this$1) + if (cm && !this$1.collapsed) { regLineChange(cm, lineNo(line), "text") } + else if (cm) { + if (span.to != null) { max = lineNo(line) } + if (span.from != null) { min = lineNo(line) } + } + line.markedSpans = removeMarkedSpan(line.markedSpans, span) + if (span.from == null && this$1.collapsed && !lineIsHidden(this$1.doc, line) && cm) + { updateLineHeight(line, textHeight(cm.display)) } + } + if (cm && this.collapsed && !cm.options.lineWrapping) { for (var i$1 = 0; i$1 < this.lines.length; ++i$1) { + var visual = visualLine(this$1.lines[i$1]), len = lineLength(visual) + if (len > cm.display.maxLineLength) { + cm.display.maxLine = visual + cm.display.maxLineLength = len + cm.display.maxLineChanged = true + } + } } + + if (min != null && cm && this.collapsed) { regChange(cm, min, max + 1) } + this.lines.length = 0 + this.explicitlyCleared = true + if (this.atomic && this.doc.cantEdit) { + this.doc.cantEdit = false + if (cm) { reCheckSelection(cm.doc) } + } + if (cm) { signalLater(cm, "markerCleared", cm, this, min, max) } + if (withOp) { endOperation(cm) } + if (this.parent) { this.parent.clear() } +}; + +// Find the position of the marker in the document. Returns a {from, +// to} object by default. Side can be passed to get a specific side +// -- 0 (both), -1 (left), or 1 (right). When lineObj is true, the +// Pos objects returned contain a line object, rather than a line +// number (used to prevent looking up the same line twice). +TextMarker.prototype.find = function (side, lineObj) { + var this$1 = this; + + if (side == null && this.type == "bookmark") { side = 1 } + var from, to + for (var i = 0; i < this.lines.length; ++i) { + var line = this$1.lines[i] + var span = getMarkedSpanFor(line.markedSpans, this$1) + if (span.from != null) { + from = Pos(lineObj ? line : lineNo(line), span.from) + if (side == -1) { return from } + } + if (span.to != null) { + to = Pos(lineObj ? line : lineNo(line), span.to) + if (side == 1) { return to } + } + } + return from && {from: from, to: to} +}; + +// Signals that the marker's widget changed, and surrounding layout +// should be recomputed. +TextMarker.prototype.changed = function () { + var this$1 = this; + + var pos = this.find(-1, true), widget = this, cm = this.doc.cm + if (!pos || !cm) { return } + runInOp(cm, function () { + var line = pos.line, lineN = lineNo(pos.line) + var view = findViewForLine(cm, lineN) + if (view) { + clearLineMeasurementCacheFor(view) + cm.curOp.selectionChanged = cm.curOp.forceUpdate = true + } + cm.curOp.updateMaxLine = true + if (!lineIsHidden(widget.doc, line) && widget.height != null) { + var oldHeight = widget.height + widget.height = null + var dHeight = widgetHeight(widget) - oldHeight + if (dHeight) + { updateLineHeight(line, line.height + dHeight) } + } + signalLater(cm, "markerChanged", cm, this$1) + }) +}; + +TextMarker.prototype.attachLine = function (line) { + if (!this.lines.length && this.doc.cm) { + var op = this.doc.cm.curOp + if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1) + { (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this) } + } + this.lines.push(line) +}; + +TextMarker.prototype.detachLine = function (line) { + this.lines.splice(indexOf(this.lines, line), 1) + if (!this.lines.length && this.doc.cm) { + var op = this.doc.cm.curOp + ;(op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this) + } +}; +eventMixin(TextMarker) + +// Create a marker, wire it up to the right lines, and +function markText(doc, from, to, options, type) { + // Shared markers (across linked documents) are handled separately + // (markTextShared will call out to this again, once per + // document). + if (options && options.shared) { return markTextShared(doc, from, to, options, type) } + // Ensure we are in an operation. + if (doc.cm && !doc.cm.curOp) { return operation(doc.cm, markText)(doc, from, to, options, type) } + + var marker = new TextMarker(doc, type), diff = cmp(from, to) + if (options) { copyObj(options, marker, false) } + // Don't connect empty markers unless clearWhenEmpty is false + if (diff > 0 || diff == 0 && marker.clearWhenEmpty !== false) + { return marker } + if (marker.replacedWith) { + // Showing up as a widget implies collapsed (widget replaces text) + marker.collapsed = true + marker.widgetNode = eltP("span", [marker.replacedWith], "CodeMirror-widget") + if (!options.handleMouseEvents) { marker.widgetNode.setAttribute("cm-ignore-events", "true") } + if (options.insertLeft) { marker.widgetNode.insertLeft = true } + } + if (marker.collapsed) { + if (conflictingCollapsedRange(doc, from.line, from, to, marker) || + from.line != to.line && conflictingCollapsedRange(doc, to.line, from, to, marker)) + { throw new Error("Inserting collapsed marker partially overlapping an existing one") } + seeCollapsedSpans() + } + + if (marker.addToHistory) + { addChangeToHistory(doc, {from: from, to: to, origin: "markText"}, doc.sel, NaN) } + + var curLine = from.line, cm = doc.cm, updateMaxLine + doc.iter(curLine, to.line + 1, function (line) { + if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(line) == cm.display.maxLine) + { updateMaxLine = true } + if (marker.collapsed && curLine != from.line) { updateLineHeight(line, 0) } + addMarkedSpan(line, new MarkedSpan(marker, + curLine == from.line ? from.ch : null, + curLine == to.line ? to.ch : null)) + ++curLine + }) + // lineIsHidden depends on the presence of the spans, so needs a second pass + if (marker.collapsed) { doc.iter(from.line, to.line + 1, function (line) { + if (lineIsHidden(doc, line)) { updateLineHeight(line, 0) } + }) } + + if (marker.clearOnEnter) { on(marker, "beforeCursorEnter", function () { return marker.clear(); }) } + + if (marker.readOnly) { + seeReadOnlySpans() + if (doc.history.done.length || doc.history.undone.length) + { doc.clearHistory() } + } + if (marker.collapsed) { + marker.id = ++nextMarkerId + marker.atomic = true + } + if (cm) { + // Sync editor state + if (updateMaxLine) { cm.curOp.updateMaxLine = true } + if (marker.collapsed) + { regChange(cm, from.line, to.line + 1) } + else if (marker.className || marker.title || marker.startStyle || marker.endStyle || marker.css) + { for (var i = from.line; i <= to.line; i++) { regLineChange(cm, i, "text") } } + if (marker.atomic) { reCheckSelection(cm.doc) } + signalLater(cm, "markerAdded", cm, marker) + } + return marker +} + +// SHARED TEXTMARKERS + +// A shared marker spans multiple linked documents. It is +// implemented as a meta-marker-object controlling multiple normal +// markers. +var SharedTextMarker = function(markers, primary) { + var this$1 = this; + + this.markers = markers + this.primary = primary + for (var i = 0; i < markers.length; ++i) + { markers[i].parent = this$1 } +}; + +SharedTextMarker.prototype.clear = function () { + var this$1 = this; + + if (this.explicitlyCleared) { return } + this.explicitlyCleared = true + for (var i = 0; i < this.markers.length; ++i) + { this$1.markers[i].clear() } + signalLater(this, "clear") +}; + +SharedTextMarker.prototype.find = function (side, lineObj) { + return this.primary.find(side, lineObj) +}; +eventMixin(SharedTextMarker) + +function markTextShared(doc, from, to, options, type) { + options = copyObj(options) + options.shared = false + var markers = [markText(doc, from, to, options, type)], primary = markers[0] + var widget = options.widgetNode + linkedDocs(doc, function (doc) { + if (widget) { options.widgetNode = widget.cloneNode(true) } + markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type)) + for (var i = 0; i < doc.linked.length; ++i) + { if (doc.linked[i].isParent) { return } } + primary = lst(markers) + }) + return new SharedTextMarker(markers, primary) +} + +function findSharedMarkers(doc) { + return doc.findMarks(Pos(doc.first, 0), doc.clipPos(Pos(doc.lastLine())), function (m) { return m.parent; }) +} + +function copySharedMarkers(doc, markers) { + for (var i = 0; i < markers.length; i++) { + var marker = markers[i], pos = marker.find() + var mFrom = doc.clipPos(pos.from), mTo = doc.clipPos(pos.to) + if (cmp(mFrom, mTo)) { + var subMark = markText(doc, mFrom, mTo, marker.primary, marker.primary.type) + marker.markers.push(subMark) + subMark.parent = marker + } + } +} + +function detachSharedMarkers(markers) { + var loop = function ( i ) { + var marker = markers[i], linked = [marker.primary.doc] + linkedDocs(marker.primary.doc, function (d) { return linked.push(d); }) + for (var j = 0; j < marker.markers.length; j++) { + var subMarker = marker.markers[j] + if (indexOf(linked, subMarker.doc) == -1) { + subMarker.parent = null + marker.markers.splice(j--, 1) } } - } + }; - function doHandleBinding(cm, bound, dropShift) { - if (typeof bound == "string") { - bound = commands[bound]; - if (!bound) return false; - } - // Ensure previous input has been read, so that the handler sees a - // consistent view of the document - if (cm.display.pollingFast && readInput(cm)) cm.display.pollingFast = false; - var doc = cm.doc, prevShift = doc.sel.shift, done = false; - try { - if (isReadOnly(cm)) cm.state.suppressEdits = true; - if (dropShift) doc.sel.shift = false; - done = bound(cm) != Pass; - } finally { - doc.sel.shift = prevShift; - cm.state.suppressEdits = false; - } - return done; - } - - function allKeyMaps(cm) { - var maps = cm.state.keyMaps.slice(0); - if (cm.options.extraKeys) maps.push(cm.options.extraKeys); - maps.push(cm.options.keyMap); - return maps; - } - - var maybeTransition; - function handleKeyBinding(cm, e) { - // Handle auto keymap transitions - var startMap = getKeyMap(cm.options.keyMap), next = startMap.auto; - clearTimeout(maybeTransition); - if (next && !isModifierKey(e)) maybeTransition = setTimeout(function() { - if (getKeyMap(cm.options.keyMap) == startMap) { - cm.options.keyMap = (next.call ? next.call(null, cm) : next); - keyMapChanged(cm); + for (var i = 0; i < markers.length; i++) loop( i ); +} + +var nextDocId = 0 +var Doc = function(text, mode, firstLine, lineSep, direction) { + if (!(this instanceof Doc)) { return new Doc(text, mode, firstLine, lineSep, direction) } + if (firstLine == null) { firstLine = 0 } + + BranchChunk.call(this, [new LeafChunk([new Line("", null)])]) + this.first = firstLine + this.scrollTop = this.scrollLeft = 0 + this.cantEdit = false + this.cleanGeneration = 1 + this.frontier = firstLine + var start = Pos(firstLine, 0) + this.sel = simpleSelection(start) + this.history = new History(null) + this.id = ++nextDocId + this.modeOption = mode + this.lineSep = lineSep + this.direction = (direction == "rtl") ? "rtl" : "ltr" + this.extend = false + + if (typeof text == "string") { text = this.splitLines(text) } + updateDoc(this, {from: start, to: start, text: text}) + setSelection(this, simpleSelection(start), sel_dontScroll) +} + +Doc.prototype = createObj(BranchChunk.prototype, { + constructor: Doc, + // Iterate over the document. Supports two forms -- with only one + // argument, it calls that for each line in the document. With + // three, it iterates over the range given by the first two (with + // the second being non-inclusive). + iter: function(from, to, op) { + if (op) { this.iterN(from - this.first, to - from, op) } + else { this.iterN(this.first, this.first + this.size, from) } + }, + + // Non-public interface for adding and removing lines. + insert: function(at, lines) { + var height = 0 + for (var i = 0; i < lines.length; ++i) { height += lines[i].height } + this.insertInner(at - this.first, lines, height) + }, + remove: function(at, n) { this.removeInner(at - this.first, n) }, + + // From here, the methods are part of the public interface. Most + // are also available from CodeMirror (editor) instances. + + getValue: function(lineSep) { + var lines = getLines(this, this.first, this.first + this.size) + if (lineSep === false) { return lines } + return lines.join(lineSep || this.lineSeparator()) + }, + setValue: docMethodOp(function(code) { + var top = Pos(this.first, 0), last = this.first + this.size - 1 + makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length), + text: this.splitLines(code), origin: "setValue", full: true}, true) + if (this.cm) { scrollToCoords(this.cm, 0, 0) } + setSelection(this, simpleSelection(top), sel_dontScroll) + }), + replaceRange: function(code, from, to, origin) { + from = clipPos(this, from) + to = to ? clipPos(this, to) : from + replaceRange(this, code, from, to, origin) + }, + getRange: function(from, to, lineSep) { + var lines = getBetween(this, clipPos(this, from), clipPos(this, to)) + if (lineSep === false) { return lines } + return lines.join(lineSep || this.lineSeparator()) + }, + + getLine: function(line) {var l = this.getLineHandle(line); return l && l.text}, + + getLineHandle: function(line) {if (isLine(this, line)) { return getLine(this, line) }}, + getLineNumber: function(line) {return lineNo(line)}, + + getLineHandleVisualStart: function(line) { + if (typeof line == "number") { line = getLine(this, line) } + return visualLine(line) + }, + + lineCount: function() {return this.size}, + firstLine: function() {return this.first}, + lastLine: function() {return this.first + this.size - 1}, + + clipPos: function(pos) {return clipPos(this, pos)}, + + getCursor: function(start) { + var range = this.sel.primary(), pos + if (start == null || start == "head") { pos = range.head } + else if (start == "anchor") { pos = range.anchor } + else if (start == "end" || start == "to" || start === false) { pos = range.to() } + else { pos = range.from() } + return pos + }, + listSelections: function() { return this.sel.ranges }, + somethingSelected: function() {return this.sel.somethingSelected()}, + + setCursor: docMethodOp(function(line, ch, options) { + setSimpleSelection(this, clipPos(this, typeof line == "number" ? Pos(line, ch || 0) : line), null, options) + }), + setSelection: docMethodOp(function(anchor, head, options) { + setSimpleSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), options) + }), + extendSelection: docMethodOp(function(head, other, options) { + extendSelection(this, clipPos(this, head), other && clipPos(this, other), options) + }), + extendSelections: docMethodOp(function(heads, options) { + extendSelections(this, clipPosArray(this, heads), options) + }), + extendSelectionsBy: docMethodOp(function(f, options) { + var heads = map(this.sel.ranges, f) + extendSelections(this, clipPosArray(this, heads), options) + }), + setSelections: docMethodOp(function(ranges, primary, options) { + var this$1 = this; + + if (!ranges.length) { return } + var out = [] + for (var i = 0; i < ranges.length; i++) + { out[i] = new Range(clipPos(this$1, ranges[i].anchor), + clipPos(this$1, ranges[i].head)) } + if (primary == null) { primary = Math.min(ranges.length - 1, this.sel.primIndex) } + setSelection(this, normalizeSelection(out, primary), options) + }), + addSelection: docMethodOp(function(anchor, head, options) { + var ranges = this.sel.ranges.slice(0) + ranges.push(new Range(clipPos(this, anchor), clipPos(this, head || anchor))) + setSelection(this, normalizeSelection(ranges, ranges.length - 1), options) + }), + + getSelection: function(lineSep) { + var this$1 = this; + + var ranges = this.sel.ranges, lines + for (var i = 0; i < ranges.length; i++) { + var sel = getBetween(this$1, ranges[i].from(), ranges[i].to()) + lines = lines ? lines.concat(sel) : sel + } + if (lineSep === false) { return lines } + else { return lines.join(lineSep || this.lineSeparator()) } + }, + getSelections: function(lineSep) { + var this$1 = this; + + var parts = [], ranges = this.sel.ranges + for (var i = 0; i < ranges.length; i++) { + var sel = getBetween(this$1, ranges[i].from(), ranges[i].to()) + if (lineSep !== false) { sel = sel.join(lineSep || this$1.lineSeparator()) } + parts[i] = sel + } + return parts + }, + replaceSelection: function(code, collapse, origin) { + var dup = [] + for (var i = 0; i < this.sel.ranges.length; i++) + { dup[i] = code } + this.replaceSelections(dup, collapse, origin || "+input") + }, + replaceSelections: docMethodOp(function(code, collapse, origin) { + var this$1 = this; + + var changes = [], sel = this.sel + for (var i = 0; i < sel.ranges.length; i++) { + var range = sel.ranges[i] + changes[i] = {from: range.from(), to: range.to(), text: this$1.splitLines(code[i]), origin: origin} + } + var newSel = collapse && collapse != "end" && computeReplacedSel(this, changes, collapse) + for (var i$1 = changes.length - 1; i$1 >= 0; i$1--) + { makeChange(this$1, changes[i$1]) } + if (newSel) { setSelectionReplaceHistory(this, newSel) } + else if (this.cm) { ensureCursorVisible(this.cm) } + }), + undo: docMethodOp(function() {makeChangeFromHistory(this, "undo")}), + redo: docMethodOp(function() {makeChangeFromHistory(this, "redo")}), + undoSelection: docMethodOp(function() {makeChangeFromHistory(this, "undo", true)}), + redoSelection: docMethodOp(function() {makeChangeFromHistory(this, "redo", true)}), + + setExtending: function(val) {this.extend = val}, + getExtending: function() {return this.extend}, + + historySize: function() { + var hist = this.history, done = 0, undone = 0 + for (var i = 0; i < hist.done.length; i++) { if (!hist.done[i].ranges) { ++done } } + for (var i$1 = 0; i$1 < hist.undone.length; i$1++) { if (!hist.undone[i$1].ranges) { ++undone } } + return {undo: done, redo: undone} + }, + clearHistory: function() {this.history = new History(this.history.maxGeneration)}, + + markClean: function() { + this.cleanGeneration = this.changeGeneration(true) + }, + changeGeneration: function(forceSplit) { + if (forceSplit) + { this.history.lastOp = this.history.lastSelOp = this.history.lastOrigin = null } + return this.history.generation + }, + isClean: function (gen) { + return this.history.generation == (gen || this.cleanGeneration) + }, + + getHistory: function() { + return {done: copyHistoryArray(this.history.done), + undone: copyHistoryArray(this.history.undone)} + }, + setHistory: function(histData) { + var hist = this.history = new History(this.history.maxGeneration) + hist.done = copyHistoryArray(histData.done.slice(0), null, true) + hist.undone = copyHistoryArray(histData.undone.slice(0), null, true) + }, + + setGutterMarker: docMethodOp(function(line, gutterID, value) { + return changeLine(this, line, "gutter", function (line) { + var markers = line.gutterMarkers || (line.gutterMarkers = {}) + markers[gutterID] = value + if (!value && isEmpty(markers)) { line.gutterMarkers = null } + return true + }) + }), + + clearGutter: docMethodOp(function(gutterID) { + var this$1 = this; + + this.iter(function (line) { + if (line.gutterMarkers && line.gutterMarkers[gutterID]) { + changeLine(this$1, line, "gutter", function () { + line.gutterMarkers[gutterID] = null + if (isEmpty(line.gutterMarkers)) { line.gutterMarkers = null } + return true + }) } - }, 50); - - var name = keyName(e, true), handled = false; - if (!name) return false; - var keymaps = allKeyMaps(cm); - - if (e.shiftKey) { - // First try to resolve full name (including 'Shift-'). Failing - // that, see if there is a cursor-motion command (starting with - // 'go') bound to the keyname without 'Shift-'. - handled = lookupKey("Shift-" + name, keymaps, function(b) {return doHandleBinding(cm, b, true);}) - || lookupKey(name, keymaps, function(b) { - if (typeof b == "string" ? /^go[A-Z]/.test(b) : b.motion) - return doHandleBinding(cm, b); - }); + }) + }), + + lineInfo: function(line) { + var n + if (typeof line == "number") { + if (!isLine(this, line)) { return null } + n = line + line = getLine(this, line) + if (!line) { return null } } else { - handled = lookupKey(name, keymaps, function(b) { return doHandleBinding(cm, b); }); - } - - if (handled) { - e_preventDefault(e); - restartBlink(cm); - if (ie_lt9) { e.oldKeyCode = e.keyCode; e.keyCode = 0; } - signalLater(cm, "keyHandled", cm, name, e); - } - return handled; - } - - function handleCharBinding(cm, e, ch) { - var handled = lookupKey("'" + ch + "'", allKeyMaps(cm), - function(b) { return doHandleBinding(cm, b, true); }); - if (handled) { - e_preventDefault(e); - restartBlink(cm); - signalLater(cm, "keyHandled", cm, "'" + ch + "'", e); - } - return handled; - } - - function onKeyUp(e) { - var cm = this; - if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return; - if (e.keyCode == 16) cm.doc.sel.shift = false; - } - - var lastStoppedKey = null; - function onKeyDown(e) { - var cm = this; - ensureFocus(cm); - if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return; - if (old_ie && e.keyCode == 27) e.returnValue = false; - var code = e.keyCode; - // IE does strange things with escape. - cm.doc.sel.shift = code == 16 || e.shiftKey; - // First give onKeyEvent option a chance to handle this. - var handled = handleKeyBinding(cm, e); - if (opera) { - lastStoppedKey = handled ? code : null; - // Opera has no cut event... we try to at least catch the key combo - if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey)) - cm.replaceSelection(""); - } - } - - function onKeyPress(e) { - var cm = this; - if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return; - var keyCode = e.keyCode, charCode = e.charCode; - if (opera && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return;} - if (((opera && (!e.which || e.which < 10)) || khtml) && handleKeyBinding(cm, e)) return; - var ch = String.fromCharCode(charCode == null ? keyCode : charCode); - if (handleCharBinding(cm, e, ch)) return; - if (ie && !ie_lt9) cm.display.inputHasSelection = null; - fastPoll(cm); - } - - function onFocus(cm) { - if (cm.options.readOnly == "nocursor") return; - if (!cm.state.focused) { - signal(cm, "focus", cm); - cm.state.focused = true; - if (cm.display.wrapper.className.search(/\bCodeMirror-focused\b/) == -1) - cm.display.wrapper.className += " CodeMirror-focused"; - if (!cm.curOp) { - resetInput(cm, true); - if (webkit) setTimeout(bind(resetInput, cm, true), 0); // Issue #1730 + n = lineNo(line) + if (n == null) { return null } + } + return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers, + textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass, + widgets: line.widgets} + }, + + addLineClass: docMethodOp(function(handle, where, cls) { + return changeLine(this, handle, where == "gutter" ? "gutter" : "class", function (line) { + var prop = where == "text" ? "textClass" + : where == "background" ? "bgClass" + : where == "gutter" ? "gutterClass" : "wrapClass" + if (!line[prop]) { line[prop] = cls } + else if (classTest(cls).test(line[prop])) { return false } + else { line[prop] += " " + cls } + return true + }) + }), + removeLineClass: docMethodOp(function(handle, where, cls) { + return changeLine(this, handle, where == "gutter" ? "gutter" : "class", function (line) { + var prop = where == "text" ? "textClass" + : where == "background" ? "bgClass" + : where == "gutter" ? "gutterClass" : "wrapClass" + var cur = line[prop] + if (!cur) { return false } + else if (cls == null) { line[prop] = null } + else { + var found = cur.match(classTest(cls)) + if (!found) { return false } + var end = found.index + found[0].length + line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? "" : " ") + cur.slice(end) || null } + return true + }) + }), + + addLineWidget: docMethodOp(function(handle, node, options) { + return addLineWidget(this, handle, node, options) + }), + removeLineWidget: function(widget) { widget.clear() }, + + markText: function(from, to, options) { + return markText(this, clipPos(this, from), clipPos(this, to), options, options && options.type || "range") + }, + setBookmark: function(pos, options) { + var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options), + insertLeft: options && options.insertLeft, + clearWhenEmpty: false, shared: options && options.shared, + handleMouseEvents: options && options.handleMouseEvents} + pos = clipPos(this, pos) + return markText(this, pos, pos, realOpts, "bookmark") + }, + findMarksAt: function(pos) { + pos = clipPos(this, pos) + var markers = [], spans = getLine(this, pos.line).markedSpans + if (spans) { for (var i = 0; i < spans.length; ++i) { + var span = spans[i] + if ((span.from == null || span.from <= pos.ch) && + (span.to == null || span.to >= pos.ch)) + { markers.push(span.marker.parent || span.marker) } + } } + return markers + }, + findMarks: function(from, to, filter) { + from = clipPos(this, from); to = clipPos(this, to) + var found = [], lineNo = from.line + this.iter(from.line, to.line + 1, function (line) { + var spans = line.markedSpans + if (spans) { for (var i = 0; i < spans.length; i++) { + var span = spans[i] + if (!(span.to != null && lineNo == from.line && from.ch >= span.to || + span.from == null && lineNo != from.line || + span.from != null && lineNo == to.line && span.from >= to.ch) && + (!filter || filter(span.marker))) + { found.push(span.marker.parent || span.marker) } + } } + ++lineNo + }) + return found + }, + getAllMarks: function() { + var markers = [] + this.iter(function (line) { + var sps = line.markedSpans + if (sps) { for (var i = 0; i < sps.length; ++i) + { if (sps[i].from != null) { markers.push(sps[i].marker) } } } + }) + return markers + }, + + posFromIndex: function(off) { + var ch, lineNo = this.first, sepSize = this.lineSeparator().length + this.iter(function (line) { + var sz = line.text.length + sepSize + if (sz > off) { ch = off; return true } + off -= sz + ++lineNo + }) + return clipPos(this, Pos(lineNo, ch)) + }, + indexFromPos: function (coords) { + coords = clipPos(this, coords) + var index = coords.ch + if (coords.line < this.first || coords.ch < 0) { return 0 } + var sepSize = this.lineSeparator().length + this.iter(this.first, coords.line, function (line) { // iter aborts when callback returns a truthy value + index += line.text.length + sepSize + }) + return index + }, + + copy: function(copyHistory) { + var doc = new Doc(getLines(this, this.first, this.first + this.size), + this.modeOption, this.first, this.lineSep, this.direction) + doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft + doc.sel = this.sel + doc.extend = false + if (copyHistory) { + doc.history.undoDepth = this.history.undoDepth + doc.setHistory(this.getHistory()) + } + return doc + }, + + linkedDoc: function(options) { + if (!options) { options = {} } + var from = this.first, to = this.first + this.size + if (options.from != null && options.from > from) { from = options.from } + if (options.to != null && options.to < to) { to = options.to } + var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from, this.lineSep, this.direction) + if (options.sharedHist) { copy.history = this.history + ; }(this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist}) + copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}] + copySharedMarkers(copy, findSharedMarkers(this)) + return copy + }, + unlinkDoc: function(other) { + var this$1 = this; + + if (other instanceof CodeMirror) { other = other.doc } + if (this.linked) { for (var i = 0; i < this.linked.length; ++i) { + var link = this$1.linked[i] + if (link.doc != other) { continue } + this$1.linked.splice(i, 1) + other.unlinkDoc(this$1) + detachSharedMarkers(findSharedMarkers(this$1)) + break + } } + // If the histories were shared, split them again + if (other.history == this.history) { + var splitIds = [other.id] + linkedDocs(other, function (doc) { return splitIds.push(doc.id); }, true) + other.history = new History(null) + other.history.done = copyHistoryArray(this.history.done, splitIds) + other.history.undone = copyHistoryArray(this.history.undone, splitIds) + } + }, + iterLinkedDocs: function(f) {linkedDocs(this, f)}, + + getMode: function() {return this.mode}, + getEditor: function() {return this.cm}, + + splitLines: function(str) { + if (this.lineSep) { return str.split(this.lineSep) } + return splitLinesAuto(str) + }, + lineSeparator: function() { return this.lineSep || "\n" }, + + setDirection: docMethodOp(function (dir) { + if (dir != "rtl") { dir = "ltr" } + if (dir == this.direction) { return } + this.direction = dir + this.iter(function (line) { return line.order = null; }) + if (this.cm) { directionChanged(this.cm) } + }) +}) + +// Public alias. +Doc.prototype.eachLine = Doc.prototype.iter + +// Kludge to work around strange IE behavior where it'll sometimes +// re-fire a series of drag-related events right after the drop (#1551) +var lastDrop = 0 + +function onDrop(e) { + var cm = this + clearDragCursor(cm) + if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) + { return } + e_preventDefault(e) + if (ie) { lastDrop = +new Date } + var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files + if (!pos || cm.isReadOnly()) { return } + // Might be a file drop, in which case we simply extract the text + // and insert it. + if (files && files.length && window.FileReader && window.File) { + var n = files.length, text = Array(n), read = 0 + var loadFile = function (file, i) { + if (cm.options.allowDropFileTypes && + indexOf(cm.options.allowDropFileTypes, file.type) == -1) + { return } + + var reader = new FileReader + reader.onload = operation(cm, function () { + var content = reader.result + if (/[\x00-\x08\x0e-\x1f]{2}/.test(content)) { content = "" } + text[i] = content + if (++read == n) { + pos = clipPos(cm.doc, pos) + var change = {from: pos, to: pos, + text: cm.doc.splitLines(text.join(cm.doc.lineSeparator())), + origin: "paste"} + makeChange(cm.doc, change) + setSelectionReplaceHistory(cm.doc, simpleSelection(pos, changeEnd(change))) + } + }) + reader.readAsText(file) + } + for (var i = 0; i < n; ++i) { loadFile(files[i], i) } + } else { // Normal drop + // Don't do a replace if the drop happened inside of the selected text. + if (cm.state.draggingText && cm.doc.sel.contains(pos) > -1) { + cm.state.draggingText(e) + // Ensure the editor is re-focused + setTimeout(function () { return cm.display.input.focus(); }, 20) + return } - slowPoll(cm); - restartBlink(cm); - } - function onBlur(cm) { - if (cm.state.focused) { - signal(cm, "blur", cm); - cm.state.focused = false; - cm.display.wrapper.className = cm.display.wrapper.className.replace(" CodeMirror-focused", ""); - } - clearInterval(cm.display.blinker); - setTimeout(function() {if (!cm.state.focused) cm.doc.sel.shift = false;}, 150); - } - - var detectingSelectAll; - function onContextMenu(cm, e) { - if (signalDOMEvent(cm, e, "contextmenu")) return; - var display = cm.display, sel = cm.doc.sel; - if (eventInWidget(display, e) || contextMenuInGutter(cm, e)) return; - - var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop; - if (!pos || opera) return; // Opera is difficult. - - // Reset the current text selection only if the click is done outside of the selection - // and 'resetSelectionOnContextMenu' option is true. - var reset = cm.options.resetSelectionOnContextMenu; - if (reset && (posEq(sel.from, sel.to) || posLess(pos, sel.from) || !posLess(pos, sel.to))) - operation(cm, setSelection)(cm.doc, pos, pos); - - var oldCSS = display.input.style.cssText; - display.inputDiv.style.position = "absolute"; - display.input.style.cssText = "position: fixed; width: 30px; height: 30px; top: " + (e.clientY - 5) + - "px; left: " + (e.clientX - 5) + "px; z-index: 1000; background: " + - (ie ? "rgba(255, 255, 255, .05)" : "transparent") + - "; outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);"; - focusInput(cm); - resetInput(cm, true); - // Adds "Select all" to context menu in FF - if (posEq(sel.from, sel.to)) display.input.value = display.prevInput = " "; - - function prepareSelectAllHack() { - if (display.input.selectionStart != null) { - var extval = display.input.value = "\u200b" + (posEq(sel.from, sel.to) ? "" : display.input.value); - display.prevInput = "\u200b"; - display.input.selectionStart = 1; display.input.selectionEnd = extval.length; + try { + var text$1 = e.dataTransfer.getData("Text") + if (text$1) { + var selected + if (cm.state.draggingText && !cm.state.draggingText.copy) + { selected = cm.listSelections() } + setSelectionNoUndo(cm.doc, simpleSelection(pos, pos)) + if (selected) { for (var i$1 = 0; i$1 < selected.length; ++i$1) + { replaceRange(cm.doc, "", selected[i$1].anchor, selected[i$1].head, "drag") } } + cm.replaceSelection(text$1, "around", "paste") + cm.display.input.focus() } } - function rehide() { - display.inputDiv.style.position = "relative"; - display.input.style.cssText = oldCSS; - if (ie_lt9) display.scrollbarV.scrollTop = display.scroller.scrollTop = scrollPos; - slowPoll(cm); - - // Try to detect the user choosing select-all - if (display.input.selectionStart != null) { - if (!ie || ie_lt9) prepareSelectAllHack(); - clearTimeout(detectingSelectAll); - var i = 0, poll = function(){ - if (display.prevInput == "\u200b" && display.input.selectionStart == 0) - operation(cm, commands.selectAll)(cm); - else if (i++ < 10) detectingSelectAll = setTimeout(poll, 500); - else resetInput(cm); - }; - detectingSelectAll = setTimeout(poll, 200); + catch(e){} + } +} + +function onDragStart(cm, e) { + if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return } + if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) { return } + + e.dataTransfer.setData("Text", cm.getSelection()) + e.dataTransfer.effectAllowed = "copyMove" + + // Use dummy image instead of default browsers image. + // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there. + if (e.dataTransfer.setDragImage && !safari) { + var img = elt("img", null, null, "position: fixed; left: 0; top: 0;") + img.src = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" + if (presto) { + img.width = img.height = 1 + cm.display.wrapper.appendChild(img) + // Force a relayout, or Opera won't use our image for some obscure reason + img._top = img.offsetTop + } + e.dataTransfer.setDragImage(img, 0, 0) + if (presto) { img.parentNode.removeChild(img) } + } +} + +function onDragOver(cm, e) { + var pos = posFromMouse(cm, e) + if (!pos) { return } + var frag = document.createDocumentFragment() + drawSelectionCursor(cm, pos, frag) + if (!cm.display.dragCursor) { + cm.display.dragCursor = elt("div", null, "CodeMirror-cursors CodeMirror-dragcursors") + cm.display.lineSpace.insertBefore(cm.display.dragCursor, cm.display.cursorDiv) + } + removeChildrenAndAdd(cm.display.dragCursor, frag) +} + +function clearDragCursor(cm) { + if (cm.display.dragCursor) { + cm.display.lineSpace.removeChild(cm.display.dragCursor) + cm.display.dragCursor = null + } +} + +// These must be handled carefully, because naively registering a +// handler for each editor will cause the editors to never be +// garbage collected. + +function forEachCodeMirror(f) { + if (!document.body.getElementsByClassName) { return } + var byClass = document.body.getElementsByClassName("CodeMirror") + for (var i = 0; i < byClass.length; i++) { + var cm = byClass[i].CodeMirror + if (cm) { f(cm) } + } +} + +var globalsRegistered = false +function ensureGlobalHandlers() { + if (globalsRegistered) { return } + registerGlobalHandlers() + globalsRegistered = true +} +function registerGlobalHandlers() { + // When the window resizes, we need to refresh active editors. + var resizeTimer + on(window, "resize", function () { + if (resizeTimer == null) { resizeTimer = setTimeout(function () { + resizeTimer = null + forEachCodeMirror(onResize) + }, 100) } + }) + // When the window loses focus, we want to show the editor as blurred + on(window, "blur", function () { return forEachCodeMirror(onBlur); }) +} +// Called when the window resizes +function onResize(cm) { + var d = cm.display + if (d.lastWrapHeight == d.wrapper.clientHeight && d.lastWrapWidth == d.wrapper.clientWidth) + { return } + // Might be a text scaling operation, clear size caches. + d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null + d.scrollbarsClipped = false + cm.setSize() +} + +var keyNames = { + 3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt", + 19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End", + 36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert", + 46: "Delete", 59: ";", 61: "=", 91: "Mod", 92: "Mod", 93: "Mod", + 106: "*", 107: "=", 109: "-", 110: ".", 111: "/", 127: "Delete", + 173: "-", 186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\", + 221: "]", 222: "'", 63232: "Up", 63233: "Down", 63234: "Left", 63235: "Right", 63272: "Delete", + 63273: "Home", 63275: "End", 63276: "PageUp", 63277: "PageDown", 63302: "Insert" +} + +// Number keys +for (var i = 0; i < 10; i++) { keyNames[i + 48] = keyNames[i + 96] = String(i) } +// Alphabetic keys +for (var i$1 = 65; i$1 <= 90; i$1++) { keyNames[i$1] = String.fromCharCode(i$1) } +// Function keys +for (var i$2 = 1; i$2 <= 12; i$2++) { keyNames[i$2 + 111] = keyNames[i$2 + 63235] = "F" + i$2 } + +var keyMap = {} + +keyMap.basic = { + "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown", + "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown", + "Delete": "delCharAfter", "Backspace": "delCharBefore", "Shift-Backspace": "delCharBefore", + "Tab": "defaultTab", "Shift-Tab": "indentAuto", + "Enter": "newlineAndIndent", "Insert": "toggleOverwrite", + "Esc": "singleSelection" +} +// Note that the save and find-related commands aren't defined by +// default. User code or addons can define them. Unknown commands +// are simply ignored. +keyMap.pcDefault = { + "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo", + "Ctrl-Home": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Up": "goLineUp", "Ctrl-Down": "goLineDown", + "Ctrl-Left": "goGroupLeft", "Ctrl-Right": "goGroupRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd", + "Ctrl-Backspace": "delGroupBefore", "Ctrl-Delete": "delGroupAfter", "Ctrl-S": "save", "Ctrl-F": "find", + "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll", + "Ctrl-[": "indentLess", "Ctrl-]": "indentMore", + "Ctrl-U": "undoSelection", "Shift-Ctrl-U": "redoSelection", "Alt-U": "redoSelection", + fallthrough: "basic" +} +// Very basic readline/emacs-style bindings, which are standard on Mac. +keyMap.emacsy = { + "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown", + "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd", + "Ctrl-V": "goPageDown", "Shift-Ctrl-V": "goPageUp", "Ctrl-D": "delCharAfter", "Ctrl-H": "delCharBefore", + "Alt-D": "delWordAfter", "Alt-Backspace": "delWordBefore", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars", + "Ctrl-O": "openLine" +} +keyMap.macDefault = { + "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo", + "Cmd-Home": "goDocStart", "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goGroupLeft", + "Alt-Right": "goGroupRight", "Cmd-Left": "goLineLeft", "Cmd-Right": "goLineRight", "Alt-Backspace": "delGroupBefore", + "Ctrl-Alt-Backspace": "delGroupAfter", "Alt-Delete": "delGroupAfter", "Cmd-S": "save", "Cmd-F": "find", + "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll", + "Cmd-[": "indentLess", "Cmd-]": "indentMore", "Cmd-Backspace": "delWrappedLineLeft", "Cmd-Delete": "delWrappedLineRight", + "Cmd-U": "undoSelection", "Shift-Cmd-U": "redoSelection", "Ctrl-Up": "goDocStart", "Ctrl-Down": "goDocEnd", + fallthrough: ["basic", "emacsy"] +} +keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault + +// KEYMAP DISPATCH + +function normalizeKeyName(name) { + var parts = name.split(/-(?!$)/) + name = parts[parts.length - 1] + var alt, ctrl, shift, cmd + for (var i = 0; i < parts.length - 1; i++) { + var mod = parts[i] + if (/^(cmd|meta|m)$/i.test(mod)) { cmd = true } + else if (/^a(lt)?$/i.test(mod)) { alt = true } + else if (/^(c|ctrl|control)$/i.test(mod)) { ctrl = true } + else if (/^s(hift)?$/i.test(mod)) { shift = true } + else { throw new Error("Unrecognized modifier name: " + mod) } + } + if (alt) { name = "Alt-" + name } + if (ctrl) { name = "Ctrl-" + name } + if (cmd) { name = "Cmd-" + name } + if (shift) { name = "Shift-" + name } + return name +} + +// This is a kludge to keep keymaps mostly working as raw objects +// (backwards compatibility) while at the same time support features +// like normalization and multi-stroke key bindings. It compiles a +// new normalized keymap, and then updates the old object to reflect +// this. +function normalizeKeyMap(keymap) { + var copy = {} + for (var keyname in keymap) { if (keymap.hasOwnProperty(keyname)) { + var value = keymap[keyname] + if (/^(name|fallthrough|(de|at)tach)$/.test(keyname)) { continue } + if (value == "...") { delete keymap[keyname]; continue } + + var keys = map(keyname.split(" "), normalizeKeyName) + for (var i = 0; i < keys.length; i++) { + var val = (void 0), name = (void 0) + if (i == keys.length - 1) { + name = keys.join(" ") + val = value + } else { + name = keys.slice(0, i + 1).join(" ") + val = "..." + } + var prev = copy[name] + if (!prev) { copy[name] = val } + else if (prev != val) { throw new Error("Inconsistent bindings for " + name) } + } + delete keymap[keyname] + } } + for (var prop in copy) { keymap[prop] = copy[prop] } + return keymap +} + +function lookupKey(key, map, handle, context) { + map = getKeyMap(map) + var found = map.call ? map.call(key, context) : map[key] + if (found === false) { return "nothing" } + if (found === "...") { return "multi" } + if (found != null && handle(found)) { return "handled" } + + if (map.fallthrough) { + if (Object.prototype.toString.call(map.fallthrough) != "[object Array]") + { return lookupKey(key, map.fallthrough, handle, context) } + for (var i = 0; i < map.fallthrough.length; i++) { + var result = lookupKey(key, map.fallthrough[i], handle, context) + if (result) { return result } + } + } +} + +// Modifier key presses don't count as 'real' key presses for the +// purpose of keymap fallthrough. +function isModifierKey(value) { + var name = typeof value == "string" ? value : keyNames[value.keyCode] + return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod" +} + +// Look up the name of a key as indicated by an event object. +function keyName(event, noShift) { + if (presto && event.keyCode == 34 && event["char"]) { return false } + var base = keyNames[event.keyCode], name = base + if (name == null || event.altGraphKey) { return false } + if (event.altKey && base != "Alt") { name = "Alt-" + name } + if ((flipCtrlCmd ? event.metaKey : event.ctrlKey) && base != "Ctrl") { name = "Ctrl-" + name } + if ((flipCtrlCmd ? event.ctrlKey : event.metaKey) && base != "Cmd") { name = "Cmd-" + name } + if (!noShift && event.shiftKey && base != "Shift") { name = "Shift-" + name } + return name +} + +function getKeyMap(val) { + return typeof val == "string" ? keyMap[val] : val +} + +// Helper for deleting text near the selection(s), used to implement +// backspace, delete, and similar functionality. +function deleteNearSelection(cm, compute) { + var ranges = cm.doc.sel.ranges, kill = [] + // Build up a set of ranges to kill first, merging overlapping + // ranges. + for (var i = 0; i < ranges.length; i++) { + var toKill = compute(ranges[i]) + while (kill.length && cmp(toKill.from, lst(kill).to) <= 0) { + var replaced = kill.pop() + if (cmp(replaced.from, toKill.from) < 0) { + toKill.from = replaced.from + break } } - - if (ie && !ie_lt9) prepareSelectAllHack(); - if (captureMiddleClick) { - e_stop(e); - var mouseup = function() { - off(window, "mouseup", mouseup); - setTimeout(rehide, 20); - }; - on(window, "mouseup", mouseup); + kill.push(toKill) + } + // Next, remove those actual ranges. + runInOp(cm, function () { + for (var i = kill.length - 1; i >= 0; i--) + { replaceRange(cm.doc, "", kill[i].from, kill[i].to, "+delete") } + ensureCursorVisible(cm) + }) +} + +// Commands are parameter-less actions that can be performed on an +// editor, mostly used for keybindings. +var commands = { + selectAll: selectAll, + singleSelection: function (cm) { return cm.setSelection(cm.getCursor("anchor"), cm.getCursor("head"), sel_dontScroll); }, + killLine: function (cm) { return deleteNearSelection(cm, function (range) { + if (range.empty()) { + var len = getLine(cm.doc, range.head.line).text.length + if (range.head.ch == len && range.head.line < cm.lastLine()) + { return {from: range.head, to: Pos(range.head.line + 1, 0)} } + else + { return {from: range.head, to: Pos(range.head.line, len)} } } else { - setTimeout(rehide, 50); - } + return {from: range.from(), to: range.to()} + } + }); }, + deleteLine: function (cm) { return deleteNearSelection(cm, function (range) { return ({ + from: Pos(range.from().line, 0), + to: clipPos(cm.doc, Pos(range.to().line + 1, 0)) + }); }); }, + delLineLeft: function (cm) { return deleteNearSelection(cm, function (range) { return ({ + from: Pos(range.from().line, 0), to: range.from() + }); }); }, + delWrappedLineLeft: function (cm) { return deleteNearSelection(cm, function (range) { + var top = cm.charCoords(range.head, "div").top + 5 + var leftPos = cm.coordsChar({left: 0, top: top}, "div") + return {from: leftPos, to: range.from()} + }); }, + delWrappedLineRight: function (cm) { return deleteNearSelection(cm, function (range) { + var top = cm.charCoords(range.head, "div").top + 5 + var rightPos = cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div") + return {from: range.from(), to: rightPos } + }); }, + undo: function (cm) { return cm.undo(); }, + redo: function (cm) { return cm.redo(); }, + undoSelection: function (cm) { return cm.undoSelection(); }, + redoSelection: function (cm) { return cm.redoSelection(); }, + goDocStart: function (cm) { return cm.extendSelection(Pos(cm.firstLine(), 0)); }, + goDocEnd: function (cm) { return cm.extendSelection(Pos(cm.lastLine())); }, + goLineStart: function (cm) { return cm.extendSelectionsBy(function (range) { return lineStart(cm, range.head.line); }, + {origin: "+move", bias: 1} + ); }, + goLineStartSmart: function (cm) { return cm.extendSelectionsBy(function (range) { return lineStartSmart(cm, range.head); }, + {origin: "+move", bias: 1} + ); }, + goLineEnd: function (cm) { return cm.extendSelectionsBy(function (range) { return lineEnd(cm, range.head.line); }, + {origin: "+move", bias: -1} + ); }, + goLineRight: function (cm) { return cm.extendSelectionsBy(function (range) { + var top = cm.charCoords(range.head, "div").top + 5 + return cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div") + }, sel_move); }, + goLineLeft: function (cm) { return cm.extendSelectionsBy(function (range) { + var top = cm.charCoords(range.head, "div").top + 5 + return cm.coordsChar({left: 0, top: top}, "div") + }, sel_move); }, + goLineLeftSmart: function (cm) { return cm.extendSelectionsBy(function (range) { + var top = cm.charCoords(range.head, "div").top + 5 + var pos = cm.coordsChar({left: 0, top: top}, "div") + if (pos.ch < cm.getLine(pos.line).search(/\S/)) { return lineStartSmart(cm, range.head) } + return pos + }, sel_move); }, + goLineUp: function (cm) { return cm.moveV(-1, "line"); }, + goLineDown: function (cm) { return cm.moveV(1, "line"); }, + goPageUp: function (cm) { return cm.moveV(-1, "page"); }, + goPageDown: function (cm) { return cm.moveV(1, "page"); }, + goCharLeft: function (cm) { return cm.moveH(-1, "char"); }, + goCharRight: function (cm) { return cm.moveH(1, "char"); }, + goColumnLeft: function (cm) { return cm.moveH(-1, "column"); }, + goColumnRight: function (cm) { return cm.moveH(1, "column"); }, + goWordLeft: function (cm) { return cm.moveH(-1, "word"); }, + goGroupRight: function (cm) { return cm.moveH(1, "group"); }, + goGroupLeft: function (cm) { return cm.moveH(-1, "group"); }, + goWordRight: function (cm) { return cm.moveH(1, "word"); }, + delCharBefore: function (cm) { return cm.deleteH(-1, "char"); }, + delCharAfter: function (cm) { return cm.deleteH(1, "char"); }, + delWordBefore: function (cm) { return cm.deleteH(-1, "word"); }, + delWordAfter: function (cm) { return cm.deleteH(1, "word"); }, + delGroupBefore: function (cm) { return cm.deleteH(-1, "group"); }, + delGroupAfter: function (cm) { return cm.deleteH(1, "group"); }, + indentAuto: function (cm) { return cm.indentSelection("smart"); }, + indentMore: function (cm) { return cm.indentSelection("add"); }, + indentLess: function (cm) { return cm.indentSelection("subtract"); }, + insertTab: function (cm) { return cm.replaceSelection("\t"); }, + insertSoftTab: function (cm) { + var spaces = [], ranges = cm.listSelections(), tabSize = cm.options.tabSize + for (var i = 0; i < ranges.length; i++) { + var pos = ranges[i].from() + var col = countColumn(cm.getLine(pos.line), pos.ch, tabSize) + spaces.push(spaceStr(tabSize - col % tabSize)) + } + cm.replaceSelections(spaces) + }, + defaultTab: function (cm) { + if (cm.somethingSelected()) { cm.indentSelection("add") } + else { cm.execCommand("insertTab") } + }, + // Swap the two chars left and right of each selection's head. + // Move cursor behind the two swapped characters afterwards. + // + // Doesn't consider line feeds a character. + // Doesn't scan more than one line above to find a character. + // Doesn't do anything on an empty line. + // Doesn't do anything with non-empty selections. + transposeChars: function (cm) { return runInOp(cm, function () { + var ranges = cm.listSelections(), newSel = [] + for (var i = 0; i < ranges.length; i++) { + if (!ranges[i].empty()) { continue } + var cur = ranges[i].head, line = getLine(cm.doc, cur.line).text + if (line) { + if (cur.ch == line.length) { cur = new Pos(cur.line, cur.ch - 1) } + if (cur.ch > 0) { + cur = new Pos(cur.line, cur.ch + 1) + cm.replaceRange(line.charAt(cur.ch - 1) + line.charAt(cur.ch - 2), + Pos(cur.line, cur.ch - 2), cur, "+transpose") + } else if (cur.line > cm.doc.first) { + var prev = getLine(cm.doc, cur.line - 1).text + if (prev) { + cur = new Pos(cur.line, 1) + cm.replaceRange(line.charAt(0) + cm.doc.lineSeparator() + + prev.charAt(prev.length - 1), + Pos(cur.line - 1, prev.length - 1), cur, "+transpose") + } + } + } + newSel.push(new Range(cur, cur)) + } + cm.setSelections(newSel) + }); }, + newlineAndIndent: function (cm) { return runInOp(cm, function () { + var sels = cm.listSelections() + for (var i = sels.length - 1; i >= 0; i--) + { cm.replaceRange(cm.doc.lineSeparator(), sels[i].anchor, sels[i].head, "+input") } + sels = cm.listSelections() + for (var i$1 = 0; i$1 < sels.length; i$1++) + { cm.indentLine(sels[i$1].from().line, null, true) } + ensureCursorVisible(cm) + }); }, + openLine: function (cm) { return cm.replaceSelection("\n", "start"); }, + toggleOverwrite: function (cm) { return cm.toggleOverwrite(); } +} + + +function lineStart(cm, lineN) { + var line = getLine(cm.doc, lineN) + var visual = visualLine(line) + if (visual != line) { lineN = lineNo(visual) } + return endOfLine(true, cm, visual, lineN, 1) +} +function lineEnd(cm, lineN) { + var line = getLine(cm.doc, lineN) + var visual = visualLineEnd(line) + if (visual != line) { lineN = lineNo(visual) } + return endOfLine(true, cm, line, lineN, -1) +} +function lineStartSmart(cm, pos) { + var start = lineStart(cm, pos.line) + var line = getLine(cm.doc, start.line) + var order = getOrder(line, cm.doc.direction) + if (!order || order[0].level == 0) { + var firstNonWS = Math.max(0, line.text.search(/\S/)) + var inWS = pos.line == start.line && pos.ch <= firstNonWS && pos.ch + return Pos(start.line, inWS ? 0 : firstNonWS, start.sticky) + } + return start +} + +// Run a handler that was bound to a key. +function doHandleBinding(cm, bound, dropShift) { + if (typeof bound == "string") { + bound = commands[bound] + if (!bound) { return false } + } + // Ensure previous input has been read, so that the handler sees a + // consistent view of the document + cm.display.input.ensurePolled() + var prevShift = cm.display.shift, done = false + try { + if (cm.isReadOnly()) { cm.state.suppressEdits = true } + if (dropShift) { cm.display.shift = false } + done = bound(cm) != Pass + } finally { + cm.display.shift = prevShift + cm.state.suppressEdits = false + } + return done +} + +function lookupKeyForEditor(cm, name, handle) { + for (var i = 0; i < cm.state.keyMaps.length; i++) { + var result = lookupKey(name, cm.state.keyMaps[i], handle, cm) + if (result) { return result } + } + return (cm.options.extraKeys && lookupKey(name, cm.options.extraKeys, handle, cm)) + || lookupKey(name, cm.options.keyMap, handle, cm) +} + +var stopSeq = new Delayed +function dispatchKey(cm, name, e, handle) { + var seq = cm.state.keySeq + if (seq) { + if (isModifierKey(name)) { return "handled" } + stopSeq.set(50, function () { + if (cm.state.keySeq == seq) { + cm.state.keySeq = null + cm.display.input.reset() + } + }) + name = seq + " " + name + } + var result = lookupKeyForEditor(cm, name, handle) + + if (result == "multi") + { cm.state.keySeq = name } + if (result == "handled") + { signalLater(cm, "keyHandled", cm, name, e) } + + if (result == "handled" || result == "multi") { + e_preventDefault(e) + restartBlink(cm) + } + + if (seq && !result && /\'$/.test(name)) { + e_preventDefault(e) + return true + } + return !!result +} + +// Handle a key from the keydown event. +function handleKeyBinding(cm, e) { + var name = keyName(e, true) + if (!name) { return false } + + if (e.shiftKey && !cm.state.keySeq) { + // First try to resolve full name (including 'Shift-'). Failing + // that, see if there is a cursor-motion command (starting with + // 'go') bound to the keyname without 'Shift-'. + return dispatchKey(cm, "Shift-" + name, e, function (b) { return doHandleBinding(cm, b, true); }) + || dispatchKey(cm, name, e, function (b) { + if (typeof b == "string" ? /^go[A-Z]/.test(b) : b.motion) + { return doHandleBinding(cm, b) } + }) + } else { + return dispatchKey(cm, name, e, function (b) { return doHandleBinding(cm, b); }) + } +} + +// Handle a key from the keypress event +function handleCharBinding(cm, e, ch) { + return dispatchKey(cm, "'" + ch + "'", e, function (b) { return doHandleBinding(cm, b, true); }) +} + +var lastStoppedKey = null +function onKeyDown(e) { + var cm = this + cm.curOp.focus = activeElt() + if (signalDOMEvent(cm, e)) { return } + // IE does strange things with escape. + if (ie && ie_version < 11 && e.keyCode == 27) { e.returnValue = false } + var code = e.keyCode + cm.display.shift = code == 16 || e.shiftKey + var handled = handleKeyBinding(cm, e) + if (presto) { + lastStoppedKey = handled ? code : null + // Opera has no cut event... we try to at least catch the key combo + if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey)) + { cm.replaceSelection("", null, "cut") } + } + + // Turn mouse into crosshair when Alt is held on Mac. + if (code == 18 && !/\bCodeMirror-crosshair\b/.test(cm.display.lineDiv.className)) + { showCrossHair(cm) } +} + +function showCrossHair(cm) { + var lineDiv = cm.display.lineDiv + addClass(lineDiv, "CodeMirror-crosshair") + + function up(e) { + if (e.keyCode == 18 || !e.altKey) { + rmClass(lineDiv, "CodeMirror-crosshair") + off(document, "keyup", up) + off(document, "mouseover", up) + } + } + on(document, "keyup", up) + on(document, "mouseover", up) +} + +function onKeyUp(e) { + if (e.keyCode == 16) { this.doc.sel.shift = false } + signalDOMEvent(this, e) +} + +function onKeyPress(e) { + var cm = this + if (eventInWidget(cm.display, e) || signalDOMEvent(cm, e) || e.ctrlKey && !e.altKey || mac && e.metaKey) { return } + var keyCode = e.keyCode, charCode = e.charCode + if (presto && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return} + if ((presto && (!e.which || e.which < 10)) && handleKeyBinding(cm, e)) { return } + var ch = String.fromCharCode(charCode == null ? keyCode : charCode) + // Some browsers fire keypress events for backspace + if (ch == "\x08") { return } + if (handleCharBinding(cm, e, ch)) { return } + cm.display.input.onKeyPress(e) +} + +// A mouse down can be a single click, double click, triple click, +// start of selection drag, start of text drag, new cursor +// (ctrl-click), rectangle drag (alt-drag), or xwin +// middle-click-paste. Or it might be a click on something we should +// not interfere with, such as a scrollbar or widget. +function onMouseDown(e) { + var cm = this, display = cm.display + if (signalDOMEvent(cm, e) || display.activeTouch && display.input.supportsTouch()) { return } + display.input.ensurePolled() + display.shift = e.shiftKey + + if (eventInWidget(display, e)) { + if (!webkit) { + // Briefly turn off draggability, to allow widgets to do + // normal dragging things. + display.scroller.draggable = false + setTimeout(function () { return display.scroller.draggable = true; }, 100) + } + return + } + if (clickInGutter(cm, e)) { return } + var start = posFromMouse(cm, e) + window.focus() + + switch (e_button(e)) { + case 1: + // #3261: make sure, that we're not starting a second selection + if (cm.state.selectingText) + { cm.state.selectingText(e) } + else if (start) + { leftButtonDown(cm, e, start) } + else if (e_target(e) == display.scroller) + { e_preventDefault(e) } + break + case 2: + if (webkit) { cm.state.lastMiddleDown = +new Date } + if (start) { extendSelection(cm.doc, start) } + setTimeout(function () { return display.input.focus(); }, 20) + e_preventDefault(e) + break + case 3: + if (captureRightClick) { onContextMenu(cm, e) } + else { delayBlurEvent(cm) } + break + } +} + +var lastClick; +var lastDoubleClick; +function leftButtonDown(cm, e, start) { + if (ie) { setTimeout(bind(ensureFocus, cm), 0) } + else { cm.curOp.focus = activeElt() } + + var now = +new Date, type + if (lastDoubleClick && lastDoubleClick.time > now - 400 && cmp(lastDoubleClick.pos, start) == 0) { + type = "triple" + } else if (lastClick && lastClick.time > now - 400 && cmp(lastClick.pos, start) == 0) { + type = "double" + lastDoubleClick = {time: now, pos: start} + } else { + type = "single" + lastClick = {time: now, pos: start} + } + + var sel = cm.doc.sel, modifier = mac ? e.metaKey : e.ctrlKey, contained + if (cm.options.dragDrop && dragAndDrop && !cm.isReadOnly() && + type == "single" && (contained = sel.contains(start)) > -1 && + (cmp((contained = sel.ranges[contained]).from(), start) < 0 || start.xRel > 0) && + (cmp(contained.to(), start) > 0 || start.xRel < 0)) + { leftButtonStartDrag(cm, e, start, modifier) } + else + { leftButtonSelect(cm, e, start, type, modifier) } +} + +// Start a text drag. When it ends, see if any dragging actually +// happen, and treat as a click if it didn't. +function leftButtonStartDrag(cm, e, start, modifier) { + var display = cm.display, moved = false + var dragEnd = operation(cm, function (e) { + if (webkit) { display.scroller.draggable = false } + cm.state.draggingText = false + off(document, "mouseup", dragEnd) + off(document, "mousemove", mouseMove) + off(display.scroller, "dragstart", dragStart) + off(display.scroller, "drop", dragEnd) + if (!moved) { + e_preventDefault(e) + if (!modifier) + { extendSelection(cm.doc, start) } + // Work around unexplainable focus problem in IE9 (#2127) and Chrome (#3081) + if (webkit || ie && ie_version == 9) + { setTimeout(function () {document.body.focus(); display.input.focus()}, 20) } + else + { display.input.focus() } + } + }) + var mouseMove = function(e2) { + moved = moved || Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) >= 10 + } + var dragStart = function () { return moved = true; } + // Let the drag handler handle this. + if (webkit) { display.scroller.draggable = true } + cm.state.draggingText = dragEnd + dragEnd.copy = mac ? e.altKey : e.ctrlKey + // IE's approach to draggable + if (display.scroller.dragDrop) { display.scroller.dragDrop() } + on(document, "mouseup", dragEnd) + on(document, "mousemove", mouseMove) + on(display.scroller, "dragstart", dragStart) + on(display.scroller, "drop", dragEnd) + + delayBlurEvent(cm) + setTimeout(function () { return display.input.focus(); }, 20) +} + +// Normal selection, as opposed to text dragging. +function leftButtonSelect(cm, e, start, type, addNew) { + var display = cm.display, doc = cm.doc + e_preventDefault(e) + + var ourRange, ourIndex, startSel = doc.sel, ranges = startSel.ranges + if (addNew && !e.shiftKey) { + ourIndex = doc.sel.contains(start) + if (ourIndex > -1) + { ourRange = ranges[ourIndex] } + else + { ourRange = new Range(start, start) } + } else { + ourRange = doc.sel.primary() + ourIndex = doc.sel.primIndex + } + + if (chromeOS ? e.shiftKey && e.metaKey : e.altKey) { + type = "rect" + if (!addNew) { ourRange = new Range(start, start) } + start = posFromMouse(cm, e, true, true) + ourIndex = -1 + } else if (type == "double") { + var word = cm.findWordAt(start) + if (cm.display.shift || doc.extend) + { ourRange = extendRange(doc, ourRange, word.anchor, word.head) } + else + { ourRange = word } + } else if (type == "triple") { + var line = new Range(Pos(start.line, 0), clipPos(doc, Pos(start.line + 1, 0))) + if (cm.display.shift || doc.extend) + { ourRange = extendRange(doc, ourRange, line.anchor, line.head) } + else + { ourRange = line } + } else { + ourRange = extendRange(doc, ourRange, start) + } + + if (!addNew) { + ourIndex = 0 + setSelection(doc, new Selection([ourRange], 0), sel_mouse) + startSel = doc.sel + } else if (ourIndex == -1) { + ourIndex = ranges.length + setSelection(doc, normalizeSelection(ranges.concat([ourRange]), ourIndex), + {scroll: false, origin: "*mouse"}) + } else if (ranges.length > 1 && ranges[ourIndex].empty() && type == "single" && !e.shiftKey) { + setSelection(doc, normalizeSelection(ranges.slice(0, ourIndex).concat(ranges.slice(ourIndex + 1)), 0), + {scroll: false, origin: "*mouse"}) + startSel = doc.sel + } else { + replaceOneSelection(doc, ourIndex, ourRange, sel_mouse) + } + + var lastPos = start + function extendTo(pos) { + if (cmp(lastPos, pos) == 0) { return } + lastPos = pos + + if (type == "rect") { + var ranges = [], tabSize = cm.options.tabSize + var startCol = countColumn(getLine(doc, start.line).text, start.ch, tabSize) + var posCol = countColumn(getLine(doc, pos.line).text, pos.ch, tabSize) + var left = Math.min(startCol, posCol), right = Math.max(startCol, posCol) + for (var line = Math.min(start.line, pos.line), end = Math.min(cm.lastLine(), Math.max(start.line, pos.line)); + line <= end; line++) { + var text = getLine(doc, line).text, leftPos = findColumn(text, left, tabSize) + if (left == right) + { ranges.push(new Range(Pos(line, leftPos), Pos(line, leftPos))) } + else if (text.length > leftPos) + { ranges.push(new Range(Pos(line, leftPos), Pos(line, findColumn(text, right, tabSize)))) } + } + if (!ranges.length) { ranges.push(new Range(start, start)) } + setSelection(doc, normalizeSelection(startSel.ranges.slice(0, ourIndex).concat(ranges), ourIndex), + {origin: "*mouse", scroll: false}) + cm.scrollIntoView(pos) + } else { + var oldRange = ourRange + var anchor = oldRange.anchor, head = pos + if (type != "single") { + var range + if (type == "double") + { range = cm.findWordAt(pos) } + else + { range = new Range(Pos(pos.line, 0), clipPos(doc, Pos(pos.line + 1, 0))) } + if (cmp(range.anchor, anchor) > 0) { + head = range.head + anchor = minPos(oldRange.from(), range.anchor) + } else { + head = range.anchor + anchor = maxPos(oldRange.to(), range.head) + } + } + var ranges$1 = startSel.ranges.slice(0) + ranges$1[ourIndex] = new Range(clipPos(doc, anchor), head) + setSelection(doc, normalizeSelection(ranges$1, ourIndex), sel_mouse) + } + } + + var editorSize = display.wrapper.getBoundingClientRect() + // Used to ensure timeout re-tries don't fire when another extend + // happened in the meantime (clearTimeout isn't reliable -- at + // least on Chrome, the timeouts still happen even when cleared, + // if the clear happens after their scheduled firing time). + var counter = 0 + + function extend(e) { + var curCount = ++counter + var cur = posFromMouse(cm, e, true, type == "rect") + if (!cur) { return } + if (cmp(cur, lastPos) != 0) { + cm.curOp.focus = activeElt() + extendTo(cur) + var visible = visibleLines(display, doc) + if (cur.line >= visible.to || cur.line < visible.from) + { setTimeout(operation(cm, function () {if (counter == curCount) { extend(e) }}), 150) } + } else { + var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0 + if (outside) { setTimeout(operation(cm, function () { + if (counter != curCount) { return } + display.scroller.scrollTop += outside + extend(e) + }), 50) } + } + } + + function done(e) { + cm.state.selectingText = false + counter = Infinity + e_preventDefault(e) + display.input.focus() + off(document, "mousemove", move) + off(document, "mouseup", up) + doc.history.lastSelOrigin = null + } + + var move = operation(cm, function (e) { + if (!e_button(e)) { done(e) } + else { extend(e) } + }) + var up = operation(cm, done) + cm.state.selectingText = up + on(document, "mousemove", move) + on(document, "mouseup", up) +} + + +// Determines whether an event happened in the gutter, and fires the +// handlers for the corresponding event. +function gutterEvent(cm, e, type, prevent) { + var mX, mY + try { mX = e.clientX; mY = e.clientY } + catch(e) { return false } + if (mX >= Math.floor(cm.display.gutters.getBoundingClientRect().right)) { return false } + if (prevent) { e_preventDefault(e) } + + var display = cm.display + var lineBox = display.lineDiv.getBoundingClientRect() + + if (mY > lineBox.bottom || !hasHandler(cm, type)) { return e_defaultPrevented(e) } + mY -= lineBox.top - display.viewOffset + + for (var i = 0; i < cm.options.gutters.length; ++i) { + var g = display.gutters.childNodes[i] + if (g && g.getBoundingClientRect().right >= mX) { + var line = lineAtHeight(cm.doc, mY) + var gutter = cm.options.gutters[i] + signal(cm, type, cm, line, gutter, e) + return e_defaultPrevented(e) + } + } +} + +function clickInGutter(cm, e) { + return gutterEvent(cm, e, "gutterClick", true) +} + +// CONTEXT MENU HANDLING + +// To make the context menu work, we need to briefly unhide the +// textarea (making it as unobtrusive as possible) to let the +// right-click take effect on it. +function onContextMenu(cm, e) { + if (eventInWidget(cm.display, e) || contextMenuInGutter(cm, e)) { return } + if (signalDOMEvent(cm, e, "contextmenu")) { return } + cm.display.input.onContextMenu(e) +} + +function contextMenuInGutter(cm, e) { + if (!hasHandler(cm, "gutterContextMenu")) { return false } + return gutterEvent(cm, e, "gutterContextMenu", false) +} + +function themeChanged(cm) { + cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-s-\S+/g, "") + + cm.options.theme.replace(/(^|\s)\s*/g, " cm-s-") + clearCaches(cm) +} + +var Init = {toString: function(){return "CodeMirror.Init"}} + +var defaults = {} +var optionHandlers = {} + +function defineOptions(CodeMirror) { + var optionHandlers = CodeMirror.optionHandlers + + function option(name, deflt, handle, notOnInit) { + CodeMirror.defaults[name] = deflt + if (handle) { optionHandlers[name] = + notOnInit ? function (cm, val, old) {if (old != Init) { handle(cm, val, old) }} : handle } } - // UPDATING + CodeMirror.defineOption = option - var changeEnd = CodeMirror.changeEnd = function(change) { - if (!change.text) return change.to; - return Pos(change.from.line + change.text.length - 1, - lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0)); - }; + // Passed to option handlers when there is no old value. + CodeMirror.Init = Init - // Make sure a position will be valid after the given change. - function clipPostChange(doc, change, pos) { - if (!posLess(change.from, pos)) return clipPos(doc, pos); - var diff = (change.text.length - 1) - (change.to.line - change.from.line); - if (pos.line > change.to.line + diff) { - var preLine = pos.line - diff, lastLine = doc.first + doc.size - 1; - if (preLine > lastLine) return Pos(lastLine, getLine(doc, lastLine).text.length); - return clipToLen(pos, getLine(doc, preLine).text.length); + // These two are, on init, called from the constructor because they + // have to be initialized before the editor can start at all. + option("value", "", function (cm, val) { return cm.setValue(val); }, true) + option("mode", null, function (cm, val) { + cm.doc.modeOption = val + loadMode(cm) + }, true) + + option("indentUnit", 2, loadMode, true) + option("indentWithTabs", false) + option("smartIndent", true) + option("tabSize", 4, function (cm) { + resetModeState(cm) + clearCaches(cm) + regChange(cm) + }, true) + option("lineSeparator", null, function (cm, val) { + cm.doc.lineSep = val + if (!val) { return } + var newBreaks = [], lineNo = cm.doc.first + cm.doc.iter(function (line) { + for (var pos = 0;;) { + var found = line.text.indexOf(val, pos) + if (found == -1) { break } + pos = found + val.length + newBreaks.push(Pos(lineNo, found)) + } + lineNo++ + }) + for (var i = newBreaks.length - 1; i >= 0; i--) + { replaceRange(cm.doc, val, newBreaks[i], Pos(newBreaks[i].line, newBreaks[i].ch + val.length)) } + }) + option("specialChars", /[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200f\u2028\u2029\ufeff]/g, function (cm, val, old) { + cm.state.specialChars = new RegExp(val.source + (val.test("\t") ? "" : "|\t"), "g") + if (old != Init) { cm.refresh() } + }) + option("specialCharPlaceholder", defaultSpecialCharPlaceholder, function (cm) { return cm.refresh(); }, true) + option("electricChars", true) + option("inputStyle", mobile ? "contenteditable" : "textarea", function () { + throw new Error("inputStyle can not (yet) be changed in a running editor") // FIXME + }, true) + option("spellcheck", false, function (cm, val) { return cm.getInputField().spellcheck = val; }, true) + option("rtlMoveVisually", !windows) + option("wholeLineUpdateBefore", true) + + option("theme", "default", function (cm) { + themeChanged(cm) + guttersChanged(cm) + }, true) + option("keyMap", "default", function (cm, val, old) { + var next = getKeyMap(val) + var prev = old != Init && getKeyMap(old) + if (prev && prev.detach) { prev.detach(cm, next) } + if (next.attach) { next.attach(cm, prev || null) } + }) + option("extraKeys", null) + + option("lineWrapping", false, wrappingChanged, true) + option("gutters", [], function (cm) { + setGuttersForLineNumbers(cm.options) + guttersChanged(cm) + }, true) + option("fixedGutter", true, function (cm, val) { + cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + "px" : "0" + cm.refresh() + }, true) + option("coverGutterNextToScrollbar", false, function (cm) { return updateScrollbars(cm); }, true) + option("scrollbarStyle", "native", function (cm) { + initScrollbars(cm) + updateScrollbars(cm) + cm.display.scrollbars.setScrollTop(cm.doc.scrollTop) + cm.display.scrollbars.setScrollLeft(cm.doc.scrollLeft) + }, true) + option("lineNumbers", false, function (cm) { + setGuttersForLineNumbers(cm.options) + guttersChanged(cm) + }, true) + option("firstLineNumber", 1, guttersChanged, true) + option("lineNumberFormatter", function (integer) { return integer; }, guttersChanged, true) + option("showCursorWhenSelecting", false, updateSelection, true) + + option("resetSelectionOnContextMenu", true) + option("lineWiseCopyCut", true) + + option("readOnly", false, function (cm, val) { + if (val == "nocursor") { + onBlur(cm) + cm.display.input.blur() + cm.display.disabled = true + } else { + cm.display.disabled = false + } + cm.display.input.readOnlyChanged(val) + }) + option("disableInput", false, function (cm, val) {if (!val) { cm.display.input.reset() }}, true) + option("dragDrop", true, dragDropChanged) + option("allowDropFileTypes", null) + + option("cursorBlinkRate", 530) + option("cursorScrollMargin", 0) + option("cursorHeight", 1, updateSelection, true) + option("singleCursorHeightPerLine", true, updateSelection, true) + option("workTime", 100) + option("workDelay", 100) + option("flattenSpans", true, resetModeState, true) + option("addModeClass", false, resetModeState, true) + option("pollInterval", 100) + option("undoDepth", 200, function (cm, val) { return cm.doc.history.undoDepth = val; }) + option("historyEventDelay", 1250) + option("viewportMargin", 10, function (cm) { return cm.refresh(); }, true) + option("maxHighlightLength", 10000, resetModeState, true) + option("moveInputWithCursor", true, function (cm, val) { + if (!val) { cm.display.input.resetPosition() } + }) + + option("tabindex", null, function (cm, val) { return cm.display.input.getField().tabIndex = val || ""; }) + option("autofocus", null) + option("direction", "ltr", function (cm, val) { return cm.doc.setDirection(val); }, true) +} + +function guttersChanged(cm) { + updateGutters(cm) + regChange(cm) + alignHorizontally(cm) +} + +function dragDropChanged(cm, value, old) { + var wasOn = old && old != Init + if (!value != !wasOn) { + var funcs = cm.display.dragFunctions + var toggle = value ? on : off + toggle(cm.display.scroller, "dragstart", funcs.start) + toggle(cm.display.scroller, "dragenter", funcs.enter) + toggle(cm.display.scroller, "dragover", funcs.over) + toggle(cm.display.scroller, "dragleave", funcs.leave) + toggle(cm.display.scroller, "drop", funcs.drop) + } +} + +function wrappingChanged(cm) { + if (cm.options.lineWrapping) { + addClass(cm.display.wrapper, "CodeMirror-wrap") + cm.display.sizer.style.minWidth = "" + cm.display.sizerWidth = null + } else { + rmClass(cm.display.wrapper, "CodeMirror-wrap") + findMaxLine(cm) + } + estimateLineHeights(cm) + regChange(cm) + clearCaches(cm) + setTimeout(function () { return updateScrollbars(cm); }, 100) +} + +// A CodeMirror instance represents an editor. This is the object +// that user code is usually dealing with. + +function CodeMirror(place, options) { + var this$1 = this; + + if (!(this instanceof CodeMirror)) { return new CodeMirror(place, options) } + + this.options = options = options ? copyObj(options) : {} + // Determine effective options based on given values and defaults. + copyObj(defaults, options, false) + setGuttersForLineNumbers(options) + + var doc = options.value + if (typeof doc == "string") { doc = new Doc(doc, options.mode, null, options.lineSeparator, options.direction) } + this.doc = doc + + var input = new CodeMirror.inputStyles[options.inputStyle](this) + var display = this.display = new Display(place, doc, input) + display.wrapper.CodeMirror = this + updateGutters(this) + themeChanged(this) + if (options.lineWrapping) + { this.display.wrapper.className += " CodeMirror-wrap" } + initScrollbars(this) + + this.state = { + keyMaps: [], // stores maps added by addKeyMap + overlays: [], // highlighting overlays, as added by addOverlay + modeGen: 0, // bumped when mode/overlay changes, used to invalidate highlighting info + overwrite: false, + delayingBlurEvent: false, + focused: false, + suppressEdits: false, // used to disable editing during key handlers when in readOnly mode + pasteIncoming: false, cutIncoming: false, // help recognize paste/cut edits in input.poll + selectingText: false, + draggingText: false, + highlight: new Delayed(), // stores highlight worker timeout + keySeq: null, // Unfinished key sequence + specialChars: null + } + + if (options.autofocus && !mobile) { display.input.focus() } + + // Override magic textarea content restore that IE sometimes does + // on our hidden textarea on reload + if (ie && ie_version < 11) { setTimeout(function () { return this$1.display.input.reset(true); }, 20) } + + registerEventHandlers(this) + ensureGlobalHandlers() + + startOperation(this) + this.curOp.forceUpdate = true + attachDoc(this, doc) + + if ((options.autofocus && !mobile) || this.hasFocus()) + { setTimeout(bind(onFocus, this), 20) } + else + { onBlur(this) } + + for (var opt in optionHandlers) { if (optionHandlers.hasOwnProperty(opt)) + { optionHandlers[opt](this$1, options[opt], Init) } } + maybeUpdateLineNumberWidth(this) + if (options.finishInit) { options.finishInit(this) } + for (var i = 0; i < initHooks.length; ++i) { initHooks[i](this$1) } + endOperation(this) + // Suppress optimizelegibility in Webkit, since it breaks text + // measuring on line wrapping boundaries. + if (webkit && options.lineWrapping && + getComputedStyle(display.lineDiv).textRendering == "optimizelegibility") + { display.lineDiv.style.textRendering = "auto" } +} + +// The default configuration options. +CodeMirror.defaults = defaults +// Functions to run when options are changed. +CodeMirror.optionHandlers = optionHandlers + +// Attach the necessary event handlers when initializing the editor +function registerEventHandlers(cm) { + var d = cm.display + on(d.scroller, "mousedown", operation(cm, onMouseDown)) + // Older IE's will not fire a second mousedown for a double click + if (ie && ie_version < 11) + { on(d.scroller, "dblclick", operation(cm, function (e) { + if (signalDOMEvent(cm, e)) { return } + var pos = posFromMouse(cm, e) + if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) { return } + e_preventDefault(e) + var word = cm.findWordAt(pos) + extendSelection(cm.doc, word.anchor, word.head) + })) } + else + { on(d.scroller, "dblclick", function (e) { return signalDOMEvent(cm, e) || e_preventDefault(e); }) } + // Some browsers fire contextmenu *after* opening the menu, at + // which point we can't mess with it anymore. Context menu is + // handled in onMouseDown for these browsers. + if (!captureRightClick) { on(d.scroller, "contextmenu", function (e) { return onContextMenu(cm, e); }) } + + // Used to suppress mouse event handling when a touch happens + var touchFinished, prevTouch = {end: 0} + function finishTouch() { + if (d.activeTouch) { + touchFinished = setTimeout(function () { return d.activeTouch = null; }, 1000) + prevTouch = d.activeTouch + prevTouch.end = +new Date + } + } + function isMouseLikeTouchEvent(e) { + if (e.touches.length != 1) { return false } + var touch = e.touches[0] + return touch.radiusX <= 1 && touch.radiusY <= 1 + } + function farAway(touch, other) { + if (other.left == null) { return true } + var dx = other.left - touch.left, dy = other.top - touch.top + return dx * dx + dy * dy > 20 * 20 + } + on(d.scroller, "touchstart", function (e) { + if (!signalDOMEvent(cm, e) && !isMouseLikeTouchEvent(e)) { + d.input.ensurePolled() + clearTimeout(touchFinished) + var now = +new Date + d.activeTouch = {start: now, moved: false, + prev: now - prevTouch.end <= 300 ? prevTouch : null} + if (e.touches.length == 1) { + d.activeTouch.left = e.touches[0].pageX + d.activeTouch.top = e.touches[0].pageY + } + } + }) + on(d.scroller, "touchmove", function () { + if (d.activeTouch) { d.activeTouch.moved = true } + }) + on(d.scroller, "touchend", function (e) { + var touch = d.activeTouch + if (touch && !eventInWidget(d, e) && touch.left != null && + !touch.moved && new Date - touch.start < 300) { + var pos = cm.coordsChar(d.activeTouch, "page"), range + if (!touch.prev || farAway(touch, touch.prev)) // Single tap + { range = new Range(pos, pos) } + else if (!touch.prev.prev || farAway(touch, touch.prev.prev)) // Double tap + { range = cm.findWordAt(pos) } + else // Triple tap + { range = new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0))) } + cm.setSelection(range.anchor, range.head) + cm.focus() + e_preventDefault(e) + } + finishTouch() + }) + on(d.scroller, "touchcancel", finishTouch) + + // Sync scrolling between fake scrollbars and real scrollable + // area, ensure viewport is updated when scrolling. + on(d.scroller, "scroll", function () { + if (d.scroller.clientHeight) { + updateScrollTop(cm, d.scroller.scrollTop) + setScrollLeft(cm, d.scroller.scrollLeft, true) + signal(cm, "scroll", cm) + } + }) + + // Listen to wheel events in order to try and update the viewport on time. + on(d.scroller, "mousewheel", function (e) { return onScrollWheel(cm, e); }) + on(d.scroller, "DOMMouseScroll", function (e) { return onScrollWheel(cm, e); }) + + // Prevent wrapper from ever scrolling + on(d.wrapper, "scroll", function () { return d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; }) + + d.dragFunctions = { + enter: function (e) {if (!signalDOMEvent(cm, e)) { e_stop(e) }}, + over: function (e) {if (!signalDOMEvent(cm, e)) { onDragOver(cm, e); e_stop(e) }}, + start: function (e) { return onDragStart(cm, e); }, + drop: operation(cm, onDrop), + leave: function (e) {if (!signalDOMEvent(cm, e)) { clearDragCursor(cm) }} + } + + var inp = d.input.getField() + on(inp, "keyup", function (e) { return onKeyUp.call(cm, e); }) + on(inp, "keydown", operation(cm, onKeyDown)) + on(inp, "keypress", operation(cm, onKeyPress)) + on(inp, "focus", function (e) { return onFocus(cm, e); }) + on(inp, "blur", function (e) { return onBlur(cm, e); }) +} + +var initHooks = [] +CodeMirror.defineInitHook = function (f) { return initHooks.push(f); } + +// Indent the given line. The how parameter can be "smart", +// "add"/null, "subtract", or "prev". When aggressive is false +// (typically set to true for forced single-line indents), empty +// lines are not indented, and places where the mode returns Pass +// are left alone. +function indentLine(cm, n, how, aggressive) { + var doc = cm.doc, state + if (how == null) { how = "add" } + if (how == "smart") { + // Fall back to "prev" when the mode doesn't have an indentation + // method. + if (!doc.mode.indent) { how = "prev" } + else { state = getStateBefore(cm, n) } + } + + var tabSize = cm.options.tabSize + var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize) + if (line.stateAfter) { line.stateAfter = null } + var curSpaceString = line.text.match(/^\s*/)[0], indentation + if (!aggressive && !/\S/.test(line.text)) { + indentation = 0 + how = "not" + } else if (how == "smart") { + indentation = doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text) + if (indentation == Pass || indentation > 150) { + if (!aggressive) { return } + how = "prev" + } + } + if (how == "prev") { + if (n > doc.first) { indentation = countColumn(getLine(doc, n-1).text, null, tabSize) } + else { indentation = 0 } + } else if (how == "add") { + indentation = curSpace + cm.options.indentUnit + } else if (how == "subtract") { + indentation = curSpace - cm.options.indentUnit + } else if (typeof how == "number") { + indentation = curSpace + how + } + indentation = Math.max(0, indentation) + + var indentString = "", pos = 0 + if (cm.options.indentWithTabs) + { for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += "\t"} } + if (pos < indentation) { indentString += spaceStr(indentation - pos) } + + if (indentString != curSpaceString) { + replaceRange(doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), "+input") + line.stateAfter = null + return true + } else { + // Ensure that, if the cursor was in the whitespace at the start + // of the line, it is moved to the end of that space. + for (var i$1 = 0; i$1 < doc.sel.ranges.length; i$1++) { + var range = doc.sel.ranges[i$1] + if (range.head.line == n && range.head.ch < curSpaceString.length) { + var pos$1 = Pos(n, curSpaceString.length) + replaceOneSelection(doc, i$1, new Range(pos$1, pos$1)) + break + } } - if (pos.line == change.to.line + diff) - return clipToLen(pos, lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0) + - getLine(doc, change.to.line).text.length - change.to.ch); - var inside = pos.line - change.from.line; - return clipToLen(pos, change.text[inside].length + (inside ? 0 : change.from.ch)); } +} - // Hint can be null|"end"|"start"|"around"|{anchor,head} - function computeSelAfterChange(doc, change, hint) { - if (hint && typeof hint == "object") // Assumed to be {anchor, head} object - return {anchor: clipPostChange(doc, change, hint.anchor), - head: clipPostChange(doc, change, hint.head)}; +// This will be set to a {lineWise: bool, text: [string]} object, so +// that, when pasting, we know what kind of selections the copied +// text was made out of. +var lastCopied = null - if (hint == "start") return {anchor: change.from, head: change.from}; +function setLastCopied(newLastCopied) { + lastCopied = newLastCopied +} - var end = changeEnd(change); - if (hint == "around") return {anchor: change.from, head: end}; - if (hint == "end") return {anchor: end, head: end}; +function applyTextInput(cm, inserted, deleted, sel, origin) { + var doc = cm.doc + cm.display.shift = false + if (!sel) { sel = doc.sel } - // hint is null, leave the selection alone as much as possible - var adjustPos = function(pos) { - if (posLess(pos, change.from)) return pos; - if (!posLess(change.to, pos)) return end; + var paste = cm.state.pasteIncoming || origin == "paste" + var textLines = splitLinesAuto(inserted), multiPaste = null + // When pasing N lines into N selections, insert one line per selection + if (paste && sel.ranges.length > 1) { + if (lastCopied && lastCopied.text.join("\n") == inserted) { + if (sel.ranges.length % lastCopied.text.length == 0) { + multiPaste = [] + for (var i = 0; i < lastCopied.text.length; i++) + { multiPaste.push(doc.splitLines(lastCopied.text[i])) } + } + } else if (textLines.length == sel.ranges.length) { + multiPaste = map(textLines, function (l) { return [l]; }) + } + } + + var updateInput + // Normal behavior is to insert the new text into every selection + for (var i$1 = sel.ranges.length - 1; i$1 >= 0; i$1--) { + var range = sel.ranges[i$1] + var from = range.from(), to = range.to() + if (range.empty()) { + if (deleted && deleted > 0) // Handle deletion + { from = Pos(from.line, from.ch - deleted) } + else if (cm.state.overwrite && !paste) // Handle overwrite + { to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + lst(textLines).length)) } + else if (lastCopied && lastCopied.lineWise && lastCopied.text.join("\n") == inserted) + { from = to = Pos(from.line, 0) } + } + updateInput = cm.curOp.updateInput + var changeEvent = {from: from, to: to, text: multiPaste ? multiPaste[i$1 % multiPaste.length] : textLines, + origin: origin || (paste ? "paste" : cm.state.cutIncoming ? "cut" : "+input")} + makeChange(cm.doc, changeEvent) + signalLater(cm, "inputRead", cm, changeEvent) + } + if (inserted && !paste) + { triggerElectric(cm, inserted) } + + ensureCursorVisible(cm) + cm.curOp.updateInput = updateInput + cm.curOp.typing = true + cm.state.pasteIncoming = cm.state.cutIncoming = false +} + +function handlePaste(e, cm) { + var pasted = e.clipboardData && e.clipboardData.getData("Text") + if (pasted) { + e.preventDefault() + if (!cm.isReadOnly() && !cm.options.disableInput) + { runInOp(cm, function () { return applyTextInput(cm, pasted, 0, null, "paste"); }) } + return true + } +} + +function triggerElectric(cm, inserted) { + // When an 'electric' character is inserted, immediately trigger a reindent + if (!cm.options.electricChars || !cm.options.smartIndent) { return } + var sel = cm.doc.sel + + for (var i = sel.ranges.length - 1; i >= 0; i--) { + var range = sel.ranges[i] + if (range.head.ch > 100 || (i && sel.ranges[i - 1].head.line == range.head.line)) { continue } + var mode = cm.getModeAt(range.head) + var indented = false + if (mode.electricChars) { + for (var j = 0; j < mode.electricChars.length; j++) + { if (inserted.indexOf(mode.electricChars.charAt(j)) > -1) { + indented = indentLine(cm, range.head.line, "smart") + break + } } + } else if (mode.electricInput) { + if (mode.electricInput.test(getLine(cm.doc, range.head.line).text.slice(0, range.head.ch))) + { indented = indentLine(cm, range.head.line, "smart") } + } + if (indented) { signalLater(cm, "electricInput", cm, range.head.line) } + } +} + +function copyableRanges(cm) { + var text = [], ranges = [] + for (var i = 0; i < cm.doc.sel.ranges.length; i++) { + var line = cm.doc.sel.ranges[i].head.line + var lineRange = {anchor: Pos(line, 0), head: Pos(line + 1, 0)} + ranges.push(lineRange) + text.push(cm.getRange(lineRange.anchor, lineRange.head)) + } + return {text: text, ranges: ranges} +} + +function disableBrowserMagic(field, spellcheck) { + field.setAttribute("autocorrect", "off") + field.setAttribute("autocapitalize", "off") + field.setAttribute("spellcheck", !!spellcheck) +} + +function hiddenTextarea() { + var te = elt("textarea", null, null, "position: absolute; bottom: -1em; padding: 0; width: 1px; height: 1em; outline: none") + var div = elt("div", [te], null, "overflow: hidden; position: relative; width: 3px; height: 0px;") + // The textarea is kept positioned near the cursor to prevent the + // fact that it'll be scrolled into view on input from scrolling + // our fake cursor out of view. On webkit, when wrap=off, paste is + // very slow. So make the area wide instead. + if (webkit) { te.style.width = "1000px" } + else { te.setAttribute("wrap", "off") } + // If border: 0; -- iOS fails to open keyboard (issue #1287) + if (ios) { te.style.border = "1px solid black" } + disableBrowserMagic(te) + return div +} + +// The publicly visible API. Note that methodOp(f) means +// 'wrap f in an operation, performed on its `this` parameter'. + +// This is not the complete set of editor methods. Most of the +// methods defined on the Doc type are also injected into +// CodeMirror.prototype, for backwards compatibility and +// convenience. + +function addEditorMethods(CodeMirror) { + var optionHandlers = CodeMirror.optionHandlers + + var helpers = CodeMirror.helpers = {} - var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch; - if (pos.line == change.to.line) ch += end.ch - change.to.ch; - return Pos(line, ch); - }; - return {anchor: adjustPos(doc.sel.anchor), head: adjustPos(doc.sel.head)}; - } + CodeMirror.prototype = { + constructor: CodeMirror, + focus: function(){window.focus(); this.display.input.focus()}, - function filterChange(doc, change, update) { - var obj = { - canceled: false, - from: change.from, - to: change.to, - text: change.text, - origin: change.origin, - cancel: function() { this.canceled = true; } - }; - if (update) obj.update = function(from, to, text, origin) { - if (from) this.from = clipPos(doc, from); - if (to) this.to = clipPos(doc, to); - if (text) this.text = text; - if (origin !== undefined) this.origin = origin; - }; - signal(doc, "beforeChange", doc, obj); - if (doc.cm) signal(doc.cm, "beforeChange", doc.cm, obj); - - if (obj.canceled) return null; - return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin}; - } - - // Replace the range from from to to by the strings in replacement. - // change is a {from, to, text [, origin]} object - function makeChange(doc, change, selUpdate, ignoreReadOnly) { - if (doc.cm) { - if (!doc.cm.curOp) return operation(doc.cm, makeChange)(doc, change, selUpdate, ignoreReadOnly); - if (doc.cm.state.suppressEdits) return; - } - - if (hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange")) { - change = filterChange(doc, change, true); - if (!change) return; - } - - // Possibly split or suppress the update based on the presence - // of read-only spans in its range. - var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to); - if (split) { - for (var i = split.length - 1; i >= 1; --i) - makeChangeNoReadonly(doc, {from: split[i].from, to: split[i].to, text: [""]}); - if (split.length) - makeChangeNoReadonly(doc, {from: split[0].from, to: split[0].to, text: change.text}, selUpdate); - } else { - makeChangeNoReadonly(doc, change, selUpdate); - } - } + setOption: function(option, value) { + var options = this.options, old = options[option] + if (options[option] == value && option != "mode") { return } + options[option] = value + if (optionHandlers.hasOwnProperty(option)) + { operation(this, optionHandlers[option])(this, value, old) } + signal(this, "optionChange", this, option) + }, + + getOption: function(option) {return this.options[option]}, + getDoc: function() {return this.doc}, - function makeChangeNoReadonly(doc, change, selUpdate) { - if (change.text.length == 1 && change.text[0] == "" && posEq(change.from, change.to)) return; - var selAfter = computeSelAfterChange(doc, change, selUpdate); - addToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN); + addKeyMap: function(map, bottom) { + this.state.keyMaps[bottom ? "push" : "unshift"](getKeyMap(map)) + }, + removeKeyMap: function(map) { + var maps = this.state.keyMaps + for (var i = 0; i < maps.length; ++i) + { if (maps[i] == map || maps[i].name == map) { + maps.splice(i, 1) + return true + } } + }, - makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change)); - var rebased = []; + addOverlay: methodOp(function(spec, options) { + var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec) + if (mode.startState) { throw new Error("Overlays may not be stateful.") } + insertSorted(this.state.overlays, + {mode: mode, modeSpec: spec, opaque: options && options.opaque, + priority: (options && options.priority) || 0}, + function (overlay) { return overlay.priority; }) + this.state.modeGen++ + regChange(this) + }), + removeOverlay: methodOp(function(spec) { + var this$1 = this; - linkedDocs(doc, function(doc, sharedHist) { - if (!sharedHist && indexOf(rebased, doc.history) == -1) { - rebaseHist(doc.history, change); - rebased.push(doc.history); + var overlays = this.state.overlays + for (var i = 0; i < overlays.length; ++i) { + var cur = overlays[i].modeSpec + if (cur == spec || typeof spec == "string" && cur.name == spec) { + overlays.splice(i, 1) + this$1.state.modeGen++ + regChange(this$1) + return + } } - makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change)); - }); - } + }), - function makeChangeFromHistory(doc, type) { - if (doc.cm && doc.cm.state.suppressEdits) return; + indentLine: methodOp(function(n, dir, aggressive) { + if (typeof dir != "string" && typeof dir != "number") { + if (dir == null) { dir = this.options.smartIndent ? "smart" : "prev" } + else { dir = dir ? "add" : "subtract" } + } + if (isLine(this.doc, n)) { indentLine(this, n, dir, aggressive) } + }), + indentSelection: methodOp(function(how) { + var this$1 = this; + + var ranges = this.doc.sel.ranges, end = -1 + for (var i = 0; i < ranges.length; i++) { + var range = ranges[i] + if (!range.empty()) { + var from = range.from(), to = range.to() + var start = Math.max(end, from.line) + end = Math.min(this$1.lastLine(), to.line - (to.ch ? 0 : 1)) + 1 + for (var j = start; j < end; ++j) + { indentLine(this$1, j, how) } + var newRanges = this$1.doc.sel.ranges + if (from.ch == 0 && ranges.length == newRanges.length && newRanges[i].from().ch > 0) + { replaceOneSelection(this$1.doc, i, new Range(from, newRanges[i].to()), sel_dontScroll) } + } else if (range.head.line > end) { + indentLine(this$1, range.head.line, how, true) + end = range.head.line + if (i == this$1.doc.sel.primIndex) { ensureCursorVisible(this$1) } + } + } + }), - var hist = doc.history; - var event = (type == "undo" ? hist.done : hist.undone).pop(); - if (!event) return; + // Fetch the parser token for a given character. Useful for hacks + // that want to inspect the mode state (say, for completion). + getTokenAt: function(pos, precise) { + return takeToken(this, pos, precise) + }, - var anti = {changes: [], anchorBefore: event.anchorAfter, headBefore: event.headAfter, - anchorAfter: event.anchorBefore, headAfter: event.headBefore, - generation: hist.generation}; - (type == "undo" ? hist.undone : hist.done).push(anti); - hist.generation = event.generation || ++hist.maxGeneration; + getLineTokens: function(line, precise) { + return takeToken(this, Pos(line), precise, true) + }, - var filter = hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange"); + getTokenTypeAt: function(pos) { + pos = clipPos(this.doc, pos) + var styles = getLineStyles(this, getLine(this.doc, pos.line)) + var before = 0, after = (styles.length - 1) / 2, ch = pos.ch + var type + if (ch == 0) { type = styles[2] } + else { for (;;) { + var mid = (before + after) >> 1 + if ((mid ? styles[mid * 2 - 1] : 0) >= ch) { after = mid } + else if (styles[mid * 2 + 1] < ch) { before = mid + 1 } + else { type = styles[mid * 2 + 2]; break } + } } + var cut = type ? type.indexOf("overlay ") : -1 + return cut < 0 ? type : cut == 0 ? null : type.slice(0, cut - 1) + }, - for (var i = event.changes.length - 1; i >= 0; --i) { - var change = event.changes[i]; - change.origin = type; - if (filter && !filterChange(doc, change, false)) { - (type == "undo" ? hist.done : hist.undone).length = 0; - return; - } + getModeAt: function(pos) { + var mode = this.doc.mode + if (!mode.innerMode) { return mode } + return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode + }, - anti.changes.push(historyChangeFromChange(doc, change)); + getHelper: function(pos, type) { + return this.getHelpers(pos, type)[0] + }, - var after = i ? computeSelAfterChange(doc, change, null) - : {anchor: event.anchorBefore, head: event.headBefore}; - makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change)); - var rebased = []; + getHelpers: function(pos, type) { + var this$1 = this; - linkedDocs(doc, function(doc, sharedHist) { - if (!sharedHist && indexOf(rebased, doc.history) == -1) { - rebaseHist(doc.history, change); - rebased.push(doc.history); - } - makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change)); - }); - } - } - - function shiftDoc(doc, distance) { - function shiftPos(pos) {return Pos(pos.line + distance, pos.ch);} - doc.first += distance; - if (doc.cm) regChange(doc.cm, doc.first, doc.first, distance); - doc.sel.head = shiftPos(doc.sel.head); doc.sel.anchor = shiftPos(doc.sel.anchor); - doc.sel.from = shiftPos(doc.sel.from); doc.sel.to = shiftPos(doc.sel.to); - } - - function makeChangeSingleDoc(doc, change, selAfter, spans) { - if (doc.cm && !doc.cm.curOp) - return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans); - - if (change.to.line < doc.first) { - shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line)); - return; - } - if (change.from.line > doc.lastLine()) return; - - // Clip the change to the size of this doc - if (change.from.line < doc.first) { - var shift = change.text.length - 1 - (doc.first - change.from.line); - shiftDoc(doc, shift); - change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch), - text: [lst(change.text)], origin: change.origin}; - } - var last = doc.lastLine(); - if (change.to.line > last) { - change = {from: change.from, to: Pos(last, getLine(doc, last).text.length), - text: [change.text[0]], origin: change.origin}; - } - - change.removed = getBetween(doc, change.from, change.to); - - if (!selAfter) selAfter = computeSelAfterChange(doc, change, null); - if (doc.cm) makeChangeSingleDocInEditor(doc.cm, change, spans, selAfter); - else updateDoc(doc, change, spans, selAfter); - } - - function makeChangeSingleDocInEditor(cm, change, spans, selAfter) { - var doc = cm.doc, display = cm.display, from = change.from, to = change.to; - - var recomputeMaxLength = false, checkWidthStart = from.line; - if (!cm.options.lineWrapping) { - checkWidthStart = lineNo(visualLine(doc, getLine(doc, from.line))); - doc.iter(checkWidthStart, to.line + 1, function(line) { - if (line == display.maxLine) { - recomputeMaxLength = true; - return true; - } - }); - } - - if (!posLess(doc.sel.head, change.from) && !posLess(change.to, doc.sel.head)) - cm.curOp.cursorActivity = true; - - updateDoc(doc, change, spans, selAfter, estimateHeight(cm)); - - if (!cm.options.lineWrapping) { - doc.iter(checkWidthStart, from.line + change.text.length, function(line) { - var len = lineLength(doc, line); - if (len > display.maxLineLength) { - display.maxLine = line; - display.maxLineLength = len; - display.maxLineChanged = true; - recomputeMaxLength = false; - } - }); - if (recomputeMaxLength) cm.curOp.updateMaxLine = true; - } - - // Adjust frontier, schedule worker - doc.frontier = Math.min(doc.frontier, from.line); - startWorker(cm, 400); - - var lendiff = change.text.length - (to.line - from.line) - 1; - // Remember that these lines changed, for updating the display - regChange(cm, from.line, to.line + 1, lendiff); - - if (hasHandler(cm, "change")) { - var changeObj = {from: from, to: to, - text: change.text, - removed: change.removed, - origin: change.origin}; - if (cm.curOp.textChanged) { - for (var cur = cm.curOp.textChanged; cur.next; cur = cur.next) {} - cur.next = changeObj; - } else cm.curOp.textChanged = changeObj; - } - } - - function replaceRange(doc, code, from, to, origin) { - if (!to) to = from; - if (posLess(to, from)) { var tmp = to; to = from; from = tmp; } - if (typeof code == "string") code = splitLines(code); - makeChange(doc, {from: from, to: to, text: code, origin: origin}, null); - } - - // POSITION OBJECT - - function Pos(line, ch) { - if (!(this instanceof Pos)) return new Pos(line, ch); - this.line = line; this.ch = ch; - } - CodeMirror.Pos = Pos; - - function posEq(a, b) {return a.line == b.line && a.ch == b.ch;} - function posLess(a, b) {return a.line < b.line || (a.line == b.line && a.ch < b.ch);} - function cmp(a, b) {return a.line - b.line || a.ch - b.ch;} - function copyPos(x) {return Pos(x.line, x.ch);} - - // SELECTION - - function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1));} - function clipPos(doc, pos) { - if (pos.line < doc.first) return Pos(doc.first, 0); - var last = doc.first + doc.size - 1; - if (pos.line > last) return Pos(last, getLine(doc, last).text.length); - return clipToLen(pos, getLine(doc, pos.line).text.length); - } - function clipToLen(pos, linelen) { - var ch = pos.ch; - if (ch == null || ch > linelen) return Pos(pos.line, linelen); - else if (ch < 0) return Pos(pos.line, 0); - else return pos; - } - function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size;} - - // If shift is held, this will move the selection anchor. Otherwise, - // it'll set the whole selection. - function extendSelection(doc, pos, other, bias) { - if (doc.sel.shift || doc.sel.extend) { - var anchor = doc.sel.anchor; - if (other) { - var posBefore = posLess(pos, anchor); - if (posBefore != posLess(other, anchor)) { - anchor = pos; - pos = other; - } else if (posBefore != posLess(pos, other)) { - pos = other; - } - } - setSelection(doc, anchor, pos, bias); - } else { - setSelection(doc, pos, other || pos, bias); - } - if (doc.cm) doc.cm.curOp.userSelChange = true; - } - - function filterSelectionChange(doc, anchor, head) { - var obj = {anchor: anchor, head: head}; - signal(doc, "beforeSelectionChange", doc, obj); - if (doc.cm) signal(doc.cm, "beforeSelectionChange", doc.cm, obj); - obj.anchor = clipPos(doc, obj.anchor); obj.head = clipPos(doc, obj.head); - return obj; - } - - // Update the selection. Last two args are only used by - // updateDoc, since they have to be expressed in the line - // numbers before the update. - function setSelection(doc, anchor, head, bias, checkAtomic) { - if (!checkAtomic && hasHandler(doc, "beforeSelectionChange") || doc.cm && hasHandler(doc.cm, "beforeSelectionChange")) { - var filtered = filterSelectionChange(doc, anchor, head); - head = filtered.head; - anchor = filtered.anchor; - } - - var sel = doc.sel; - sel.goalColumn = null; - if (bias == null) bias = posLess(head, sel.head) ? -1 : 1; - // Skip over atomic spans. - if (checkAtomic || !posEq(anchor, sel.anchor)) - anchor = skipAtomic(doc, anchor, bias, checkAtomic != "push"); - if (checkAtomic || !posEq(head, sel.head)) - head = skipAtomic(doc, head, bias, checkAtomic != "push"); - - if (posEq(sel.anchor, anchor) && posEq(sel.head, head)) return; - - sel.anchor = anchor; sel.head = head; - var inv = posLess(head, anchor); - sel.from = inv ? head : anchor; - sel.to = inv ? anchor : head; - - if (doc.cm) - doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged = - doc.cm.curOp.cursorActivity = true; - - signalLater(doc, "cursorActivity", doc); - } - - function reCheckSelection(cm) { - setSelection(cm.doc, cm.doc.sel.from, cm.doc.sel.to, null, "push"); - } - - function skipAtomic(doc, pos, bias, mayClear) { - var flipped = false, curPos = pos; - var dir = bias || 1; - doc.cantEdit = false; - search: for (;;) { - var line = getLine(doc, curPos.line); - if (line.markedSpans) { - for (var i = 0; i < line.markedSpans.length; ++i) { - var sp = line.markedSpans[i], m = sp.marker; - if ((sp.from == null || (m.inclusiveLeft ? sp.from <= curPos.ch : sp.from < curPos.ch)) && - (sp.to == null || (m.inclusiveRight ? sp.to >= curPos.ch : sp.to > curPos.ch))) { - if (mayClear) { - signal(m, "beforeCursorEnter"); - if (m.explicitlyCleared) { - if (!line.markedSpans) break; - else {--i; continue;} - } - } - if (!m.atomic) continue; - var newPos = m.find()[dir < 0 ? "from" : "to"]; - if (posEq(newPos, curPos)) { - newPos.ch += dir; - if (newPos.ch < 0) { - if (newPos.line > doc.first) newPos = clipPos(doc, Pos(newPos.line - 1)); - else newPos = null; - } else if (newPos.ch > line.text.length) { - if (newPos.line < doc.first + doc.size - 1) newPos = Pos(newPos.line + 1, 0); - else newPos = null; - } - if (!newPos) { - if (flipped) { - // Driven in a corner -- no valid cursor position found at all - // -- try again *with* clearing, if we didn't already - if (!mayClear) return skipAtomic(doc, pos, bias, true); - // Otherwise, turn off editing until further notice, and return the start of the doc - doc.cantEdit = true; - return Pos(doc.first, 0); - } - flipped = true; newPos = pos; dir = -dir; - } - } - curPos = newPos; - continue search; - } - } - } - return curPos; - } - } - - // SCROLLING - - function scrollCursorIntoView(cm) { - var coords = scrollPosIntoView(cm, cm.doc.sel.head, null, cm.options.cursorScrollMargin); - if (!cm.state.focused) return; - var display = cm.display, box = getRect(display.sizer), doScroll = null; - if (coords.top + box.top < 0) doScroll = true; - else if (coords.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) doScroll = false; - if (doScroll != null && !phantom) { - var scrollNode = elt("div", "\u200b", null, "position: absolute; top: " + - (coords.top - display.viewOffset) + "px; height: " + - (coords.bottom - coords.top + scrollerCutOff) + "px; left: " + - coords.left + "px; width: 2px;"); - cm.display.lineSpace.appendChild(scrollNode); - scrollNode.scrollIntoView(doScroll); - cm.display.lineSpace.removeChild(scrollNode); - } - } - - function scrollPosIntoView(cm, pos, end, margin) { - if (margin == null) margin = 0; - for (;;) { - var changed = false, coords = cursorCoords(cm, pos); - var endCoords = !end || end == pos ? coords : cursorCoords(cm, end); - var scrollPos = calculateScrollPos(cm, Math.min(coords.left, endCoords.left), - Math.min(coords.top, endCoords.top) - margin, - Math.max(coords.left, endCoords.left), - Math.max(coords.bottom, endCoords.bottom) + margin); - var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft; - if (scrollPos.scrollTop != null) { - setScrollTop(cm, scrollPos.scrollTop); - if (Math.abs(cm.doc.scrollTop - startTop) > 1) changed = true; - } - if (scrollPos.scrollLeft != null) { - setScrollLeft(cm, scrollPos.scrollLeft); - if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) changed = true; - } - if (!changed) return coords; - } - } - - function scrollIntoView(cm, x1, y1, x2, y2) { - var scrollPos = calculateScrollPos(cm, x1, y1, x2, y2); - if (scrollPos.scrollTop != null) setScrollTop(cm, scrollPos.scrollTop); - if (scrollPos.scrollLeft != null) setScrollLeft(cm, scrollPos.scrollLeft); - } - - function calculateScrollPos(cm, x1, y1, x2, y2) { - var display = cm.display, snapMargin = textHeight(cm.display); - if (y1 < 0) y1 = 0; - var screen = display.scroller.clientHeight - scrollerCutOff, screentop = display.scroller.scrollTop, result = {}; - var docBottom = cm.doc.height + paddingVert(display); - var atTop = y1 < snapMargin, atBottom = y2 > docBottom - snapMargin; - if (y1 < screentop) { - result.scrollTop = atTop ? 0 : y1; - } else if (y2 > screentop + screen) { - var newTop = Math.min(y1, (atBottom ? docBottom : y2) - screen); - if (newTop != screentop) result.scrollTop = newTop; - } - - var screenw = display.scroller.clientWidth - scrollerCutOff, screenleft = display.scroller.scrollLeft; - x1 += display.gutters.offsetWidth; x2 += display.gutters.offsetWidth; - var gutterw = display.gutters.offsetWidth; - var atLeft = x1 < gutterw + 10; - if (x1 < screenleft + gutterw || atLeft) { - if (atLeft) x1 = 0; - result.scrollLeft = Math.max(0, x1 - 10 - gutterw); - } else if (x2 > screenw + screenleft - 3) { - result.scrollLeft = x2 + 10 - screenw; - } - return result; - } - - function updateScrollPos(cm, left, top) { - cm.curOp.updateScrollPos = {scrollLeft: left == null ? cm.doc.scrollLeft : left, - scrollTop: top == null ? cm.doc.scrollTop : top}; - } - - function addToScrollPos(cm, left, top) { - var pos = cm.curOp.updateScrollPos || (cm.curOp.updateScrollPos = {scrollLeft: cm.doc.scrollLeft, scrollTop: cm.doc.scrollTop}); - var scroll = cm.display.scroller; - pos.scrollTop = Math.max(0, Math.min(scroll.scrollHeight - scroll.clientHeight, pos.scrollTop + top)); - pos.scrollLeft = Math.max(0, Math.min(scroll.scrollWidth - scroll.clientWidth, pos.scrollLeft + left)); - } - - // API UTILITIES - - function indentLine(cm, n, how, aggressive) { - var doc = cm.doc, state; - if (how == null) how = "add"; - if (how == "smart") { - if (!cm.doc.mode.indent) how = "prev"; - else state = getStateBefore(cm, n); - } - - var tabSize = cm.options.tabSize; - var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize); - if (line.stateAfter) line.stateAfter = null; - var curSpaceString = line.text.match(/^\s*/)[0], indentation; - if (!aggressive && !/\S/.test(line.text)) { - indentation = 0; - how = "not"; - } else if (how == "smart") { - indentation = cm.doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text); - if (indentation == Pass) { - if (!aggressive) return; - how = "prev"; - } - } - if (how == "prev") { - if (n > doc.first) indentation = countColumn(getLine(doc, n-1).text, null, tabSize); - else indentation = 0; - } else if (how == "add") { - indentation = curSpace + cm.options.indentUnit; - } else if (how == "subtract") { - indentation = curSpace - cm.options.indentUnit; - } else if (typeof how == "number") { - indentation = curSpace + how; - } - indentation = Math.max(0, indentation); - - var indentString = "", pos = 0; - if (cm.options.indentWithTabs) - for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += "\t";} - if (pos < indentation) indentString += spaceStr(indentation - pos); - - if (indentString != curSpaceString) - replaceRange(cm.doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), "+input"); - else if (doc.sel.head.line == n && doc.sel.head.ch < curSpaceString.length) - setSelection(doc, Pos(n, curSpaceString.length), Pos(n, curSpaceString.length), 1); - line.stateAfter = null; - } - - function changeLine(cm, handle, op) { - var no = handle, line = handle, doc = cm.doc; - if (typeof handle == "number") line = getLine(doc, clipLine(doc, handle)); - else no = lineNo(handle); - if (no == null) return null; - if (op(line, no)) regChange(cm, no, no + 1); - return line; - } - - function findPosH(doc, pos, dir, unit, visually) { - var line = pos.line, ch = pos.ch, origDir = dir; - var lineObj = getLine(doc, line); - var possible = true; - function findNextLine() { - var l = line + dir; - if (l < doc.first || l >= doc.first + doc.size) return (possible = false); - line = l; - return lineObj = getLine(doc, l); - } - function moveOnce(boundToLine) { - var next = (visually ? moveVisually : moveLogically)(lineObj, ch, dir, true); - if (next == null) { - if (!boundToLine && findNextLine()) { - if (visually) ch = (dir < 0 ? lineRight : lineLeft)(lineObj); - else ch = dir < 0 ? lineObj.text.length : 0; - } else return (possible = false); - } else ch = next; - return true; - } - - if (unit == "char") moveOnce(); - else if (unit == "column") moveOnce(true); - else if (unit == "word" || unit == "group") { - var sawType = null, group = unit == "group"; - for (var first = true;; first = false) { - if (dir < 0 && !moveOnce(!first)) break; - var cur = lineObj.text.charAt(ch) || "\n"; - var type = isWordChar(cur) ? "w" - : group && cur == "\n" ? "n" - : !group || /\s/.test(cur) ? null - : "p"; - if (group && !first && !type) type = "s"; - if (sawType && sawType != type) { - if (dir < 0) {dir = 1; moveOnce();} - break; - } - - if (type) sawType = type; - if (dir > 0 && !moveOnce(!first)) break; - } - } - var result = skipAtomic(doc, Pos(line, ch), origDir, true); - if (!possible) result.hitSide = true; - return result; - } - - function findPosV(cm, pos, dir, unit) { - var doc = cm.doc, x = pos.left, y; - if (unit == "page") { - var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight); - y = pos.top + dir * (pageSize - (dir < 0 ? 1.5 : .5) * textHeight(cm.display)); - } else if (unit == "line") { - y = dir > 0 ? pos.bottom + 3 : pos.top - 3; - } - for (;;) { - var target = coordsChar(cm, x, y); - if (!target.outside) break; - if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break; } - y += dir * 5; - } - return target; - } - - function findWordAt(line, pos) { - var start = pos.ch, end = pos.ch; - if (line) { - if ((pos.xRel < 0 || end == line.length) && start) --start; else ++end; - var startChar = line.charAt(start); - var check = isWordChar(startChar) ? isWordChar - : /\s/.test(startChar) ? function(ch) {return /\s/.test(ch);} - : function(ch) {return !/\s/.test(ch) && !isWordChar(ch);}; - while (start > 0 && check(line.charAt(start - 1))) --start; - while (end < line.length && check(line.charAt(end))) ++end; - } - return {from: Pos(pos.line, start), to: Pos(pos.line, end)}; - } - - function selectLine(cm, line) { - extendSelection(cm.doc, Pos(line, 0), clipPos(cm.doc, Pos(line + 1, 0))); - } - - // PROTOTYPE - - // The publicly visible API. Note that operation(null, f) means - // 'wrap f in an operation, performed on its `this` parameter' - - CodeMirror.prototype = { - constructor: CodeMirror, - focus: function(){window.focus(); focusInput(this); fastPoll(this);}, - - setOption: function(option, value) { - var options = this.options, old = options[option]; - if (options[option] == value && option != "mode") return; - options[option] = value; - if (optionHandlers.hasOwnProperty(option)) - operation(this, optionHandlers[option])(this, value, old); - }, - - getOption: function(option) {return this.options[option];}, - getDoc: function() {return this.doc;}, - - addKeyMap: function(map, bottom) { - this.state.keyMaps[bottom ? "push" : "unshift"](map); - }, - removeKeyMap: function(map) { - var maps = this.state.keyMaps; - for (var i = 0; i < maps.length; ++i) - if (maps[i] == map || (typeof maps[i] != "string" && maps[i].name == map)) { - maps.splice(i, 1); - return true; - } - }, - - addOverlay: operation(null, function(spec, options) { - var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec); - if (mode.startState) throw new Error("Overlays may not be stateful."); - this.state.overlays.push({mode: mode, modeSpec: spec, opaque: options && options.opaque}); - this.state.modeGen++; - regChange(this); - }), - removeOverlay: operation(null, function(spec) { - var overlays = this.state.overlays; - for (var i = 0; i < overlays.length; ++i) { - var cur = overlays[i].modeSpec; - if (cur == spec || typeof spec == "string" && cur.name == spec) { - overlays.splice(i, 1); - this.state.modeGen++; - regChange(this); - return; - } - } - }), - - indentLine: operation(null, function(n, dir, aggressive) { - if (typeof dir != "string" && typeof dir != "number") { - if (dir == null) dir = this.options.smartIndent ? "smart" : "prev"; - else dir = dir ? "add" : "subtract"; - } - if (isLine(this.doc, n)) indentLine(this, n, dir, aggressive); - }), - indentSelection: operation(null, function(how) { - var sel = this.doc.sel; - if (posEq(sel.from, sel.to)) return indentLine(this, sel.from.line, how, true); - var e = sel.to.line - (sel.to.ch ? 0 : 1); - for (var i = sel.from.line; i <= e; ++i) indentLine(this, i, how); - }), - - // Fetch the parser token for a given character. Useful for hacks - // that want to inspect the mode state (say, for completion). - getTokenAt: function(pos, precise) { - var doc = this.doc; - pos = clipPos(doc, pos); - var state = getStateBefore(this, pos.line, precise), mode = this.doc.mode; - var line = getLine(doc, pos.line); - var stream = new StringStream(line.text, this.options.tabSize); - while (stream.pos < pos.ch && !stream.eol()) { - stream.start = stream.pos; - var style = mode.token(stream, state); - } - return {start: stream.start, - end: stream.pos, - string: stream.current(), - className: style || null, // Deprecated, use 'type' instead - type: style || null, - state: state}; - }, - - getTokenTypeAt: function(pos) { - pos = clipPos(this.doc, pos); - var styles = getLineStyles(this, getLine(this.doc, pos.line)); - var before = 0, after = (styles.length - 1) / 2, ch = pos.ch; - if (ch == 0) return styles[2]; - for (;;) { - var mid = (before + after) >> 1; - if ((mid ? styles[mid * 2 - 1] : 0) >= ch) after = mid; - else if (styles[mid * 2 + 1] < ch) before = mid + 1; - else return styles[mid * 2 + 2]; - } - }, - - getModeAt: function(pos) { - var mode = this.doc.mode; - if (!mode.innerMode) return mode; - return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode; - }, - - getHelper: function(pos, type) { - return this.getHelpers(pos, type)[0]; - }, - - getHelpers: function(pos, type) { - var found = []; - if (!helpers.hasOwnProperty(type)) return helpers; - var help = helpers[type], mode = this.getModeAt(pos); - if (typeof mode[type] == "string") { - if (help[mode[type]]) found.push(help[mode[type]]); - } else if (mode[type]) { - for (var i = 0; i < mode[type].length; i++) { - var val = help[mode[type][i]]; - if (val) found.push(val); + var found = [] + if (!helpers.hasOwnProperty(type)) { return found } + var help = helpers[type], mode = this.getModeAt(pos) + if (typeof mode[type] == "string") { + if (help[mode[type]]) { found.push(help[mode[type]]) } + } else if (mode[type]) { + for (var i = 0; i < mode[type].length; i++) { + var val = help[mode[type][i]] + if (val) { found.push(val) } } } else if (mode.helperType && help[mode.helperType]) { - found.push(help[mode.helperType]); + found.push(help[mode.helperType]) } else if (help[mode.name]) { - found.push(help[mode.name]); + found.push(help[mode.name]) } - for (var i = 0; i < help._global.length; i++) { - var cur = help._global[i]; - if (cur.pred(mode, this) && indexOf(found, cur.val) == -1) - found.push(cur.val); + for (var i$1 = 0; i$1 < help._global.length; i$1++) { + var cur = help._global[i$1] + if (cur.pred(mode, this$1) && indexOf(found, cur.val) == -1) + { found.push(cur.val) } } - return found; + return found }, getStateAfter: function(line, precise) { - var doc = this.doc; - line = clipLine(doc, line == null ? doc.first + doc.size - 1: line); - return getStateBefore(this, line + 1, precise); + var doc = this.doc + line = clipLine(doc, line == null ? doc.first + doc.size - 1: line) + return getStateBefore(this, line + 1, precise) }, cursorCoords: function(start, mode) { - var pos, sel = this.doc.sel; - if (start == null) pos = sel.head; - else if (typeof start == "object") pos = clipPos(this.doc, start); - else pos = start ? sel.from : sel.to; - return cursorCoords(this, pos, mode || "page"); + var pos, range = this.doc.sel.primary() + if (start == null) { pos = range.head } + else if (typeof start == "object") { pos = clipPos(this.doc, start) } + else { pos = start ? range.from() : range.to() } + return cursorCoords(this, pos, mode || "page") }, charCoords: function(pos, mode) { - return charCoords(this, clipPos(this.doc, pos), mode || "page"); + return charCoords(this, clipPos(this.doc, pos), mode || "page") }, coordsChar: function(coords, mode) { - coords = fromCoordSystem(this, coords, mode || "page"); - return coordsChar(this, coords.left, coords.top); + coords = fromCoordSystem(this, coords, mode || "page") + return coordsChar(this, coords.left, coords.top) }, lineAtHeight: function(height, mode) { - height = fromCoordSystem(this, {top: height, left: 0}, mode || "page").top; - return lineAtHeight(this.doc, height + this.display.viewOffset); + height = fromCoordSystem(this, {top: height, left: 0}, mode || "page").top + return lineAtHeight(this.doc, height + this.display.viewOffset) }, - heightAtLine: function(line, mode) { - var end = false, last = this.doc.first + this.doc.size - 1; - if (line < this.doc.first) line = this.doc.first; - else if (line > last) { line = last; end = true; } - var lineObj = getLine(this.doc, line); - return intoCoordSystem(this, getLine(this.doc, line), {top: 0, left: 0}, mode || "page").top + - (end ? this.doc.height - heightAtLine(this, lineObj) : 0); - }, - - defaultTextHeight: function() { return textHeight(this.display); }, - defaultCharWidth: function() { return charWidth(this.display); }, - - setGutterMarker: operation(null, function(line, gutterID, value) { - return changeLine(this, line, function(line) { - var markers = line.gutterMarkers || (line.gutterMarkers = {}); - markers[gutterID] = value; - if (!value && isEmpty(markers)) line.gutterMarkers = null; - return true; - }); - }), - - clearGutter: operation(null, function(gutterID) { - var cm = this, doc = cm.doc, i = doc.first; - doc.iter(function(line) { - if (line.gutterMarkers && line.gutterMarkers[gutterID]) { - line.gutterMarkers[gutterID] = null; - regChange(cm, i, i + 1); - if (isEmpty(line.gutterMarkers)) line.gutterMarkers = null; - } - ++i; - }); - }), - - addLineClass: operation(null, function(handle, where, cls) { - return changeLine(this, handle, function(line) { - var prop = where == "text" ? "textClass" : where == "background" ? "bgClass" : "wrapClass"; - if (!line[prop]) line[prop] = cls; - else if (new RegExp("(?:^|\\s)" + cls + "(?:$|\\s)").test(line[prop])) return false; - else line[prop] += " " + cls; - return true; - }); - }), - - removeLineClass: operation(null, function(handle, where, cls) { - return changeLine(this, handle, function(line) { - var prop = where == "text" ? "textClass" : where == "background" ? "bgClass" : "wrapClass"; - var cur = line[prop]; - if (!cur) return false; - else if (cls == null) line[prop] = null; - else { - var found = cur.match(new RegExp("(?:^|\\s+)" + cls + "(?:$|\\s+)")); - if (!found) return false; - var end = found.index + found[0].length; - line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? "" : " ") + cur.slice(end) || null; - } - return true; - }); - }), - - addLineWidget: operation(null, function(handle, node, options) { - return addLineWidget(this, handle, node, options); - }), - - removeLineWidget: function(widget) { widget.clear(); }, - - lineInfo: function(line) { + heightAtLine: function(line, mode, includeWidgets) { + var end = false, lineObj if (typeof line == "number") { - if (!isLine(this.doc, line)) return null; - var n = line; - line = getLine(this.doc, line); - if (!line) return null; + var last = this.doc.first + this.doc.size - 1 + if (line < this.doc.first) { line = this.doc.first } + else if (line > last) { line = last; end = true } + lineObj = getLine(this.doc, line) } else { - var n = lineNo(line); - if (n == null) return null; + lineObj = line } - return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers, - textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass, - widgets: line.widgets}; + return intoCoordSystem(this, lineObj, {top: 0, left: 0}, mode || "page", includeWidgets || end).top + + (end ? this.doc.height - heightAtLine(lineObj) : 0) }, - getViewport: function() { return {from: this.display.showingFrom, to: this.display.showingTo};}, + defaultTextHeight: function() { return textHeight(this.display) }, + defaultCharWidth: function() { return charWidth(this.display) }, + + getViewport: function() { return {from: this.display.viewFrom, to: this.display.viewTo}}, addWidget: function(pos, node, scroll, vert, horiz) { - var display = this.display; - pos = cursorCoords(this, clipPos(this.doc, pos)); - var top = pos.bottom, left = pos.left; - node.style.position = "absolute"; - display.sizer.appendChild(node); + var display = this.display + pos = cursorCoords(this, clipPos(this.doc, pos)) + var top = pos.bottom, left = pos.left + node.style.position = "absolute" + node.setAttribute("cm-ignore-events", "true") + this.display.input.setUneditable(node) + display.sizer.appendChild(node) if (vert == "over") { - top = pos.top; + top = pos.top } else if (vert == "above" || vert == "near") { var vspace = Math.max(display.wrapper.clientHeight, this.doc.height), - hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth); + hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth) // Default to positioning above (if specified and possible); otherwise default to positioning below if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight) - top = pos.top - node.offsetHeight; + { top = pos.top - node.offsetHeight } else if (pos.bottom + node.offsetHeight <= vspace) - top = pos.bottom; + { top = pos.bottom } if (left + node.offsetWidth > hspace) - left = hspace - node.offsetWidth; + { left = hspace - node.offsetWidth } } - node.style.top = top + "px"; - node.style.left = node.style.right = ""; + node.style.top = top + "px" + node.style.left = node.style.right = "" if (horiz == "right") { - left = display.sizer.clientWidth - node.offsetWidth; - node.style.right = "0px"; + left = display.sizer.clientWidth - node.offsetWidth + node.style.right = "0px" } else { - if (horiz == "left") left = 0; - else if (horiz == "middle") left = (display.sizer.clientWidth - node.offsetWidth) / 2; - node.style.left = left + "px"; + if (horiz == "left") { left = 0 } + else if (horiz == "middle") { left = (display.sizer.clientWidth - node.offsetWidth) / 2 } + node.style.left = left + "px" } if (scroll) - scrollIntoView(this, left, top, left + node.offsetWidth, top + node.offsetHeight); + { scrollIntoView(this, {left: left, top: top, right: left + node.offsetWidth, bottom: top + node.offsetHeight}) } }, - triggerOnKeyDown: operation(null, onKeyDown), - triggerOnKeyPress: operation(null, onKeyPress), - triggerOnKeyUp: operation(null, onKeyUp), + triggerOnKeyDown: methodOp(onKeyDown), + triggerOnKeyPress: methodOp(onKeyPress), + triggerOnKeyUp: onKeyUp, execCommand: function(cmd) { if (commands.hasOwnProperty(cmd)) - return commands[cmd](this); + { return commands[cmd].call(null, this) } }, + triggerElectric: methodOp(function(text) { triggerElectric(this, text) }), + findPosH: function(from, amount, unit, visually) { - var dir = 1; - if (amount < 0) { dir = -1; amount = -amount; } - for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) { - cur = findPosH(this.doc, cur, dir, unit, visually); - if (cur.hitSide) break; + var this$1 = this; + + var dir = 1 + if (amount < 0) { dir = -1; amount = -amount } + var cur = clipPos(this.doc, from) + for (var i = 0; i < amount; ++i) { + cur = findPosH(this$1.doc, cur, dir, unit, visually) + if (cur.hitSide) { break } } - return cur; + return cur }, - moveH: operation(null, function(dir, unit) { - var sel = this.doc.sel, pos; - if (sel.shift || sel.extend || posEq(sel.from, sel.to)) - pos = findPosH(this.doc, sel.head, dir, unit, this.options.rtlMoveVisually); - else - pos = dir < 0 ? sel.from : sel.to; - extendSelection(this.doc, pos, pos, dir); + moveH: methodOp(function(dir, unit) { + var this$1 = this; + + this.extendSelectionsBy(function (range) { + if (this$1.display.shift || this$1.doc.extend || range.empty()) + { return findPosH(this$1.doc, range.head, dir, unit, this$1.options.rtlMoveVisually) } + else + { return dir < 0 ? range.from() : range.to() } + }, sel_move) }), - deleteH: operation(null, function(dir, unit) { - var sel = this.doc.sel; - if (!posEq(sel.from, sel.to)) replaceRange(this.doc, "", sel.from, sel.to, "+delete"); - else replaceRange(this.doc, "", sel.from, findPosH(this.doc, sel.head, dir, unit, false), "+delete"); - this.curOp.userSelChange = true; + deleteH: methodOp(function(dir, unit) { + var sel = this.doc.sel, doc = this.doc + if (sel.somethingSelected()) + { doc.replaceSelection("", null, "+delete") } + else + { deleteNearSelection(this, function (range) { + var other = findPosH(doc, range.head, dir, unit, false) + return dir < 0 ? {from: other, to: range.head} : {from: range.head, to: other} + }) } }), findPosV: function(from, amount, unit, goalColumn) { - var dir = 1, x = goalColumn; - if (amount < 0) { dir = -1; amount = -amount; } - for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) { - var coords = cursorCoords(this, cur, "div"); - if (x == null) x = coords.left; - else coords.left = x; - cur = findPosV(this, coords, dir, unit); - if (cur.hitSide) break; + var this$1 = this; + + var dir = 1, x = goalColumn + if (amount < 0) { dir = -1; amount = -amount } + var cur = clipPos(this.doc, from) + for (var i = 0; i < amount; ++i) { + var coords = cursorCoords(this$1, cur, "div") + if (x == null) { x = coords.left } + else { coords.left = x } + cur = findPosV(this$1, coords, dir, unit) + if (cur.hitSide) { break } } - return cur; + return cur }, - moveV: operation(null, function(dir, unit) { - var sel = this.doc.sel, target, goal; - if (sel.shift || sel.extend || posEq(sel.from, sel.to)) { - var pos = cursorCoords(this, sel.head, "div"); - if (sel.goalColumn != null) pos.left = sel.goalColumn; - target = findPosV(this, pos, dir, unit); - if (unit == "page") addToScrollPos(this, 0, charCoords(this, target, "div").top - pos.top); - goal = pos.left; - } else { - target = dir < 0 ? sel.from : sel.to; - } - extendSelection(this.doc, target, target, dir); - if (goal != null) sel.goalColumn = goal; + moveV: methodOp(function(dir, unit) { + var this$1 = this; + + var doc = this.doc, goals = [] + var collapse = !this.display.shift && !doc.extend && doc.sel.somethingSelected() + doc.extendSelectionsBy(function (range) { + if (collapse) + { return dir < 0 ? range.from() : range.to() } + var headPos = cursorCoords(this$1, range.head, "div") + if (range.goalColumn != null) { headPos.left = range.goalColumn } + goals.push(headPos.left) + var pos = findPosV(this$1, headPos, dir, unit) + if (unit == "page" && range == doc.sel.primary()) + { addToScrollTop(this$1, charCoords(this$1, pos, "div").top - headPos.top) } + return pos + }, sel_move) + if (goals.length) { for (var i = 0; i < doc.sel.ranges.length; i++) + { doc.sel.ranges[i].goalColumn = goals[i] } } }), + // Find the word at the given position (as returned by coordsChar). + findWordAt: function(pos) { + var doc = this.doc, line = getLine(doc, pos.line).text + var start = pos.ch, end = pos.ch + if (line) { + var helper = this.getHelper(pos, "wordChars") + if ((pos.sticky == "before" || end == line.length) && start) { --start; } else { ++end } + var startChar = line.charAt(start) + var check = isWordChar(startChar, helper) + ? function (ch) { return isWordChar(ch, helper); } + : /\s/.test(startChar) ? function (ch) { return /\s/.test(ch); } + : function (ch) { return (!/\s/.test(ch) && !isWordChar(ch)); } + while (start > 0 && check(line.charAt(start - 1))) { --start } + while (end < line.length && check(line.charAt(end))) { ++end } + } + return new Range(Pos(pos.line, start), Pos(pos.line, end)) + }, + toggleOverwrite: function(value) { - if (value != null && value == this.state.overwrite) return; + if (value != null && value == this.state.overwrite) { return } if (this.state.overwrite = !this.state.overwrite) - this.display.cursor.className += " CodeMirror-overwrite"; + { addClass(this.display.cursorDiv, "CodeMirror-overwrite") } else - this.display.cursor.className = this.display.cursor.className.replace(" CodeMirror-overwrite", ""); + { rmClass(this.display.cursorDiv, "CodeMirror-overwrite") } - signal(this, "overwriteToggle", this, this.state.overwrite); + signal(this, "overwriteToggle", this, this.state.overwrite) }, - hasFocus: function() { return document.activeElement == this.display.input; }, + hasFocus: function() { return this.display.input.getField() == activeElt() }, + isReadOnly: function() { return !!(this.options.readOnly || this.doc.cantEdit) }, - scrollTo: operation(null, function(x, y) { - updateScrollPos(this, x, y); - }), + scrollTo: methodOp(function (x, y) { scrollToCoords(this, x, y) }), getScrollInfo: function() { - var scroller = this.display.scroller, co = scrollerCutOff; + var scroller = this.display.scroller return {left: scroller.scrollLeft, top: scroller.scrollTop, - height: scroller.scrollHeight - co, width: scroller.scrollWidth - co, - clientHeight: scroller.clientHeight - co, clientWidth: scroller.clientWidth - co}; + height: scroller.scrollHeight - scrollGap(this) - this.display.barHeight, + width: scroller.scrollWidth - scrollGap(this) - this.display.barWidth, + clientHeight: displayHeight(this), clientWidth: displayWidth(this)} }, - scrollIntoView: operation(null, function(range, margin) { - if (range == null) range = {from: this.doc.sel.head, to: null}; - else if (typeof range == "number") range = {from: Pos(range, 0), to: null}; - else if (range.from == null) range = {from: range, to: null}; - if (!range.to) range.to = range.from; - if (!margin) margin = 0; + scrollIntoView: methodOp(function(range, margin) { + if (range == null) { + range = {from: this.doc.sel.primary().head, to: null} + if (margin == null) { margin = this.options.cursorScrollMargin } + } else if (typeof range == "number") { + range = {from: Pos(range, 0), to: null} + } else if (range.from == null) { + range = {from: range, to: null} + } + if (!range.to) { range.to = range.from } + range.margin = margin || 0 - var coords = range; if (range.from.line != null) { - this.curOp.scrollToPos = {from: range.from, to: range.to, margin: margin}; - coords = {from: cursorCoords(this, range.from), - to: cursorCoords(this, range.to)}; + scrollToRange(this, range) + } else { + scrollToCoordsRange(this, range.from, range.to, range.margin) } - var sPos = calculateScrollPos(this, Math.min(coords.from.left, coords.to.left), - Math.min(coords.from.top, coords.to.top) - margin, - Math.max(coords.from.right, coords.to.right), - Math.max(coords.from.bottom, coords.to.bottom) + margin); - updateScrollPos(this, sPos.scrollLeft, sPos.scrollTop); }), - setSize: operation(null, function(width, height) { - function interpret(val) { - return typeof val == "number" || /^\d+$/.test(String(val)) ? val + "px" : val; - } - if (width != null) this.display.wrapper.style.width = interpret(width); - if (height != null) this.display.wrapper.style.height = interpret(height); - if (this.options.lineWrapping) - this.display.measureLineCache.length = this.display.measureLineCachePos = 0; - this.curOp.forceUpdate = true; - signal(this, "refresh", this); + setSize: methodOp(function(width, height) { + var this$1 = this; + + var interpret = function (val) { return typeof val == "number" || /^\d+$/.test(String(val)) ? val + "px" : val; } + if (width != null) { this.display.wrapper.style.width = interpret(width) } + if (height != null) { this.display.wrapper.style.height = interpret(height) } + if (this.options.lineWrapping) { clearLineMeasurementCache(this) } + var lineNo = this.display.viewFrom + this.doc.iter(lineNo, this.display.viewTo, function (line) { + if (line.widgets) { for (var i = 0; i < line.widgets.length; i++) + { if (line.widgets[i].noHScroll) { regLineChange(this$1, lineNo, "widget"); break } } } + ++lineNo + }) + this.curOp.forceUpdate = true + signal(this, "refresh", this) }), - operation: function(f){return runInOp(this, f);}, + operation: function(f){return runInOp(this, f)}, - refresh: operation(null, function() { - var oldHeight = this.display.cachedTextHeight; - clearCaches(this); - updateScrollPos(this, this.doc.scrollLeft, this.doc.scrollTop); - regChange(this); + refresh: methodOp(function() { + var oldHeight = this.display.cachedTextHeight + regChange(this) + this.curOp.forceUpdate = true + clearCaches(this) + scrollToCoords(this, this.doc.scrollLeft, this.doc.scrollTop) + updateGutterSpace(this) if (oldHeight == null || Math.abs(oldHeight - textHeight(this.display)) > .5) - estimateLineHeights(this); - signal(this, "refresh", this); + { estimateLineHeights(this) } + signal(this, "refresh", this) }), - swapDoc: operation(null, function(doc) { - var old = this.doc; - old.cm = null; - attachDoc(this, doc); - clearCaches(this); - resetInput(this, true); - updateScrollPos(this, doc.scrollLeft, doc.scrollTop); - signalLater(this, "swapDoc", this, old); - return old; + swapDoc: methodOp(function(doc) { + var old = this.doc + old.cm = null + attachDoc(this, doc) + clearCaches(this) + this.display.input.reset() + scrollToCoords(this, doc.scrollLeft, doc.scrollTop) + this.curOp.forceScroll = true + signalLater(this, "swapDoc", this, old) + return old }), - getInputField: function(){return this.display.input;}, - getWrapperElement: function(){return this.display.wrapper;}, - getScrollerElement: function(){return this.display.scroller;}, - getGutterElement: function(){return this.display.gutters;} - }; - eventMixin(CodeMirror); - - // OPTION DEFAULTS - - var optionHandlers = CodeMirror.optionHandlers = {}; - - // The default configuration options. - var defaults = CodeMirror.defaults = {}; - - function option(name, deflt, handle, notOnInit) { - CodeMirror.defaults[name] = deflt; - if (handle) optionHandlers[name] = - notOnInit ? function(cm, val, old) {if (old != Init) handle(cm, val, old);} : handle; + getInputField: function(){return this.display.input.getField()}, + getWrapperElement: function(){return this.display.wrapper}, + getScrollerElement: function(){return this.display.scroller}, + getGutterElement: function(){return this.display.gutters} } + eventMixin(CodeMirror) - var Init = CodeMirror.Init = {toString: function(){return "CodeMirror.Init";}}; - - // These two are, on init, called from the constructor because they - // have to be initialized before the editor can start at all. - option("value", "", function(cm, val) { - cm.setValue(val); - }, true); - option("mode", null, function(cm, val) { - cm.doc.modeOption = val; - loadMode(cm); - }, true); - - option("indentUnit", 2, loadMode, true); - option("indentWithTabs", false); - option("smartIndent", true); - option("tabSize", 4, function(cm) { - resetModeState(cm); - clearCaches(cm); - regChange(cm); - }, true); - option("specialChars", /[\t\u0000-\u0019\u00ad\u200b\u2028\u2029\ufeff]/g, function(cm, val) { - cm.options.specialChars = new RegExp(val.source + (val.test("\t") ? "" : "|\t"), "g"); - cm.refresh(); - }, true); - option("specialCharPlaceholder", defaultSpecialCharPlaceholder, function(cm) {cm.refresh();}, true); - option("electricChars", true); - option("rtlMoveVisually", !windows); - option("wholeLineUpdateBefore", true); - - option("theme", "default", function(cm) { - themeChanged(cm); - guttersChanged(cm); - }, true); - option("keyMap", "default", keyMapChanged); - option("extraKeys", null); - - option("onKeyEvent", null); - option("onDragEvent", null); - - option("lineWrapping", false, wrappingChanged, true); - option("gutters", [], function(cm) { - setGuttersForLineNumbers(cm.options); - guttersChanged(cm); - }, true); - option("fixedGutter", true, function(cm, val) { - cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + "px" : "0"; - cm.refresh(); - }, true); - option("coverGutterNextToScrollbar", false, updateScrollbars, true); - option("lineNumbers", false, function(cm) { - setGuttersForLineNumbers(cm.options); - guttersChanged(cm); - }, true); - option("firstLineNumber", 1, guttersChanged, true); - option("lineNumberFormatter", function(integer) {return integer;}, guttersChanged, true); - option("showCursorWhenSelecting", false, updateSelection, true); - - option("resetSelectionOnContextMenu", true); - - option("readOnly", false, function(cm, val) { - if (val == "nocursor") { - onBlur(cm); - cm.display.input.blur(); - cm.display.disabled = true; + CodeMirror.registerHelper = function(type, name, value) { + if (!helpers.hasOwnProperty(type)) { helpers[type] = CodeMirror[type] = {_global: []} } + helpers[type][name] = value + } + CodeMirror.registerGlobalHelper = function(type, name, predicate, value) { + CodeMirror.registerHelper(type, name, value) + helpers[type]._global.push({pred: predicate, val: value}) + } +} + +// Used for horizontal relative motion. Dir is -1 or 1 (left or +// right), unit can be "char", "column" (like char, but doesn't +// cross line boundaries), "word" (across next word), or "group" (to +// the start of next group of word or non-word-non-whitespace +// chars). The visually param controls whether, in right-to-left +// text, direction 1 means to move towards the next index in the +// string, or towards the character to the right of the current +// position. The resulting position will have a hitSide=true +// property if it reached the end of the document. +function findPosH(doc, pos, dir, unit, visually) { + var oldPos = pos + var origDir = dir + var lineObj = getLine(doc, pos.line) + function findNextLine() { + var l = pos.line + dir + if (l < doc.first || l >= doc.first + doc.size) { return false } + pos = new Pos(l, pos.ch, pos.sticky) + return lineObj = getLine(doc, l) + } + function moveOnce(boundToLine) { + var next + if (visually) { + next = moveVisually(doc.cm, lineObj, pos, dir) } else { - cm.display.disabled = false; - if (!val) resetInput(cm, true); - } - }); - option("disableInput", false, function(cm, val) {if (!val) resetInput(cm, true);}, true); - option("dragDrop", true); - - option("cursorBlinkRate", 530); - option("cursorScrollMargin", 0); - option("cursorHeight", 1); - option("workTime", 100); - option("workDelay", 100); - option("flattenSpans", true, resetModeState, true); - option("addModeClass", false, resetModeState, true); - option("pollInterval", 100); - option("undoDepth", 40, function(cm, val){cm.doc.history.undoDepth = val;}); - option("historyEventDelay", 500); - option("viewportMargin", 10, function(cm){cm.refresh();}, true); - option("maxHighlightLength", 10000, resetModeState, true); - option("crudeMeasuringFrom", 10000); - option("moveInputWithCursor", true, function(cm, val) { - if (!val) cm.display.inputDiv.style.top = cm.display.inputDiv.style.left = 0; - }); - - option("tabindex", null, function(cm, val) { - cm.display.input.tabIndex = val || ""; - }); - option("autofocus", null); - - // MODE DEFINITION AND QUERYING - - // Known modes, by name and by MIME - var modes = CodeMirror.modes = {}, mimeModes = CodeMirror.mimeModes = {}; - - CodeMirror.defineMode = function(name, mode) { - if (!CodeMirror.defaults.mode && name != "null") CodeMirror.defaults.mode = name; - if (arguments.length > 2) { - mode.dependencies = []; - for (var i = 2; i < arguments.length; ++i) mode.dependencies.push(arguments[i]); - } - modes[name] = mode; - }; - - CodeMirror.defineMIME = function(mime, spec) { - mimeModes[mime] = spec; - }; + next = moveLogically(lineObj, pos, dir) + } + if (next == null) { + if (!boundToLine && findNextLine()) + { pos = endOfLine(visually, doc.cm, lineObj, pos.line, dir) } + else + { return false } + } else { + pos = next + } + return true + } - CodeMirror.resolveMode = function(spec) { - if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) { - spec = mimeModes[spec]; - } else if (spec && typeof spec.name == "string" && mimeModes.hasOwnProperty(spec.name)) { - var found = mimeModes[spec.name]; - if (typeof found == "string") found = {name: found}; - spec = createObj(found, spec); - spec.name = found.name; - } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+xml$/.test(spec)) { - return CodeMirror.resolveMode("application/xml"); - } - if (typeof spec == "string") return {name: spec}; - else return spec || {name: "null"}; - }; + if (unit == "char") { + moveOnce() + } else if (unit == "column") { + moveOnce(true) + } else if (unit == "word" || unit == "group") { + var sawType = null, group = unit == "group" + var helper = doc.cm && doc.cm.getHelper(pos, "wordChars") + for (var first = true;; first = false) { + if (dir < 0 && !moveOnce(!first)) { break } + var cur = lineObj.text.charAt(pos.ch) || "\n" + var type = isWordChar(cur, helper) ? "w" + : group && cur == "\n" ? "n" + : !group || /\s/.test(cur) ? null + : "p" + if (group && !first && !type) { type = "s" } + if (sawType && sawType != type) { + if (dir < 0) {dir = 1; moveOnce(); pos.sticky = "after"} + break + } - CodeMirror.getMode = function(options, spec) { - var spec = CodeMirror.resolveMode(spec); - var mfactory = modes[spec.name]; - if (!mfactory) return CodeMirror.getMode(options, "text/plain"); - var modeObj = mfactory(options, spec); - if (modeExtensions.hasOwnProperty(spec.name)) { - var exts = modeExtensions[spec.name]; - for (var prop in exts) { - if (!exts.hasOwnProperty(prop)) continue; - if (modeObj.hasOwnProperty(prop)) modeObj["_" + prop] = modeObj[prop]; - modeObj[prop] = exts[prop]; + if (type) { sawType = type } + if (dir > 0 && !moveOnce(!first)) { break } + } + } + var result = skipAtomic(doc, pos, oldPos, origDir, true) + if (equalCursorPos(oldPos, result)) { result.hitSide = true } + return result +} + +// For relative vertical movement. Dir may be -1 or 1. Unit can be +// "page" or "line". The resulting position will have a hitSide=true +// property if it reached the end of the document. +function findPosV(cm, pos, dir, unit) { + var doc = cm.doc, x = pos.left, y + if (unit == "page") { + var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight) + var moveAmount = Math.max(pageSize - .5 * textHeight(cm.display), 3) + y = (dir > 0 ? pos.bottom : pos.top) + dir * moveAmount + + } else if (unit == "line") { + y = dir > 0 ? pos.bottom + 3 : pos.top - 3 + } + var target + for (;;) { + target = coordsChar(cm, x, y) + if (!target.outside) { break } + if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break } + y += dir * 5 + } + return target +} + +// CONTENTEDITABLE INPUT STYLE + +var ContentEditableInput = function(cm) { + this.cm = cm + this.lastAnchorNode = this.lastAnchorOffset = this.lastFocusNode = this.lastFocusOffset = null + this.polling = new Delayed() + this.composing = null + this.gracePeriod = false + this.readDOMTimeout = null +}; + +ContentEditableInput.prototype.init = function (display) { + var this$1 = this; + + var input = this, cm = input.cm + var div = input.div = display.lineDiv + disableBrowserMagic(div, cm.options.spellcheck) + + on(div, "paste", function (e) { + if (signalDOMEvent(cm, e) || handlePaste(e, cm)) { return } + // IE doesn't fire input events, so we schedule a read for the pasted content in this way + if (ie_version <= 11) { setTimeout(operation(cm, function () { return this$1.updateFromDOM(); }), 20) } + }) + + on(div, "compositionstart", function (e) { + this$1.composing = {data: e.data, done: false} + }) + on(div, "compositionupdate", function (e) { + if (!this$1.composing) { this$1.composing = {data: e.data, done: false} } + }) + on(div, "compositionend", function (e) { + if (this$1.composing) { + if (e.data != this$1.composing.data) { this$1.readFromDOMSoon() } + this$1.composing.done = true + } + }) + + on(div, "touchstart", function () { return input.forceCompositionEnd(); }) + + on(div, "input", function () { + if (!this$1.composing) { this$1.readFromDOMSoon() } + }) + + function onCopyCut(e) { + if (signalDOMEvent(cm, e)) { return } + if (cm.somethingSelected()) { + setLastCopied({lineWise: false, text: cm.getSelections()}) + if (e.type == "cut") { cm.replaceSelection("", null, "cut") } + } else if (!cm.options.lineWiseCopyCut) { + return + } else { + var ranges = copyableRanges(cm) + setLastCopied({lineWise: true, text: ranges.text}) + if (e.type == "cut") { + cm.operation(function () { + cm.setSelections(ranges.ranges, 0, sel_dontScroll) + cm.replaceSelection("", null, "cut") + }) } } - modeObj.name = spec.name; - if (spec.helperType) modeObj.helperType = spec.helperType; - if (spec.modeProps) for (var prop in spec.modeProps) - modeObj[prop] = spec.modeProps[prop]; - - return modeObj; - }; - - CodeMirror.defineMode("null", function() { - return {token: function(stream) {stream.skipToEnd();}}; - }); - CodeMirror.defineMIME("text/plain", "null"); - - var modeExtensions = CodeMirror.modeExtensions = {}; - CodeMirror.extendMode = function(mode, properties) { - var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {}); - copyObj(properties, exts); - }; - - // EXTENSIONS - - CodeMirror.defineExtension = function(name, func) { - CodeMirror.prototype[name] = func; - }; - CodeMirror.defineDocExtension = function(name, func) { - Doc.prototype[name] = func; - }; - CodeMirror.defineOption = option; - - var initHooks = []; - CodeMirror.defineInitHook = function(f) {initHooks.push(f);}; - - var helpers = CodeMirror.helpers = {}; - CodeMirror.registerHelper = function(type, name, value) { - if (!helpers.hasOwnProperty(type)) helpers[type] = CodeMirror[type] = {_global: []}; - helpers[type][name] = value; - }; - CodeMirror.registerGlobalHelper = function(type, name, predicate, value) { - CodeMirror.registerHelper(type, name, value); - helpers[type]._global.push({pred: predicate, val: value}); - }; - - // UTILITIES - - CodeMirror.isWordChar = isWordChar; - - // MODE STATE HANDLING - - // Utility functions for working with state. Exported because modes - // sometimes need to do this. - function copyState(mode, state) { - if (state === true) return state; - if (mode.copyState) return mode.copyState(state); - var nstate = {}; - for (var n in state) { - var val = state[n]; - if (val instanceof Array) val = val.concat([]); - nstate[n] = val; + if (e.clipboardData) { + e.clipboardData.clearData() + var content = lastCopied.text.join("\n") + // iOS exposes the clipboard API, but seems to discard content inserted into it + e.clipboardData.setData("Text", content) + if (e.clipboardData.getData("Text") == content) { + e.preventDefault() + return + } + } + // Old-fashioned briefly-focus-a-textarea hack + var kludge = hiddenTextarea(), te = kludge.firstChild + cm.display.lineSpace.insertBefore(kludge, cm.display.lineSpace.firstChild) + te.value = lastCopied.text.join("\n") + var hadFocus = document.activeElement + selectInput(te) + setTimeout(function () { + cm.display.lineSpace.removeChild(kludge) + hadFocus.focus() + if (hadFocus == div) { input.showPrimarySelection() } + }, 50) + } + on(div, "copy", onCopyCut) + on(div, "cut", onCopyCut) +}; + +ContentEditableInput.prototype.prepareSelection = function () { + var result = prepareSelection(this.cm, false) + result.focus = this.cm.state.focused + return result +}; + +ContentEditableInput.prototype.showSelection = function (info, takeFocus) { + if (!info || !this.cm.display.view.length) { return } + if (info.focus || takeFocus) { this.showPrimarySelection() } + this.showMultipleSelections(info) +}; + +ContentEditableInput.prototype.showPrimarySelection = function () { + var sel = window.getSelection(), cm = this.cm, prim = cm.doc.sel.primary() + var from = prim.from(), to = prim.to() + + if (cm.display.viewTo == cm.display.viewFrom || from.line >= cm.display.viewTo || to.line < cm.display.viewFrom) { + sel.removeAllRanges() + return + } + + var curAnchor = domToPos(cm, sel.anchorNode, sel.anchorOffset) + var curFocus = domToPos(cm, sel.focusNode, sel.focusOffset) + if (curAnchor && !curAnchor.bad && curFocus && !curFocus.bad && + cmp(minPos(curAnchor, curFocus), from) == 0 && + cmp(maxPos(curAnchor, curFocus), to) == 0) + { return } + + var view = cm.display.view + var start = (from.line >= cm.display.viewFrom && posToDOM(cm, from)) || + {node: view[0].measure.map[2], offset: 0} + var end = to.line < cm.display.viewTo && posToDOM(cm, to) + if (!end) { + var measure = view[view.length - 1].measure + var map = measure.maps ? measure.maps[measure.maps.length - 1] : measure.map + end = {node: map[map.length - 1], offset: map[map.length - 2] - map[map.length - 3]} + } + + if (!start || !end) { + sel.removeAllRanges() + return + } + + var old = sel.rangeCount && sel.getRangeAt(0), rng + try { rng = range(start.node, start.offset, end.offset, end.node) } + catch(e) {} // Our model of the DOM might be outdated, in which case the range we try to set can be impossible + if (rng) { + if (!gecko && cm.state.focused) { + sel.collapse(start.node, start.offset) + if (!rng.collapsed) { + sel.removeAllRanges() + sel.addRange(rng) + } + } else { + sel.removeAllRanges() + sel.addRange(rng) + } + if (old && sel.anchorNode == null) { sel.addRange(old) } + else if (gecko) { this.startGracePeriod() } + } + this.rememberSelection() +}; + +ContentEditableInput.prototype.startGracePeriod = function () { + var this$1 = this; + + clearTimeout(this.gracePeriod) + this.gracePeriod = setTimeout(function () { + this$1.gracePeriod = false + if (this$1.selectionChanged()) + { this$1.cm.operation(function () { return this$1.cm.curOp.selectionChanged = true; }) } + }, 20) +}; + +ContentEditableInput.prototype.showMultipleSelections = function (info) { + removeChildrenAndAdd(this.cm.display.cursorDiv, info.cursors) + removeChildrenAndAdd(this.cm.display.selectionDiv, info.selection) +}; + +ContentEditableInput.prototype.rememberSelection = function () { + var sel = window.getSelection() + this.lastAnchorNode = sel.anchorNode; this.lastAnchorOffset = sel.anchorOffset + this.lastFocusNode = sel.focusNode; this.lastFocusOffset = sel.focusOffset +}; + +ContentEditableInput.prototype.selectionInEditor = function () { + var sel = window.getSelection() + if (!sel.rangeCount) { return false } + var node = sel.getRangeAt(0).commonAncestorContainer + return contains(this.div, node) +}; + +ContentEditableInput.prototype.focus = function () { + if (this.cm.options.readOnly != "nocursor") { + if (!this.selectionInEditor()) + { this.showSelection(this.prepareSelection(), true) } + this.div.focus() + } +}; +ContentEditableInput.prototype.blur = function () { this.div.blur() }; +ContentEditableInput.prototype.getField = function () { return this.div }; + +ContentEditableInput.prototype.supportsTouch = function () { return true }; + +ContentEditableInput.prototype.receivedFocus = function () { + var input = this + if (this.selectionInEditor()) + { this.pollSelection() } + else + { runInOp(this.cm, function () { return input.cm.curOp.selectionChanged = true; }) } + + function poll() { + if (input.cm.state.focused) { + input.pollSelection() + input.polling.set(input.cm.options.pollInterval, poll) + } + } + this.polling.set(this.cm.options.pollInterval, poll) +}; + +ContentEditableInput.prototype.selectionChanged = function () { + var sel = window.getSelection() + return sel.anchorNode != this.lastAnchorNode || sel.anchorOffset != this.lastAnchorOffset || + sel.focusNode != this.lastFocusNode || sel.focusOffset != this.lastFocusOffset +}; + +ContentEditableInput.prototype.pollSelection = function () { + if (this.readDOMTimeout != null || this.gracePeriod || !this.selectionChanged()) { return } + var sel = window.getSelection(), cm = this.cm + // On Android Chrome (version 56, at least), backspacing into an + // uneditable block element will put the cursor in that element, + // and then, because it's not editable, hide the virtual keyboard. + // Because Android doesn't allow us to actually detect backspace + // presses in a sane way, this code checks for when that happens + // and simulates a backspace press in this case. + if (android && chrome && this.cm.options.gutters.length && isInGutter(sel.anchorNode)) { + this.cm.triggerOnKeyDown({type: "keydown", keyCode: 8, preventDefault: Math.abs}) + this.blur() + this.focus() + return + } + if (this.composing) { return } + this.rememberSelection() + var anchor = domToPos(cm, sel.anchorNode, sel.anchorOffset) + var head = domToPos(cm, sel.focusNode, sel.focusOffset) + if (anchor && head) { runInOp(cm, function () { + setSelection(cm.doc, simpleSelection(anchor, head), sel_dontScroll) + if (anchor.bad || head.bad) { cm.curOp.selectionChanged = true } + }) } +}; + +ContentEditableInput.prototype.pollContent = function () { + if (this.readDOMTimeout != null) { + clearTimeout(this.readDOMTimeout) + this.readDOMTimeout = null + } + + var cm = this.cm, display = cm.display, sel = cm.doc.sel.primary() + var from = sel.from(), to = sel.to() + if (from.ch == 0 && from.line > cm.firstLine()) + { from = Pos(from.line - 1, getLine(cm.doc, from.line - 1).length) } + if (to.ch == getLine(cm.doc, to.line).text.length && to.line < cm.lastLine()) + { to = Pos(to.line + 1, 0) } + if (from.line < display.viewFrom || to.line > display.viewTo - 1) { return false } + + var fromIndex, fromLine, fromNode + if (from.line == display.viewFrom || (fromIndex = findViewIndex(cm, from.line)) == 0) { + fromLine = lineNo(display.view[0].line) + fromNode = display.view[0].node + } else { + fromLine = lineNo(display.view[fromIndex].line) + fromNode = display.view[fromIndex - 1].node.nextSibling + } + var toIndex = findViewIndex(cm, to.line) + var toLine, toNode + if (toIndex == display.view.length - 1) { + toLine = display.viewTo - 1 + toNode = display.lineDiv.lastChild + } else { + toLine = lineNo(display.view[toIndex + 1].line) - 1 + toNode = display.view[toIndex + 1].node.previousSibling + } + + if (!fromNode) { return false } + var newText = cm.doc.splitLines(domTextBetween(cm, fromNode, toNode, fromLine, toLine)) + var oldText = getBetween(cm.doc, Pos(fromLine, 0), Pos(toLine, getLine(cm.doc, toLine).text.length)) + while (newText.length > 1 && oldText.length > 1) { + if (lst(newText) == lst(oldText)) { newText.pop(); oldText.pop(); toLine-- } + else if (newText[0] == oldText[0]) { newText.shift(); oldText.shift(); fromLine++ } + else { break } + } + + var cutFront = 0, cutEnd = 0 + var newTop = newText[0], oldTop = oldText[0], maxCutFront = Math.min(newTop.length, oldTop.length) + while (cutFront < maxCutFront && newTop.charCodeAt(cutFront) == oldTop.charCodeAt(cutFront)) + { ++cutFront } + var newBot = lst(newText), oldBot = lst(oldText) + var maxCutEnd = Math.min(newBot.length - (newText.length == 1 ? cutFront : 0), + oldBot.length - (oldText.length == 1 ? cutFront : 0)) + while (cutEnd < maxCutEnd && + newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1)) + { ++cutEnd } + // Try to move start of change to start of selection if ambiguous + if (newText.length == 1 && oldText.length == 1 && fromLine == from.line) { + while (cutFront && cutFront > from.ch && + newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1)) { + cutFront-- + cutEnd++ + } + } + + newText[newText.length - 1] = newBot.slice(0, newBot.length - cutEnd).replace(/^\u200b+/, "") + newText[0] = newText[0].slice(cutFront).replace(/\u200b+$/, "") + + var chFrom = Pos(fromLine, cutFront) + var chTo = Pos(toLine, oldText.length ? lst(oldText).length - cutEnd : 0) + if (newText.length > 1 || newText[0] || cmp(chFrom, chTo)) { + replaceRange(cm.doc, newText, chFrom, chTo, "+input") + return true + } +}; + +ContentEditableInput.prototype.ensurePolled = function () { + this.forceCompositionEnd() +}; +ContentEditableInput.prototype.reset = function () { + this.forceCompositionEnd() +}; +ContentEditableInput.prototype.forceCompositionEnd = function () { + if (!this.composing) { return } + clearTimeout(this.readDOMTimeout) + this.composing = null + this.updateFromDOM() + this.div.blur() + this.div.focus() +}; +ContentEditableInput.prototype.readFromDOMSoon = function () { + var this$1 = this; + + if (this.readDOMTimeout != null) { return } + this.readDOMTimeout = setTimeout(function () { + this$1.readDOMTimeout = null + if (this$1.composing) { + if (this$1.composing.done) { this$1.composing = null } + else { return } + } + this$1.updateFromDOM() + }, 80) +}; + +ContentEditableInput.prototype.updateFromDOM = function () { + var this$1 = this; + + if (this.cm.isReadOnly() || !this.pollContent()) + { runInOp(this.cm, function () { return regChange(this$1.cm); }) } +}; + +ContentEditableInput.prototype.setUneditable = function (node) { + node.contentEditable = "false" +}; + +ContentEditableInput.prototype.onKeyPress = function (e) { + if (e.charCode == 0) { return } + e.preventDefault() + if (!this.cm.isReadOnly()) + { operation(this.cm, applyTextInput)(this.cm, String.fromCharCode(e.charCode == null ? e.keyCode : e.charCode), 0) } +}; + +ContentEditableInput.prototype.readOnlyChanged = function (val) { + this.div.contentEditable = String(val != "nocursor") +}; + +ContentEditableInput.prototype.onContextMenu = function () {}; +ContentEditableInput.prototype.resetPosition = function () {}; + +ContentEditableInput.prototype.needsContentAttribute = true + +function posToDOM(cm, pos) { + var view = findViewForLine(cm, pos.line) + if (!view || view.hidden) { return null } + var line = getLine(cm.doc, pos.line) + var info = mapFromLineView(view, line, pos.line) + + var order = getOrder(line, cm.doc.direction), side = "left" + if (order) { + var partPos = getBidiPartAt(order, pos.ch) + side = partPos % 2 ? "right" : "left" + } + var result = nodeAndOffsetInLineMap(info.map, pos.ch, side) + result.offset = result.collapse == "right" ? result.end : result.start + return result +} + +function isInGutter(node) { + for (var scan = node; scan; scan = scan.parentNode) + { if (/CodeMirror-gutter-wrapper/.test(scan.className)) { return true } } + return false +} + +function badPos(pos, bad) { if (bad) { pos.bad = true; } return pos } + +function domTextBetween(cm, from, to, fromLine, toLine) { + var text = "", closing = false, lineSep = cm.doc.lineSeparator() + function recognizeMarker(id) { return function (marker) { return marker.id == id; } } + function close() { + if (closing) { + text += lineSep + closing = false + } + } + function addText(str) { + if (str) { + close() + text += str + } + } + function walk(node) { + if (node.nodeType == 1) { + var cmText = node.getAttribute("cm-text") + if (cmText != null) { + addText(cmText || node.textContent.replace(/\u200b/g, "")) + return + } + var markerID = node.getAttribute("cm-marker"), range + if (markerID) { + var found = cm.findMarks(Pos(fromLine, 0), Pos(toLine + 1, 0), recognizeMarker(+markerID)) + if (found.length && (range = found[0].find())) + { addText(getBetween(cm.doc, range.from, range.to).join(lineSep)) } + return + } + if (node.getAttribute("contenteditable") == "false") { return } + var isBlock = /^(pre|div|p)$/i.test(node.nodeName) + if (isBlock) { close() } + for (var i = 0; i < node.childNodes.length; i++) + { walk(node.childNodes[i]) } + if (isBlock) { closing = true } + } else if (node.nodeType == 3) { + addText(node.nodeValue) + } + } + for (;;) { + walk(from) + if (from == to) { break } + from = from.nextSibling + } + return text +} + +function domToPos(cm, node, offset) { + var lineNode + if (node == cm.display.lineDiv) { + lineNode = cm.display.lineDiv.childNodes[offset] + if (!lineNode) { return badPos(cm.clipPos(Pos(cm.display.viewTo - 1)), true) } + node = null; offset = 0 + } else { + for (lineNode = node;; lineNode = lineNode.parentNode) { + if (!lineNode || lineNode == cm.display.lineDiv) { return null } + if (lineNode.parentNode && lineNode.parentNode == cm.display.lineDiv) { break } + } + } + for (var i = 0; i < cm.display.view.length; i++) { + var lineView = cm.display.view[i] + if (lineView.node == lineNode) + { return locateNodeInLineView(lineView, node, offset) } + } +} + +function locateNodeInLineView(lineView, node, offset) { + var wrapper = lineView.text.firstChild, bad = false + if (!node || !contains(wrapper, node)) { return badPos(Pos(lineNo(lineView.line), 0), true) } + if (node == wrapper) { + bad = true + node = wrapper.childNodes[offset] + offset = 0 + if (!node) { + var line = lineView.rest ? lst(lineView.rest) : lineView.line + return badPos(Pos(lineNo(line), line.text.length), bad) + } + } + + var textNode = node.nodeType == 3 ? node : null, topNode = node + if (!textNode && node.childNodes.length == 1 && node.firstChild.nodeType == 3) { + textNode = node.firstChild + if (offset) { offset = textNode.nodeValue.length } + } + while (topNode.parentNode != wrapper) { topNode = topNode.parentNode } + var measure = lineView.measure, maps = measure.maps + + function find(textNode, topNode, offset) { + for (var i = -1; i < (maps ? maps.length : 0); i++) { + var map = i < 0 ? measure.map : maps[i] + for (var j = 0; j < map.length; j += 3) { + var curNode = map[j + 2] + if (curNode == textNode || curNode == topNode) { + var line = lineNo(i < 0 ? lineView.line : lineView.rest[i]) + var ch = map[j] + offset + if (offset < 0 || curNode != textNode) { ch = map[j + (offset ? 1 : 0)] } + return Pos(line, ch) + } + } } - return nstate; } - CodeMirror.copyState = copyState; + var found = find(textNode, topNode, offset) + if (found) { return badPos(found, bad) } - function startState(mode, a1, a2) { - return mode.startState ? mode.startState(a1, a2) : true; + // FIXME this is all really shaky. might handle the few cases it needs to handle, but likely to cause problems + for (var after = topNode.nextSibling, dist = textNode ? textNode.nodeValue.length - offset : 0; after; after = after.nextSibling) { + found = find(after, after.firstChild, 0) + if (found) + { return badPos(Pos(found.line, found.ch - dist), bad) } + else + { dist += after.textContent.length } } - CodeMirror.startState = startState; - - CodeMirror.innerMode = function(mode, state) { - while (mode.innerMode) { - var info = mode.innerMode(state); - if (!info || info.mode == mode) break; - state = info.state; - mode = info.mode; + for (var before = topNode.previousSibling, dist$1 = offset; before; before = before.previousSibling) { + found = find(before, before.firstChild, -1) + if (found) + { return badPos(Pos(found.line, found.ch + dist$1), bad) } + else + { dist$1 += before.textContent.length } + } +} + +// TEXTAREA INPUT STYLE + +var TextareaInput = function(cm) { + this.cm = cm + // See input.poll and input.reset + this.prevInput = "" + + // Flag that indicates whether we expect input to appear real soon + // now (after some event like 'keypress' or 'input') and are + // polling intensively. + this.pollingFast = false + // Self-resetting timeout for the poller + this.polling = new Delayed() + // Tracks when input.reset has punted to just putting a short + // string into the textarea instead of the full selection. + this.inaccurateSelection = false + // Used to work around IE issue with selection being forgotten when focus moves away from textarea + this.hasSelection = false + this.composing = null +}; + +TextareaInput.prototype.init = function (display) { + var this$1 = this; + + var input = this, cm = this.cm + + // Wraps and hides input textarea + var div = this.wrapper = hiddenTextarea() + // The semihidden textarea that is focused when the editor is + // focused, and receives input. + var te = this.textarea = div.firstChild + display.wrapper.insertBefore(div, display.wrapper.firstChild) + + // Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore) + if (ios) { te.style.width = "0px" } + + on(te, "input", function () { + if (ie && ie_version >= 9 && this$1.hasSelection) { this$1.hasSelection = null } + input.poll() + }) + + on(te, "paste", function (e) { + if (signalDOMEvent(cm, e) || handlePaste(e, cm)) { return } + + cm.state.pasteIncoming = true + input.fastPoll() + }) + + function prepareCopyCut(e) { + if (signalDOMEvent(cm, e)) { return } + if (cm.somethingSelected()) { + setLastCopied({lineWise: false, text: cm.getSelections()}) + if (input.inaccurateSelection) { + input.prevInput = "" + input.inaccurateSelection = false + te.value = lastCopied.text.join("\n") + selectInput(te) + } + } else if (!cm.options.lineWiseCopyCut) { + return + } else { + var ranges = copyableRanges(cm) + setLastCopied({lineWise: true, text: ranges.text}) + if (e.type == "cut") { + cm.setSelections(ranges.ranges, null, sel_dontScroll) + } else { + input.prevInput = "" + te.value = ranges.text.join("\n") + selectInput(te) + } } - return info || {mode: mode, state: state}; - }; - - // STANDARD COMMANDS + if (e.type == "cut") { cm.state.cutIncoming = true } + } + on(te, "cut", prepareCopyCut) + on(te, "copy", prepareCopyCut) + + on(display.scroller, "paste", function (e) { + if (eventInWidget(display, e) || signalDOMEvent(cm, e)) { return } + cm.state.pasteIncoming = true + input.focus() + }) + + // Prevent normal selection in the editor (we handle our own) + on(display.lineSpace, "selectstart", function (e) { + if (!eventInWidget(display, e)) { e_preventDefault(e) } + }) + + on(te, "compositionstart", function () { + var start = cm.getCursor("from") + if (input.composing) { input.composing.range.clear() } + input.composing = { + start: start, + range: cm.markText(start, cm.getCursor("to"), {className: "CodeMirror-composing"}) + } + }) + on(te, "compositionend", function () { + if (input.composing) { + input.poll() + input.composing.range.clear() + input.composing = null + } + }) +}; + +TextareaInput.prototype.prepareSelection = function () { + // Redraw the selection and/or cursor + var cm = this.cm, display = cm.display, doc = cm.doc + var result = prepareSelection(cm) + + // Move the hidden textarea near the cursor to prevent scrolling artifacts + if (cm.options.moveInputWithCursor) { + var headPos = cursorCoords(cm, doc.sel.primary().head, "div") + var wrapOff = display.wrapper.getBoundingClientRect(), lineOff = display.lineDiv.getBoundingClientRect() + result.teTop = Math.max(0, Math.min(display.wrapper.clientHeight - 10, + headPos.top + lineOff.top - wrapOff.top)) + result.teLeft = Math.max(0, Math.min(display.wrapper.clientWidth - 10, + headPos.left + lineOff.left - wrapOff.left)) + } + + return result +}; + +TextareaInput.prototype.showSelection = function (drawn) { + var cm = this.cm, display = cm.display + removeChildrenAndAdd(display.cursorDiv, drawn.cursors) + removeChildrenAndAdd(display.selectionDiv, drawn.selection) + if (drawn.teTop != null) { + this.wrapper.style.top = drawn.teTop + "px" + this.wrapper.style.left = drawn.teLeft + "px" + } +}; + +// Reset the input to correspond to the selection (or to be empty, +// when not typing and nothing is selected) +TextareaInput.prototype.reset = function (typing) { + if (this.contextMenuPending || this.composing) { return } + var minimal, selected, cm = this.cm, doc = cm.doc + if (cm.somethingSelected()) { + this.prevInput = "" + var range = doc.sel.primary() + minimal = hasCopyEvent && + (range.to().line - range.from().line > 100 || (selected = cm.getSelection()).length > 1000) + var content = minimal ? "-" : selected || cm.getSelection() + this.textarea.value = content + if (cm.state.focused) { selectInput(this.textarea) } + if (ie && ie_version >= 9) { this.hasSelection = content } + } else if (!typing) { + this.prevInput = this.textarea.value = "" + if (ie && ie_version >= 9) { this.hasSelection = null } + } + this.inaccurateSelection = minimal +}; + +TextareaInput.prototype.getField = function () { return this.textarea }; + +TextareaInput.prototype.supportsTouch = function () { return false }; + +TextareaInput.prototype.focus = function () { + if (this.cm.options.readOnly != "nocursor" && (!mobile || activeElt() != this.textarea)) { + try { this.textarea.focus() } + catch (e) {} // IE8 will throw if the textarea is display: none or not in DOM + } +}; + +TextareaInput.prototype.blur = function () { this.textarea.blur() }; + +TextareaInput.prototype.resetPosition = function () { + this.wrapper.style.top = this.wrapper.style.left = 0 +}; + +TextareaInput.prototype.receivedFocus = function () { this.slowPoll() }; + +// Poll for input changes, using the normal rate of polling. This +// runs as long as the editor is focused. +TextareaInput.prototype.slowPoll = function () { + var this$1 = this; + + if (this.pollingFast) { return } + this.polling.set(this.cm.options.pollInterval, function () { + this$1.poll() + if (this$1.cm.state.focused) { this$1.slowPoll() } + }) +}; + +// When an event has just come in that is likely to add or change +// something in the input textarea, we poll faster, to ensure that +// the change appears on the screen quickly. +TextareaInput.prototype.fastPoll = function () { + var missed = false, input = this + input.pollingFast = true + function p() { + var changed = input.poll() + if (!changed && !missed) {missed = true; input.polling.set(60, p)} + else {input.pollingFast = false; input.slowPoll()} + } + input.polling.set(20, p) +}; + +// Read input from the textarea, and update the document to match. +// When something is selected, it is present in the textarea, and +// selected (unless it is huge, in which case a placeholder is +// used). When nothing is selected, the cursor sits after previously +// seen text (can be empty), which is stored in prevInput (we must +// not reset the textarea when typing, because that breaks IME). +TextareaInput.prototype.poll = function () { + var this$1 = this; + + var cm = this.cm, input = this.textarea, prevInput = this.prevInput + // Since this is called a *lot*, try to bail out as cheaply as + // possible when it is clear that nothing happened. hasSelection + // will be the case when there is a lot of text in the textarea, + // in which case reading its value would be expensive. + if (this.contextMenuPending || !cm.state.focused || + (hasSelection(input) && !prevInput && !this.composing) || + cm.isReadOnly() || cm.options.disableInput || cm.state.keySeq) + { return false } + + var text = input.value + // If nothing changed, bail. + if (text == prevInput && !cm.somethingSelected()) { return false } + // Work around nonsensical selection resetting in IE9/10, and + // inexplicable appearance of private area unicode characters on + // some key combos in Mac (#2689). + if (ie && ie_version >= 9 && this.hasSelection === text || + mac && /[\uf700-\uf7ff]/.test(text)) { + cm.display.input.reset() + return false + } + + if (cm.doc.sel == cm.display.selForContextMenu) { + var first = text.charCodeAt(0) + if (first == 0x200b && !prevInput) { prevInput = "\u200b" } + if (first == 0x21da) { this.reset(); return this.cm.execCommand("undo") } + } + // Find the part of the input that is actually new + var same = 0, l = Math.min(prevInput.length, text.length) + while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) { ++same } + + runInOp(cm, function () { + applyTextInput(cm, text.slice(same), prevInput.length - same, + null, this$1.composing ? "*compose" : null) + + // Don't leave long text in the textarea, since it makes further polling slow + if (text.length > 1000 || text.indexOf("\n") > -1) { input.value = this$1.prevInput = "" } + else { this$1.prevInput = text } + + if (this$1.composing) { + this$1.composing.range.clear() + this$1.composing.range = cm.markText(this$1.composing.start, cm.getCursor("to"), + {className: "CodeMirror-composing"}) + } + }) + return true +}; + +TextareaInput.prototype.ensurePolled = function () { + if (this.pollingFast && this.poll()) { this.pollingFast = false } +}; + +TextareaInput.prototype.onKeyPress = function () { + if (ie && ie_version >= 9) { this.hasSelection = null } + this.fastPoll() +}; + +TextareaInput.prototype.onContextMenu = function (e) { + var input = this, cm = input.cm, display = cm.display, te = input.textarea + var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop + if (!pos || presto) { return } // Opera is difficult. + + // Reset the current text selection only if the click is done outside of the selection + // and 'resetSelectionOnContextMenu' option is true. + var reset = cm.options.resetSelectionOnContextMenu + if (reset && cm.doc.sel.contains(pos) == -1) + { operation(cm, setSelection)(cm.doc, simpleSelection(pos), sel_dontScroll) } + + var oldCSS = te.style.cssText, oldWrapperCSS = input.wrapper.style.cssText + input.wrapper.style.cssText = "position: absolute" + var wrapperBox = input.wrapper.getBoundingClientRect() + te.style.cssText = "position: absolute; width: 30px; height: 30px;\n top: " + (e.clientY - wrapperBox.top - 5) + "px; left: " + (e.clientX - wrapperBox.left - 5) + "px;\n z-index: 1000; background: " + (ie ? "rgba(255, 255, 255, .05)" : "transparent") + ";\n outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);" + var oldScrollY + if (webkit) { oldScrollY = window.scrollY } // Work around Chrome issue (#2712) + display.input.focus() + if (webkit) { window.scrollTo(null, oldScrollY) } + display.input.reset() + // Adds "Select all" to context menu in FF + if (!cm.somethingSelected()) { te.value = input.prevInput = " " } + input.contextMenuPending = true + display.selForContextMenu = cm.doc.sel + clearTimeout(display.detectingSelectAll) + + // Select-all will be greyed out if there's nothing to select, so + // this adds a zero-width space so that we can later check whether + // it got selected. + function prepareSelectAllHack() { + if (te.selectionStart != null) { + var selected = cm.somethingSelected() + var extval = "\u200b" + (selected ? te.value : "") + te.value = "\u21da" // Used to catch context-menu undo + te.value = extval + input.prevInput = selected ? "" : "\u200b" + te.selectionStart = 1; te.selectionEnd = extval.length + // Re-set this, in case some other handler touched the + // selection in the meantime. + display.selForContextMenu = cm.doc.sel + } + } + function rehide() { + input.contextMenuPending = false + input.wrapper.style.cssText = oldWrapperCSS + te.style.cssText = oldCSS + if (ie && ie_version < 9) { display.scrollbars.setScrollTop(display.scroller.scrollTop = scrollPos) } + + // Try to detect the user choosing select-all + if (te.selectionStart != null) { + if (!ie || (ie && ie_version < 9)) { prepareSelectAllHack() } + var i = 0, poll = function () { + if (display.selForContextMenu == cm.doc.sel && te.selectionStart == 0 && + te.selectionEnd > 0 && input.prevInput == "\u200b") { + operation(cm, selectAll)(cm) + } else if (i++ < 10) { + display.detectingSelectAll = setTimeout(poll, 500) + } else { + display.selForContextMenu = null + display.input.reset() + } + } + display.detectingSelectAll = setTimeout(poll, 200) + } + } - var commands = CodeMirror.commands = { - selectAll: function(cm) {cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()));}, - killLine: function(cm) { - var from = cm.getCursor(true), to = cm.getCursor(false), sel = !posEq(from, to); - if (!sel && cm.getLine(from.line).length == from.ch) - cm.replaceRange("", from, Pos(from.line + 1, 0), "+delete"); - else cm.replaceRange("", from, sel ? to : Pos(from.line), "+delete"); - }, - deleteLine: function(cm) { - var l = cm.getCursor().line; - cm.replaceRange("", Pos(l, 0), Pos(l + 1, 0), "+delete"); - }, - delLineLeft: function(cm) { - var cur = cm.getCursor(); - cm.replaceRange("", Pos(cur.line, 0), cur, "+delete"); - }, - undo: function(cm) {cm.undo();}, - redo: function(cm) {cm.redo();}, - goDocStart: function(cm) {cm.extendSelection(Pos(cm.firstLine(), 0));}, - goDocEnd: function(cm) {cm.extendSelection(Pos(cm.lastLine()));}, - goLineStart: function(cm) { - cm.extendSelection(lineStart(cm, cm.getCursor().line)); - }, - goLineStartSmart: function(cm) { - var cur = cm.getCursor(), start = lineStart(cm, cur.line); - var line = cm.getLineHandle(start.line); - var order = getOrder(line); - if (!order || order[0].level == 0) { - var firstNonWS = Math.max(0, line.text.search(/\S/)); - var inWS = cur.line == start.line && cur.ch <= firstNonWS && cur.ch; - cm.extendSelection(Pos(start.line, inWS ? 0 : firstNonWS)); - } else cm.extendSelection(start); - }, - goLineEnd: function(cm) { - cm.extendSelection(lineEnd(cm, cm.getCursor().line)); - }, - goLineRight: function(cm) { - var top = cm.charCoords(cm.getCursor(), "div").top + 5; - cm.extendSelection(cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div")); - }, - goLineLeft: function(cm) { - var top = cm.charCoords(cm.getCursor(), "div").top + 5; - cm.extendSelection(cm.coordsChar({left: 0, top: top}, "div")); - }, - goLineUp: function(cm) {cm.moveV(-1, "line");}, - goLineDown: function(cm) {cm.moveV(1, "line");}, - goPageUp: function(cm) {cm.moveV(-1, "page");}, - goPageDown: function(cm) {cm.moveV(1, "page");}, - goCharLeft: function(cm) {cm.moveH(-1, "char");}, - goCharRight: function(cm) {cm.moveH(1, "char");}, - goColumnLeft: function(cm) {cm.moveH(-1, "column");}, - goColumnRight: function(cm) {cm.moveH(1, "column");}, - goWordLeft: function(cm) {cm.moveH(-1, "word");}, - goGroupRight: function(cm) {cm.moveH(1, "group");}, - goGroupLeft: function(cm) {cm.moveH(-1, "group");}, - goWordRight: function(cm) {cm.moveH(1, "word");}, - delCharBefore: function(cm) {cm.deleteH(-1, "char");}, - delCharAfter: function(cm) {cm.deleteH(1, "char");}, - delWordBefore: function(cm) {cm.deleteH(-1, "word");}, - delWordAfter: function(cm) {cm.deleteH(1, "word");}, - delGroupBefore: function(cm) {cm.deleteH(-1, "group");}, - delGroupAfter: function(cm) {cm.deleteH(1, "group");}, - indentAuto: function(cm) {cm.indentSelection("smart");}, - indentMore: function(cm) {cm.indentSelection("add");}, - indentLess: function(cm) {cm.indentSelection("subtract");}, - insertTab: function(cm) { - cm.replaceSelection("\t", "end", "+input"); - }, - insertSoftTab: function(cm) { - var pos = cm.getCursor("from"), tabSize = cm.options.tabSize; - var col = countColumn(cm.getLine(pos.line), pos.ch, tabSize); - cm.replaceSelection(new Array(tabSize - col % tabSize + 1).join(" "), "end", "+input"); - }, - defaultTab: function(cm) { - if (cm.somethingSelected()) cm.indentSelection("add"); - else cm.replaceSelection("\t", "end", "+input"); - }, - transposeChars: function(cm) { - var cur = cm.getCursor(), line = cm.getLine(cur.line); - if (cur.ch > 0 && cur.ch < line.length - 1) - cm.replaceRange(line.charAt(cur.ch) + line.charAt(cur.ch - 1), - Pos(cur.line, cur.ch - 1), Pos(cur.line, cur.ch + 1)); - }, - newlineAndIndent: function(cm) { - operation(cm, function() { - cm.replaceSelection("\n", "end", "+input"); - cm.indentLine(cm.getCursor().line, null, true); - })(); - }, - toggleOverwrite: function(cm) {cm.toggleOverwrite();} - }; + if (ie && ie_version >= 9) { prepareSelectAllHack() } + if (captureRightClick) { + e_stop(e) + var mouseup = function () { + off(window, "mouseup", mouseup) + setTimeout(rehide, 20) + } + on(window, "mouseup", mouseup) + } else { + setTimeout(rehide, 50) + } +}; - // STANDARD KEYMAPS +TextareaInput.prototype.readOnlyChanged = function (val) { + if (!val) { this.reset() } +}; - var keyMap = CodeMirror.keyMap = {}; - keyMap.basic = { - "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown", - "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown", - "Delete": "delCharAfter", "Backspace": "delCharBefore", "Shift-Backspace": "delCharBefore", - "Tab": "defaultTab", "Shift-Tab": "indentAuto", - "Enter": "newlineAndIndent", "Insert": "toggleOverwrite" - }; - // Note that the save and find-related commands aren't defined by - // default. Unknown commands are simply ignored. - keyMap.pcDefault = { - "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo", - "Ctrl-Home": "goDocStart", "Ctrl-Up": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Down": "goDocEnd", - "Ctrl-Left": "goGroupLeft", "Ctrl-Right": "goGroupRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd", - "Ctrl-Backspace": "delGroupBefore", "Ctrl-Delete": "delGroupAfter", "Ctrl-S": "save", "Ctrl-F": "find", - "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll", - "Ctrl-[": "indentLess", "Ctrl-]": "indentMore", - fallthrough: "basic" - }; - keyMap.macDefault = { - "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo", - "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goGroupLeft", - "Alt-Right": "goGroupRight", "Cmd-Left": "goLineStart", "Cmd-Right": "goLineEnd", "Alt-Backspace": "delGroupBefore", - "Ctrl-Alt-Backspace": "delGroupAfter", "Alt-Delete": "delGroupAfter", "Cmd-S": "save", "Cmd-F": "find", - "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll", - "Cmd-[": "indentLess", "Cmd-]": "indentMore", "Cmd-Backspace": "delLineLeft", - fallthrough: ["basic", "emacsy"] - }; - keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault; - keyMap.emacsy = { - "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown", - "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd", - "Ctrl-V": "goPageDown", "Shift-Ctrl-V": "goPageUp", "Ctrl-D": "delCharAfter", "Ctrl-H": "delCharBefore", - "Alt-D": "delWordAfter", "Alt-Backspace": "delWordBefore", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars" - }; +TextareaInput.prototype.setUneditable = function () {}; - // KEYMAP DISPATCH +TextareaInput.prototype.needsContentAttribute = false - function getKeyMap(val) { - if (typeof val == "string") return keyMap[val]; - else return val; +function fromTextArea(textarea, options) { + options = options ? copyObj(options) : {} + options.value = textarea.value + if (!options.tabindex && textarea.tabIndex) + { options.tabindex = textarea.tabIndex } + if (!options.placeholder && textarea.placeholder) + { options.placeholder = textarea.placeholder } + // Set autofocus to true if this textarea is focused, or if it has + // autofocus and no other element is focused. + if (options.autofocus == null) { + var hasFocus = activeElt() + options.autofocus = hasFocus == textarea || + textarea.getAttribute("autofocus") != null && hasFocus == document.body } - function lookupKey(name, maps, handle) { - function lookup(map) { - map = getKeyMap(map); - var found = map[name]; - if (found === false) return "stop"; - if (found != null && handle(found)) return true; - if (map.nofallthrough) return "stop"; + function save() {textarea.value = cm.getValue()} - var fallthrough = map.fallthrough; - if (fallthrough == null) return false; - if (Object.prototype.toString.call(fallthrough) != "[object Array]") - return lookup(fallthrough); - for (var i = 0, e = fallthrough.length; i < e; ++i) { - var done = lookup(fallthrough[i]); - if (done) return done; - } - return false; - } - - for (var i = 0; i < maps.length; ++i) { - var done = lookup(maps[i]); - if (done) return done != "stop"; - } - } - function isModifierKey(event) { - var name = keyNames[event.keyCode]; - return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod"; - } - function keyName(event, noShift) { - if (opera && event.keyCode == 34 && event["char"]) return false; - var name = keyNames[event.keyCode]; - if (name == null || event.altGraphKey) return false; - if (event.altKey) name = "Alt-" + name; - if (flipCtrlCmd ? event.metaKey : event.ctrlKey) name = "Ctrl-" + name; - if (flipCtrlCmd ? event.ctrlKey : event.metaKey) name = "Cmd-" + name; - if (!noShift && event.shiftKey) name = "Shift-" + name; - return name; - } - CodeMirror.lookupKey = lookupKey; - CodeMirror.isModifierKey = isModifierKey; - CodeMirror.keyName = keyName; - - // FROMTEXTAREA - - CodeMirror.fromTextArea = function(textarea, options) { - if (!options) options = {}; - options.value = textarea.value; - if (!options.tabindex && textarea.tabindex) - options.tabindex = textarea.tabindex; - if (!options.placeholder && textarea.placeholder) - options.placeholder = textarea.placeholder; - // Set autofocus to true if this textarea is focused, or if it has - // autofocus and no other element is focused. - if (options.autofocus == null) { - var hasFocus = document.body; - // doc.activeElement occasionally throws on IE - try { hasFocus = document.activeElement; } catch(e) {} - options.autofocus = hasFocus == textarea || - textarea.getAttribute("autofocus") != null && hasFocus == document.body; - } - - function save() {textarea.value = cm.getValue();} - if (textarea.form) { - on(textarea.form, "submit", save); - // Deplorable hack to make the submit method do the right thing. - if (!options.leaveSubmitMethodAlone) { - var form = textarea.form, realSubmit = form.submit; - try { - var wrappedSubmit = form.submit = function() { - save(); - form.submit = realSubmit; - form.submit(); - form.submit = wrappedSubmit; - }; - } catch(e) {} - } + var realSubmit + if (textarea.form) { + on(textarea.form, "submit", save) + // Deplorable hack to make the submit method do the right thing. + if (!options.leaveSubmitMethodAlone) { + var form = textarea.form + realSubmit = form.submit + try { + var wrappedSubmit = form.submit = function () { + save() + form.submit = realSubmit + form.submit() + form.submit = wrappedSubmit + } + } catch(e) {} } + } - textarea.style.display = "none"; - var cm = CodeMirror(function(node) { - textarea.parentNode.insertBefore(node, textarea.nextSibling); - }, options); - cm.save = save; - cm.getTextArea = function() { return textarea; }; - cm.toTextArea = function() { - save(); - textarea.parentNode.removeChild(cm.getWrapperElement()); - textarea.style.display = ""; + options.finishInit = function (cm) { + cm.save = save + cm.getTextArea = function () { return textarea; } + cm.toTextArea = function () { + cm.toTextArea = isNaN // Prevent this from being ran twice + save() + textarea.parentNode.removeChild(cm.getWrapperElement()) + textarea.style.display = "" if (textarea.form) { - off(textarea.form, "submit", save); + off(textarea.form, "submit", save) if (typeof textarea.form.submit == "function") - textarea.form.submit = realSubmit; + { textarea.form.submit = realSubmit } } - }; - return cm; - }; - - // STRING STREAM - - // Fed to the mode parsers, provides helper functions to make - // parsers more succinct. - - // The character stream used by a mode's parser. - function StringStream(string, tabSize) { - this.pos = this.start = 0; - this.string = string; - this.tabSize = tabSize || 8; - this.lastColumnPos = this.lastColumnValue = 0; - this.lineStart = 0; + } } - StringStream.prototype = { - eol: function() {return this.pos >= this.string.length;}, - sol: function() {return this.pos == this.lineStart;}, - peek: function() {return this.string.charAt(this.pos) || undefined;}, - next: function() { - if (this.pos < this.string.length) - return this.string.charAt(this.pos++); - }, - eat: function(match) { - var ch = this.string.charAt(this.pos); - if (typeof match == "string") var ok = ch == match; - else var ok = ch && (match.test ? match.test(ch) : match(ch)); - if (ok) {++this.pos; return ch;} - }, - eatWhile: function(match) { - var start = this.pos; - while (this.eat(match)){} - return this.pos > start; - }, - eatSpace: function() { - var start = this.pos; - while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos; - return this.pos > start; - }, - skipToEnd: function() {this.pos = this.string.length;}, - skipTo: function(ch) { - var found = this.string.indexOf(ch, this.pos); - if (found > -1) {this.pos = found; return true;} - }, - backUp: function(n) {this.pos -= n;}, - column: function() { - if (this.lastColumnPos < this.start) { - this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue); - this.lastColumnPos = this.start; - } - return this.lastColumnValue - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0); - }, - indentation: function() { - return countColumn(this.string, null, this.tabSize) - - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0); - }, - match: function(pattern, consume, caseInsensitive) { - if (typeof pattern == "string") { - var cased = function(str) {return caseInsensitive ? str.toLowerCase() : str;}; - var substr = this.string.substr(this.pos, pattern.length); - if (cased(substr) == cased(pattern)) { - if (consume !== false) this.pos += pattern.length; - return true; - } - } else { - var match = this.string.slice(this.pos).match(pattern); - if (match && match.index > 0) return null; - if (match && consume !== false) this.pos += match[0].length; - return match; - } - }, - current: function(){return this.string.slice(this.start, this.pos);}, - hideFirstChars: function(n, inner) { - this.lineStart += n; - try { return inner(); } - finally { this.lineStart -= n; } - } - }; - CodeMirror.StringStream = StringStream; - - // TEXTMARKERS - - function TextMarker(doc, type) { - this.lines = []; - this.type = type; - this.doc = doc; - } - CodeMirror.TextMarker = TextMarker; - eventMixin(TextMarker); - - TextMarker.prototype.clear = function() { - if (this.explicitlyCleared) return; - var cm = this.doc.cm, withOp = cm && !cm.curOp; - if (withOp) startOperation(cm); - if (hasHandler(this, "clear")) { - var found = this.find(); - if (found) signalLater(this, "clear", found.from, found.to); - } - var min = null, max = null; - for (var i = 0; i < this.lines.length; ++i) { - var line = this.lines[i]; - var span = getMarkedSpanFor(line.markedSpans, this); - if (span.to != null) max = lineNo(line); - line.markedSpans = removeMarkedSpan(line.markedSpans, span); - if (span.from != null) - min = lineNo(line); - else if (this.collapsed && !lineIsHidden(this.doc, line) && cm) - updateLineHeight(line, textHeight(cm.display)); - } - if (cm && this.collapsed && !cm.options.lineWrapping) for (var i = 0; i < this.lines.length; ++i) { - var visual = visualLine(cm.doc, this.lines[i]), len = lineLength(cm.doc, visual); - if (len > cm.display.maxLineLength) { - cm.display.maxLine = visual; - cm.display.maxLineLength = len; - cm.display.maxLineChanged = true; - } - } - - if (min != null && cm) regChange(cm, min, max + 1); - this.lines.length = 0; - this.explicitlyCleared = true; - if (this.atomic && this.doc.cantEdit) { - this.doc.cantEdit = false; - if (cm) reCheckSelection(cm); - } - if (cm) signalLater(cm, "markerCleared", cm, this); - if (withOp) endOperation(cm); - if (this.parent) this.parent.clear(); - }; - - TextMarker.prototype.find = function(bothSides) { - var from, to; - for (var i = 0; i < this.lines.length; ++i) { - var line = this.lines[i]; - var span = getMarkedSpanFor(line.markedSpans, this); - if (span.from != null || span.to != null) { - var found = lineNo(line); - if (span.from != null) from = Pos(found, span.from); - if (span.to != null) to = Pos(found, span.to); - } - } - if (this.type == "bookmark" && !bothSides) return from; - return from && {from: from, to: to}; - }; - - TextMarker.prototype.changed = function() { - var pos = this.find(), cm = this.doc.cm; - if (!pos || !cm) return; - if (this.type != "bookmark") pos = pos.from; - var line = getLine(this.doc, pos.line); - clearCachedMeasurement(cm, line); - if (pos.line >= cm.display.showingFrom && pos.line < cm.display.showingTo) { - for (var node = cm.display.lineDiv.firstChild; node; node = node.nextSibling) if (node.lineObj == line) { - if (node.offsetHeight != line.height) updateLineHeight(line, node.offsetHeight); - break; - } - runInOp(cm, function() { - cm.curOp.selectionChanged = cm.curOp.forceUpdate = cm.curOp.updateMaxLine = true; - }); - } - }; - - TextMarker.prototype.attachLine = function(line) { - if (!this.lines.length && this.doc.cm) { - var op = this.doc.cm.curOp; - if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1) - (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this); - } - this.lines.push(line); - }; - TextMarker.prototype.detachLine = function(line) { - this.lines.splice(indexOf(this.lines, line), 1); - if (!this.lines.length && this.doc.cm) { - var op = this.doc.cm.curOp; - (op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this); - } - }; - - var nextMarkerId = 0; - - function markText(doc, from, to, options, type) { - if (options && options.shared) return markTextShared(doc, from, to, options, type); - if (doc.cm && !doc.cm.curOp) return operation(doc.cm, markText)(doc, from, to, options, type); - - var marker = new TextMarker(doc, type); - if (options) copyObj(options, marker, false); - if (posLess(to, from) || posEq(from, to) && marker.clearWhenEmpty !== false) - return marker; - if (marker.replacedWith) { - marker.collapsed = true; - marker.replacedWith = elt("span", [marker.replacedWith], "CodeMirror-widget"); - if (!options.handleMouseEvents) marker.replacedWith.ignoreEvents = true; - } - if (marker.collapsed) { - if (conflictingCollapsedRange(doc, from.line, from, to, marker) || - from.line != to.line && conflictingCollapsedRange(doc, to.line, from, to, marker)) - throw new Error("Inserting collapsed marker partially overlapping an existing one"); - sawCollapsedSpans = true; - } - - if (marker.addToHistory) - addToHistory(doc, {from: from, to: to, origin: "markText"}, - {head: doc.sel.head, anchor: doc.sel.anchor}, NaN); - - var curLine = from.line, cm = doc.cm, updateMaxLine; - doc.iter(curLine, to.line + 1, function(line) { - if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(doc, line) == cm.display.maxLine) - updateMaxLine = true; - var span = {from: null, to: null, marker: marker}; - if (curLine == from.line) span.from = from.ch; - if (curLine == to.line) span.to = to.ch; - if (marker.collapsed && curLine != from.line) updateLineHeight(line, 0); - addMarkedSpan(line, span); - ++curLine; - }); - if (marker.collapsed) doc.iter(from.line, to.line + 1, function(line) { - if (lineIsHidden(doc, line)) updateLineHeight(line, 0); - }); - - if (marker.clearOnEnter) on(marker, "beforeCursorEnter", function() { marker.clear(); }); - - if (marker.readOnly) { - sawReadOnlySpans = true; - if (doc.history.done.length || doc.history.undone.length) - doc.clearHistory(); - } - if (marker.collapsed) { - marker.id = ++nextMarkerId; - marker.atomic = true; - } - if (cm) { - if (updateMaxLine) cm.curOp.updateMaxLine = true; - if (marker.className || marker.title || marker.startStyle || marker.endStyle || marker.collapsed) - regChange(cm, from.line, to.line + 1); - if (marker.atomic) reCheckSelection(cm); - signalLater(cm, "markerAdded", cm, marker); - } - return marker; - } - - // SHARED TEXTMARKERS - - function SharedTextMarker(markers, primary) { - this.markers = markers; - this.primary = primary; - for (var i = 0; i < markers.length; ++i) - markers[i].parent = this; - } - CodeMirror.SharedTextMarker = SharedTextMarker; - eventMixin(SharedTextMarker); - - SharedTextMarker.prototype.clear = function() { - if (this.explicitlyCleared) return; - this.explicitlyCleared = true; - for (var i = 0; i < this.markers.length; ++i) - this.markers[i].clear(); - signalLater(this, "clear"); - }; - SharedTextMarker.prototype.find = function() { - return this.primary.find(); - }; - - function markTextShared(doc, from, to, options, type) { - options = copyObj(options); - options.shared = false; - var markers = [markText(doc, from, to, options, type)], primary = markers[0]; - var widget = options.replacedWith; - linkedDocs(doc, function(doc) { - if (widget) options.replacedWith = widget.cloneNode(true); - markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type)); - for (var i = 0; i < doc.linked.length; ++i) - if (doc.linked[i].isParent) return; - primary = lst(markers); - }); - return new SharedTextMarker(markers, primary); - } - - function findSharedMarkers(doc) { - return doc.findMarks(Pos(doc.first, 0), doc.clipPos(Pos(doc.lastLine())), - function(m) { return m.parent; }); - } - - function copySharedMarkers(doc, markers) { - for (var i = 0; i < markers.length; i++) { - var marker = markers[i], pos = marker.find(); - var mFrom = doc.clipPos(pos.from), mTo = doc.clipPos(pos.to); - if (cmp(mFrom, mTo)) { - var subMark = markText(doc, mFrom, mTo, marker.primary, marker.primary.type); - marker.markers.push(subMark); - subMark.parent = marker; - } - } - } - - function detachSharedMarkers(markers) { - for (var i = 0; i < markers.length; i++) { - var marker = markers[i], linked = [marker.primary.doc];; - linkedDocs(marker.primary.doc, function(d) { linked.push(d); }); - for (var j = 0; j < marker.markers.length; j++) { - var subMarker = marker.markers[j]; - if (indexOf(linked, subMarker.doc) == -1) { - subMarker.parent = null; - marker.markers.splice(j--, 1); - } - } - } - } - - // TEXTMARKER SPANS - - function getMarkedSpanFor(spans, marker) { - if (spans) for (var i = 0; i < spans.length; ++i) { - var span = spans[i]; - if (span.marker == marker) return span; - } - } - function removeMarkedSpan(spans, span) { - for (var r, i = 0; i < spans.length; ++i) - if (spans[i] != span) (r || (r = [])).push(spans[i]); - return r; - } - function addMarkedSpan(line, span) { - line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span]; - span.marker.attachLine(line); - } - - function markedSpansBefore(old, startCh, isInsert) { - if (old) for (var i = 0, nw; i < old.length; ++i) { - var span = old[i], marker = span.marker; - var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh); - if (startsBefore || span.from == startCh && marker.type == "bookmark" && (!isInsert || !span.marker.insertLeft)) { - var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh); - (nw || (nw = [])).push({from: span.from, - to: endsAfter ? null : span.to, - marker: marker}); - } - } - return nw; - } - - function markedSpansAfter(old, endCh, isInsert) { - if (old) for (var i = 0, nw; i < old.length; ++i) { - var span = old[i], marker = span.marker; - var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh); - if (endsAfter || span.from == endCh && marker.type == "bookmark" && (!isInsert || span.marker.insertLeft)) { - var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh); - (nw || (nw = [])).push({from: startsBefore ? null : span.from - endCh, - to: span.to == null ? null : span.to - endCh, - marker: marker}); - } - } - return nw; - } - - function stretchSpansOverChange(doc, change) { - var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans; - var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans; - if (!oldFirst && !oldLast) return null; - - var startCh = change.from.ch, endCh = change.to.ch, isInsert = posEq(change.from, change.to); - // Get the spans that 'stick out' on both sides - var first = markedSpansBefore(oldFirst, startCh, isInsert); - var last = markedSpansAfter(oldLast, endCh, isInsert); - - // Next, merge those two ends - var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0); - if (first) { - // Fix up .to properties of first - for (var i = 0; i < first.length; ++i) { - var span = first[i]; - if (span.to == null) { - var found = getMarkedSpanFor(last, span.marker); - if (!found) span.to = startCh; - else if (sameLine) span.to = found.to == null ? null : found.to + offset; - } - } - } - if (last) { - // Fix up .from in last (or move them into first in case of sameLine) - for (var i = 0; i < last.length; ++i) { - var span = last[i]; - if (span.to != null) span.to += offset; - if (span.from == null) { - var found = getMarkedSpanFor(first, span.marker); - if (!found) { - span.from = offset; - if (sameLine) (first || (first = [])).push(span); - } - } else { - span.from += offset; - if (sameLine) (first || (first = [])).push(span); - } - } - } - // Make sure we didn't create any zero-length spans - if (first) first = clearEmptySpans(first); - if (last && last != first) last = clearEmptySpans(last); - - var newMarkers = [first]; - if (!sameLine) { - // Fill gap with whole-line-spans - var gap = change.text.length - 2, gapMarkers; - if (gap > 0 && first) - for (var i = 0; i < first.length; ++i) - if (first[i].to == null) - (gapMarkers || (gapMarkers = [])).push({from: null, to: null, marker: first[i].marker}); - for (var i = 0; i < gap; ++i) - newMarkers.push(gapMarkers); - newMarkers.push(last); - } - return newMarkers; - } - - function clearEmptySpans(spans) { - for (var i = 0; i < spans.length; ++i) { - var span = spans[i]; - if (span.from != null && span.from == span.to && span.marker.clearWhenEmpty !== false) - spans.splice(i--, 1); - } - if (!spans.length) return null; - return spans; - } - - function mergeOldSpans(doc, change) { - var old = getOldSpans(doc, change); - var stretched = stretchSpansOverChange(doc, change); - if (!old) return stretched; - if (!stretched) return old; - - for (var i = 0; i < old.length; ++i) { - var oldCur = old[i], stretchCur = stretched[i]; - if (oldCur && stretchCur) { - spans: for (var j = 0; j < stretchCur.length; ++j) { - var span = stretchCur[j]; - for (var k = 0; k < oldCur.length; ++k) - if (oldCur[k].marker == span.marker) continue spans; - oldCur.push(span); - } - } else if (stretchCur) { - old[i] = stretchCur; - } - } - return old; - } - - function removeReadOnlyRanges(doc, from, to) { - var markers = null; - doc.iter(from.line, to.line + 1, function(line) { - if (line.markedSpans) for (var i = 0; i < line.markedSpans.length; ++i) { - var mark = line.markedSpans[i].marker; - if (mark.readOnly && (!markers || indexOf(markers, mark) == -1)) - (markers || (markers = [])).push(mark); - } - }); - if (!markers) return null; - var parts = [{from: from, to: to}]; - for (var i = 0; i < markers.length; ++i) { - var mk = markers[i], m = mk.find(); - for (var j = 0; j < parts.length; ++j) { - var p = parts[j]; - if (posLess(p.to, m.from) || posLess(m.to, p.from)) continue; - var newParts = [j, 1]; - if (posLess(p.from, m.from) || !mk.inclusiveLeft && posEq(p.from, m.from)) - newParts.push({from: p.from, to: m.from}); - if (posLess(m.to, p.to) || !mk.inclusiveRight && posEq(p.to, m.to)) - newParts.push({from: m.to, to: p.to}); - parts.splice.apply(parts, newParts); - j += newParts.length - 1; - } - } - return parts; - } - - function extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0; } - function extraRight(marker) { return marker.inclusiveRight ? 1 : 0; } - - function compareCollapsedMarkers(a, b) { - var lenDiff = a.lines.length - b.lines.length; - if (lenDiff != 0) return lenDiff; - var aPos = a.find(), bPos = b.find(); - var fromCmp = cmp(aPos.from, bPos.from) || extraLeft(a) - extraLeft(b); - if (fromCmp) return -fromCmp; - var toCmp = cmp(aPos.to, bPos.to) || extraRight(a) - extraRight(b); - if (toCmp) return toCmp; - return b.id - a.id; - } - - function collapsedSpanAtSide(line, start) { - var sps = sawCollapsedSpans && line.markedSpans, found; - if (sps) for (var sp, i = 0; i < sps.length; ++i) { - sp = sps[i]; - if (sp.marker.collapsed && (start ? sp.from : sp.to) == null && - (!found || compareCollapsedMarkers(found, sp.marker) < 0)) - found = sp.marker; - } - return found; - } - function collapsedSpanAtStart(line) { return collapsedSpanAtSide(line, true); } - function collapsedSpanAtEnd(line) { return collapsedSpanAtSide(line, false); } - - function conflictingCollapsedRange(doc, lineNo, from, to, marker) { - var line = getLine(doc, lineNo); - var sps = sawCollapsedSpans && line.markedSpans; - if (sps) for (var i = 0; i < sps.length; ++i) { - var sp = sps[i]; - if (!sp.marker.collapsed) continue; - var found = sp.marker.find(true); - var fromCmp = cmp(found.from, from) || extraLeft(sp.marker) - extraLeft(marker); - var toCmp = cmp(found.to, to) || extraRight(sp.marker) - extraRight(marker); - if (fromCmp >= 0 && toCmp <= 0 || fromCmp <= 0 && toCmp >= 0) continue; - if (fromCmp <= 0 && (cmp(found.to, from) || extraRight(sp.marker) - extraLeft(marker)) > 0 || - fromCmp >= 0 && (cmp(found.from, to) || extraLeft(sp.marker) - extraRight(marker)) < 0) - return true; - } - } - - function visualLine(doc, line) { - var merged; - while (merged = collapsedSpanAtStart(line)) - line = getLine(doc, merged.find().from.line); - return line; - } - - function lineIsHidden(doc, line) { - var sps = sawCollapsedSpans && line.markedSpans; - if (sps) for (var sp, i = 0; i < sps.length; ++i) { - sp = sps[i]; - if (!sp.marker.collapsed) continue; - if (sp.from == null) return true; - if (sp.marker.replacedWith) continue; - if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp)) - return true; - } - } - function lineIsHiddenInner(doc, line, span) { - if (span.to == null) { - var end = span.marker.find().to, endLine = getLine(doc, end.line); - return lineIsHiddenInner(doc, endLine, getMarkedSpanFor(endLine.markedSpans, span.marker)); - } - if (span.marker.inclusiveRight && span.to == line.text.length) - return true; - for (var sp, i = 0; i < line.markedSpans.length; ++i) { - sp = line.markedSpans[i]; - if (sp.marker.collapsed && !sp.marker.replacedWith && sp.from == span.to && - (sp.to == null || sp.to != span.from) && - (sp.marker.inclusiveLeft || span.marker.inclusiveRight) && - lineIsHiddenInner(doc, line, sp)) return true; - } - } - - function detachMarkedSpans(line) { - var spans = line.markedSpans; - if (!spans) return; - for (var i = 0; i < spans.length; ++i) - spans[i].marker.detachLine(line); - line.markedSpans = null; - } - - function attachMarkedSpans(line, spans) { - if (!spans) return; - for (var i = 0; i < spans.length; ++i) - spans[i].marker.attachLine(line); - line.markedSpans = spans; - } - - // LINE WIDGETS - - var LineWidget = CodeMirror.LineWidget = function(cm, node, options) { - if (options) for (var opt in options) if (options.hasOwnProperty(opt)) - this[opt] = options[opt]; - this.cm = cm; - this.node = node; - }; - eventMixin(LineWidget); - function widgetOperation(f) { - return function() { - var withOp = !this.cm.curOp; - if (withOp) startOperation(this.cm); - try {var result = f.apply(this, arguments);} - finally {if (withOp) endOperation(this.cm);} - return result; - }; - } - LineWidget.prototype.clear = widgetOperation(function() { - var ws = this.line.widgets, no = lineNo(this.line); - if (no == null || !ws) return; - for (var i = 0; i < ws.length; ++i) if (ws[i] == this) ws.splice(i--, 1); - if (!ws.length) this.line.widgets = null; - var aboveVisible = heightAtLine(this.cm, this.line) < this.cm.doc.scrollTop; - updateLineHeight(this.line, Math.max(0, this.line.height - widgetHeight(this))); - this.cm.curOp.forceUpdate = true; - if (aboveVisible) addToScrollPos(this.cm, 0, -this.height); - regChange(this.cm, no, no + 1); - }); - LineWidget.prototype.changed = widgetOperation(function() { - var oldH = this.height; - this.height = null; - var diff = widgetHeight(this) - oldH; - if (!diff) return; - updateLineHeight(this.line, this.line.height + diff); - this.cm.curOp.forceUpdate = true; - var no = lineNo(this.line); - regChange(this.cm, no, no + 1); - }); - - function widgetHeight(widget) { - if (widget.height != null) return widget.height; - if (!widget.node.parentNode || widget.node.parentNode.nodeType != 1) - removeChildrenAndAdd(widget.cm.display.measure, elt("div", [widget.node], null, "position: relative")); - return widget.height = widget.node.offsetHeight; - } - - function addLineWidget(cm, handle, node, options) { - var widget = new LineWidget(cm, node, options); - if (widget.noHScroll) cm.display.alignWidgets = true; - changeLine(cm, handle, function(line) { - var widgets = line.widgets || (line.widgets = []); - if (widget.insertAt == null) widgets.push(widget); - else widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget); - widget.line = line; - if (!lineIsHidden(cm.doc, line) || widget.showIfHidden) { - var aboveVisible = heightAtLine(cm, line) < cm.doc.scrollTop; - updateLineHeight(line, line.height + widgetHeight(widget)); - if (aboveVisible) addToScrollPos(cm, 0, widget.height); - cm.curOp.forceUpdate = true; - } - return true; - }); - return widget; - } - - // LINE DATA STRUCTURE - - // Line objects. These hold state related to a line, including - // highlighting info (the styles array). - var Line = CodeMirror.Line = function(text, markedSpans, estimateHeight) { - this.text = text; - attachMarkedSpans(this, markedSpans); - this.height = estimateHeight ? estimateHeight(this) : 1; - }; - eventMixin(Line); - Line.prototype.lineNo = function() { return lineNo(this); }; - - function updateLine(line, text, markedSpans, estimateHeight) { - line.text = text; - if (line.stateAfter) line.stateAfter = null; - if (line.styles) line.styles = null; - if (line.order != null) line.order = null; - detachMarkedSpans(line); - attachMarkedSpans(line, markedSpans); - var estHeight = estimateHeight ? estimateHeight(line) : 1; - if (estHeight != line.height) updateLineHeight(line, estHeight); - } - - function cleanUpLine(line) { - line.parent = null; - detachMarkedSpans(line); - } - - // Run the given mode's parser over a line, update the styles - // array, which contains alternating fragments of text and CSS - // classes. - function runMode(cm, text, mode, state, f, forceToEnd) { - var flattenSpans = mode.flattenSpans; - if (flattenSpans == null) flattenSpans = cm.options.flattenSpans; - var curStart = 0, curStyle = null; - var stream = new StringStream(text, cm.options.tabSize), style; - if (text == "" && mode.blankLine) mode.blankLine(state); - while (!stream.eol()) { - if (stream.pos > cm.options.maxHighlightLength) { - flattenSpans = false; - if (forceToEnd) processLine(cm, text, state, stream.pos); - stream.pos = text.length; - style = null; - } else { - style = mode.token(stream, state); - } - if (cm.options.addModeClass) { - var mName = CodeMirror.innerMode(mode, state).mode.name; - if (mName) style = "m-" + (style ? mName + " " + style : mName); - } - if (!flattenSpans || curStyle != style) { - if (curStart < stream.start) f(stream.start, curStyle); - curStart = stream.start; curStyle = style; - } - stream.start = stream.pos; - } - while (curStart < stream.pos) { - // Webkit seems to refuse to render text nodes longer than 57444 characters - var pos = Math.min(stream.pos, curStart + 50000); - f(pos, curStyle); - curStart = pos; - } - } - - function highlightLine(cm, line, state, forceToEnd) { - // A styles array always starts with a number identifying the - // mode/overlays that it is based on (for easy invalidation). - var st = [cm.state.modeGen]; - // Compute the base array of styles - runMode(cm, line.text, cm.doc.mode, state, function(end, style) { - st.push(end, style); - }, forceToEnd); - - // Run overlays, adjust style array. - for (var o = 0; o < cm.state.overlays.length; ++o) { - var overlay = cm.state.overlays[o], i = 1, at = 0; - runMode(cm, line.text, overlay.mode, true, function(end, style) { - var start = i; - // Ensure there's a token end at the current position, and that i points at it - while (at < end) { - var i_end = st[i]; - if (i_end > end) - st.splice(i, 1, end, st[i+1], i_end); - i += 2; - at = Math.min(end, i_end); - } - if (!style) return; - if (overlay.opaque) { - st.splice(start, i - start, end, style); - i = start + 2; - } else { - for (; start < i; start += 2) { - var cur = st[start+1]; - st[start+1] = cur ? cur + " " + style : style; - } - } - }); - } - - return st; - } - - function getLineStyles(cm, line) { - if (!line.styles || line.styles[0] != cm.state.modeGen) - line.styles = highlightLine(cm, line, line.stateAfter = getStateBefore(cm, lineNo(line))); - return line.styles; - } - - // Lightweight form of highlight -- proceed over this line and - // update state, but don't save a style array. - function processLine(cm, text, state, startAt) { - var mode = cm.doc.mode; - var stream = new StringStream(text, cm.options.tabSize); - stream.start = stream.pos = startAt || 0; - if (text == "" && mode.blankLine) mode.blankLine(state); - while (!stream.eol() && stream.pos <= cm.options.maxHighlightLength) { - mode.token(stream, state); - stream.start = stream.pos; - } - } - - var styleToClassCache = {}, styleToClassCacheWithMode = {}; - function interpretTokenStyle(style, builder) { - if (!style) return null; - for (;;) { - var lineClass = style.match(/(?:^|\s+)line-(background-)?(\S+)/); - if (!lineClass) break; - style = style.slice(0, lineClass.index) + style.slice(lineClass.index + lineClass[0].length); - var prop = lineClass[1] ? "bgClass" : "textClass"; - if (builder[prop] == null) - builder[prop] = lineClass[2]; - else if (!(new RegExp("(?:^|\s)" + lineClass[2] + "(?:$|\s)")).test(builder[prop])) - builder[prop] += " " + lineClass[2]; - } - if (/^\s*$/.test(style)) return null; - var cache = builder.cm.options.addModeClass ? styleToClassCacheWithMode : styleToClassCache; - return cache[style] || - (cache[style] = style.replace(/\S+/g, "cm-$&")); - } - - function buildLineContent(cm, realLine, measure, copyWidgets) { - var merged, line = realLine, empty = true; - while (merged = collapsedSpanAtStart(line)) - line = getLine(cm.doc, merged.find().from.line); - - var builder = {pre: elt("pre"), col: 0, pos: 0, - measure: null, measuredSomething: false, cm: cm, - copyWidgets: copyWidgets}; - - do { - if (line.text) empty = false; - builder.measure = line == realLine && measure; - builder.pos = 0; - builder.addToken = builder.measure ? buildTokenMeasure : buildToken; - if ((ie || webkit) && cm.getOption("lineWrapping")) - builder.addToken = buildTokenSplitSpaces(builder.addToken); - var next = insertLineContent(line, builder, getLineStyles(cm, line)); - if (measure && line == realLine && !builder.measuredSomething) { - measure[0] = builder.pre.appendChild(zeroWidthElement(cm.display.measure)); - builder.measuredSomething = true; - } - if (next) line = getLine(cm.doc, next.to.line); - } while (next); - - if (measure && !builder.measuredSomething && !measure[0]) - measure[0] = builder.pre.appendChild(empty ? elt("span", "\u00a0") : zeroWidthElement(cm.display.measure)); - if (!builder.pre.firstChild && !lineIsHidden(cm.doc, realLine)) - builder.pre.appendChild(document.createTextNode("\u00a0")); - - var order; - // Work around problem with the reported dimensions of single-char - // direction spans on IE (issue #1129). See also the comment in - // cursorCoords. - if (measure && ie && (order = getOrder(line))) { - var l = order.length - 1; - if (order[l].from == order[l].to) --l; - var last = order[l], prev = order[l - 1]; - if (last.from + 1 == last.to && prev && last.level < prev.level) { - var span = measure[builder.pos - 1]; - if (span) span.parentNode.insertBefore(span.measureRight = zeroWidthElement(cm.display.measure), - span.nextSibling); - } - } - - var textClass = builder.textClass ? builder.textClass + " " + (realLine.textClass || "") : realLine.textClass; - if (textClass) builder.pre.className = textClass; - - signal(cm, "renderLine", cm, realLine, builder.pre); - return builder; - } - - function defaultSpecialCharPlaceholder(ch) { - var token = elt("span", "\u2022", "cm-invalidchar"); - token.title = "\\u" + ch.charCodeAt(0).toString(16); - return token; - } - - function buildToken(builder, text, style, startStyle, endStyle, title) { - if (!text) return; - var special = builder.cm.options.specialChars; - if (!special.test(text)) { - builder.col += text.length; - var content = document.createTextNode(text); - } else { - var content = document.createDocumentFragment(), pos = 0; - while (true) { - special.lastIndex = pos; - var m = special.exec(text); - var skipped = m ? m.index - pos : text.length - pos; - if (skipped) { - content.appendChild(document.createTextNode(text.slice(pos, pos + skipped))); - builder.col += skipped; - } - if (!m) break; - pos += skipped + 1; - if (m[0] == "\t") { - var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize; - content.appendChild(elt("span", spaceStr(tabWidth), "cm-tab")); - builder.col += tabWidth; - } else { - var token = builder.cm.options.specialCharPlaceholder(m[0]); - content.appendChild(token); - builder.col += 1; - } - } - } - if (style || startStyle || endStyle || builder.measure) { - var fullStyle = style || ""; - if (startStyle) fullStyle += startStyle; - if (endStyle) fullStyle += endStyle; - var token = elt("span", [content], fullStyle); - if (title) token.title = title; - return builder.pre.appendChild(token); - } - builder.pre.appendChild(content); - } - - function buildTokenMeasure(builder, text, style, startStyle, endStyle) { - var wrapping = builder.cm.options.lineWrapping; - for (var i = 0; i < text.length; ++i) { - var start = i == 0, to = i + 1; - while (to < text.length && isExtendingChar(text.charAt(to))) ++to; - var ch = text.slice(i, to); - i = to - 1; - if (i && wrapping && spanAffectsWrapping(text, i)) - builder.pre.appendChild(elt("wbr")); - var old = builder.measure[builder.pos]; - var span = builder.measure[builder.pos] = - buildToken(builder, ch, style, - start && startStyle, i == text.length - 1 && endStyle); - if (old) span.leftSide = old.leftSide || old; - // In IE single-space nodes wrap differently than spaces - // embedded in larger text nodes, except when set to - // white-space: normal (issue #1268). - if (old_ie && wrapping && ch == " " && i && !/\s/.test(text.charAt(i - 1)) && - i < text.length - 1 && !/\s/.test(text.charAt(i + 1))) - span.style.whiteSpace = "normal"; - builder.pos += ch.length; - } - if (text.length) builder.measuredSomething = true; - } - - function buildTokenSplitSpaces(inner) { - function split(old) { - var out = " "; - for (var i = 0; i < old.length - 2; ++i) out += i % 2 ? " " : "\u00a0"; - out += " "; - return out; - } - return function(builder, text, style, startStyle, endStyle, title) { - return inner(builder, text.replace(/ {3,}/g, split), style, startStyle, endStyle, title); - }; - } - - function buildCollapsedSpan(builder, size, marker, ignoreWidget) { - var widget = !ignoreWidget && marker.replacedWith; - if (widget) { - if (builder.copyWidgets) widget = widget.cloneNode(true); - builder.pre.appendChild(widget); - if (builder.measure) { - if (size) { - builder.measure[builder.pos] = widget; - } else { - var elt = zeroWidthElement(builder.cm.display.measure); - if (marker.type == "bookmark" && !marker.insertLeft) - builder.measure[builder.pos] = builder.pre.appendChild(elt); - else if (builder.measure[builder.pos]) - return; - else - builder.measure[builder.pos] = builder.pre.insertBefore(elt, widget); - } - builder.measuredSomething = true; - } - } - builder.pos += size; - } - - // Outputs a number of spans to make up a line, taking highlighting - // and marked text into account. - function insertLineContent(line, builder, styles) { - var spans = line.markedSpans, allText = line.text, at = 0; - if (!spans) { - for (var i = 1; i < styles.length; i+=2) - builder.addToken(builder, allText.slice(at, at = styles[i]), interpretTokenStyle(styles[i+1], builder)); - return; - } - - var len = allText.length, pos = 0, i = 1, text = "", style; - var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed; - for (;;) { - if (nextChange == pos) { // Update current marker set - spanStyle = spanEndStyle = spanStartStyle = title = ""; - collapsed = null; nextChange = Infinity; - var foundBookmarks = []; - for (var j = 0; j < spans.length; ++j) { - var sp = spans[j], m = sp.marker; - if (sp.from <= pos && (sp.to == null || sp.to > pos)) { - if (sp.to != null && nextChange > sp.to) { nextChange = sp.to; spanEndStyle = ""; } - if (m.className) spanStyle += " " + m.className; - if (m.startStyle && sp.from == pos) spanStartStyle += " " + m.startStyle; - if (m.endStyle && sp.to == nextChange) spanEndStyle += " " + m.endStyle; - if (m.title && !title) title = m.title; - if (m.collapsed && (!collapsed || compareCollapsedMarkers(collapsed.marker, m) < 0)) - collapsed = sp; - } else if (sp.from > pos && nextChange > sp.from) { - nextChange = sp.from; - } - if (m.type == "bookmark" && sp.from == pos && m.replacedWith) foundBookmarks.push(m); - } - if (collapsed && (collapsed.from || 0) == pos) { - buildCollapsedSpan(builder, (collapsed.to == null ? len : collapsed.to) - pos, - collapsed.marker, collapsed.from == null); - if (collapsed.to == null) return collapsed.marker.find(); - } - if (!collapsed && foundBookmarks.length) for (var j = 0; j < foundBookmarks.length; ++j) - buildCollapsedSpan(builder, 0, foundBookmarks[j]); - } - if (pos >= len) break; - - var upto = Math.min(len, nextChange); - while (true) { - if (text) { - var end = pos + text.length; - if (!collapsed) { - var tokenText = end > upto ? text.slice(0, upto - pos) : text; - builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle, - spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : "", title); - } - if (end >= upto) {text = text.slice(upto - pos); pos = upto; break;} - pos = end; - spanStartStyle = ""; - } - text = allText.slice(at, at = styles[i++]); - style = interpretTokenStyle(styles[i++], builder); - } - } - } - - // DOCUMENT DATA STRUCTURE - - function updateDoc(doc, change, markedSpans, selAfter, estimateHeight) { - function spansFor(n) {return markedSpans ? markedSpans[n] : null;} - function update(line, text, spans) { - updateLine(line, text, spans, estimateHeight); - signalLater(line, "change", line, change); - } - - var from = change.from, to = change.to, text = change.text; - var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line); - var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line; - - // First adjust the line structure - if (from.ch == 0 && to.ch == 0 && lastText == "" && - (!doc.cm || doc.cm.options.wholeLineUpdateBefore)) { - // This is a whole-line replace. Treated specially to make - // sure line objects move the way they are supposed to. - for (var i = 0, e = text.length - 1, added = []; i < e; ++i) - added.push(new Line(text[i], spansFor(i), estimateHeight)); - update(lastLine, lastLine.text, lastSpans); - if (nlines) doc.remove(from.line, nlines); - if (added.length) doc.insert(from.line, added); - } else if (firstLine == lastLine) { - if (text.length == 1) { - update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans); - } else { - for (var added = [], i = 1, e = text.length - 1; i < e; ++i) - added.push(new Line(text[i], spansFor(i), estimateHeight)); - added.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight)); - update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0)); - doc.insert(from.line + 1, added); - } - } else if (text.length == 1) { - update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0)); - doc.remove(from.line + 1, nlines); - } else { - update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0)); - update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans); - for (var i = 1, e = text.length - 1, added = []; i < e; ++i) - added.push(new Line(text[i], spansFor(i), estimateHeight)); - if (nlines > 1) doc.remove(from.line + 1, nlines - 1); - doc.insert(from.line + 1, added); - } - - signalLater(doc, "change", doc, change); - setSelection(doc, selAfter.anchor, selAfter.head, null, true); - } - - function LeafChunk(lines) { - this.lines = lines; - this.parent = null; - for (var i = 0, e = lines.length, height = 0; i < e; ++i) { - lines[i].parent = this; - height += lines[i].height; - } - this.height = height; - } - - LeafChunk.prototype = { - chunkSize: function() { return this.lines.length; }, - removeInner: function(at, n) { - for (var i = at, e = at + n; i < e; ++i) { - var line = this.lines[i]; - this.height -= line.height; - cleanUpLine(line); - signalLater(line, "delete"); - } - this.lines.splice(at, n); - }, - collapse: function(lines) { - lines.splice.apply(lines, [lines.length, 0].concat(this.lines)); - }, - insertInner: function(at, lines, height) { - this.height += height; - this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at)); - for (var i = 0, e = lines.length; i < e; ++i) lines[i].parent = this; - }, - iterN: function(at, n, op) { - for (var e = at + n; at < e; ++at) - if (op(this.lines[at])) return true; - } - }; - - function BranchChunk(children) { - this.children = children; - var size = 0, height = 0; - for (var i = 0, e = children.length; i < e; ++i) { - var ch = children[i]; - size += ch.chunkSize(); height += ch.height; - ch.parent = this; - } - this.size = size; - this.height = height; - this.parent = null; - } - - BranchChunk.prototype = { - chunkSize: function() { return this.size; }, - removeInner: function(at, n) { - this.size -= n; - for (var i = 0; i < this.children.length; ++i) { - var child = this.children[i], sz = child.chunkSize(); - if (at < sz) { - var rm = Math.min(n, sz - at), oldHeight = child.height; - child.removeInner(at, rm); - this.height -= oldHeight - child.height; - if (sz == rm) { this.children.splice(i--, 1); child.parent = null; } - if ((n -= rm) == 0) break; - at = 0; - } else at -= sz; - } - if (this.size - n < 25) { - var lines = []; - this.collapse(lines); - this.children = [new LeafChunk(lines)]; - this.children[0].parent = this; - } - }, - collapse: function(lines) { - for (var i = 0, e = this.children.length; i < e; ++i) this.children[i].collapse(lines); - }, - insertInner: function(at, lines, height) { - this.size += lines.length; - this.height += height; - for (var i = 0, e = this.children.length; i < e; ++i) { - var child = this.children[i], sz = child.chunkSize(); - if (at <= sz) { - child.insertInner(at, lines, height); - if (child.lines && child.lines.length > 50) { - while (child.lines.length > 50) { - var spilled = child.lines.splice(child.lines.length - 25, 25); - var newleaf = new LeafChunk(spilled); - child.height -= newleaf.height; - this.children.splice(i + 1, 0, newleaf); - newleaf.parent = this; - } - this.maybeSpill(); - } - break; - } - at -= sz; - } - }, - maybeSpill: function() { - if (this.children.length <= 10) return; - var me = this; - do { - var spilled = me.children.splice(me.children.length - 5, 5); - var sibling = new BranchChunk(spilled); - if (!me.parent) { // Become the parent node - var copy = new BranchChunk(me.children); - copy.parent = me; - me.children = [copy, sibling]; - me = copy; - } else { - me.size -= sibling.size; - me.height -= sibling.height; - var myIndex = indexOf(me.parent.children, me); - me.parent.children.splice(myIndex + 1, 0, sibling); - } - sibling.parent = me.parent; - } while (me.children.length > 10); - me.parent.maybeSpill(); - }, - iterN: function(at, n, op) { - for (var i = 0, e = this.children.length; i < e; ++i) { - var child = this.children[i], sz = child.chunkSize(); - if (at < sz) { - var used = Math.min(n, sz - at); - if (child.iterN(at, used, op)) return true; - if ((n -= used) == 0) break; - at = 0; - } else at -= sz; - } - } - }; - - var nextDocId = 0; - var Doc = CodeMirror.Doc = function(text, mode, firstLine) { - if (!(this instanceof Doc)) return new Doc(text, mode, firstLine); - if (firstLine == null) firstLine = 0; - - BranchChunk.call(this, [new LeafChunk([new Line("", null)])]); - this.first = firstLine; - this.scrollTop = this.scrollLeft = 0; - this.cantEdit = false; - this.history = makeHistory(); - this.cleanGeneration = 1; - this.frontier = firstLine; - var start = Pos(firstLine, 0); - this.sel = {from: start, to: start, head: start, anchor: start, shift: false, extend: false, goalColumn: null}; - this.id = ++nextDocId; - this.modeOption = mode; - - if (typeof text == "string") text = splitLines(text); - updateDoc(this, {from: start, to: start, text: text}, null, {head: start, anchor: start}); - }; - - Doc.prototype = createObj(BranchChunk.prototype, { - constructor: Doc, - iter: function(from, to, op) { - if (op) this.iterN(from - this.first, to - from, op); - else this.iterN(this.first, this.first + this.size, from); - }, - - insert: function(at, lines) { - var height = 0; - for (var i = 0, e = lines.length; i < e; ++i) height += lines[i].height; - this.insertInner(at - this.first, lines, height); - }, - remove: function(at, n) { this.removeInner(at - this.first, n); }, - - getValue: function(lineSep) { - var lines = getLines(this, this.first, this.first + this.size); - if (lineSep === false) return lines; - return lines.join(lineSep || "\n"); - }, - setValue: function(code) { - var top = Pos(this.first, 0), last = this.first + this.size - 1; - makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length), - text: splitLines(code), origin: "setValue"}, - {head: top, anchor: top}, true); - }, - replaceRange: function(code, from, to, origin) { - from = clipPos(this, from); - to = to ? clipPos(this, to) : from; - replaceRange(this, code, from, to, origin); - }, - getRange: function(from, to, lineSep) { - var lines = getBetween(this, clipPos(this, from), clipPos(this, to)); - if (lineSep === false) return lines; - return lines.join(lineSep || "\n"); - }, - - getLine: function(line) {var l = this.getLineHandle(line); return l && l.text;}, - setLine: function(line, text) { - if (isLine(this, line)) - replaceRange(this, text, Pos(line, 0), clipPos(this, Pos(line))); - }, - removeLine: function(line) { - if (line) replaceRange(this, "", clipPos(this, Pos(line - 1)), clipPos(this, Pos(line))); - else replaceRange(this, "", Pos(0, 0), clipPos(this, Pos(1, 0))); - }, - - getLineHandle: function(line) {if (isLine(this, line)) return getLine(this, line);}, - getLineNumber: function(line) {return lineNo(line);}, - - getLineHandleVisualStart: function(line) { - if (typeof line == "number") line = getLine(this, line); - return visualLine(this, line); - }, - - lineCount: function() {return this.size;}, - firstLine: function() {return this.first;}, - lastLine: function() {return this.first + this.size - 1;}, - - clipPos: function(pos) {return clipPos(this, pos);}, - - getCursor: function(start) { - var sel = this.sel, pos; - if (start == null || start == "head") pos = sel.head; - else if (start == "anchor") pos = sel.anchor; - else if (start == "end" || start === false) pos = sel.to; - else pos = sel.from; - return copyPos(pos); - }, - somethingSelected: function() {return !posEq(this.sel.head, this.sel.anchor);}, - - setCursor: docOperation(function(line, ch, extend) { - var pos = clipPos(this, typeof line == "number" ? Pos(line, ch || 0) : line); - if (extend) extendSelection(this, pos); - else setSelection(this, pos, pos); - }), - setSelection: docOperation(function(anchor, head, bias) { - setSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), bias); - }), - extendSelection: docOperation(function(from, to, bias) { - extendSelection(this, clipPos(this, from), to && clipPos(this, to), bias); - }), - - getSelection: function(lineSep) {return this.getRange(this.sel.from, this.sel.to, lineSep);}, - replaceSelection: function(code, collapse, origin) { - makeChange(this, {from: this.sel.from, to: this.sel.to, text: splitLines(code), origin: origin}, collapse || "around"); - }, - undo: docOperation(function() {makeChangeFromHistory(this, "undo");}), - redo: docOperation(function() {makeChangeFromHistory(this, "redo");}), - - setExtending: function(val) {this.sel.extend = val;}, - getExtending: function() {return this.sel.extend;}, - - historySize: function() { - var hist = this.history; - return {undo: hist.done.length, redo: hist.undone.length}; - }, - clearHistory: function() {this.history = makeHistory(this.history.maxGeneration);}, - - markClean: function() { - this.cleanGeneration = this.changeGeneration(true); - }, - changeGeneration: function(forceSplit) { - if (forceSplit) - this.history.lastOp = this.history.lastOrigin = null; - return this.history.generation; - }, - isClean: function (gen) { - return this.history.generation == (gen || this.cleanGeneration); - }, - - getHistory: function() { - return {done: copyHistoryArray(this.history.done), - undone: copyHistoryArray(this.history.undone)}; - }, - setHistory: function(histData) { - var hist = this.history = makeHistory(this.history.maxGeneration); - hist.done = histData.done.slice(0); - hist.undone = histData.undone.slice(0); - }, - - markText: function(from, to, options) { - return markText(this, clipPos(this, from), clipPos(this, to), options, "range"); - }, - setBookmark: function(pos, options) { - var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options), - insertLeft: options && options.insertLeft, - clearWhenEmpty: false}; - pos = clipPos(this, pos); - return markText(this, pos, pos, realOpts, "bookmark"); - }, - findMarksAt: function(pos) { - pos = clipPos(this, pos); - var markers = [], spans = getLine(this, pos.line).markedSpans; - if (spans) for (var i = 0; i < spans.length; ++i) { - var span = spans[i]; - if ((span.from == null || span.from <= pos.ch) && - (span.to == null || span.to >= pos.ch)) - markers.push(span.marker.parent || span.marker); - } - return markers; - }, - findMarks: function(from, to, filter) { - from = clipPos(this, from); to = clipPos(this, to); - var found = [], lineNo = from.line; - this.iter(from.line, to.line + 1, function(line) { - var spans = line.markedSpans; - if (spans) for (var i = 0; i < spans.length; i++) { - var span = spans[i]; - if (!(lineNo == from.line && from.ch > span.to || - span.from == null && lineNo != from.line|| - lineNo == to.line && span.from > to.ch) && - (!filter || filter(span.marker))) - found.push(span.marker.parent || span.marker); - } - ++lineNo; - }); - return found; - }, - getAllMarks: function() { - var markers = []; - this.iter(function(line) { - var sps = line.markedSpans; - if (sps) for (var i = 0; i < sps.length; ++i) - if (sps[i].from != null) markers.push(sps[i].marker); - }); - return markers; - }, - - posFromIndex: function(off) { - var ch, lineNo = this.first; - this.iter(function(line) { - var sz = line.text.length + 1; - if (sz > off) { ch = off; return true; } - off -= sz; - ++lineNo; - }); - return clipPos(this, Pos(lineNo, ch)); - }, - indexFromPos: function (coords) { - coords = clipPos(this, coords); - var index = coords.ch; - if (coords.line < this.first || coords.ch < 0) return 0; - this.iter(this.first, coords.line, function (line) { - index += line.text.length + 1; - }); - return index; - }, - - copy: function(copyHistory) { - var doc = new Doc(getLines(this, this.first, this.first + this.size), this.modeOption, this.first); - doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft; - doc.sel = {from: this.sel.from, to: this.sel.to, head: this.sel.head, anchor: this.sel.anchor, - shift: this.sel.shift, extend: false, goalColumn: this.sel.goalColumn}; - if (copyHistory) { - doc.history.undoDepth = this.history.undoDepth; - doc.setHistory(this.getHistory()); - } - return doc; - }, - - linkedDoc: function(options) { - if (!options) options = {}; - var from = this.first, to = this.first + this.size; - if (options.from != null && options.from > from) from = options.from; - if (options.to != null && options.to < to) to = options.to; - var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from); - if (options.sharedHist) copy.history = this.history; - (this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist}); - copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}]; - copySharedMarkers(copy, findSharedMarkers(this)); - return copy; - }, - unlinkDoc: function(other) { - if (other instanceof CodeMirror) other = other.doc; - if (this.linked) for (var i = 0; i < this.linked.length; ++i) { - var link = this.linked[i]; - if (link.doc != other) continue; - this.linked.splice(i, 1); - other.unlinkDoc(this); - detachSharedMarkers(findSharedMarkers(this)); - break; - } - // If the histories were shared, split them again - if (other.history == this.history) { - var splitIds = [other.id]; - linkedDocs(other, function(doc) {splitIds.push(doc.id);}, true); - other.history = makeHistory(); - other.history.done = copyHistoryArray(this.history.done, splitIds); - other.history.undone = copyHistoryArray(this.history.undone, splitIds); - } - }, - iterLinkedDocs: function(f) {linkedDocs(this, f);}, - - getMode: function() {return this.mode;}, - getEditor: function() {return this.cm;} - }); - - Doc.prototype.eachLine = Doc.prototype.iter; - - // The Doc methods that should be available on CodeMirror instances - var dontDelegate = "iter insert remove copy getEditor".split(" "); - for (var prop in Doc.prototype) if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0) - CodeMirror.prototype[prop] = (function(method) { - return function() {return method.apply(this.doc, arguments);}; - })(Doc.prototype[prop]); - - eventMixin(Doc); - - function linkedDocs(doc, f, sharedHistOnly) { - function propagate(doc, skip, sharedHist) { - if (doc.linked) for (var i = 0; i < doc.linked.length; ++i) { - var rel = doc.linked[i]; - if (rel.doc == skip) continue; - var shared = sharedHist && rel.sharedHist; - if (sharedHistOnly && !shared) continue; - f(rel.doc, shared); - propagate(rel.doc, doc, shared); - } - } - propagate(doc, null, true); - } - - function attachDoc(cm, doc) { - if (doc.cm) throw new Error("This document is already in use."); - cm.doc = doc; - doc.cm = cm; - estimateLineHeights(cm); - loadMode(cm); - if (!cm.options.lineWrapping) computeMaxLength(cm); - cm.options.mode = doc.modeOption; - regChange(cm); - } - - // LINE UTILITIES - - function getLine(chunk, n) { - n -= chunk.first; - while (!chunk.lines) { - for (var i = 0;; ++i) { - var child = chunk.children[i], sz = child.chunkSize(); - if (n < sz) { chunk = child; break; } - n -= sz; - } - } - return chunk.lines[n]; - } - - function getBetween(doc, start, end) { - var out = [], n = start.line; - doc.iter(start.line, end.line + 1, function(line) { - var text = line.text; - if (n == end.line) text = text.slice(0, end.ch); - if (n == start.line) text = text.slice(start.ch); - out.push(text); - ++n; - }); - return out; - } - function getLines(doc, from, to) { - var out = []; - doc.iter(from, to, function(line) { out.push(line.text); }); - return out; - } - - function updateLineHeight(line, height) { - var diff = height - line.height; - for (var n = line; n; n = n.parent) n.height += diff; - } - - function lineNo(line) { - if (line.parent == null) return null; - var cur = line.parent, no = indexOf(cur.lines, line); - for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) { - for (var i = 0;; ++i) { - if (chunk.children[i] == cur) break; - no += chunk.children[i].chunkSize(); - } - } - return no + cur.first; - } - - function lineAtHeight(chunk, h) { - var n = chunk.first; - outer: do { - for (var i = 0, e = chunk.children.length; i < e; ++i) { - var child = chunk.children[i], ch = child.height; - if (h < ch) { chunk = child; continue outer; } - h -= ch; - n += child.chunkSize(); - } - return n; - } while (!chunk.lines); - for (var i = 0, e = chunk.lines.length; i < e; ++i) { - var line = chunk.lines[i], lh = line.height; - if (h < lh) break; - h -= lh; - } - return n + i; - } - - function heightAtLine(cm, lineObj) { - lineObj = visualLine(cm.doc, lineObj); - - var h = 0, chunk = lineObj.parent; - for (var i = 0; i < chunk.lines.length; ++i) { - var line = chunk.lines[i]; - if (line == lineObj) break; - else h += line.height; - } - for (var p = chunk.parent; p; chunk = p, p = chunk.parent) { - for (var i = 0; i < p.children.length; ++i) { - var cur = p.children[i]; - if (cur == chunk) break; - else h += cur.height; - } - } - return h; - } - - function getOrder(line) { - var order = line.order; - if (order == null) order = line.order = bidiOrdering(line.text); - return order; - } - - // HISTORY - - function makeHistory(startGen) { - return { - // Arrays of history events. Doing something adds an event to - // done and clears undo. Undoing moves events from done to - // undone, redoing moves them in the other direction. - done: [], undone: [], undoDepth: Infinity, - // Used to track when changes can be merged into a single undo - // event - lastTime: 0, lastOp: null, lastOrigin: null, - // Used by the isClean() method - generation: startGen || 1, maxGeneration: startGen || 1 - }; - } - - function attachLocalSpans(doc, change, from, to) { - var existing = change["spans_" + doc.id], n = 0; - doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function(line) { - if (line.markedSpans) - (existing || (existing = change["spans_" + doc.id] = {}))[n] = line.markedSpans; - ++n; - }); - } - - function historyChangeFromChange(doc, change) { - var from = { line: change.from.line, ch: change.from.ch }; - var histChange = {from: from, to: changeEnd(change), text: getBetween(doc, change.from, change.to)}; - attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1); - linkedDocs(doc, function(doc) {attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);}, true); - return histChange; - } - - function addToHistory(doc, change, selAfter, opId) { - var hist = doc.history; - hist.undone.length = 0; - var time = +new Date, cur = lst(hist.done); - - if (cur && - (hist.lastOp == opId || - hist.lastOrigin == change.origin && change.origin && - ((change.origin.charAt(0) == "+" && doc.cm && hist.lastTime > time - doc.cm.options.historyEventDelay) || - change.origin.charAt(0) == "*"))) { - // Merge this change into the last event - var last = lst(cur.changes); - if (posEq(change.from, change.to) && posEq(change.from, last.to)) { - // Optimized case for simple insertion -- don't want to add - // new changesets for every character typed - last.to = changeEnd(change); - } else { - // Add new sub-event - cur.changes.push(historyChangeFromChange(doc, change)); - } - cur.anchorAfter = selAfter.anchor; cur.headAfter = selAfter.head; - } else { - // Can not be merged, start a new event. - cur = {changes: [historyChangeFromChange(doc, change)], - generation: hist.generation, - anchorBefore: doc.sel.anchor, headBefore: doc.sel.head, - anchorAfter: selAfter.anchor, headAfter: selAfter.head}; - hist.done.push(cur); - while (hist.done.length > hist.undoDepth) - hist.done.shift(); - } - hist.generation = ++hist.maxGeneration; - hist.lastTime = time; - hist.lastOp = opId; - hist.lastOrigin = change.origin; - - if (!last) signal(doc, "historyAdded"); - } - - function removeClearedSpans(spans) { - if (!spans) return null; - for (var i = 0, out; i < spans.length; ++i) { - if (spans[i].marker.explicitlyCleared) { if (!out) out = spans.slice(0, i); } - else if (out) out.push(spans[i]); - } - return !out ? spans : out.length ? out : null; - } - - function getOldSpans(doc, change) { - var found = change["spans_" + doc.id]; - if (!found) return null; - for (var i = 0, nw = []; i < change.text.length; ++i) - nw.push(removeClearedSpans(found[i])); - return nw; - } - - // Used both to provide a JSON-safe object in .getHistory, and, when - // detaching a document, to split the history in two - function copyHistoryArray(events, newGroup) { - for (var i = 0, copy = []; i < events.length; ++i) { - var event = events[i], changes = event.changes, newChanges = []; - copy.push({changes: newChanges, anchorBefore: event.anchorBefore, headBefore: event.headBefore, - anchorAfter: event.anchorAfter, headAfter: event.headAfter}); - for (var j = 0; j < changes.length; ++j) { - var change = changes[j], m; - newChanges.push({from: change.from, to: change.to, text: change.text}); - if (newGroup) for (var prop in change) if (m = prop.match(/^spans_(\d+)$/)) { - if (indexOf(newGroup, Number(m[1])) > -1) { - lst(newChanges)[prop] = change[prop]; - delete change[prop]; - } - } - } - } - return copy; - } - - // Rebasing/resetting history to deal with externally-sourced changes - - function rebaseHistSel(pos, from, to, diff) { - if (to < pos.line) { - pos.line += diff; - } else if (from < pos.line) { - pos.line = from; - pos.ch = 0; - } - } - - // Tries to rebase an array of history events given a change in the - // document. If the change touches the same lines as the event, the - // event, and everything 'behind' it, is discarded. If the change is - // before the event, the event's positions are updated. Uses a - // copy-on-write scheme for the positions, to avoid having to - // reallocate them all on every rebase, but also avoid problems with - // shared position objects being unsafely updated. - function rebaseHistArray(array, from, to, diff) { - for (var i = 0; i < array.length; ++i) { - var sub = array[i], ok = true; - for (var j = 0; j < sub.changes.length; ++j) { - var cur = sub.changes[j]; - if (!sub.copied) { cur.from = copyPos(cur.from); cur.to = copyPos(cur.to); } - if (to < cur.from.line) { - cur.from.line += diff; - cur.to.line += diff; - } else if (from <= cur.to.line) { - ok = false; - break; - } - } - if (!sub.copied) { - sub.anchorBefore = copyPos(sub.anchorBefore); sub.headBefore = copyPos(sub.headBefore); - sub.anchorAfter = copyPos(sub.anchorAfter); sub.readAfter = copyPos(sub.headAfter); - sub.copied = true; - } - if (!ok) { - array.splice(0, i + 1); - i = 0; - } else { - rebaseHistSel(sub.anchorBefore); rebaseHistSel(sub.headBefore); - rebaseHistSel(sub.anchorAfter); rebaseHistSel(sub.headAfter); - } - } - } - - function rebaseHist(hist, change) { - var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1; - rebaseHistArray(hist.done, from, to, diff); - rebaseHistArray(hist.undone, from, to, diff); - } - - // EVENT OPERATORS - - function stopMethod() {e_stop(this);} - // Ensure an event has a stop method. - function addStop(event) { - if (!event.stop) event.stop = stopMethod; - return event; - } - - function e_preventDefault(e) { - if (e.preventDefault) e.preventDefault(); - else e.returnValue = false; - } - function e_stopPropagation(e) { - if (e.stopPropagation) e.stopPropagation(); - else e.cancelBubble = true; - } - function e_defaultPrevented(e) { - return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false; - } - function e_stop(e) {e_preventDefault(e); e_stopPropagation(e);} - CodeMirror.e_stop = e_stop; - CodeMirror.e_preventDefault = e_preventDefault; - CodeMirror.e_stopPropagation = e_stopPropagation; - - function e_target(e) {return e.target || e.srcElement;} - function e_button(e) { - var b = e.which; - if (b == null) { - if (e.button & 1) b = 1; - else if (e.button & 2) b = 3; - else if (e.button & 4) b = 2; - } - if (mac && e.ctrlKey && b == 1) b = 3; - return b; - } - - // EVENT HANDLING - - function on(emitter, type, f) { - if (emitter.addEventListener) - emitter.addEventListener(type, f, false); - else if (emitter.attachEvent) - emitter.attachEvent("on" + type, f); - else { - var map = emitter._handlers || (emitter._handlers = {}); - var arr = map[type] || (map[type] = []); - arr.push(f); - } - } - - function off(emitter, type, f) { - if (emitter.removeEventListener) - emitter.removeEventListener(type, f, false); - else if (emitter.detachEvent) - emitter.detachEvent("on" + type, f); - else { - var arr = emitter._handlers && emitter._handlers[type]; - if (!arr) return; - for (var i = 0; i < arr.length; ++i) - if (arr[i] == f) { arr.splice(i, 1); break; } - } - } - - function signal(emitter, type /*, values...*/) { - var arr = emitter._handlers && emitter._handlers[type]; - if (!arr) return; - var args = Array.prototype.slice.call(arguments, 2); - for (var i = 0; i < arr.length; ++i) arr[i].apply(null, args); - } - - var delayedCallbacks, delayedCallbackDepth = 0; - function signalLater(emitter, type /*, values...*/) { - var arr = emitter._handlers && emitter._handlers[type]; - if (!arr) return; - var args = Array.prototype.slice.call(arguments, 2); - if (!delayedCallbacks) { - ++delayedCallbackDepth; - delayedCallbacks = []; - setTimeout(fireDelayed, 0); - } - function bnd(f) {return function(){f.apply(null, args);};}; - for (var i = 0; i < arr.length; ++i) - delayedCallbacks.push(bnd(arr[i])); - } - - function signalDOMEvent(cm, e, override) { - signal(cm, override || e.type, cm, e); - return e_defaultPrevented(e) || e.codemirrorIgnore; - } - - function fireDelayed() { - --delayedCallbackDepth; - var delayed = delayedCallbacks; - delayedCallbacks = null; - for (var i = 0; i < delayed.length; ++i) delayed[i](); - } - - function hasHandler(emitter, type) { - var arr = emitter._handlers && emitter._handlers[type]; - return arr && arr.length > 0; - } - - CodeMirror.on = on; CodeMirror.off = off; CodeMirror.signal = signal; - - function eventMixin(ctor) { - ctor.prototype.on = function(type, f) {on(this, type, f);}; - ctor.prototype.off = function(type, f) {off(this, type, f);}; - } - - // MISC UTILITIES - - // Number of pixels added to scroller and sizer to hide scrollbar - var scrollerCutOff = 30; - - // Returned or thrown by various protocols to signal 'I'm not - // handling this'. - var Pass = CodeMirror.Pass = {toString: function(){return "CodeMirror.Pass";}}; - - function Delayed() {this.id = null;} - Delayed.prototype = {set: function(ms, f) {clearTimeout(this.id); this.id = setTimeout(f, ms);}}; - - // Counts the column offset in a string, taking tabs into account. - // Used mostly to find indentation. - function countColumn(string, end, tabSize, startIndex, startValue) { - if (end == null) { - end = string.search(/[^\s\u00a0]/); - if (end == -1) end = string.length; - } - for (var i = startIndex || 0, n = startValue || 0; i < end; ++i) { - if (string.charAt(i) == "\t") n += tabSize - (n % tabSize); - else ++n; - } - return n; - } - CodeMirror.countColumn = countColumn; - - var spaceStrs = [""]; - function spaceStr(n) { - while (spaceStrs.length <= n) - spaceStrs.push(lst(spaceStrs) + " "); - return spaceStrs[n]; - } - - function lst(arr) { return arr[arr.length-1]; } - - function selectInput(node) { - if (ios) { // Mobile Safari apparently has a bug where select() is broken. - node.selectionStart = 0; - node.selectionEnd = node.value.length; - } else { - // Suppress mysterious IE10 errors - try { node.select(); } - catch(_e) {} - } - } - - function indexOf(collection, elt) { - if (collection.indexOf) return collection.indexOf(elt); - for (var i = 0, e = collection.length; i < e; ++i) - if (collection[i] == elt) return i; - return -1; - } - - function createObj(base, props) { - function Obj() {} - Obj.prototype = base; - var inst = new Obj(); - if (props) copyObj(props, inst); - return inst; - } - - function copyObj(obj, target, overwrite) { - if (!target) target = {}; - for (var prop in obj) - if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop))) - target[prop] = obj[prop]; - return target; - } - - function emptyArray(size) { - for (var a = [], i = 0; i < size; ++i) a.push(undefined); - return a; - } - - function bind(f) { - var args = Array.prototype.slice.call(arguments, 1); - return function(){return f.apply(null, args);}; - } - - var nonASCIISingleCaseWordChar = /[\u00df\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/; - function isWordChar(ch) { - return /\w/.test(ch) || ch > "\x80" && - (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch)); - } - - function isEmpty(obj) { - for (var n in obj) if (obj.hasOwnProperty(n) && obj[n]) return false; - return true; - } - - var extendingChars = /[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/; - function isExtendingChar(ch) { return ch.charCodeAt(0) >= 768 && extendingChars.test(ch); } - - // DOM UTILITIES - - function elt(tag, content, className, style) { - var e = document.createElement(tag); - if (className) e.className = className; - if (style) e.style.cssText = style; - if (typeof content == "string") setTextContent(e, content); - else if (content) for (var i = 0; i < content.length; ++i) e.appendChild(content[i]); - return e; - } - - function removeChildren(e) { - for (var count = e.childNodes.length; count > 0; --count) - e.removeChild(e.firstChild); - return e; - } - - function removeChildrenAndAdd(parent, e) { - return removeChildren(parent).appendChild(e); - } - - function setTextContent(e, str) { - if (ie_lt9) { - e.innerHTML = ""; - e.appendChild(document.createTextNode(str)); - } else e.textContent = str; - } - - function getRect(node) { - return node.getBoundingClientRect(); - } - CodeMirror.replaceGetRect = function(f) { getRect = f; }; - - // FEATURE DETECTION - - // Detect drag-and-drop - var dragAndDrop = function() { - // There is *some* kind of drag-and-drop support in IE6-8, but I - // couldn't get it to work yet. - if (ie_lt9) return false; - var div = elt('div'); - return "draggable" in div || "dragDrop" in div; - }(); - - // For a reason I have yet to figure out, some browsers disallow - // word wrapping between certain characters *only* if a new inline - // element is started between them. This makes it hard to reliably - // measure the position of things, since that requires inserting an - // extra span. This terribly fragile set of tests matches the - // character combinations that suffer from this phenomenon on the - // various browsers. - function spanAffectsWrapping() { return false; } - if (gecko) // Only for "$'" - spanAffectsWrapping = function(str, i) { - return str.charCodeAt(i - 1) == 36 && str.charCodeAt(i) == 39; - }; - else if (safari && !/Version\/([6-9]|\d\d)\b/.test(navigator.userAgent)) - spanAffectsWrapping = function(str, i) { - return /\-[^ \-?]|\?[^ !\'\"\),.\-\/:;\?\]\}]/.test(str.slice(i - 1, i + 1)); - }; - else if (webkit && /Chrome\/(?:29|[3-9]\d|\d\d\d)\./.test(navigator.userAgent)) - spanAffectsWrapping = function(str, i) { - var code = str.charCodeAt(i - 1); - return code >= 8208 && code <= 8212; - }; - else if (webkit) - spanAffectsWrapping = function(str, i) { - if (i > 1 && str.charCodeAt(i - 1) == 45) { - if (/\w/.test(str.charAt(i - 2)) && /[^\-?\.]/.test(str.charAt(i))) return true; - if (i > 2 && /[\d\.,]/.test(str.charAt(i - 2)) && /[\d\.,]/.test(str.charAt(i))) return false; - } - return /[~!#%&*)=+}\]\\|\"\.>,:;][({[<]|-[^\-?\.\u2010-\u201f\u2026]|\?[\w~`@#$%\^&*(_=+{[|><]|\u2026[\w~`@#$%\^&*(_=+{[><]/.test(str.slice(i - 1, i + 1)); - }; - - var knownScrollbarWidth; - function scrollbarWidth(measure) { - if (knownScrollbarWidth != null) return knownScrollbarWidth; - var test = elt("div", null, null, "width: 50px; height: 50px; overflow-x: scroll"); - removeChildrenAndAdd(measure, test); - if (test.offsetWidth) - knownScrollbarWidth = test.offsetHeight - test.clientHeight; - return knownScrollbarWidth || 0; - } - - var zwspSupported; - function zeroWidthElement(measure) { - if (zwspSupported == null) { - var test = elt("span", "\u200b"); - removeChildrenAndAdd(measure, elt("span", [test, document.createTextNode("x")])); - if (measure.firstChild.offsetHeight != 0) - zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !ie_lt8; - } - if (zwspSupported) return elt("span", "\u200b"); - else return elt("span", "\u00a0", null, "display: inline-block; width: 1px; margin-right: -1px"); - } - - // See if "".split is the broken IE version, if so, provide an - // alternative way to split lines. - var splitLines = "\n\nb".split(/\n/).length != 3 ? function(string) { - var pos = 0, result = [], l = string.length; - while (pos <= l) { - var nl = string.indexOf("\n", pos); - if (nl == -1) nl = string.length; - var line = string.slice(pos, string.charAt(nl - 1) == "\r" ? nl - 1 : nl); - var rt = line.indexOf("\r"); - if (rt != -1) { - result.push(line.slice(0, rt)); - pos += rt + 1; - } else { - result.push(line); - pos = nl + 1; - } - } - return result; - } : function(string){return string.split(/\r\n?|\n/);}; - CodeMirror.splitLines = splitLines; - - var hasSelection = window.getSelection ? function(te) { - try { return te.selectionStart != te.selectionEnd; } - catch(e) { return false; } - } : function(te) { - try {var range = te.ownerDocument.selection.createRange();} - catch(e) {} - if (!range || range.parentElement() != te) return false; - return range.compareEndPoints("StartToEnd", range) != 0; - }; - - var hasCopyEvent = (function() { - var e = elt("div"); - if ("oncopy" in e) return true; - e.setAttribute("oncopy", "return;"); - return typeof e.oncopy == 'function'; - })(); - - // KEY NAMING - - var keyNames = {3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt", - 19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End", - 36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert", - 46: "Delete", 59: ";", 61: "=", 91: "Mod", 92: "Mod", 93: "Mod", 107: "=", 109: "-", 127: "Delete", - 173: "-", 186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\", - 221: "]", 222: "'", 63232: "Up", 63233: "Down", 63234: "Left", 63235: "Right", 63272: "Delete", - 63273: "Home", 63275: "End", 63276: "PageUp", 63277: "PageDown", 63302: "Insert"}; - CodeMirror.keyNames = keyNames; - (function() { - // Number keys - for (var i = 0; i < 10; i++) keyNames[i + 48] = keyNames[i + 96] = String(i); - // Alphabetic keys - for (var i = 65; i <= 90; i++) keyNames[i] = String.fromCharCode(i); - // Function keys - for (var i = 1; i <= 12; i++) keyNames[i + 111] = keyNames[i + 63235] = "F" + i; - })(); - - // BIDI HELPERS - - function iterateBidiSections(order, from, to, f) { - if (!order) return f(from, to, "ltr"); - var found = false; - for (var i = 0; i < order.length; ++i) { - var part = order[i]; - if (part.from < to && part.to > from || from == to && part.to == from) { - f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? "rtl" : "ltr"); - found = true; - } - } - if (!found) f(from, to, "ltr"); - } - - function bidiLeft(part) { return part.level % 2 ? part.to : part.from; } - function bidiRight(part) { return part.level % 2 ? part.from : part.to; } - - function lineLeft(line) { var order = getOrder(line); return order ? bidiLeft(order[0]) : 0; } - function lineRight(line) { - var order = getOrder(line); - if (!order) return line.text.length; - return bidiRight(lst(order)); - } - - function lineStart(cm, lineN) { - var line = getLine(cm.doc, lineN); - var visual = visualLine(cm.doc, line); - if (visual != line) lineN = lineNo(visual); - var order = getOrder(visual); - var ch = !order ? 0 : order[0].level % 2 ? lineRight(visual) : lineLeft(visual); - return Pos(lineN, ch); - } - function lineEnd(cm, lineN) { - var merged, line; - while (merged = collapsedSpanAtEnd(line = getLine(cm.doc, lineN))) - lineN = merged.find().to.line; - var order = getOrder(line); - var ch = !order ? line.text.length : order[0].level % 2 ? lineLeft(line) : lineRight(line); - return Pos(lineN, ch); - } - - function compareBidiLevel(order, a, b) { - var linedir = order[0].level; - if (a == linedir) return true; - if (b == linedir) return false; - return a < b; - } - var bidiOther; - function getBidiPartAt(order, pos) { - bidiOther = null; - for (var i = 0, found; i < order.length; ++i) { - var cur = order[i]; - if (cur.from < pos && cur.to > pos) return i; - if ((cur.from == pos || cur.to == pos)) { - if (found == null) { - found = i; - } else if (compareBidiLevel(order, cur.level, order[found].level)) { - if (cur.from != cur.to) bidiOther = found; - return i; - } else { - if (cur.from != cur.to) bidiOther = i; - return found; - } - } - } - return found; - } - - function moveInLine(line, pos, dir, byUnit) { - if (!byUnit) return pos + dir; - do pos += dir; - while (pos > 0 && isExtendingChar(line.text.charAt(pos))); - return pos; - } - - // This is somewhat involved. It is needed in order to move - // 'visually' through bi-directional text -- i.e., pressing left - // should make the cursor go left, even when in RTL text. The - // tricky part is the 'jumps', where RTL and LTR text touch each - // other. This often requires the cursor offset to move more than - // one unit, in order to visually move one unit. - function moveVisually(line, start, dir, byUnit) { - var bidi = getOrder(line); - if (!bidi) return moveLogically(line, start, dir, byUnit); - var pos = getBidiPartAt(bidi, start), part = bidi[pos]; - var target = moveInLine(line, start, part.level % 2 ? -dir : dir, byUnit); - - for (;;) { - if (target > part.from && target < part.to) return target; - if (target == part.from || target == part.to) { - if (getBidiPartAt(bidi, target) == pos) return target; - part = bidi[pos += dir]; - return (dir > 0) == part.level % 2 ? part.to : part.from; - } else { - part = bidi[pos += dir]; - if (!part) return null; - if ((dir > 0) == part.level % 2) - target = moveInLine(line, part.to, -1, byUnit); - else - target = moveInLine(line, part.from, 1, byUnit); - } - } - } - - function moveLogically(line, start, dir, byUnit) { - var target = start + dir; - if (byUnit) while (target > 0 && isExtendingChar(line.text.charAt(target))) target += dir; - return target < 0 || target > line.text.length ? null : target; - } - - // Bidirectional ordering algorithm - // See http://unicode.org/reports/tr9/tr9-13.html for the algorithm - // that this (partially) implements. - - // One-char codes used for character types: - // L (L): Left-to-Right - // R (R): Right-to-Left - // r (AL): Right-to-Left Arabic - // 1 (EN): European Number - // + (ES): European Number Separator - // % (ET): European Number Terminator - // n (AN): Arabic Number - // , (CS): Common Number Separator - // m (NSM): Non-Spacing Mark - // b (BN): Boundary Neutral - // s (B): Paragraph Separator - // t (S): Segment Separator - // w (WS): Whitespace - // N (ON): Other Neutrals - - // Returns null if characters are ordered as they appear - // (left-to-right), or an array of sections ({from, to, level} - // objects) in the order in which they occur visually. - var bidiOrdering = (function() { - // Character types for codepoints 0 to 0xff - var lowTypes = "bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLL"; - // Character types for codepoints 0x600 to 0x6ff - var arabicTypes = "rrrrrrrrrrrr,rNNmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmrrrrrrrnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmNmmmmrrrrrrrrrrrrrrrrrr"; - function charType(code) { - if (code <= 0xff) return lowTypes.charAt(code); - else if (0x590 <= code && code <= 0x5f4) return "R"; - else if (0x600 <= code && code <= 0x6ff) return arabicTypes.charAt(code - 0x600); - else if (0x700 <= code && code <= 0x8ac) return "r"; - else return "L"; - } - - var bidiRE = /[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/; - var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/; - // Browsers seem to always treat the boundaries of block elements as being L. - var outerType = "L"; - - return function(str) { - if (!bidiRE.test(str)) return false; - var len = str.length, types = []; - for (var i = 0, type; i < len; ++i) - types.push(type = charType(str.charCodeAt(i))); - - // W1. Examine each non-spacing mark (NSM) in the level run, and - // change the type of the NSM to the type of the previous - // character. If the NSM is at the start of the level run, it will - // get the type of sor. - for (var i = 0, prev = outerType; i < len; ++i) { - var type = types[i]; - if (type == "m") types[i] = prev; - else prev = type; - } - - // W2. Search backwards from each instance of a European number - // until the first strong type (R, L, AL, or sor) is found. If an - // AL is found, change the type of the European number to Arabic - // number. - // W3. Change all ALs to R. - for (var i = 0, cur = outerType; i < len; ++i) { - var type = types[i]; - if (type == "1" && cur == "r") types[i] = "n"; - else if (isStrong.test(type)) { cur = type; if (type == "r") types[i] = "R"; } - } - - // W4. A single European separator between two European numbers - // changes to a European number. A single common separator between - // two numbers of the same type changes to that type. - for (var i = 1, prev = types[0]; i < len - 1; ++i) { - var type = types[i]; - if (type == "+" && prev == "1" && types[i+1] == "1") types[i] = "1"; - else if (type == "," && prev == types[i+1] && - (prev == "1" || prev == "n")) types[i] = prev; - prev = type; - } - - // W5. A sequence of European terminators adjacent to European - // numbers changes to all European numbers. - // W6. Otherwise, separators and terminators change to Other - // Neutral. - for (var i = 0; i < len; ++i) { - var type = types[i]; - if (type == ",") types[i] = "N"; - else if (type == "%") { - for (var end = i + 1; end < len && types[end] == "%"; ++end) {} - var replace = (i && types[i-1] == "!") || (end < len && types[end] == "1") ? "1" : "N"; - for (var j = i; j < end; ++j) types[j] = replace; - i = end - 1; - } - } - - // W7. Search backwards from each instance of a European number - // until the first strong type (R, L, or sor) is found. If an L is - // found, then change the type of the European number to L. - for (var i = 0, cur = outerType; i < len; ++i) { - var type = types[i]; - if (cur == "L" && type == "1") types[i] = "L"; - else if (isStrong.test(type)) cur = type; - } - - // N1. A sequence of neutrals takes the direction of the - // surrounding strong text if the text on both sides has the same - // direction. European and Arabic numbers act as if they were R in - // terms of their influence on neutrals. Start-of-level-run (sor) - // and end-of-level-run (eor) are used at level run boundaries. - // N2. Any remaining neutrals take the embedding direction. - for (var i = 0; i < len; ++i) { - if (isNeutral.test(types[i])) { - for (var end = i + 1; end < len && isNeutral.test(types[end]); ++end) {} - var before = (i ? types[i-1] : outerType) == "L"; - var after = (end < len ? types[end] : outerType) == "L"; - var replace = before || after ? "L" : "R"; - for (var j = i; j < end; ++j) types[j] = replace; - i = end - 1; - } - } - - // Here we depart from the documented algorithm, in order to avoid - // building up an actual levels array. Since there are only three - // levels (0, 1, 2) in an implementation that doesn't take - // explicit embedding into account, we can build up the order on - // the fly, without following the level-based algorithm. - var order = [], m; - for (var i = 0; i < len;) { - if (countsAsLeft.test(types[i])) { - var start = i; - for (++i; i < len && countsAsLeft.test(types[i]); ++i) {} - order.push({from: start, to: i, level: 0}); - } else { - var pos = i, at = order.length; - for (++i; i < len && types[i] != "L"; ++i) {} - for (var j = pos; j < i;) { - if (countsAsNum.test(types[j])) { - if (pos < j) order.splice(at, 0, {from: pos, to: j, level: 1}); - var nstart = j; - for (++j; j < i && countsAsNum.test(types[j]); ++j) {} - order.splice(at, 0, {from: nstart, to: j, level: 2}); - pos = j; - } else ++j; - } - if (pos < i) order.splice(at, 0, {from: pos, to: i, level: 1}); - } - } - if (order[0].level == 1 && (m = str.match(/^\s+/))) { - order[0].from = m[0].length; - order.unshift({from: 0, to: m[0].length, level: 0}); - } - if (lst(order).level == 1 && (m = str.match(/\s+$/))) { - lst(order).to -= m[0].length; - order.push({from: len - m[0].length, to: len, level: 0}); - } - if (order[0].level != lst(order).level) - order.push({from: len, to: len, level: order[0].level}); - - return order; - }; - })(); - - // THE END - - CodeMirror.version = "3.24.0"; - - return CodeMirror; -})(); + textarea.style.display = "none" + var cm = CodeMirror(function (node) { return textarea.parentNode.insertBefore(node, textarea.nextSibling); }, + options) + return cm +} + +function addLegacyProps(CodeMirror) { + CodeMirror.off = off + CodeMirror.on = on + CodeMirror.wheelEventPixels = wheelEventPixels + CodeMirror.Doc = Doc + CodeMirror.splitLines = splitLinesAuto + CodeMirror.countColumn = countColumn + CodeMirror.findColumn = findColumn + CodeMirror.isWordChar = isWordCharBasic + CodeMirror.Pass = Pass + CodeMirror.signal = signal + CodeMirror.Line = Line + CodeMirror.changeEnd = changeEnd + CodeMirror.scrollbarModel = scrollbarModel + CodeMirror.Pos = Pos + CodeMirror.cmpPos = cmp + CodeMirror.modes = modes + CodeMirror.mimeModes = mimeModes + CodeMirror.resolveMode = resolveMode + CodeMirror.getMode = getMode + CodeMirror.modeExtensions = modeExtensions + CodeMirror.extendMode = extendMode + CodeMirror.copyState = copyState + CodeMirror.startState = startState + CodeMirror.innerMode = innerMode + CodeMirror.commands = commands + CodeMirror.keyMap = keyMap + CodeMirror.keyName = keyName + CodeMirror.isModifierKey = isModifierKey + CodeMirror.lookupKey = lookupKey + CodeMirror.normalizeKeyMap = normalizeKeyMap + CodeMirror.StringStream = StringStream + CodeMirror.SharedTextMarker = SharedTextMarker + CodeMirror.TextMarker = TextMarker + CodeMirror.LineWidget = LineWidget + CodeMirror.e_preventDefault = e_preventDefault + CodeMirror.e_stopPropagation = e_stopPropagation + CodeMirror.e_stop = e_stop + CodeMirror.addClass = addClass + CodeMirror.contains = contains + CodeMirror.rmClass = rmClass + CodeMirror.keyNames = keyNames +} + +// EDITOR CONSTRUCTOR + +defineOptions(CodeMirror) + +addEditorMethods(CodeMirror) + +// Set up methods on CodeMirror's prototype to redirect to the editor's document. +var dontDelegate = "iter insert remove copy getEditor constructor".split(" ") +for (var prop in Doc.prototype) { if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0) + { CodeMirror.prototype[prop] = (function(method) { + return function() {return method.apply(this.doc, arguments)} + })(Doc.prototype[prop]) } } + +eventMixin(Doc) + +// INPUT HANDLING + +CodeMirror.inputStyles = {"textarea": TextareaInput, "contenteditable": ContentEditableInput} + +// MODE DEFINITION AND QUERYING + +// Extra arguments are stored as the mode's dependencies, which is +// used by (legacy) mechanisms like loadmode.js to automatically +// load a mode. (Preferred mechanism is the require/define calls.) +CodeMirror.defineMode = function(name/*, mode, …*/) { + if (!CodeMirror.defaults.mode && name != "null") { CodeMirror.defaults.mode = name } + defineMode.apply(this, arguments) +} + +CodeMirror.defineMIME = defineMIME + +// Minimal default mode. +CodeMirror.defineMode("null", function () { return ({token: function (stream) { return stream.skipToEnd(); }}); }) +CodeMirror.defineMIME("text/plain", "null") + +// EXTENSIONS + +CodeMirror.defineExtension = function (name, func) { + CodeMirror.prototype[name] = func +} +CodeMirror.defineDocExtension = function (name, func) { + Doc.prototype[name] = func +} + +CodeMirror.fromTextArea = fromTextArea + +addLegacyProps(CodeMirror) + +CodeMirror.version = "5.26.0" + +return CodeMirror; + +}))); \ No newline at end of file diff --git a/wwwroot/js/codemirror/css.js b/wwwroot/js/codemirror/css.js deleted file mode 100644 index 28b0f3356..000000000 --- a/wwwroot/js/codemirror/css.js +++ /dev/null @@ -1,710 +0,0 @@ -CodeMirror.defineMode("css", function(config, parserConfig) { - "use strict"; - - if (!parserConfig.propertyKeywords) parserConfig = CodeMirror.resolveMode("text/css"); - - var indentUnit = config.indentUnit, - tokenHooks = parserConfig.tokenHooks, - mediaTypes = parserConfig.mediaTypes || {}, - mediaFeatures = parserConfig.mediaFeatures || {}, - propertyKeywords = parserConfig.propertyKeywords || {}, - nonStandardPropertyKeywords = parserConfig.nonStandardPropertyKeywords || {}, - colorKeywords = parserConfig.colorKeywords || {}, - valueKeywords = parserConfig.valueKeywords || {}, - fontProperties = parserConfig.fontProperties || {}, - allowNested = parserConfig.allowNested; - - var type, override; - function ret(style, tp) { type = tp; return style; } - - // Tokenizers - - function tokenBase(stream, state) { - var ch = stream.next(); - if (tokenHooks[ch]) { - var result = tokenHooks[ch](stream, state); - if (result !== false) return result; - } - if (ch == "@") { - stream.eatWhile(/[\w\\\-]/); - return ret("def", stream.current()); - } else if (ch == "=" || (ch == "~" || ch == "|") && stream.eat("=")) { - return ret(null, "compare"); - } else if (ch == "\"" || ch == "'") { - state.tokenize = tokenString(ch); - return state.tokenize(stream, state); - } else if (ch == "#") { - stream.eatWhile(/[\w\\\-]/); - return ret("atom", "hash"); - } else if (ch == "!") { - stream.match(/^\s*\w*/); - return ret("keyword", "important"); - } else if (/\d/.test(ch) || ch == "." && stream.eat(/\d/)) { - stream.eatWhile(/[\w.%]/); - return ret("number", "unit"); - } else if (ch === "-") { - if (/[\d.]/.test(stream.peek())) { - stream.eatWhile(/[\w.%]/); - return ret("number", "unit"); - } else if (stream.match(/^[^-]+-/)) { - return ret("meta", "meta"); - } - } else if (/[,+>*\/]/.test(ch)) { - return ret(null, "select-op"); - } else if (ch == "." && stream.match(/^-?[_a-z][_a-z0-9-]*/i)) { - return ret("qualifier", "qualifier"); - } else if (/[:;{}\[\]\(\)]/.test(ch)) { - return ret(null, ch); - } else if (ch == "u" && stream.match("rl(")) { - stream.backUp(1); - state.tokenize = tokenParenthesized; - return ret("property", "word"); - } else if (/[\w\\\-]/.test(ch)) { - stream.eatWhile(/[\w\\\-]/); - return ret("property", "word"); - } else { - return ret(null, null); - } - } - - function tokenString(quote) { - return function(stream, state) { - var escaped = false, ch; - while ((ch = stream.next()) != null) { - if (ch == quote && !escaped) { - if (quote == ")") stream.backUp(1); - break; - } - escaped = !escaped && ch == "\\"; - } - if (ch == quote || !escaped && quote != ")") state.tokenize = null; - return ret("string", "string"); - }; - } - - function tokenParenthesized(stream, state) { - stream.next(); // Must be '(' - if (!stream.match(/\s*[\"\')]/, false)) - state.tokenize = tokenString(")"); - else - state.tokenize = null; - return ret(null, "("); - } - - // Context management - - function Context(type, indent, prev) { - this.type = type; - this.indent = indent; - this.prev = prev; - } - - function pushContext(state, stream, type) { - state.context = new Context(type, stream.indentation() + indentUnit, state.context); - return type; - } - - function popContext(state) { - state.context = state.context.prev; - return state.context.type; - } - - function pass(type, stream, state) { - return states[state.context.type](type, stream, state); - } - function popAndPass(type, stream, state, n) { - for (var i = n || 1; i > 0; i--) - state.context = state.context.prev; - return pass(type, stream, state); - } - - // Parser - - function wordAsValue(stream) { - var word = stream.current().toLowerCase(); - if (valueKeywords.hasOwnProperty(word)) - override = "atom"; - else if (colorKeywords.hasOwnProperty(word)) - override = "keyword"; - else - override = "variable"; - } - - var states = {}; - - states.top = function(type, stream, state) { - if (type == "{") { - return pushContext(state, stream, "block"); - } else if (type == "}" && state.context.prev) { - return popContext(state); - } else if (type == "@media") { - return pushContext(state, stream, "media"); - } else if (type == "@font-face") { - return "font_face_before"; - } else if (/^@(-(moz|ms|o|webkit)-)?keyframes$/.test(type)) { - return "keyframes"; - } else if (type && type.charAt(0) == "@") { - return pushContext(state, stream, "at"); - } else if (type == "hash") { - override = "builtin"; - } else if (type == "word") { - override = "tag"; - } else if (type == "variable-definition") { - return "maybeprop"; - } else if (type == "interpolation") { - return pushContext(state, stream, "interpolation"); - } else if (type == ":") { - return "pseudo"; - } else if (allowNested && type == "(") { - return pushContext(state, stream, "params"); - } - return state.context.type; - }; - - states.block = function(type, stream, state) { - if (type == "word") { - var word = stream.current().toLowerCase(); - if (propertyKeywords.hasOwnProperty(word)) { - override = "property"; - return "maybeprop"; - } else if (nonStandardPropertyKeywords.hasOwnProperty(word)) { - override = "string-2"; - return "maybeprop"; - } else if (allowNested) { - override = stream.match(/^\s*:/, false) ? "property" : "tag"; - return "block"; - } else { - override += " error"; - return "maybeprop"; - } - } else if (type == "meta") { - return "block"; - } else if (!allowNested && (type == "hash" || type == "qualifier")) { - override = "error"; - return "block"; - } else { - return states.top(type, stream, state); - } - }; - - states.maybeprop = function(type, stream, state) { - if (type == ":") return pushContext(state, stream, "prop"); - return pass(type, stream, state); - }; - - states.prop = function(type, stream, state) { - if (type == ";") return popContext(state); - if (type == "{" && allowNested) return pushContext(state, stream, "propBlock"); - if (type == "}" || type == "{") return popAndPass(type, stream, state); - if (type == "(") return pushContext(state, stream, "parens"); - - if (type == "hash" && !/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(stream.current())) { - override += " error"; - } else if (type == "word") { - wordAsValue(stream); - } else if (type == "interpolation") { - return pushContext(state, stream, "interpolation"); - } - return "prop"; - }; - - states.propBlock = function(type, _stream, state) { - if (type == "}") return popContext(state); - if (type == "word") { override = "property"; return "maybeprop"; } - return state.context.type; - }; - - states.parens = function(type, stream, state) { - if (type == "{" || type == "}") return popAndPass(type, stream, state); - if (type == ")") return popContext(state); - return "parens"; - }; - - states.pseudo = function(type, stream, state) { - if (type == "word") { - override = "variable-3"; - return state.context.type; - } - return pass(type, stream, state); - }; - - states.media = function(type, stream, state) { - if (type == "(") return pushContext(state, stream, "media_parens"); - if (type == "}") return popAndPass(type, stream, state); - if (type == "{") return popContext(state) && pushContext(state, stream, allowNested ? "block" : "top"); - - if (type == "word") { - var word = stream.current().toLowerCase(); - if (word == "only" || word == "not" || word == "and") - override = "keyword"; - else if (mediaTypes.hasOwnProperty(word)) - override = "attribute"; - else if (mediaFeatures.hasOwnProperty(word)) - override = "property"; - else - override = "error"; - } - return state.context.type; - }; - - states.media_parens = function(type, stream, state) { - if (type == ")") return popContext(state); - if (type == "{" || type == "}") return popAndPass(type, stream, state, 2); - return states.media(type, stream, state); - }; - - states.font_face_before = function(type, stream, state) { - if (type == "{") - return pushContext(state, stream, "font_face"); - return pass(type, stream, state); - }; - - states.font_face = function(type, stream, state) { - if (type == "}") return popContext(state); - if (type == "word") { - if (!fontProperties.hasOwnProperty(stream.current().toLowerCase())) - override = "error"; - else - override = "property"; - return "maybeprop"; - } - return "font_face"; - }; - - states.keyframes = function(type, stream, state) { - if (type == "word") { override = "variable"; return "keyframes"; } - if (type == "{") return pushContext(state, stream, "top"); - return pass(type, stream, state); - }; - - states.at = function(type, stream, state) { - if (type == ";") return popContext(state); - if (type == "{" || type == "}") return popAndPass(type, stream, state); - if (type == "word") override = "tag"; - else if (type == "hash") override = "builtin"; - return "at"; - }; - - states.interpolation = function(type, stream, state) { - if (type == "}") return popContext(state); - if (type == "{" || type == ";") return popAndPass(type, stream, state); - if (type != "variable") override = "error"; - return "interpolation"; - }; - - states.params = function(type, stream, state) { - if (type == ")") return popContext(state); - if (type == "{" || type == "}") return popAndPass(type, stream, state); - if (type == "word") wordAsValue(stream); - return "params"; - }; - - return { - startState: function(base) { - return {tokenize: null, - state: "top", - context: new Context("top", base || 0, null)}; - }, - - token: function(stream, state) { - if (!state.tokenize && stream.eatSpace()) return null; - var style = (state.tokenize || tokenBase)(stream, state); - if (style && typeof style == "object") { - type = style[1]; - style = style[0]; - } - override = style; - state.state = states[state.state](type, stream, state); - return override; - }, - - indent: function(state, textAfter) { - var cx = state.context, ch = textAfter && textAfter.charAt(0); - var indent = cx.indent; - if (cx.type == "prop" && ch == "}") cx = cx.prev; - if (cx.prev && - (ch == "}" && (cx.type == "block" || cx.type == "top" || cx.type == "interpolation" || cx.type == "font_face") || - ch == ")" && (cx.type == "parens" || cx.type == "params" || cx.type == "media_parens") || - ch == "{" && (cx.type == "at" || cx.type == "media"))) { - indent = cx.indent - indentUnit; - cx = cx.prev; - } - return indent; - }, - - electricChars: "}", - blockCommentStart: "/*", - blockCommentEnd: "*/", - fold: "brace" - }; -}); - -(function() { - function keySet(array) { - var keys = {}; - for (var i = 0; i < array.length; ++i) { - keys[array[i]] = true; - } - return keys; - } - - var mediaTypes_ = [ - "all", "aural", "braille", "handheld", "print", "projection", "screen", - "tty", "tv", "embossed" - ], mediaTypes = keySet(mediaTypes_); - - var mediaFeatures_ = [ - "width", "min-width", "max-width", "height", "min-height", "max-height", - "device-width", "min-device-width", "max-device-width", "device-height", - "min-device-height", "max-device-height", "aspect-ratio", - "min-aspect-ratio", "max-aspect-ratio", "device-aspect-ratio", - "min-device-aspect-ratio", "max-device-aspect-ratio", "color", "min-color", - "max-color", "color-index", "min-color-index", "max-color-index", - "monochrome", "min-monochrome", "max-monochrome", "resolution", - "min-resolution", "max-resolution", "scan", "grid" - ], mediaFeatures = keySet(mediaFeatures_); - - var propertyKeywords_ = [ - "align-content", "align-items", "align-self", "alignment-adjust", - "alignment-baseline", "anchor-point", "animation", "animation-delay", - "animation-direction", "animation-duration", "animation-fill-mode", - "animation-iteration-count", "animation-name", "animation-play-state", - "animation-timing-function", "appearance", "azimuth", "backface-visibility", - "background", "background-attachment", "background-clip", "background-color", - "background-image", "background-origin", "background-position", - "background-repeat", "background-size", "baseline-shift", "binding", - "bleed", "bookmark-label", "bookmark-level", "bookmark-state", - "bookmark-target", "border", "border-bottom", "border-bottom-color", - "border-bottom-left-radius", "border-bottom-right-radius", - "border-bottom-style", "border-bottom-width", "border-collapse", - "border-color", "border-image", "border-image-outset", - "border-image-repeat", "border-image-slice", "border-image-source", - "border-image-width", "border-left", "border-left-color", - "border-left-style", "border-left-width", "border-radius", "border-right", - "border-right-color", "border-right-style", "border-right-width", - "border-spacing", "border-style", "border-top", "border-top-color", - "border-top-left-radius", "border-top-right-radius", "border-top-style", - "border-top-width", "border-width", "bottom", "box-decoration-break", - "box-shadow", "box-sizing", "break-after", "break-before", "break-inside", - "caption-side", "clear", "clip", "color", "color-profile", "column-count", - "column-fill", "column-gap", "column-rule", "column-rule-color", - "column-rule-style", "column-rule-width", "column-span", "column-width", - "columns", "content", "counter-increment", "counter-reset", "crop", "cue", - "cue-after", "cue-before", "cursor", "direction", "display", - "dominant-baseline", "drop-initial-after-adjust", - "drop-initial-after-align", "drop-initial-before-adjust", - "drop-initial-before-align", "drop-initial-size", "drop-initial-value", - "elevation", "empty-cells", "fit", "fit-position", "flex", "flex-basis", - "flex-direction", "flex-flow", "flex-grow", "flex-shrink", "flex-wrap", - "float", "float-offset", "flow-from", "flow-into", "font", "font-feature-settings", - "font-family", "font-kerning", "font-language-override", "font-size", "font-size-adjust", - "font-stretch", "font-style", "font-synthesis", "font-variant", - "font-variant-alternates", "font-variant-caps", "font-variant-east-asian", - "font-variant-ligatures", "font-variant-numeric", "font-variant-position", - "font-weight", "grid", "grid-area", "grid-auto-columns", "grid-auto-flow", - "grid-auto-position", "grid-auto-rows", "grid-column", "grid-column-end", - "grid-column-start", "grid-row", "grid-row-end", "grid-row-start", - "grid-template", "grid-template-areas", "grid-template-columns", - "grid-template-rows", "hanging-punctuation", "height", "hyphens", - "icon", "image-orientation", "image-rendering", "image-resolution", - "inline-box-align", "justify-content", "left", "letter-spacing", - "line-break", "line-height", "line-stacking", "line-stacking-ruby", - "line-stacking-shift", "line-stacking-strategy", "list-style", - "list-style-image", "list-style-position", "list-style-type", "margin", - "margin-bottom", "margin-left", "margin-right", "margin-top", - "marker-offset", "marks", "marquee-direction", "marquee-loop", - "marquee-play-count", "marquee-speed", "marquee-style", "max-height", - "max-width", "min-height", "min-width", "move-to", "nav-down", "nav-index", - "nav-left", "nav-right", "nav-up", "opacity", "order", "orphans", "outline", - "outline-color", "outline-offset", "outline-style", "outline-width", - "overflow", "overflow-style", "overflow-wrap", "overflow-x", "overflow-y", - "padding", "padding-bottom", "padding-left", "padding-right", "padding-top", - "page", "page-break-after", "page-break-before", "page-break-inside", - "page-policy", "pause", "pause-after", "pause-before", "perspective", - "perspective-origin", "pitch", "pitch-range", "play-during", "position", - "presentation-level", "punctuation-trim", "quotes", "region-break-after", - "region-break-before", "region-break-inside", "region-fragment", - "rendering-intent", "resize", "rest", "rest-after", "rest-before", "richness", - "right", "rotation", "rotation-point", "ruby-align", "ruby-overhang", - "ruby-position", "ruby-span", "shape-inside", "shape-outside", "size", - "speak", "speak-as", "speak-header", - "speak-numeral", "speak-punctuation", "speech-rate", "stress", "string-set", - "tab-size", "table-layout", "target", "target-name", "target-new", - "target-position", "text-align", "text-align-last", "text-decoration", - "text-decoration-color", "text-decoration-line", "text-decoration-skip", - "text-decoration-style", "text-emphasis", "text-emphasis-color", - "text-emphasis-position", "text-emphasis-style", "text-height", - "text-indent", "text-justify", "text-outline", "text-overflow", "text-shadow", - "text-size-adjust", "text-space-collapse", "text-transform", "text-underline-position", - "text-wrap", "top", "transform", "transform-origin", "transform-style", - "transition", "transition-delay", "transition-duration", - "transition-property", "transition-timing-function", "unicode-bidi", - "vertical-align", "visibility", "voice-balance", "voice-duration", - "voice-family", "voice-pitch", "voice-range", "voice-rate", "voice-stress", - "voice-volume", "volume", "white-space", "widows", "width", "word-break", - "word-spacing", "word-wrap", "z-index", - // SVG-specific - "clip-path", "clip-rule", "mask", "enable-background", "filter", "flood-color", - "flood-opacity", "lighting-color", "stop-color", "stop-opacity", "pointer-events", - "color-interpolation", "color-interpolation-filters", - "color-rendering", "fill", "fill-opacity", "fill-rule", "image-rendering", - "marker", "marker-end", "marker-mid", "marker-start", "shape-rendering", "stroke", - "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin", - "stroke-miterlimit", "stroke-opacity", "stroke-width", "text-rendering", - "baseline-shift", "dominant-baseline", "glyph-orientation-horizontal", - "glyph-orientation-vertical", "text-anchor", "writing-mode" - ], propertyKeywords = keySet(propertyKeywords_); - - var nonStandardPropertyKeywords = [ - "scrollbar-arrow-color", "scrollbar-base-color", "scrollbar-dark-shadow-color", - "scrollbar-face-color", "scrollbar-highlight-color", "scrollbar-shadow-color", - "scrollbar-3d-light-color", "scrollbar-track-color", "shape-inside", - "searchfield-cancel-button", "searchfield-decoration", "searchfield-results-button", - "searchfield-results-decoration", "zoom" - ], nonStandardPropertyKeywords = keySet(nonStandardPropertyKeywords); - - var colorKeywords_ = [ - "aliceblue", "antiquewhite", "aqua", "aquamarine", "azure", "beige", - "bisque", "black", "blanchedalmond", "blue", "blueviolet", "brown", - "burlywood", "cadetblue", "chartreuse", "chocolate", "coral", "cornflowerblue", - "cornsilk", "crimson", "cyan", "darkblue", "darkcyan", "darkgoldenrod", - "darkgray", "darkgreen", "darkkhaki", "darkmagenta", "darkolivegreen", - "darkorange", "darkorchid", "darkred", "darksalmon", "darkseagreen", - "darkslateblue", "darkslategray", "darkturquoise", "darkviolet", - "deeppink", "deepskyblue", "dimgray", "dodgerblue", "firebrick", - "floralwhite", "forestgreen", "fuchsia", "gainsboro", "ghostwhite", - "gold", "goldenrod", "gray", "grey", "green", "greenyellow", "honeydew", - "hotpink", "indianred", "indigo", "ivory", "khaki", "lavender", - "lavenderblush", "lawngreen", "lemonchiffon", "lightblue", "lightcoral", - "lightcyan", "lightgoldenrodyellow", "lightgray", "lightgreen", "lightpink", - "lightsalmon", "lightseagreen", "lightskyblue", "lightslategray", - "lightsteelblue", "lightyellow", "lime", "limegreen", "linen", "magenta", - "maroon", "mediumaquamarine", "mediumblue", "mediumorchid", "mediumpurple", - "mediumseagreen", "mediumslateblue", "mediumspringgreen", "mediumturquoise", - "mediumvioletred", "midnightblue", "mintcream", "mistyrose", "moccasin", - "navajowhite", "navy", "oldlace", "olive", "olivedrab", "orange", "orangered", - "orchid", "palegoldenrod", "palegreen", "paleturquoise", "palevioletred", - "papayawhip", "peachpuff", "peru", "pink", "plum", "powderblue", - "purple", "red", "rosybrown", "royalblue", "saddlebrown", "salmon", - "sandybrown", "seagreen", "seashell", "sienna", "silver", "skyblue", - "slateblue", "slategray", "snow", "springgreen", "steelblue", "tan", - "teal", "thistle", "tomato", "turquoise", "violet", "wheat", "white", - "whitesmoke", "yellow", "yellowgreen" - ], colorKeywords = keySet(colorKeywords_); - - var valueKeywords_ = [ - "above", "absolute", "activeborder", "activecaption", "afar", - "after-white-space", "ahead", "alias", "all", "all-scroll", "alternate", - "always", "amharic", "amharic-abegede", "antialiased", "appworkspace", - "arabic-indic", "armenian", "asterisks", "auto", "avoid", "avoid-column", "avoid-page", - "avoid-region", "background", "backwards", "baseline", "below", "bidi-override", "binary", - "bengali", "blink", "block", "block-axis", "bold", "bolder", "border", "border-box", - "both", "bottom", "break", "break-all", "break-word", "button", "button-bevel", - "buttonface", "buttonhighlight", "buttonshadow", "buttontext", "cambodian", - "capitalize", "caps-lock-indicator", "caption", "captiontext", "caret", - "cell", "center", "checkbox", "circle", "cjk-earthly-branch", - "cjk-heavenly-stem", "cjk-ideographic", "clear", "clip", "close-quote", - "col-resize", "collapse", "column", "compact", "condensed", "contain", "content", - "content-box", "context-menu", "continuous", "copy", "cover", "crop", - "cross", "crosshair", "currentcolor", "cursive", "dashed", "decimal", - "decimal-leading-zero", "default", "default-button", "destination-atop", - "destination-in", "destination-out", "destination-over", "devanagari", - "disc", "discard", "document", "dot-dash", "dot-dot-dash", "dotted", - "double", "down", "e-resize", "ease", "ease-in", "ease-in-out", "ease-out", - "element", "ellipse", "ellipsis", "embed", "end", "ethiopic", "ethiopic-abegede", - "ethiopic-abegede-am-et", "ethiopic-abegede-gez", "ethiopic-abegede-ti-er", - "ethiopic-abegede-ti-et", "ethiopic-halehame-aa-er", - "ethiopic-halehame-aa-et", "ethiopic-halehame-am-et", - "ethiopic-halehame-gez", "ethiopic-halehame-om-et", - "ethiopic-halehame-sid-et", "ethiopic-halehame-so-et", - "ethiopic-halehame-ti-er", "ethiopic-halehame-ti-et", - "ethiopic-halehame-tig", "ew-resize", "expanded", "extra-condensed", - "extra-expanded", "fantasy", "fast", "fill", "fixed", "flat", "footnotes", - "forwards", "from", "geometricPrecision", "georgian", "graytext", "groove", - "gujarati", "gurmukhi", "hand", "hangul", "hangul-consonant", "hebrew", - "help", "hidden", "hide", "higher", "highlight", "highlighttext", - "hiragana", "hiragana-iroha", "horizontal", "hsl", "hsla", "icon", "ignore", - "inactiveborder", "inactivecaption", "inactivecaptiontext", "infinite", - "infobackground", "infotext", "inherit", "initial", "inline", "inline-axis", - "inline-block", "inline-table", "inset", "inside", "intrinsic", "invert", - "italic", "justify", "kannada", "katakana", "katakana-iroha", "keep-all", "khmer", - "landscape", "lao", "large", "larger", "left", "level", "lighter", - "line-through", "linear", "lines", "list-item", "listbox", "listitem", - "local", "logical", "loud", "lower", "lower-alpha", "lower-armenian", - "lower-greek", "lower-hexadecimal", "lower-latin", "lower-norwegian", - "lower-roman", "lowercase", "ltr", "malayalam", "match", - "media-controls-background", "media-current-time-display", - "media-fullscreen-button", "media-mute-button", "media-play-button", - "media-return-to-realtime-button", "media-rewind-button", - "media-seek-back-button", "media-seek-forward-button", "media-slider", - "media-sliderthumb", "media-time-remaining-display", "media-volume-slider", - "media-volume-slider-container", "media-volume-sliderthumb", "medium", - "menu", "menulist", "menulist-button", "menulist-text", - "menulist-textfield", "menutext", "message-box", "middle", "min-intrinsic", - "mix", "mongolian", "monospace", "move", "multiple", "myanmar", "n-resize", - "narrower", "ne-resize", "nesw-resize", "no-close-quote", "no-drop", - "no-open-quote", "no-repeat", "none", "normal", "not-allowed", "nowrap", - "ns-resize", "nw-resize", "nwse-resize", "oblique", "octal", "open-quote", - "optimizeLegibility", "optimizeSpeed", "oriya", "oromo", "outset", - "outside", "outside-shape", "overlay", "overline", "padding", "padding-box", - "painted", "page", "paused", "persian", "plus-darker", "plus-lighter", "pointer", - "polygon", "portrait", "pre", "pre-line", "pre-wrap", "preserve-3d", "progress", "push-button", - "radio", "read-only", "read-write", "read-write-plaintext-only", "rectangle", "region", - "relative", "repeat", "repeat-x", "repeat-y", "reset", "reverse", "rgb", "rgba", - "ridge", "right", "round", "row-resize", "rtl", "run-in", "running", - "s-resize", "sans-serif", "scroll", "scrollbar", "se-resize", "searchfield", - "searchfield-cancel-button", "searchfield-decoration", - "searchfield-results-button", "searchfield-results-decoration", - "semi-condensed", "semi-expanded", "separate", "serif", "show", "sidama", - "single", "skip-white-space", "slide", "slider-horizontal", - "slider-vertical", "sliderthumb-horizontal", "sliderthumb-vertical", "slow", - "small", "small-caps", "small-caption", "smaller", "solid", "somali", - "source-atop", "source-in", "source-out", "source-over", "space", "square", - "square-button", "start", "static", "status-bar", "stretch", "stroke", - "sub", "subpixel-antialiased", "super", "sw-resize", "table", - "table-caption", "table-cell", "table-column", "table-column-group", - "table-footer-group", "table-header-group", "table-row", "table-row-group", - "telugu", "text", "text-bottom", "text-top", "textarea", "textfield", "thai", - "thick", "thin", "threeddarkshadow", "threedface", "threedhighlight", - "threedlightshadow", "threedshadow", "tibetan", "tigre", "tigrinya-er", - "tigrinya-er-abegede", "tigrinya-et", "tigrinya-et-abegede", "to", "top", - "transparent", "ultra-condensed", "ultra-expanded", "underline", "up", - "upper-alpha", "upper-armenian", "upper-greek", "upper-hexadecimal", - "upper-latin", "upper-norwegian", "upper-roman", "uppercase", "urdu", "url", - "vertical", "vertical-text", "visible", "visibleFill", "visiblePainted", - "visibleStroke", "visual", "w-resize", "wait", "wave", "wider", - "window", "windowframe", "windowtext", "x-large", "x-small", "xor", - "xx-large", "xx-small" - ], valueKeywords = keySet(valueKeywords_); - - var fontProperties_ = [ - "font-family", "src", "unicode-range", "font-variant", "font-feature-settings", - "font-stretch", "font-weight", "font-style" - ], fontProperties = keySet(fontProperties_); - - var allWords = mediaTypes_.concat(mediaFeatures_).concat(propertyKeywords_) - .concat(nonStandardPropertyKeywords).concat(colorKeywords_).concat(valueKeywords_); - CodeMirror.registerHelper("hintWords", "css", allWords); - - function tokenCComment(stream, state) { - var maybeEnd = false, ch; - while ((ch = stream.next()) != null) { - if (maybeEnd && ch == "/") { - state.tokenize = null; - break; - } - maybeEnd = (ch == "*"); - } - return ["comment", "comment"]; - } - - function tokenSGMLComment(stream, state) { - if (stream.skipTo("-->")) { - stream.match("-->"); - state.tokenize = null; - } else { - stream.skipToEnd(); - } - return ["comment", "comment"]; - } - - CodeMirror.defineMIME("text/css", { - mediaTypes: mediaTypes, - mediaFeatures: mediaFeatures, - propertyKeywords: propertyKeywords, - nonStandardPropertyKeywords: nonStandardPropertyKeywords, - colorKeywords: colorKeywords, - valueKeywords: valueKeywords, - fontProperties: fontProperties, - tokenHooks: { - "<": function(stream, state) { - if (!stream.match("!--")) return false; - state.tokenize = tokenSGMLComment; - return tokenSGMLComment(stream, state); - }, - "/": function(stream, state) { - if (!stream.eat("*")) return false; - state.tokenize = tokenCComment; - return tokenCComment(stream, state); - } - }, - name: "css" - }); - - CodeMirror.defineMIME("text/x-scss", { - mediaTypes: mediaTypes, - mediaFeatures: mediaFeatures, - propertyKeywords: propertyKeywords, - nonStandardPropertyKeywords: nonStandardPropertyKeywords, - colorKeywords: colorKeywords, - valueKeywords: valueKeywords, - fontProperties: fontProperties, - allowNested: true, - tokenHooks: { - "/": function(stream, state) { - if (stream.eat("/")) { - stream.skipToEnd(); - return ["comment", "comment"]; - } else if (stream.eat("*")) { - state.tokenize = tokenCComment; - return tokenCComment(stream, state); - } else { - return ["operator", "operator"]; - } - }, - ":": function(stream) { - if (stream.match(/\s*{/)) - return [null, "{"]; - return false; - }, - "$": function(stream) { - stream.match(/^[\w-]+/); - if (stream.match(/^\s*:/, false)) - return ["variable-2", "variable-definition"]; - return ["variable-2", "variable"]; - }, - "#": function(stream) { - if (!stream.eat("{")) return false; - return [null, "interpolation"]; - } - }, - name: "css", - helperType: "scss" - }); - - CodeMirror.defineMIME("text/x-less", { - mediaTypes: mediaTypes, - mediaFeatures: mediaFeatures, - propertyKeywords: propertyKeywords, - nonStandardPropertyKeywords: nonStandardPropertyKeywords, - colorKeywords: colorKeywords, - valueKeywords: valueKeywords, - fontProperties: fontProperties, - allowNested: true, - tokenHooks: { - "/": function(stream, state) { - if (stream.eat("/")) { - stream.skipToEnd(); - return ["comment", "comment"]; - } else if (stream.eat("*")) { - state.tokenize = tokenCComment; - return tokenCComment(stream, state); - } else { - return ["operator", "operator"]; - } - }, - "@": function(stream) { - if (stream.match(/^(charset|document|font-face|import|(-(moz|ms|o|webkit)-)?keyframes|media|namespace|page|supports)\b/, false)) return false; - stream.eatWhile(/[\w\\\-]/); - if (stream.match(/^\s*:/, false)) - return ["variable-2", "variable-definition"]; - return ["variable-2", "variable"]; - }, - "&": function() { - return ["atom", "atom"]; - } - }, - name: "css", - helperType: "less" - }); -})(); diff --git a/wwwroot/js/codemirror/htmlmixed.js b/wwwroot/js/codemirror/htmlmixed.js deleted file mode 100644 index 8cc9c4e72..000000000 --- a/wwwroot/js/codemirror/htmlmixed.js +++ /dev/null @@ -1,105 +0,0 @@ -CodeMirror.defineMode("htmlmixed", function(config, parserConfig) { - var htmlMode = CodeMirror.getMode(config, {name: "xml", - htmlMode: true, - multilineTagIndentFactor: parserConfig.multilineTagIndentFactor, - multilineTagIndentPastTag: parserConfig.multilineTagIndentPastTag}); - var cssMode = CodeMirror.getMode(config, "css"); - - var scriptTypes = [], scriptTypesConf = parserConfig && parserConfig.scriptTypes; - scriptTypes.push({matches: /^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^$/i, - mode: CodeMirror.getMode(config, "javascript")}); - if (scriptTypesConf) for (var i = 0; i < scriptTypesConf.length; ++i) { - var conf = scriptTypesConf[i]; - scriptTypes.push({matches: conf.matches, mode: conf.mode && CodeMirror.getMode(config, conf.mode)}); - } - scriptTypes.push({matches: /./, - mode: CodeMirror.getMode(config, "text/plain")}); - - function html(stream, state) { - var tagName = state.htmlState.tagName; - var style = htmlMode.token(stream, state.htmlState); - if (tagName == "script" && /\btag\b/.test(style) && stream.current() == ">") { - // Script block: mode to change to depends on type attribute - var scriptType = stream.string.slice(Math.max(0, stream.pos - 100), stream.pos).match(/\btype\s*=\s*("[^"]+"|'[^']+'|\S+)[^<]*$/i); - scriptType = scriptType ? scriptType[1] : ""; - if (scriptType && /[\"\']/.test(scriptType.charAt(0))) scriptType = scriptType.slice(1, scriptType.length - 1); - for (var i = 0; i < scriptTypes.length; ++i) { - var tp = scriptTypes[i]; - if (typeof tp.matches == "string" ? scriptType == tp.matches : tp.matches.test(scriptType)) { - if (tp.mode) { - state.token = script; - state.localMode = tp.mode; - state.localState = tp.mode.startState && tp.mode.startState(htmlMode.indent(state.htmlState, "")); - } - break; - } - } - } else if (tagName == "style" && /\btag\b/.test(style) && stream.current() == ">") { - state.token = css; - state.localMode = cssMode; - state.localState = cssMode.startState(htmlMode.indent(state.htmlState, "")); - } - return style; - } - function maybeBackup(stream, pat, style) { - var cur = stream.current(); - var close = cur.search(pat), m; - if (close > -1) stream.backUp(cur.length - close); - else if (m = cur.match(/<\/?$/)) { - stream.backUp(cur.length); - if (!stream.match(pat, false)) stream.match(cur); - } - return style; - } - function script(stream, state) { - if (stream.match(/^<\/\s*script\s*>/i, false)) { - state.token = html; - state.localState = state.localMode = null; - return html(stream, state); - } - return maybeBackup(stream, /<\/\s*script\s*>/, - state.localMode.token(stream, state.localState)); - } - function css(stream, state) { - if (stream.match(/^<\/\s*style\s*>/i, false)) { - state.token = html; - state.localState = state.localMode = null; - return html(stream, state); - } - return maybeBackup(stream, /<\/\s*style\s*>/, - cssMode.token(stream, state.localState)); - } - - return { - startState: function() { - var state = htmlMode.startState(); - return {token: html, localMode: null, localState: null, htmlState: state}; - }, - - copyState: function(state) { - if (state.localState) - var local = CodeMirror.copyState(state.localMode, state.localState); - return {token: state.token, localMode: state.localMode, localState: local, - htmlState: CodeMirror.copyState(htmlMode, state.htmlState)}; - }, - - token: function(stream, state) { - return state.token(stream, state); - }, - - indent: function(state, textAfter) { - if (!state.localMode || /^\s*<\//.test(textAfter)) - return htmlMode.indent(state.htmlState, textAfter); - else if (state.localMode.indent) - return state.localMode.indent(state.localState, textAfter); - else - return CodeMirror.Pass; - }, - - innerMode: function(state) { - return {state: state.localState || state.htmlState, mode: state.localMode || htmlMode}; - } - }; -}, "xml", "javascript", "css"); - -CodeMirror.defineMIME("text/html", "htmlmixed"); diff --git a/wwwroot/js/codemirror/javascript.js b/wwwroot/js/codemirror/javascript.js deleted file mode 100644 index bf861b559..000000000 --- a/wwwroot/js/codemirror/javascript.js +++ /dev/null @@ -1,645 +0,0 @@ -// TODO actually recognize syntax of TypeScript constructs - -CodeMirror.defineMode("javascript", function(config, parserConfig) { - var indentUnit = config.indentUnit; - var statementIndent = parserConfig.statementIndent; - var jsonldMode = parserConfig.jsonld; - var jsonMode = parserConfig.json || jsonldMode; - var isTS = parserConfig.typescript; - - // Tokenizer - - var keywords = function(){ - function kw(type) {return {type: type, style: "keyword"};} - var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c"); - var operator = kw("operator"), atom = {type: "atom", style: "atom"}; - - var jsKeywords = { - "if": kw("if"), "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B, - "return": C, "break": C, "continue": C, "new": C, "delete": C, "throw": C, "debugger": C, - "var": kw("var"), "const": kw("var"), "let": kw("var"), - "function": kw("function"), "catch": kw("catch"), - "for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"), - "in": operator, "typeof": operator, "instanceof": operator, - "true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom, - "this": kw("this"), "module": kw("module"), "class": kw("class"), "super": kw("atom"), - "yield": C, "export": kw("export"), "import": kw("import"), "extends": C - }; - - // Extend the 'normal' keywords with the TypeScript language extensions - if (isTS) { - var type = {type: "variable", style: "variable-3"}; - var tsKeywords = { - // object-like things - "interface": kw("interface"), - "extends": kw("extends"), - "constructor": kw("constructor"), - - // scope modifiers - "public": kw("public"), - "private": kw("private"), - "protected": kw("protected"), - "static": kw("static"), - - // types - "string": type, "number": type, "bool": type, "any": type - }; - - for (var attr in tsKeywords) { - jsKeywords[attr] = tsKeywords[attr]; - } - } - - return jsKeywords; - }(); - - var isOperatorChar = /[+\-*&%=<>!?|~^]/; - var isJsonldKeyword = /^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/; - - function readRegexp(stream) { - var escaped = false, next, inSet = false; - while ((next = stream.next()) != null) { - if (!escaped) { - if (next == "/" && !inSet) return; - if (next == "[") inSet = true; - else if (inSet && next == "]") inSet = false; - } - escaped = !escaped && next == "\\"; - } - } - - // Used as scratch variables to communicate multiple values without - // consing up tons of objects. - var type, content; - function ret(tp, style, cont) { - type = tp; content = cont; - return style; - } - function tokenBase(stream, state) { - var ch = stream.next(); - if (ch == '"' || ch == "'") { - state.tokenize = tokenString(ch); - return state.tokenize(stream, state); - } else if (ch == "." && stream.match(/^\d+(?:[eE][+\-]?\d+)?/)) { - return ret("number", "number"); - } else if (ch == "." && stream.match("..")) { - return ret("spread", "meta"); - } else if (/[\[\]{}\(\),;\:\.]/.test(ch)) { - return ret(ch); - } else if (ch == "=" && stream.eat(">")) { - return ret("=>", "operator"); - } else if (ch == "0" && stream.eat(/x/i)) { - stream.eatWhile(/[\da-f]/i); - return ret("number", "number"); - } else if (/\d/.test(ch)) { - stream.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/); - return ret("number", "number"); - } else if (ch == "/") { - if (stream.eat("*")) { - state.tokenize = tokenComment; - return tokenComment(stream, state); - } else if (stream.eat("/")) { - stream.skipToEnd(); - return ret("comment", "comment"); - } else if (state.lastType == "operator" || state.lastType == "keyword c" || - state.lastType == "sof" || /^[\[{}\(,;:]$/.test(state.lastType)) { - readRegexp(stream); - stream.eatWhile(/[gimy]/); // 'y' is "sticky" option in Mozilla - return ret("regexp", "string-2"); - } else { - stream.eatWhile(isOperatorChar); - return ret("operator", "operator", stream.current()); - } - } else if (ch == "`") { - state.tokenize = tokenQuasi; - return tokenQuasi(stream, state); - } else if (ch == "#") { - stream.skipToEnd(); - return ret("error", "error"); - } else if (isOperatorChar.test(ch)) { - stream.eatWhile(isOperatorChar); - return ret("operator", "operator", stream.current()); - } else { - stream.eatWhile(/[\w\$_]/); - var word = stream.current(), known = keywords.propertyIsEnumerable(word) && keywords[word]; - return (known && state.lastType != ".") ? ret(known.type, known.style, word) : - ret("variable", "variable", word); - } - } - - function tokenString(quote) { - return function(stream, state) { - var escaped = false, next; - if (jsonldMode && stream.peek() == "@" && stream.match(isJsonldKeyword)){ - state.tokenize = tokenBase; - return ret("jsonld-keyword", "meta"); - } - while ((next = stream.next()) != null) { - if (next == quote && !escaped) break; - escaped = !escaped && next == "\\"; - } - if (!escaped) state.tokenize = tokenBase; - return ret("string", "string"); - }; - } - - function tokenComment(stream, state) { - var maybeEnd = false, ch; - while (ch = stream.next()) { - if (ch == "/" && maybeEnd) { - state.tokenize = tokenBase; - break; - } - maybeEnd = (ch == "*"); - } - return ret("comment", "comment"); - } - - function tokenQuasi(stream, state) { - var escaped = false, next; - while ((next = stream.next()) != null) { - if (!escaped && (next == "`" || next == "$" && stream.eat("{"))) { - state.tokenize = tokenBase; - break; - } - escaped = !escaped && next == "\\"; - } - return ret("quasi", "string-2", stream.current()); - } - - var brackets = "([{}])"; - // This is a crude lookahead trick to try and notice that we're - // parsing the argument patterns for a fat-arrow function before we - // actually hit the arrow token. It only works if the arrow is on - // the same line as the arguments and there's no strange noise - // (comments) in between. Fallback is to only notice when we hit the - // arrow, and not declare the arguments as locals for the arrow - // body. - function findFatArrow(stream, state) { - if (state.fatArrowAt) state.fatArrowAt = null; - var arrow = stream.string.indexOf("=>", stream.start); - if (arrow < 0) return; - - var depth = 0, sawSomething = false; - for (var pos = arrow - 1; pos >= 0; --pos) { - var ch = stream.string.charAt(pos); - var bracket = brackets.indexOf(ch); - if (bracket >= 0 && bracket < 3) { - if (!depth) { ++pos; break; } - if (--depth == 0) break; - } else if (bracket >= 3 && bracket < 6) { - ++depth; - } else if (/[$\w]/.test(ch)) { - sawSomething = true; - } else if (sawSomething && !depth) { - ++pos; - break; - } - } - if (sawSomething && !depth) state.fatArrowAt = pos; - } - - // Parser - - var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true, "this": true, "jsonld-keyword": true}; - - function JSLexical(indented, column, type, align, prev, info) { - this.indented = indented; - this.column = column; - this.type = type; - this.prev = prev; - this.info = info; - if (align != null) this.align = align; - } - - function inScope(state, varname) { - for (var v = state.localVars; v; v = v.next) - if (v.name == varname) return true; - for (var cx = state.context; cx; cx = cx.prev) { - for (var v = cx.vars; v; v = v.next) - if (v.name == varname) return true; - } - } - - function parseJS(state, style, type, content, stream) { - var cc = state.cc; - // Communicate our context to the combinators. - // (Less wasteful than consing up a hundred closures on every call.) - cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc; - - if (!state.lexical.hasOwnProperty("align")) - state.lexical.align = true; - - while(true) { - var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement; - if (combinator(type, content)) { - while(cc.length && cc[cc.length - 1].lex) - cc.pop()(); - if (cx.marked) return cx.marked; - if (type == "variable" && inScope(state, content)) return "variable-2"; - return style; - } - } - } - - // Combinator utils - - var cx = {state: null, column: null, marked: null, cc: null}; - function pass() { - for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]); - } - function cont() { - pass.apply(null, arguments); - return true; - } - function register(varname) { - function inList(list) { - for (var v = list; v; v = v.next) - if (v.name == varname) return true; - return false; - } - var state = cx.state; - if (state.context) { - cx.marked = "def"; - if (inList(state.localVars)) return; - state.localVars = {name: varname, next: state.localVars}; - } else { - if (inList(state.globalVars)) return; - if (parserConfig.globalVars) - state.globalVars = {name: varname, next: state.globalVars}; - } - } - - // Combinators - - var defaultVars = {name: "this", next: {name: "arguments"}}; - function pushcontext() { - cx.state.context = {prev: cx.state.context, vars: cx.state.localVars}; - cx.state.localVars = defaultVars; - } - function popcontext() { - cx.state.localVars = cx.state.context.vars; - cx.state.context = cx.state.context.prev; - } - function pushlex(type, info) { - var result = function() { - var state = cx.state, indent = state.indented; - if (state.lexical.type == "stat") indent = state.lexical.indented; - state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info); - }; - result.lex = true; - return result; - } - function poplex() { - var state = cx.state; - if (state.lexical.prev) { - if (state.lexical.type == ")") - state.indented = state.lexical.indented; - state.lexical = state.lexical.prev; - } - } - poplex.lex = true; - - function expect(wanted) { - return function(type) { - if (type == wanted) return cont(); - else if (wanted == ";") return pass(); - else return cont(arguments.callee); - }; - } - - function statement(type, value) { - if (type == "var") return cont(pushlex("vardef", value.length), vardef, expect(";"), poplex); - if (type == "keyword a") return cont(pushlex("form"), expression, statement, poplex); - if (type == "keyword b") return cont(pushlex("form"), statement, poplex); - if (type == "{") return cont(pushlex("}"), block, poplex); - if (type == ";") return cont(); - if (type == "if") { - if (cx.state.lexical.info == "else" && cx.state.cc[cx.state.cc.length - 1] == poplex) - cx.state.cc.pop()(); - return cont(pushlex("form"), expression, statement, poplex, maybeelse); - } - if (type == "function") return cont(functiondef); - if (type == "for") return cont(pushlex("form"), forspec, statement, poplex); - if (type == "variable") return cont(pushlex("stat"), maybelabel); - if (type == "switch") return cont(pushlex("form"), expression, pushlex("}", "switch"), expect("{"), - block, poplex, poplex); - if (type == "case") return cont(expression, expect(":")); - if (type == "default") return cont(expect(":")); - if (type == "catch") return cont(pushlex("form"), pushcontext, expect("("), funarg, expect(")"), - statement, poplex, popcontext); - if (type == "module") return cont(pushlex("form"), pushcontext, afterModule, popcontext, poplex); - if (type == "class") return cont(pushlex("form"), className, objlit, poplex); - if (type == "export") return cont(pushlex("form"), afterExport, poplex); - if (type == "import") return cont(pushlex("form"), afterImport, poplex); - return pass(pushlex("stat"), expression, expect(";"), poplex); - } - function expression(type) { - return expressionInner(type, false); - } - function expressionNoComma(type) { - return expressionInner(type, true); - } - function expressionInner(type, noComma) { - if (cx.state.fatArrowAt == cx.stream.start) { - var body = noComma ? arrowBodyNoComma : arrowBody; - if (type == "(") return cont(pushcontext, pushlex(")"), commasep(pattern, ")"), poplex, expect("=>"), body, popcontext); - else if (type == "variable") return pass(pushcontext, pattern, expect("=>"), body, popcontext); - } - - var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma; - if (atomicTypes.hasOwnProperty(type)) return cont(maybeop); - if (type == "function") return cont(functiondef, maybeop); - if (type == "keyword c") return cont(noComma ? maybeexpressionNoComma : maybeexpression); - if (type == "(") return cont(pushlex(")"), maybeexpression, comprehension, expect(")"), poplex, maybeop); - if (type == "operator" || type == "spread") return cont(noComma ? expressionNoComma : expression); - if (type == "[") return cont(pushlex("]"), arrayLiteral, poplex, maybeop); - if (type == "{") return contCommasep(objprop, "}", null, maybeop); - if (type == "quasi") { return pass(quasi, maybeop); } - return cont(); - } - function maybeexpression(type) { - if (type.match(/[;\}\)\],]/)) return pass(); - return pass(expression); - } - function maybeexpressionNoComma(type) { - if (type.match(/[;\}\)\],]/)) return pass(); - return pass(expressionNoComma); - } - - function maybeoperatorComma(type, value) { - if (type == ",") return cont(expression); - return maybeoperatorNoComma(type, value, false); - } - function maybeoperatorNoComma(type, value, noComma) { - var me = noComma == false ? maybeoperatorComma : maybeoperatorNoComma; - var expr = noComma == false ? expression : expressionNoComma; - if (value == "=>") return cont(pushcontext, noComma ? arrowBodyNoComma : arrowBody, popcontext); - if (type == "operator") { - if (/\+\+|--/.test(value)) return cont(me); - if (value == "?") return cont(expression, expect(":"), expr); - return cont(expr); - } - if (type == "quasi") { return pass(quasi, me); } - if (type == ";") return; - if (type == "(") return contCommasep(expressionNoComma, ")", "call", me); - if (type == ".") return cont(property, me); - if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me); - } - function quasi(type, value) { - if (type != "quasi") return pass(); - if (value.slice(value.length - 2) != "${") return cont(quasi); - return cont(expression, continueQuasi); - } - function continueQuasi(type) { - if (type == "}") { - cx.marked = "string-2"; - cx.state.tokenize = tokenQuasi; - return cont(quasi); - } - } - function arrowBody(type) { - findFatArrow(cx.stream, cx.state); - if (type == "{") return pass(statement); - return pass(expression); - } - function arrowBodyNoComma(type) { - findFatArrow(cx.stream, cx.state); - if (type == "{") return pass(statement); - return pass(expressionNoComma); - } - function maybelabel(type) { - if (type == ":") return cont(poplex, statement); - return pass(maybeoperatorComma, expect(";"), poplex); - } - function property(type) { - if (type == "variable") {cx.marked = "property"; return cont();} - } - function objprop(type, value) { - if (type == "variable") { - cx.marked = "property"; - if (value == "get" || value == "set") return cont(getterSetter); - } else if (type == "number" || type == "string") { - cx.marked = jsonldMode ? "property" : (type + " property"); - } else if (type == "[") { - return cont(expression, expect("]"), afterprop); - } - if (atomicTypes.hasOwnProperty(type)) return cont(afterprop); - } - function getterSetter(type) { - if (type != "variable") return pass(afterprop); - cx.marked = "property"; - return cont(functiondef); - } - function afterprop(type) { - if (type == ":") return cont(expressionNoComma); - if (type == "(") return pass(functiondef); - } - function commasep(what, end) { - function proceed(type) { - if (type == ",") { - var lex = cx.state.lexical; - if (lex.info == "call") lex.pos = (lex.pos || 0) + 1; - return cont(what, proceed); - } - if (type == end) return cont(); - return cont(expect(end)); - } - return function(type) { - if (type == end) return cont(); - return pass(what, proceed); - }; - } - function contCommasep(what, end, info) { - for (var i = 3; i < arguments.length; i++) - cx.cc.push(arguments[i]); - return cont(pushlex(end, info), commasep(what, end), poplex); - } - function block(type) { - if (type == "}") return cont(); - return pass(statement, block); - } - function maybetype(type) { - if (isTS && type == ":") return cont(typedef); - } - function typedef(type) { - if (type == "variable"){cx.marked = "variable-3"; return cont();} - } - function vardef() { - return pass(pattern, maybetype, maybeAssign, vardefCont); - } - function pattern(type, value) { - if (type == "variable") { register(value); return cont(); } - if (type == "[") return contCommasep(pattern, "]"); - if (type == "{") return contCommasep(proppattern, "}"); - } - function proppattern(type, value) { - if (type == "variable" && !cx.stream.match(/^\s*:/, false)) { - register(value); - return cont(maybeAssign); - } - if (type == "variable") cx.marked = "property"; - return cont(expect(":"), pattern, maybeAssign); - } - function maybeAssign(_type, value) { - if (value == "=") return cont(expressionNoComma); - } - function vardefCont(type) { - if (type == ",") return cont(vardef); - } - function maybeelse(type, value) { - if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex); - } - function forspec(type) { - if (type == "(") return cont(pushlex(")"), forspec1, expect(")"), poplex); - } - function forspec1(type) { - if (type == "var") return cont(vardef, expect(";"), forspec2); - if (type == ";") return cont(forspec2); - if (type == "variable") return cont(formaybeinof); - return pass(expression, expect(";"), forspec2); - } - function formaybeinof(_type, value) { - if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); } - return cont(maybeoperatorComma, forspec2); - } - function forspec2(type, value) { - if (type == ";") return cont(forspec3); - if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); } - return pass(expression, expect(";"), forspec3); - } - function forspec3(type) { - if (type != ")") cont(expression); - } - function functiondef(type, value) { - if (value == "*") {cx.marked = "keyword"; return cont(functiondef);} - if (type == "variable") {register(value); return cont(functiondef);} - if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, statement, popcontext); - } - function funarg(type) { - if (type == "spread") return cont(funarg); - return pass(pattern, maybetype); - } - function className(type, value) { - if (type == "variable") {register(value); return cont(classNameAfter);} - } - function classNameAfter(_type, value) { - if (value == "extends") return cont(expression); - } - function objlit(type) { - if (type == "{") return contCommasep(objprop, "}"); - } - function afterModule(type, value) { - if (type == "string") return cont(statement); - if (type == "variable") { register(value); return cont(maybeFrom); } - } - function afterExport(_type, value) { - if (value == "*") { cx.marked = "keyword"; return cont(maybeFrom, expect(";")); } - if (value == "default") { cx.marked = "keyword"; return cont(expression, expect(";")); } - return pass(statement); - } - function afterImport(type) { - if (type == "string") return cont(); - return pass(importSpec, maybeFrom); - } - function importSpec(type, value) { - if (type == "{") return contCommasep(importSpec, "}"); - if (type == "variable") register(value); - return cont(); - } - function maybeFrom(_type, value) { - if (value == "from") { cx.marked = "keyword"; return cont(expression); } - } - function arrayLiteral(type) { - if (type == "]") return cont(); - return pass(expressionNoComma, maybeArrayComprehension); - } - function maybeArrayComprehension(type) { - if (type == "for") return pass(comprehension, expect("]")); - if (type == ",") return cont(commasep(expressionNoComma, "]")); - return pass(commasep(expressionNoComma, "]")); - } - function comprehension(type) { - if (type == "for") return cont(forspec, comprehension); - if (type == "if") return cont(expression, comprehension); - } - - // Interface - - return { - startState: function(basecolumn) { - var state = { - tokenize: tokenBase, - lastType: "sof", - cc: [], - lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false), - localVars: parserConfig.localVars, - context: parserConfig.localVars && {vars: parserConfig.localVars}, - indented: 0 - }; - if (parserConfig.globalVars && typeof parserConfig.globalVars == "object") - state.globalVars = parserConfig.globalVars; - return state; - }, - - token: function(stream, state) { - if (stream.sol()) { - if (!state.lexical.hasOwnProperty("align")) - state.lexical.align = false; - state.indented = stream.indentation(); - findFatArrow(stream, state); - } - if (state.tokenize != tokenComment && stream.eatSpace()) return null; - var style = state.tokenize(stream, state); - if (type == "comment") return style; - state.lastType = type == "operator" && (content == "++" || content == "--") ? "incdec" : type; - return parseJS(state, style, type, content, stream); - }, - - indent: function(state, textAfter) { - if (state.tokenize == tokenComment) return CodeMirror.Pass; - if (state.tokenize != tokenBase) return 0; - var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical; - // Kludge to prevent 'maybelse' from blocking lexical scope pops - if (!/^\s*else\b/.test(textAfter)) for (var i = state.cc.length - 1; i >= 0; --i) { - var c = state.cc[i]; - if (c == poplex) lexical = lexical.prev; - else if (c != maybeelse) break; - } - if (lexical.type == "stat" && firstChar == "}") lexical = lexical.prev; - if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat") - lexical = lexical.prev; - var type = lexical.type, closing = firstChar == type; - - if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? lexical.info + 1 : 0); - else if (type == "form" && firstChar == "{") return lexical.indented; - else if (type == "form") return lexical.indented + indentUnit; - else if (type == "stat") - return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? statementIndent || indentUnit : 0); - else if (lexical.info == "switch" && !closing && parserConfig.doubleIndentSwitch != false) - return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit); - else if (lexical.align) return lexical.column + (closing ? 0 : 1); - else return lexical.indented + (closing ? 0 : indentUnit); - }, - - electricChars: ":{}", - blockCommentStart: jsonMode ? null : "/*", - blockCommentEnd: jsonMode ? null : "*/", - lineComment: jsonMode ? null : "//", - fold: "brace", - - helperType: jsonMode ? "json" : "javascript", - jsonldMode: jsonldMode, - jsonMode: jsonMode - }; -}); - -CodeMirror.defineMIME("text/javascript", "javascript"); -CodeMirror.defineMIME("text/ecmascript", "javascript"); -CodeMirror.defineMIME("application/javascript", "javascript"); -CodeMirror.defineMIME("application/ecmascript", "javascript"); -CodeMirror.defineMIME("application/json", {name: "javascript", json: true}); -CodeMirror.defineMIME("application/x-json", {name: "javascript", json: true}); -CodeMirror.defineMIME("application/ld+json", {name: "javascript", jsonld: true}); -CodeMirror.defineMIME("text/typescript", { name: "javascript", typescript: true }); -CodeMirror.defineMIME("application/typescript", { name: "javascript", typescript: true }); diff --git a/wwwroot/js/codemirror/php.js b/wwwroot/js/codemirror/php.js deleted file mode 100644 index 46c70cccf..000000000 --- a/wwwroot/js/codemirror/php.js +++ /dev/null @@ -1,221 +0,0 @@ -(function() { - function keywords(str) { - var obj = {}, words = str.split(" "); - for (var i = 0; i < words.length; ++i) obj[words[i]] = true; - return obj; - } - function heredoc(delim) { - return function(stream, state) { - if (stream.match(delim)) state.tokenize = null; - else stream.skipToEnd(); - return "string"; - }; - } - - // Helper for stringWithEscapes - function matchSequence(list) { - if (list.length == 0) return stringWithEscapes; - return function (stream, state) { - var patterns = list[0]; - for (var i = 0; i < patterns.length; i++) if (stream.match(patterns[i][0])) { - state.tokenize = matchSequence(list.slice(1)); - return patterns[i][1]; - } - state.tokenize = stringWithEscapes; - return "string"; - }; - } - function stringWithEscapes(stream, state) { - var escaped = false, next, end = false; - - if (stream.current() == '"') return "string"; - - // "Complex" syntax - if (stream.match("${", false) || stream.match("{$", false)) { - state.tokenize = null; - return "string"; - } - - // Simple syntax - if (stream.match(/\$[a-zA-Z_][a-zA-Z0-9_]*/)) { - // After the variable name there may appear array or object operator. - if (stream.match("[", false)) { - // Match array operator - state.tokenize = matchSequence([ - [["[", null]], - [[/\d[\w\.]*/, "number"], - [/\$[a-zA-Z_][a-zA-Z0-9_]*/, "variable-2"], - [/[\w\$]+/, "variable"]], - [["]", null]] - ]); - } - if (stream.match(/\-\>\w/, false)) { - // Match object operator - state.tokenize = matchSequence([ - [["->", null]], - [[/[\w]+/, "variable"]] - ]); - } - return "variable-2"; - } - - // Normal string - while ( - !stream.eol() && - (!stream.match("{$", false)) && - (!stream.match(/(\$[a-zA-Z_][a-zA-Z0-9_]*|\$\{)/, false) || escaped) - ) { - next = stream.next(); - if (!escaped && next == '"') { end = true; break; } - escaped = !escaped && next == "\\"; - } - if (end) { - state.tokenize = null; - state.phpEncapsStack.pop(); - } - return "string"; - } - - var phpKeywords = "abstract and array as break case catch class clone const continue declare default " + - "do else elseif enddeclare endfor endforeach endif endswitch endwhile extends final " + - "for foreach function global goto if implements interface instanceof namespace " + - "new or private protected public static switch throw trait try use var while xor " + - "die echo empty exit eval include include_once isset list require require_once return " + - "print unset __halt_compiler self static parent yield insteadof finally"; - var phpAtoms = "true false null TRUE FALSE NULL __CLASS__ __DIR__ __FILE__ __LINE__ __METHOD__ __FUNCTION__ __NAMESPACE__ __TRAIT__"; - var phpBuiltin = "func_num_args func_get_arg func_get_args strlen strcmp strncmp strcasecmp strncasecmp each error_reporting define defined trigger_error user_error set_error_handler restore_error_handler get_declared_classes get_loaded_extensions extension_loaded get_extension_funcs debug_backtrace constant bin2hex hex2bin sleep usleep time mktime gmmktime strftime gmstrftime strtotime date gmdate getdate localtime checkdate flush wordwrap htmlspecialchars htmlentities html_entity_decode md5 md5_file crc32 getimagesize image_type_to_mime_type phpinfo phpversion phpcredits strnatcmp strnatcasecmp substr_count strspn strcspn strtok strtoupper strtolower strpos strrpos strrev hebrev hebrevc nl2br basename dirname pathinfo stripslashes stripcslashes strstr stristr strrchr str_shuffle str_word_count strcoll substr substr_replace quotemeta ucfirst ucwords strtr addslashes addcslashes rtrim str_replace str_repeat count_chars chunk_split trim ltrim strip_tags similar_text explode implode setlocale localeconv parse_str str_pad chop strchr sprintf printf vprintf vsprintf sscanf fscanf parse_url urlencode urldecode rawurlencode rawurldecode readlink linkinfo link unlink exec system escapeshellcmd escapeshellarg passthru shell_exec proc_open proc_close rand srand getrandmax mt_rand mt_srand mt_getrandmax base64_decode base64_encode abs ceil floor round is_finite is_nan is_infinite bindec hexdec octdec decbin decoct dechex base_convert number_format fmod ip2long long2ip getenv putenv getopt microtime gettimeofday getrusage uniqid quoted_printable_decode set_time_limit get_cfg_var magic_quotes_runtime set_magic_quotes_runtime get_magic_quotes_gpc get_magic_quotes_runtime import_request_variables error_log serialize unserialize memory_get_usage var_dump var_export debug_zval_dump print_r highlight_file show_source highlight_string ini_get ini_get_all ini_set ini_alter ini_restore get_include_path set_include_path restore_include_path setcookie header headers_sent connection_aborted connection_status ignore_user_abort parse_ini_file is_uploaded_file move_uploaded_file intval floatval doubleval strval gettype settype is_null is_resource is_bool is_long is_float is_int is_integer is_double is_real is_numeric is_string is_array is_object is_scalar ereg ereg_replace eregi eregi_replace split spliti join sql_regcase dl pclose popen readfile rewind rmdir umask fclose feof fgetc fgets fgetss fread fopen fpassthru ftruncate fstat fseek ftell fflush fwrite fputs mkdir rename copy tempnam tmpfile file file_get_contents stream_select stream_context_create stream_context_set_params stream_context_set_option stream_context_get_options stream_filter_prepend stream_filter_append fgetcsv flock get_meta_tags stream_set_write_buffer set_file_buffer set_socket_blocking stream_set_blocking socket_set_blocking stream_get_meta_data stream_register_wrapper stream_wrapper_register stream_set_timeout socket_set_timeout socket_get_status realpath fnmatch fsockopen pfsockopen pack unpack get_browser crypt opendir closedir chdir getcwd rewinddir readdir dir glob fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype file_exists is_writable is_writeable is_readable is_executable is_file is_dir is_link stat lstat chown touch clearstatcache mail ob_start ob_flush ob_clean ob_end_flush ob_end_clean ob_get_flush ob_get_clean ob_get_length ob_get_level ob_get_status ob_get_contents ob_implicit_flush ob_list_handlers ksort krsort natsort natcasesort asort arsort sort rsort usort uasort uksort shuffle array_walk count end prev next reset current key min max in_array array_search extract compact array_fill range array_multisort array_push array_pop array_shift array_unshift array_splice array_slice array_merge array_merge_recursive array_keys array_values array_count_values array_reverse array_reduce array_pad array_flip array_change_key_case array_rand array_unique array_intersect array_intersect_assoc array_diff array_diff_assoc array_sum array_filter array_map array_chunk array_key_exists pos sizeof key_exists assert assert_options version_compare ftok str_rot13 aggregate session_name session_module_name session_save_path session_id session_regenerate_id session_decode session_register session_unregister session_is_registered session_encode session_start session_destroy session_unset session_set_save_handler session_cache_limiter session_cache_expire session_set_cookie_params session_get_cookie_params session_write_close preg_match preg_match_all preg_replace preg_replace_callback preg_split preg_quote preg_grep overload ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_lower ctype_graph ctype_print ctype_punct ctype_space ctype_upper ctype_xdigit virtual apache_request_headers apache_note apache_lookup_uri apache_child_terminate apache_setenv apache_response_headers apache_get_version getallheaders mysql_connect mysql_pconnect mysql_close mysql_select_db mysql_create_db mysql_drop_db mysql_query mysql_unbuffered_query mysql_db_query mysql_list_dbs mysql_list_tables mysql_list_fields mysql_list_processes mysql_error mysql_errno mysql_affected_rows mysql_insert_id mysql_result mysql_num_rows mysql_num_fields mysql_fetch_row mysql_fetch_array mysql_fetch_assoc mysql_fetch_object mysql_data_seek mysql_fetch_lengths mysql_fetch_field mysql_field_seek mysql_free_result mysql_field_name mysql_field_table mysql_field_len mysql_field_type mysql_field_flags mysql_escape_string mysql_real_escape_string mysql_stat mysql_thread_id mysql_client_encoding mysql_get_client_info mysql_get_host_info mysql_get_proto_info mysql_get_server_info mysql_info mysql mysql_fieldname mysql_fieldtable mysql_fieldlen mysql_fieldtype mysql_fieldflags mysql_selectdb mysql_createdb mysql_dropdb mysql_freeresult mysql_numfields mysql_numrows mysql_listdbs mysql_listtables mysql_listfields mysql_db_name mysql_dbname mysql_tablename mysql_table_name pg_connect pg_pconnect pg_close pg_connection_status pg_connection_busy pg_connection_reset pg_host pg_dbname pg_port pg_tty pg_options pg_ping pg_query pg_send_query pg_cancel_query pg_fetch_result pg_fetch_row pg_fetch_assoc pg_fetch_array pg_fetch_object pg_fetch_all pg_affected_rows pg_get_result pg_result_seek pg_result_status pg_free_result pg_last_oid pg_num_rows pg_num_fields pg_field_name pg_field_num pg_field_size pg_field_type pg_field_prtlen pg_field_is_null pg_get_notify pg_get_pid pg_result_error pg_last_error pg_last_notice pg_put_line pg_end_copy pg_copy_to pg_copy_from pg_trace pg_untrace pg_lo_create pg_lo_unlink pg_lo_open pg_lo_close pg_lo_read pg_lo_write pg_lo_read_all pg_lo_import pg_lo_export pg_lo_seek pg_lo_tell pg_escape_string pg_escape_bytea pg_unescape_bytea pg_client_encoding pg_set_client_encoding pg_meta_data pg_convert pg_insert pg_update pg_delete pg_select pg_exec pg_getlastoid pg_cmdtuples pg_errormessage pg_numrows pg_numfields pg_fieldname pg_fieldsize pg_fieldtype pg_fieldnum pg_fieldprtlen pg_fieldisnull pg_freeresult pg_result pg_loreadall pg_locreate pg_lounlink pg_loopen pg_loclose pg_loread pg_lowrite pg_loimport pg_loexport http_response_code get_declared_traits getimagesizefromstring socket_import_stream stream_set_chunk_size trait_exists header_register_callback class_uses session_status session_register_shutdown echo print global static exit array empty eval isset unset die include require include_once require_once"; - CodeMirror.registerHelper("hintWords", "php", [phpKeywords, phpAtoms, phpBuiltin].join(" ").split(" ")); - - var phpConfig = { - name: "clike", - helperType: "php", - keywords: keywords(phpKeywords), - blockKeywords: keywords("catch do else elseif for foreach if switch try while finally"), - atoms: keywords(phpAtoms), - builtin: keywords(phpBuiltin), - multiLineStrings: true, - hooks: { - "$": function(stream) { - stream.eatWhile(/[\w\$_]/); - return "variable-2"; - }, - "<": function(stream, state) { - if (stream.match(/<", false)) stream.next(); - return "comment"; - }, - "/": function(stream) { - if (stream.eat("/")) { - while (!stream.eol() && !stream.match("?>", false)) stream.next(); - return "comment"; - } - return false; - }, - '"': function(stream, state) { - if (!state.phpEncapsStack) - state.phpEncapsStack = []; - state.phpEncapsStack.push(0); - state.tokenize = stringWithEscapes; - return state.tokenize(stream, state); - }, - "{": function(_stream, state) { - if (state.phpEncapsStack && state.phpEncapsStack.length > 0) - state.phpEncapsStack[state.phpEncapsStack.length - 1]++; - return false; - }, - "}": function(_stream, state) { - if (state.phpEncapsStack && state.phpEncapsStack.length > 0) - if (--state.phpEncapsStack[state.phpEncapsStack.length - 1] == 0) - state.tokenize = stringWithEscapes; - return false; - } - } - }; - - CodeMirror.defineMode("php", function(config, parserConfig) { - var htmlMode = CodeMirror.getMode(config, "text/html"); - var phpMode = CodeMirror.getMode(config, phpConfig); - - function dispatch(stream, state) { - var isPHP = state.curMode == phpMode; - if (stream.sol() && state.pending && state.pending != '"' && state.pending != "'") state.pending = null; - if (!isPHP) { - if (stream.match(/^<\?\w*/)) { - state.curMode = phpMode; - state.curState = state.php; - return "meta"; - } - if (state.pending == '"' || state.pending == "'") { - while (!stream.eol() && stream.next() != state.pending) {} - var style = "string"; - } else if (state.pending && stream.pos < state.pending.end) { - stream.pos = state.pending.end; - var style = state.pending.style; - } else { - var style = htmlMode.token(stream, state.curState); - } - if (state.pending) state.pending = null; - var cur = stream.current(), openPHP = cur.search(/<\?/), m; - if (openPHP != -1) { - if (style == "string" && (m = cur.match(/[\'\"]$/)) && !/\?>/.test(cur)) state.pending = m[0]; - else state.pending = {end: stream.pos, style: style}; - stream.backUp(cur.length - openPHP); - } - return style; - } else if (isPHP && state.php.tokenize == null && stream.match("?>")) { - state.curMode = htmlMode; - state.curState = state.html; - return "meta"; - } else { - var result = phpMode.token(stream, state.curState); - return (stream.pos <= stream.start) ? phpMode.token(stream, state.curState) : result; - } - } - - return { - startState: function() { - var html = CodeMirror.startState(htmlMode), php = CodeMirror.startState(phpMode); - return {html: html, - php: php, - curMode: parserConfig.startOpen ? phpMode : htmlMode, - curState: parserConfig.startOpen ? php : html, - pending: null}; - }, - - copyState: function(state) { - var html = state.html, htmlNew = CodeMirror.copyState(htmlMode, html), - php = state.php, phpNew = CodeMirror.copyState(phpMode, php), cur; - if (state.curMode == htmlMode) cur = htmlNew; - else cur = phpNew; - return {html: htmlNew, php: phpNew, curMode: state.curMode, curState: cur, - pending: state.pending}; - }, - - token: dispatch, - - indent: function(state, textAfter) { - if ((state.curMode != phpMode && /^\s*<\//.test(textAfter)) || - (state.curMode == phpMode && /^\?>/.test(textAfter))) - return htmlMode.indent(state.html, textAfter); - return state.curMode.indent(state.curState, textAfter); - }, - - blockCommentStart: "/*", - blockCommentEnd: "*/", - lineComment: "//", - - innerMode: function(state) { return {state: state.curState, mode: state.curMode}; } - }; - }, "htmlmixed", "clike"); - - CodeMirror.defineMIME("application/x-httpd-php", "php"); - CodeMirror.defineMIME("application/x-httpd-php-open", {name: "php", startOpen: true}); - CodeMirror.defineMIME("text/x-php", phpConfig); -})(); diff --git a/wwwroot/js/codemirror/rackcode.js b/wwwroot/js/codemirror/rackcode.js index 394228676..a71e1b82e 100644 --- a/wwwroot/js/codemirror/rackcode.js +++ b/wwwroot/js/codemirror/rackcode.js @@ -1,3 +1,12 @@ +(function(mod) { + if (typeof exports == "object" && typeof module == "object") // CommonJS + mod(require("../../lib/codemirror")); + else if (typeof define == "function" && define.amd) // AMD + define(["../../lib/codemirror"], mod); + else // Plain browser env + mod(CodeMirror); +})(function(CodeMirror) { +"use strict"; CodeMirror.defineMode('rackcode', function() { var allowkeywords = /^(allow)\b/i; var denykeywords = /^(deny)\b/i; @@ -47,3 +56,4 @@ CodeMirror.defineMode('rackcode', function() { }); CodeMirror.defineMIME("text/x-rackcode", "rackcode"); +}); diff --git a/wwwroot/js/codemirror/sql.js b/wwwroot/js/codemirror/sql.js deleted file mode 100644 index 176f80677..000000000 --- a/wwwroot/js/codemirror/sql.js +++ /dev/null @@ -1,377 +0,0 @@ -CodeMirror.defineMode("sql", function(config, parserConfig) { - "use strict"; - - var client = parserConfig.client || {}, - atoms = parserConfig.atoms || {"false": true, "true": true, "null": true}, - builtin = parserConfig.builtin || {}, - keywords = parserConfig.keywords || {}, - operatorChars = parserConfig.operatorChars || /^[*+\-%<>!=&|~^]/, - support = parserConfig.support || {}, - hooks = parserConfig.hooks || {}, - dateSQL = parserConfig.dateSQL || {"date" : true, "time" : true, "timestamp" : true}; - - function tokenBase(stream, state) { - var ch = stream.next(); - - // call hooks from the mime type - if (hooks[ch]) { - var result = hooks[ch](stream, state); - if (result !== false) return result; - } - - if (support.hexNumber == true && - ((ch == "0" && stream.match(/^[xX][0-9a-fA-F]+/)) - || (ch == "x" || ch == "X") && stream.match(/^'[0-9a-fA-F]+'/))) { - // hex - // ref: http://dev.mysql.com/doc/refman/5.5/en/hexadecimal-literals.html - return "number"; - } else if (support.binaryNumber == true && - (((ch == "b" || ch == "B") && stream.match(/^'[01]+'/)) - || (ch == "0" && stream.match(/^b[01]+/)))) { - // bitstring - // ref: http://dev.mysql.com/doc/refman/5.5/en/bit-field-literals.html - return "number"; - } else if (ch.charCodeAt(0) > 47 && ch.charCodeAt(0) < 58) { - // numbers - // ref: http://dev.mysql.com/doc/refman/5.5/en/number-literals.html - stream.match(/^[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?/); - support.decimallessFloat == true && stream.eat('.'); - return "number"; - } else if (ch == "?" && (stream.eatSpace() || stream.eol() || stream.eat(";"))) { - // placeholders - return "variable-3"; - } else if (ch == "'" || (ch == '"' && support.doubleQuote)) { - // strings - // ref: http://dev.mysql.com/doc/refman/5.5/en/string-literals.html - state.tokenize = tokenLiteral(ch); - return state.tokenize(stream, state); - } else if ((((support.nCharCast == true && (ch == "n" || ch == "N")) - || (support.charsetCast == true && ch == "_" && stream.match(/[a-z][a-z0-9]*/i))) - && (stream.peek() == "'" || stream.peek() == '"'))) { - // charset casting: _utf8'str', N'str', n'str' - // ref: http://dev.mysql.com/doc/refman/5.5/en/string-literals.html - return "keyword"; - } else if (/^[\(\),\;\[\]]/.test(ch)) { - // no highlightning - return null; - } else if (support.commentSlashSlash && ch == "/" && stream.eat("/")) { - // 1-line comment - stream.skipToEnd(); - return "comment"; - } else if ((support.commentHash && ch == "#") - || (ch == "-" && stream.eat("-") && (!support.commentSpaceRequired || stream.eat(" ")))) { - // 1-line comments - // ref: https://kb.askmonty.org/en/comment-syntax/ - stream.skipToEnd(); - return "comment"; - } else if (ch == "/" && stream.eat("*")) { - // multi-line comments - // ref: https://kb.askmonty.org/en/comment-syntax/ - state.tokenize = tokenComment; - return state.tokenize(stream, state); - } else if (ch == ".") { - // .1 for 0.1 - if (support.zerolessFloat == true && stream.match(/^(?:\d+(?:e[+-]?\d+)?)/i)) { - return "number"; - } - // .table_name (ODBC) - // // ref: http://dev.mysql.com/doc/refman/5.6/en/identifier-qualifiers.html - if (support.ODBCdotTable == true && stream.match(/^[a-zA-Z_]+/)) { - return "variable-2"; - } - } else if (operatorChars.test(ch)) { - // operators - stream.eatWhile(operatorChars); - return null; - } else if (ch == '{' && - (stream.match(/^( )*(d|D|t|T|ts|TS)( )*'[^']*'( )*}/) || stream.match(/^( )*(d|D|t|T|ts|TS)( )*"[^"]*"( )*}/))) { - // dates (weird ODBC syntax) - // ref: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-literals.html - return "number"; - } else { - stream.eatWhile(/^[_\w\d]/); - var word = stream.current().toLowerCase(); - // dates (standard SQL syntax) - // ref: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-literals.html - if (dateSQL.hasOwnProperty(word) && (stream.match(/^( )+'[^']*'/) || stream.match(/^( )+"[^"]*"/))) - return "number"; - if (atoms.hasOwnProperty(word)) return "atom"; - if (builtin.hasOwnProperty(word)) return "builtin"; - if (keywords.hasOwnProperty(word)) return "keyword"; - if (client.hasOwnProperty(word)) return "string-2"; - return null; - } - } - - // 'string', with char specified in quote escaped by '\' - function tokenLiteral(quote) { - return function(stream, state) { - var escaped = false, ch; - while ((ch = stream.next()) != null) { - if (ch == quote && !escaped) { - state.tokenize = tokenBase; - break; - } - escaped = !escaped && ch == "\\"; - } - return "string"; - }; - } - function tokenComment(stream, state) { - while (true) { - if (stream.skipTo("*")) { - stream.next(); - if (stream.eat("/")) { - state.tokenize = tokenBase; - break; - } - } else { - stream.skipToEnd(); - break; - } - } - return "comment"; - } - - function pushContext(stream, state, type) { - state.context = { - prev: state.context, - indent: stream.indentation(), - col: stream.column(), - type: type - }; - } - - function popContext(state) { - state.indent = state.context.indent; - state.context = state.context.prev; - } - - return { - startState: function() { - return {tokenize: tokenBase, context: null}; - }, - - token: function(stream, state) { - if (stream.sol()) { - if (state.context && state.context.align == null) - state.context.align = false; - } - if (stream.eatSpace()) return null; - - var style = state.tokenize(stream, state); - if (style == "comment") return style; - - if (state.context && state.context.align == null) - state.context.align = true; - - var tok = stream.current(); - if (tok == "(") - pushContext(stream, state, ")"); - else if (tok == "[") - pushContext(stream, state, "]"); - else if (state.context && state.context.type == tok) - popContext(state); - return style; - }, - - indent: function(state, textAfter) { - var cx = state.context; - if (!cx) return 0; - var closing = textAfter.charAt(0) == cx.type; - if (cx.align) return cx.col + (closing ? 0 : 1); - else return cx.indent + (closing ? 0 : config.indentUnit); - }, - - blockCommentStart: "/*", - blockCommentEnd: "*/", - lineComment: support.commentSlashSlash ? "//" : support.commentHash ? "#" : null - }; -}); - -(function() { - "use strict"; - - // `identifier` - function hookIdentifier(stream) { - // MySQL/MariaDB identifiers - // ref: http://dev.mysql.com/doc/refman/5.6/en/identifier-qualifiers.html - var ch; - while ((ch = stream.next()) != null) { - if (ch == "`" && !stream.eat("`")) return "variable-2"; - } - return null; - } - - // variable token - function hookVar(stream) { - // variables - // @@prefix.varName @varName - // varName can be quoted with ` or ' or " - // ref: http://dev.mysql.com/doc/refman/5.5/en/user-variables.html - if (stream.eat("@")) { - stream.match(/^session\./); - stream.match(/^local\./); - stream.match(/^global\./); - } - - if (stream.eat("'")) { - stream.match(/^.*'/); - return "variable-2"; - } else if (stream.eat('"')) { - stream.match(/^.*"/); - return "variable-2"; - } else if (stream.eat("`")) { - stream.match(/^.*`/); - return "variable-2"; - } else if (stream.match(/^[0-9a-zA-Z$\.\_]+/)) { - return "variable-2"; - } - return null; - }; - - // short client keyword token - function hookClient(stream) { - // \N means NULL - // ref: http://dev.mysql.com/doc/refman/5.5/en/null-values.html - if (stream.eat("N")) { - return "atom"; - } - // \g, etc - // ref: http://dev.mysql.com/doc/refman/5.5/en/mysql-commands.html - return stream.match(/^[a-zA-Z.#!?]/) ? "variable-2" : null; - } - - // these keywords are used by all SQL dialects (however, a mode can still overwrite it) - var sqlKeywords = "alter and as asc between by count create delete desc distinct drop from having in insert into is join like not on or order select set table union update values where "; - - // turn a space-separated list into an array - function set(str) { - var obj = {}, words = str.split(" "); - for (var i = 0; i < words.length; ++i) obj[words[i]] = true; - return obj; - } - - // A generic SQL Mode. It's not a standard, it just try to support what is generally supported - CodeMirror.defineMIME("text/x-sql", { - name: "sql", - keywords: set(sqlKeywords + "begin"), - builtin: set("bool boolean bit blob enum long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision real date datetime year unsigned signed decimal numeric"), - atoms: set("false true null unknown"), - operatorChars: /^[*+\-%<>!=]/, - dateSQL: set("date time timestamp"), - support: set("ODBCdotTable doubleQuote binaryNumber hexNumber") - }); - - CodeMirror.defineMIME("text/x-mssql", { - name: "sql", - client: set("charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee"), - keywords: set(sqlKeywords + "begin trigger proc view index for add constraint key primary foreign collate clustered nonclustered"), - builtin: set("bigint numeric bit smallint decimal smallmoney int tinyint money float real char varchar text nchar nvarchar ntext binary varbinary image cursor timestamp hierarchyid uniqueidentifier sql_variant xml table "), - atoms: set("false true null unknown"), - operatorChars: /^[*+\-%<>!=]/, - dateSQL: set("date datetimeoffset datetime2 smalldatetime datetime time"), - hooks: { - "@": hookVar - } - }); - - CodeMirror.defineMIME("text/x-mysql", { - name: "sql", - client: set("charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee"), - keywords: set(sqlKeywords + "accessible action add after algorithm all analyze asensitive at authors auto_increment autocommit avg avg_row_length before binary binlog both btree cache call cascade cascaded case catalog_name chain change changed character check checkpoint checksum class_origin client_statistics close coalesce code collate collation collations column columns comment commit committed completion concurrent condition connection consistent constraint contains continue contributors convert cross current current_date current_time current_timestamp current_user cursor data database databases day_hour day_microsecond day_minute day_second deallocate dec declare default delay_key_write delayed delimiter des_key_file describe deterministic dev_pop dev_samp deviance diagnostics directory disable discard distinctrow div dual dumpfile each elseif enable enclosed end ends engine engines enum errors escape escaped even event events every execute exists exit explain extended fast fetch field fields first flush for force foreign found_rows full fulltext function general get global grant grants group groupby_concat handler hash help high_priority hosts hour_microsecond hour_minute hour_second if ignore ignore_server_ids import index index_statistics infile inner innodb inout insensitive insert_method install interval invoker isolation iterate key keys kill language last leading leave left level limit linear lines list load local localtime localtimestamp lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters match max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modifies modify mutex mysql_errno natural next no no_write_to_binlog offline offset one online open optimize option optionally out outer outfile pack_keys parser partition partitions password phase plugin plugins prepare preserve prev primary privileges procedure processlist profile profiles purge query quick range read read_write reads real rebuild recover references regexp relaylog release remove rename reorganize repair repeatable replace require resignal restrict resume return returns revoke right rlike rollback rollup row row_format rtree savepoint schedule schema schema_name schemas second_microsecond security sensitive separator serializable server session share show signal slave slow smallint snapshot soname spatial specific sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sqlexception sqlstate sqlwarning ssl start starting starts status std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace temporary terminated to trailing transaction trigger triggers truncate uncommitted undo uninstall unique unlock upgrade usage use use_frm user user_resources user_statistics using utc_date utc_time utc_timestamp value variables varying view views warnings when while with work write xa xor year_month zerofill begin do then else loop repeat"), - builtin: set("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric"), - atoms: set("false true null unknown"), - operatorChars: /^[*+\-%<>!=&|^]/, - dateSQL: set("date time timestamp"), - support: set("ODBCdotTable decimallessFloat zerolessFloat binaryNumber hexNumber doubleQuote nCharCast charsetCast commentHash commentSpaceRequired"), - hooks: { - "@": hookVar, - "`": hookIdentifier, - "\\": hookClient - } - }); - - CodeMirror.defineMIME("text/x-mariadb", { - name: "sql", - client: set("charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee"), - keywords: set(sqlKeywords + "accessible action add after algorithm all always analyze asensitive at authors auto_increment autocommit avg avg_row_length before binary binlog both btree cache call cascade cascaded case catalog_name chain change changed character check checkpoint checksum class_origin client_statistics close coalesce code collate collation collations column columns comment commit committed completion concurrent condition connection consistent constraint contains continue contributors convert cross current current_date current_time current_timestamp current_user cursor data database databases day_hour day_microsecond day_minute day_second deallocate dec declare default delay_key_write delayed delimiter des_key_file describe deterministic dev_pop dev_samp deviance diagnostics directory disable discard distinctrow div dual dumpfile each elseif enable enclosed end ends engine engines enum errors escape escaped even event events every execute exists exit explain extended fast fetch field fields first flush for force foreign found_rows full fulltext function general generated get global grant grants group groupby_concat handler hard hash help high_priority hosts hour_microsecond hour_minute hour_second if ignore ignore_server_ids import index index_statistics infile inner innodb inout insensitive insert_method install interval invoker isolation iterate key keys kill language last leading leave left level limit linear lines list load local localtime localtimestamp lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters match max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modifies modify mutex mysql_errno natural next no no_write_to_binlog offline offset one online open optimize option optionally out outer outfile pack_keys parser partition partitions password persistent phase plugin plugins prepare preserve prev primary privileges procedure processlist profile profiles purge query quick range read read_write reads real rebuild recover references regexp relaylog release remove rename reorganize repair repeatable replace require resignal restrict resume return returns revoke right rlike rollback rollup row row_format rtree savepoint schedule schema schema_name schemas second_microsecond security sensitive separator serializable server session share show shutdown signal slave slow smallint snapshot soft soname spatial specific sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sqlexception sqlstate sqlwarning ssl start starting starts status std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace temporary terminated to trailing transaction trigger triggers truncate uncommitted undo uninstall unique unlock upgrade usage use use_frm user user_resources user_statistics using utc_date utc_time utc_timestamp value variables varying view views virtual warnings when while with work write xa xor year_month zerofill begin do then else loop repeat"), - builtin: set("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric"), - atoms: set("false true null unknown"), - operatorChars: /^[*+\-%<>!=&|^]/, - dateSQL: set("date time timestamp"), - support: set("ODBCdotTable decimallessFloat zerolessFloat binaryNumber hexNumber doubleQuote nCharCast charsetCast commentHash commentSpaceRequired"), - hooks: { - "@": hookVar, - "`": hookIdentifier, - "\\": hookClient - } - }); - - // the query language used by Apache Cassandra is called CQL, but this mime type - // is called Cassandra to avoid confusion with Contextual Query Language - CodeMirror.defineMIME("text/x-cassandra", { - name: "sql", - client: { }, - keywords: set("use select from using consistency where limit first reversed first and in insert into values using consistency ttl update set delete truncate begin batch apply create keyspace with columnfamily primary key index on drop alter type add any one quorum all local_quorum each_quorum"), - builtin: set("ascii bigint blob boolean counter decimal double float int text timestamp uuid varchar varint"), - atoms: set("false true"), - operatorChars: /^[<>=]/, - dateSQL: { }, - support: set("commentSlashSlash decimallessFloat"), - hooks: { } - }); - - // this is based on Peter Raganitsch's 'plsql' mode - CodeMirror.defineMIME("text/x-plsql", { - name: "sql", - client: set("appinfo arraysize autocommit autoprint autorecovery autotrace blockterminator break btitle cmdsep colsep compatibility compute concat copycommit copytypecheck define describe echo editfile embedded escape exec execute feedback flagger flush heading headsep instance linesize lno loboffset logsource long longchunksize markup native newpage numformat numwidth pagesize pause pno recsep recsepchar release repfooter repheader serveroutput shiftinout show showmode size spool sqlblanklines sqlcase sqlcode sqlcontinue sqlnumber sqlpluscompatibility sqlprefix sqlprompt sqlterminator suffix tab term termout time timing trimout trimspool ttitle underline verify version wrap"), - keywords: set("abort accept access add all alter and any array arraylen as asc assert assign at attributes audit authorization avg base_table begin between binary_integer body boolean by case cast char char_base check close cluster clusters colauth column comment commit compress connect connected constant constraint crash create current currval cursor data_base database date dba deallocate debugoff debugon decimal declare default definition delay delete desc digits dispose distinct do drop else elseif elsif enable end entry escape exception exception_init exchange exclusive exists exit external fast fetch file for force form from function generic goto grant group having identified if immediate in increment index indexes indicator initial initrans insert interface intersect into is key level library like limited local lock log logging long loop master maxextents maxtrans member minextents minus mislabel mode modify multiset new next no noaudit nocompress nologging noparallel not nowait number_base object of off offline on online only open option or order out package parallel partition pctfree pctincrease pctused pls_integer positive positiven pragma primary prior private privileges procedure public raise range raw read rebuild record ref references refresh release rename replace resource restrict return returning returns reverse revoke rollback row rowid rowlabel rownum rows run savepoint schema segment select separate session set share snapshot some space split sql start statement storage subtype successful synonym tabauth table tables tablespace task terminate then to trigger truncate type union unique unlimited unrecoverable unusable update use using validate value values variable view views when whenever where while with work"), - builtin: set("abs acos add_months ascii asin atan atan2 average bfile bfilename bigserial bit blob ceil character chartorowid chr clob concat convert cos cosh count dec decode deref dual dump dup_val_on_index empty error exp false float floor found glb greatest hextoraw initcap instr instrb int integer isopen last_day least lenght lenghtb ln lower lpad ltrim lub make_ref max min mlslabel mod months_between natural naturaln nchar nclob new_time next_day nextval nls_charset_decl_len nls_charset_id nls_charset_name nls_initcap nls_lower nls_sort nls_upper nlssort no_data_found notfound null number numeric nvarchar2 nvl others power rawtohex real reftohex round rowcount rowidtochar rowtype rpad rtrim serial sign signtype sin sinh smallint soundex sqlcode sqlerrm sqrt stddev string substr substrb sum sysdate tan tanh to_char text to_date to_label to_multi_byte to_number to_single_byte translate true trunc uid unlogged upper user userenv varchar varchar2 variance varying vsize xml"), - operatorChars: /^[*+\-%<>!=~]/, - dateSQL: set("date time timestamp"), - support: set("doubleQuote nCharCast zerolessFloat binaryNumber hexNumber") - }); - - // Created to support specific hive keywords - CodeMirror.defineMIME("text/x-hive", { - name: "sql", - keywords: set("select alter $elem$ $key$ $value$ add after all analyze and archive as asc before between binary both bucket buckets by cascade case cast change cluster clustered clusterstatus collection column columns comment compute concatenate continue create cross cursor data database databases dbproperties deferred delete delimited desc describe directory disable distinct distribute drop else enable end escaped exclusive exists explain export extended external false fetch fields fileformat first format formatted from full function functions grant group having hold_ddltime idxproperties if import in index indexes inpath inputdriver inputformat insert intersect into is items join keys lateral left like limit lines load local location lock locks mapjoin materialized minus msck no_drop nocompress not of offline on option or order out outer outputdriver outputformat overwrite partition partitioned partitions percent plus preserve procedure purge range rcfile read readonly reads rebuild recordreader recordwriter recover reduce regexp rename repair replace restrict revoke right rlike row schema schemas semi sequencefile serde serdeproperties set shared show show_database sort sorted ssl statistics stored streamtable table tables tablesample tblproperties temporary terminated textfile then tmp to touch transform trigger true unarchive undo union uniquejoin unlock update use using utc utc_tmestamp view when where while with"), - builtin: set("bool boolean long timestamp tinyint smallint bigint int float double date datetime unsigned string array struct map uniontype"), - atoms: set("false true null unknown"), - operatorChars: /^[*+\-%<>!=]/, - dateSQL: set("date timestamp"), - support: set("ODBCdotTable doubleQuote binaryNumber hexNumber") - }); -}()); - -/* - How Properties of Mime Types are used by SQL Mode - ================================================= - - keywords: - A list of keywords you want to be highlighted. - functions: - A list of function names you want to be highlighted. - builtin: - A list of builtin types you want to be highlighted (if you want types to be of class "builtin" instead of "keyword"). - operatorChars: - All characters that must be handled as operators. - client: - Commands parsed and executed by the client (not the server). - support: - A list of supported syntaxes which are not common, but are supported by more than 1 DBMS. - * ODBCdotTable: .tableName - * zerolessFloat: .1 - * doubleQuote - * nCharCast: N'string' - * charsetCast: _utf8'string' - * commentHash: use # char for comments - * commentSlashSlash: use // for comments - * commentSpaceRequired: require a space after -- for comments - atoms: - Keywords that must be highlighted as atoms,. Some DBMS's support more atoms than others: - UNKNOWN, INFINITY, UNDERFLOW, NaN... - dateSQL: - Used for date/time SQL standard syntax, because not all DBMS's support same temporal types. -*/ From 03102e0eddc6ca8354eb28147095e92cd0b85d60 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 26 May 2017 17:28:12 +0100 Subject: [PATCH 017/138] remove remaining stray props of CodePress This completes the changes done in commit cf5da67. * renderRackCodeEditor() * renderTextEditor() --- wwwroot/inc/interface-config.php | 4 ++-- wwwroot/inc/interface.php | 20 ++------------------ 2 files changed, 4 insertions(+), 20 deletions(-) diff --git a/wwwroot/inc/interface-config.php b/wwwroot/inc/interface-config.php index 41e4a11f1..638e8735a 100644 --- a/wwwroot/inc/interface-config.php +++ b/wwwroot/inc/interface-config.php @@ -149,12 +149,12 @@ function verify() $text = loadScript ('RackCode'); printOpFormIntro ('saveRackCode'); echo ''; - echo "\n"; echo ""; echo '
"; echo '
'; echo ""; - echo ""; + echo ""; echo "
'; echo ""; diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index 8ac9b0996..3a858ca9e 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -63,15 +63,6 @@ // See the $systemreport for structure. $localreports = array(); -$CodePressMap = array -( - 'sql' => 'sql', - 'php' => 'php', - 'html' => 'htmlmixed', - 'css' => 'css', - 'js' => 'javascript', -); - $attrtypes = array ( 'uint' => '[U] unsigned integer', @@ -5207,19 +5198,12 @@ function getFilePreviewCode ($file) function renderTextEditor ($file_id) { - global $CodePressMap; $fullInfo = getFile ($file_id); printOpFormIntro ('updateFileText', array ('mtime_copy' => $fullInfo['mtime'])); - preg_match('/.+\.([^.]*)$/', $fullInfo['name'], $matches); # get file extension - if (isset ($matches[1]) && isset ($CodePressMap[$matches[1]])) - $syntax = $CodePressMap[$matches[1]]; - else - $syntax = "text"; echo ''; - addJS ('js/codepress/codepress.js'); - echo "'; - echo "\n
"; + echo "
"; echo "
\n"; } From 5ceaa17961c1798b326427e159efbe3a7e211563 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 26 May 2017 19:07:34 +0100 Subject: [PATCH 018/138] improve CodeMirror integration Reimplement the RackCode language mode in rackcode.js using simpler JavaScript code and define a standalone "rackcode" theme in rackcode.css instead of overriding the default theme. In renderRackCodeEditor() pass more properties to CodeMirror constructor and make minor HTML fixups. In renderRackCodeViewer() rewrite the code to use CodeMirror in read-only mode and to scroll to requested line on request. Amend the URL format in refRCLineno() respectively. --- ChangeLog | 1 + wwwroot/css/codemirror/rackcode.css | 10 ++-- wwwroot/inc/code.php | 2 +- wwwroot/inc/interface-config.php | 40 +++++++++++---- wwwroot/js/codemirror/rackcode.js | 77 ++++++++++++----------------- 5 files changed, 70 insertions(+), 60 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8c9230328..8fc77abd2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 0.21.0 update: display MySQL warnings in debug mode update: better display objects that have no common name + update: highlight RackCode syntax in the Permissions viewer too 0.20.13 2017-05-12 update: fix performance for pages with images (GH#190 by Michael A. Mikhailov) update: improve SNMP support for Brocade devices (GH#180 by Chris Jones) diff --git a/wwwroot/css/codemirror/rackcode.css b/wwwroot/css/codemirror/rackcode.css index 39e4da8c9..d2f53f757 100644 --- a/wwwroot/css/codemirror/rackcode.css +++ b/wwwroot/css/codemirror/rackcode.css @@ -1,3 +1,7 @@ -.CodeMirror {height: 500px;} -.cm-s-default .cm-operator {color: blue;} -.cm-s-default .cm-tag {color: orange;} +.CodeMirror { height: 500px; } +.cm-s-rackcode span.cm-comment { font-style: italic; color: gray; } +.cm-s-rackcode span.cm-operator { color: blue; } +.cm-s-rackcode span.cm-variable { color: orange; } +.cm-s-rackcode span.cm-def { color: magenta; } +.cm-s-rackcode span.cm-keyword { font-weight: bold; } +.cm-s-rackcode span.cm-atom { font-weight: normal; color: brown; } diff --git a/wwwroot/inc/code.php b/wwwroot/inc/code.php index 9a3876501..bc0add7d1 100644 --- a/wwwroot/inc/code.php +++ b/wwwroot/inc/code.php @@ -452,7 +452,7 @@ function un_expr() function refRCLineno ($ln) { - return "line ${ln}"; + return "line ${ln}"; } // returns warning message or NULL diff --git a/wwwroot/inc/interface-config.php b/wwwroot/inc/interface-config.php index 638e8735a..e59fa42f4 100644 --- a/wwwroot/inc/interface-config.php +++ b/wwwroot/inc/interface-config.php @@ -88,15 +88,34 @@ function renderUserProperties ($user_id) function renderRackCodeViewer () { - $text = loadScript ('RackCode'); echo ''; - $lineno = 1; - foreach (explode ("\n", $text) as $line) + addJS ('js/codemirror/codemirror.js'); + addJS ('js/codemirror/rackcode.js'); + addCSS ('css/codemirror/codemirror.css'); + addCSS ('css/codemirror/rackcode.css'); + if (! array_key_exists ('line', $_REQUEST)) + $scrollcode = ''; + else { - echo ""; - echo ""; - $lineno++; + // Line numbers start from 0 in CodeMirror API and from 1 elsewhere. + $lineno = genericAssertion ('line', 'uint') - 1; + $scrollcode = "rackCodeMirror.addLineClass (${lineno}, 'wrap', 'border_highlight');\n" . + "rackCodeMirror.scrollIntoView ({line: ${lineno}, ch: 0}, 50);\n"; } + addJS (<<\n"; + echo '
${lineno}${line}
'; } function renderRackCodeEditor () @@ -138,6 +157,8 @@ function verify() var rackCodeMirror = CodeMirror.fromTextArea(document.getElementById("RCTA"),{ mode:'rackcode', + theme:'rackcode', + autofocus:true, lineNumbers:true }); rackCodeMirror.on("change",function(cm,cmChangeObject){ $("#RCTA").text(cm.getValue()); @@ -146,12 +167,11 @@ function verify() ENDJAVASCRIPT , TRUE); - $text = loadScript ('RackCode'); printOpFormIntro ('saveRackCode'); - echo ''; + echo '
'; echo "\n"; - echo "\n"; + echo "
"; + echo loadScript ('RackCode') . "
"; echo '
'; echo ""; echo ""; diff --git a/wwwroot/js/codemirror/rackcode.js b/wwwroot/js/codemirror/rackcode.js index a71e1b82e..505904972 100644 --- a/wwwroot/js/codemirror/rackcode.js +++ b/wwwroot/js/codemirror/rackcode.js @@ -7,52 +7,37 @@ mod(CodeMirror); })(function(CodeMirror) { "use strict"; -CodeMirror.defineMode('rackcode', function() { - var allowkeywords = /^(allow)\b/i; - var denykeywords = /^(deny)\b/i; - var contextkeywords = /^(context|clear|insert|remove|on)\b/i; - var operatorkeywords = /^(define|and|or|not|true|false)\b/i; - - return { - token: function(stream, state) { - - if (stream.eatSpace()) - return null; - - var w; - - if (stream.eatWhile(/\w/)) { - w = stream.current(); - - - if (allowkeywords.test(w)) { - return 'positive'; - } else if (denykeywords.test(w)) { - return 'negative'; - } else if (operatorkeywords.test(w)) { - return 'operator'; - } else if (contextkeywords.test(w)) { - return 'keyword'; - } - - } else if (stream.eat('#')) { - stream.skipToEnd(); - return 'comment'; - } else if (stream.eat('{')) { - while (w = stream.next()) { - if (w == '}') - break; - - if (w == '\\') - stream.next(); - } - return 'tag'; - } else { - stream.next(); - } - return null; - } - }; +CodeMirror.defineMode('rackcode', function() +{ + return { + token: function (stream) + { + const WORDS = + { + 'allow': 'keyword positive', + 'deny': 'keyword negative', + 'define': 'keyword', + 'context': 'keyword', + 'clear': 'keyword', + 'insert': 'keyword', + 'remove': 'keyword', + 'on': 'keyword', + 'true': 'atom', + 'false': 'atom', + 'and': 'operator', + 'or': 'operator', + 'not': 'operator', + }; + return stream.eatSpace() ? null : + stream.eat ('(') ? 'bracket' : + stream.eat (')') ? 'bracket' : + stream.match (/^#.*$/) ? 'comment' : + stream.match (/^{[^{}]+}/) ? 'variable' : // a tag + stream.match (/^\[[^\[\]]+\]/) ? 'def' : // a predicate + stream.eatWhile (/\S/) ? WORDS[stream.current()] : + null; + } + }; }); CodeMirror.defineMIME("text/x-rackcode", "rackcode"); From 35d895be9b7e04756bae0371e1d666cfff3bbdcb Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Tue, 30 May 2017 13:26:50 +0100 Subject: [PATCH 019/138] fix a typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42713ce27..12d3f6c43 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ Note: set `secret.php` permissions when prompted. Unpack the tar.gz/zip archive to a directory of your choice and configure Apache httpd to use `wwwroot` subdirectory as a new DocumentRoot. Alternatively, symlinks to `wwwroot` or even to `index.php` from an existing DocumentRoot are -also possible and often adisable (see `README.Fedora`). +also possible and often advisable (see `README.Fedora`). ## 3. Run the installer Open the configured RackTables URL and you will be prompted to configure From 6cf6a09f847ae793b751d2c5504473e3d405ee68 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 2 Jun 2017 13:43:28 +0100 Subject: [PATCH 020/138] replace a couple default values with explicit ones There is no reason to specify a default value for $input_name in printTagsPickerInput() and printTagsPickerUl() so long as printTagsPicker() is the only function that calls those functions. --- wwwroot/inc/interface-lib.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wwwroot/inc/interface-lib.php b/wwwroot/inc/interface-lib.php index 816f95b0d..c9a67ad64 100644 --- a/wwwroot/inc/interface-lib.php +++ b/wwwroot/inc/interface-lib.php @@ -1114,19 +1114,19 @@ function printTagsPicker ($preselect=NULL) printf ('(None exist yet, %s?)', mkA ('configure', 'tagtree', NULL, 'edit')); return; } - printTagsPickerInput (); - printTagsPickerUl ($preselect); + printTagsPickerInput ('taglist'); + printTagsPickerUl ('taglist', $preselect); enableTagsPicker (); } -function printTagsPickerInput ($input_name="taglist") +function printTagsPickerInput ($input_name) { # use data-attribute as identifier for tagit echo ""; echo ""; } -function printTagsPickerUl ($preselect=NULL, $input_name="taglist") +function printTagsPickerUl ($input_name, $preselect = NULL) { global $target_given_tags; if ($preselect === NULL) From 837ad4aebcc00d3208ac1c9399496da9a70b1454 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 2 Jun 2017 16:20:51 +0100 Subject: [PATCH 021/138] printTagsPickerUl(): don't modify foreach argument --- wwwroot/inc/interface-lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wwwroot/inc/interface-lib.php b/wwwroot/inc/interface-lib.php index c9a67ad64..9a2b17c70 100644 --- a/wwwroot/inc/interface-lib.php +++ b/wwwroot/inc/interface-lib.php @@ -1131,8 +1131,8 @@ function printTagsPickerUl ($input_name, $preselect = NULL) global $target_given_tags; if ($preselect === NULL) $preselect = $target_given_tags; - foreach ($preselect as $key => $value) # readable time format - $preselect[$key]['time_parsed'] = formatAge ($value['time']); + foreach (array_keys ($preselect) as $key) + $preselect[$key]['time_parsed'] = formatAge ($preselect[$key]['time']); # readable time format usort ($preselect, 'cmpTags'); $preselect_hidden = ""; foreach ($preselect as $value){ From 6eb70f015902af95bba02250ae8d249f0dd88644 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Tue, 6 Jun 2017 11:27:54 +0100 Subject: [PATCH 022/138] refine delivery of rack thumb images A read-only RackTables instance would display an error image instead of the thumbnail image for any rack that has invalidated thumbnail cache. This change makes it deliver the thumbnail even if the attempted cache update failed because of insufficient database permissions. * RTDBTableAccessDenied: a new exception class * convertPDOException(): add a respective case block for the error code * dispatchMiniRackThumbRequest(): use the above for its REPLACE and update the comment --- ChangeLog | 1 + wwwroot/inc/database.php | 2 ++ wwwroot/inc/exceptions.php | 13 +++++++++++++ wwwroot/inc/solutions.php | 23 ++++++++++++++++------- 4 files changed, 32 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8fc77abd2..8299d3932 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ update: display MySQL warnings in debug mode update: better display objects that have no common name update: highlight RackCode syntax in the Permissions viewer too + update: refine delivery of rack thumb images 0.20.13 2017-05-12 update: fix performance for pages with images (GH#190 by Michael A. Mikhailov) update: improve SNMP support for Brocade devices (GH#180 by Chris Jones) diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index f412a3e41..8dd434246 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -3891,6 +3891,8 @@ function convertPDOException ($e) case 'HY000-1205': $text = 'lock wait timeout'; break; + case '42000-1142': + return new RTDBTableAccessDenied ($e->getMessage()); default: return $e; } diff --git a/wwwroot/inc/exceptions.php b/wwwroot/inc/exceptions.php index a26a70c74..de890cbbd 100644 --- a/wwwroot/inc/exceptions.php +++ b/wwwroot/inc/exceptions.php @@ -220,6 +220,19 @@ public function dispatch() } } +// This specifically means the error condition that happens when the database user +// does not have the privileges to execute the query. The code that catches this +// exception class has to interpret what it actually means based on the query it +// was trying to execute. If not specifically expected, the exception will end up +// in the same catch blocks as RTDatabaseError. +class RTDBTableAccessDenied extends RTDatabaseError +{ + public function dispatch() + { + RackTablesError::genHTMLPage ('Database table access denied', '

Database table access denied


' . $this->message); + } +}; + // gateway failure is a common case of a "soft" error, some functions do catch this class RTGatewayError extends RackTablesError { diff --git a/wwwroot/inc/solutions.php b/wwwroot/inc/solutions.php index c50a0eeb4..cceeb72e6 100644 --- a/wwwroot/inc/solutions.php +++ b/wwwroot/inc/solutions.php @@ -139,8 +139,10 @@ function createTrueColorOrThrow ($context, $width, $height) return $img; } -# Generate a complete HTTP response for a 1:1 minirack image, use and update -# SQL cache where appropriate. +// Generate a complete HTTP response for a 1:1 minirack image, use and update +// SQL cache where appropriate. Suppress SQL cache update failures caused by +// insufficient database privileges as that likely means a connection that is +// read-only on purpose. function dispatchMiniRackThumbRequest ($rack_id) { if (NULL !== ($thumbcache = loadThumbCache ($rack_id))) @@ -154,11 +156,18 @@ function dispatchMiniRackThumbRequest ($rack_id) $capture = ob_get_clean(); header ('Content-Type: image/png'); echo $capture; - usePreparedExecuteBlade - ( - 'REPLACE INTO RackThumbnail SET rack_id=?, thumb_data=?', - array ($rack_id, base64_encode ($capture)) - ); + try + { + usePreparedExecuteBlade + ( + 'REPLACE INTO RackThumbnail SET rack_id=?, thumb_data=?', + array ($rack_id, base64_encode ($capture)) + ); + } + catch (RTDBTableAccessDenied $e) + { + // keep going + } } # Generate a binary PNG image for a rack contents. From 336e7e604897651adda831a61da3fd641f6238f9 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Tue, 6 Jun 2017 16:53:18 +0100 Subject: [PATCH 023/138] fixup transparency in a few images --- wwwroot/pix/addressspacev6.png | Bin 12324 -> 15700 bytes wwwroot/pix/racks.png | Bin 9552 -> 12978 bytes wwwroot/pix/report.png | Bin 12743 -> 16384 bytes wwwroot/pix/server.png | Bin 3945 -> 6059 bytes 4 files changed, 0 insertions(+), 0 deletions(-) diff --git a/wwwroot/pix/addressspacev6.png b/wwwroot/pix/addressspacev6.png index e4d11f87e7364574445946d6698ba3ce96910a5b..a2bf1dfc4c6eccccc1974a07c2d48e9a6bad2d03 100644 GIT binary patch literal 15700 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 F{y)-xFG&CZ literal 12324 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 yW!NUoqFrlNqP~0cTGe>lN$R-Tfb#jL2{R diff --git a/wwwroot/pix/racks.png b/wwwroot/pix/racks.png index 1ea5c5f7eaf9671279630feb79955bffed48b9b9..3d09fdc542c6b0156b757880c038a64f7df000a4 100644 GIT binary patch literal 12978 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 O00007p^-rxOt-FLfhSCwn>P&Sx()I8=q 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 N002ovPDHLkV1m%UA9(-( diff --git a/wwwroot/pix/server.png b/wwwroot/pix/server.png index 7c33bb3c9ec1857e166da277e9239dcf8e98655d..8f90f95c5e42b0f19f7a2a458988b0fa4e3665a0 100644 GIT binary patch literal 6059 zcmds*=Tj5hw#I`3QbY)mPy}hAh9I3#L?boy8tEM=krH|bDVorvBV8$i^cElxRGPF` zI3N(DNfo3@M`>5jJu~&xB?r?0C{N5e(~008Ka8Y+f=^7J3| zQ&IkjN!PEm{v=9!Ep-*Z)!*~Fqb%(Yq4v@+^8o;8L4QRC$jM{*18?{ubyROGQc}_j z$xG}F6aoOuaHI;tIB@$Pq=re+#F^0AWM?)nE7@;}0bN zZ{vT#za9TSssT7+ z_Nl}H+kMPpkJe%oB$)PxZI9Qz4Bv#+nhci=MPOgWD`(_$3a|hRh-DXR;bjN)PP#H0 zKEFitViLW~dN5ZIj=4cuuf^zZ5p=f2maT*-m9%#vUhk?%W|QmFRejRdSwv34e7hm8 znX*nxNE)iXx6+71Re$B`Z}wFU+jQgfaCu}?i61|)V{m{QFYy5?!QG|l>nQ7Is%Vrj z?oI~Brb7xZF->e0G}~pNVzxlGeyHpQzV*?RS{=WiX5SP7pzjJx5WXe2TldJR)6IIg zb-FO5_dR5Mpe>8 zm)OqOb>b%+ueA`LvD;jH%An_25LyQ72Ih-Mq8-sYE9r)Az5isZoWV~pQXXDDe5HAX z%vC+ct)g1TM*XOCmoZ|d0Ygo%-?vYLRy=BHCd-{%+Mn#gY_?2g8Mh7xu2{jQI}cq{ zET}!-_If(-&1H@Bg#}WhG+nPR*oYTuMI)Mu_?dA29XwjE>b)C!v>xXrEIHex`eu1? z*Z>qsEHHm6qXZKmyYiq@6$DUZ#^Y$wQMJRTK--=TWZeQG$G7NzCkV6a48-E_&V4XxUA3< z=Myw^S12o(y|<2NVA>`klCK^0jTo6K8VG7+P&yoZ>*;p8M_AZ@X!u*9+nf1i>yA>> zUpa%F#8)TxP2@Z;EYO98w+(Z!JXS-w=uR)!BBs8uI=AiV10(~C#eTrTV_nX&?B^%k zlMWf8gXQ(}`#!7WMIwoW;9Ve?`1lo2mrKO*%zB5M6w^)(4HytLz3;uQn1f=A_71C7cuKe%XFI8b zO^V=*i4Uq!V4io`6BUX~PvVkl0a?b=b+RaLnlImEoxgL^WyZBOYe2x5e*ZqH-`+{F zxE}zS9?Lbz%LtC`-e82KAM)#E<8F+|J5m%W#oq5gqPk*3Qk(LQK^1x6GPr^!Eg0~>-(?LJ_sRoK z{OU4SdNZ|`ieeaR9Zcjf+=29R!S*j!eMBF*>y7+eyv7hfPOPt)Z(!U+;R8IJNC6e;b(QDIAGsH5t)#;9@iEm*p zA_05vlkokgo=HxP9{$GAbm>!79hb@utJ|VkkaQ*z1ZXR;ciF(C?6XZ2wQ_pC)$0|Y z?Cc$a*?A||)Y2MQW<21??&(J(>4^7!Iv=Ql|B1iCSNI6idT+5dxM0do0jyg7(sB|QeQKGCR# zZCW1iX~m>0&w<-wx;cI)e!Np}yOBOh)5oNdMgsyUY#TrphhYVw=4DIiWBRZeHM0Uj z+;z`n#Q=c``0glfP81lCXMyi!N*y%}wbS;d8rm-opA#aZdd@_n`3xp0Zf&_nv4=N zFs09ijBI!+_hp3EsxQ3zFn!^^Q93&a>K$QjaXLMmKQn<4Dq}2iNb$llo76Xy!**@# zOXDAxEWxEQ{R(Z$0D zYfVkcnF%)zA^8g=ZPAp)Zw`d-;k%{Rf{!g-TUGLiTIeMp>I zLdHbbE6kLyZ2U>KFw#7}{l?ZvaC_hTrHJCC-o(=n^ij!o?5d;cygPA7&lfHkPvuGv zE5oN0>@L@Ycd93dbHr+1)f-N8ML>LO4+UO2v(DmoADeo{Z_ULEsUiIW&~@@H!5s>Ax|`Ipb>zdG^gy<{+6}aiU*pv zEh2yyGPud5=Jc`RQ(FxG-CUpTX}7Y0)WoUJ(B&NHjC>Yfu8(TRp-Qc4VL)A|mcTj_CMeaKzoN0^6A+b>&ZH`FGFBgHv6dZ^F$+iS

Zv(_N zT1+c?KO5rX3Jv=A(De)bnrT)2F>O>gHJe-~0}@HY?yw_Y0g)N<_JigJb{?yBfhn`i z$Gn|Dk(Cn8n?VmM3eCLz^mkX?`?4D~I_pJqG^)>C)=fG7G0kMIFRD#gurgndS>BdG zw1&xha8Qiq#QWD)Mfvs>R?6-{s`|`{{-ymac8@dGVXFJ{x?L8oB;F3tugmMl(#g?v z$@(OGjF7CiAqlkUb`Pz!T9WAY zehzolXo$K=*~!m-yh~E(iDol0V^LzI9V-XVArdhRC?nCH?cf4{V&XEqG#zZwl*^sN zfD9+mhu89#%qJ3!L;K-7oCF}W!#_KlpzjJJ|Wa#%rR$aHI1m)%V!So}> zRo}-(<`WIHS_9~j!`nyx#MG?l0iPvWnNwyeVPi^0q*oNAc^zOGTm6{C>pRVLc&_IsT1NW&@5h-qld-`JJZwQ(0WZ_KI?E3)!m#RZ}chzoXXT_=!sE>=pWn5Rz!yr&+ z@^`0y?#mbY>4T*zW4qiqxvNbLUy=!U6cfyfOd52gJ=!Z@mZJh|t?ODUoTvPP-W=TB zZ?$D5t%sRk--?U3?_WxFQPt+ZHv*OytvtU28>NTq{@mQGv)8L!vMOW&l!h)FY?4!aZocBxrlQIlUe^`0c5 zmTxWOvmdrWm~vlxb{xt<`zda>*N`>bKCH_wRv}>=VO*%3CU__QS@`=dI}>$rDmR=$ z+g(3nFl@PwN!7RN@YV~0!EQK``9w8gNcYc8tlrX?q)9IGRFz_CaUy2^sFD}8fBDqY z)vtP4sWwGhygx1fm4}#0!5dyBjV#?8hj-XB#gRj2W89;b6bYA#2Ja%^UL`}VnV(KurJeYcY_=?Y<*M+LuHkPjV0Egy zw$Md!s(ZAP1#8vzt`DRUH86jiTW(*4B&bg}xMYdmI~C~!+D#svsUMzYt#8uRy&S?% zzi8Qg)WKs)!o(3qk`@s051Ws)B_6%Fc-mEg#|B zGd~M_8MfK8_B&8h=zg$5%?I{TmD%IUTMHapgEuxmCL}oZ61@0_r5rA#>QlY_8ccO= zbo(8FsaR#{B;#?-$&q14%G9gN*jfDILq-7r}vtlaQdX#7@XQGwV(Lb zB)nJjD*v$BV6)M0J-`+2!ozJYoEVlgIrSrA<0_)21l_Jvke5D2g5+Rl?rx4MooHGY zZnlQRoe4&?ctiXId!fQD6}BH%9jfO8y6keBR!T%fBwV3{PZ(Nk)UpJG!}Ce>zjUP2 zAy&(+9CA-$*wM<)P_|bIS1@YDC9y>jsNBwY;JHx$S>xsVM5jurw!Xcc5bPeI&u(rl z@>knbt&S9;)tzsKvnzIE;9LSZ8|TKEKI06OUJO+CHW<5nz5j5m;lh|C$=apT?hN#I zFhpNRpUpTk%>*idM3!`u0*%;H$T(q-%QX4yivz$o2HK2$=KD7%w;95I?n6s-oL@066amzxozMMc^%8S4{Qa<=Kjs zKa5FrjvScs{1^^JdKrQXhM)p()rkfEO4p7>ec+hv9vc5O7uVkADNm#Najg;gABx#{+Sk76^O4=vqTc8J z!;kp;wukF_g4C=;)#OW)U0z@;X0(HAL!Sm6tb$J!*gZB)y=k8K&q~Hu70@y#;#lj6 zE^Lw{Rs|FRzH(G@Wsg;y-wg36^`k7{Gj~^r*MFJUi;Q=4xEnaw;9DxtH*qnqBDvHY zG9{3rLIi`aq{!m{A5Ls{pNQ7GOxyQ2(~M$9M40evgX@E#o~1W3{l**Erk^#Y*{lV>Tkk-3XmYcrtqotBs<1NGi^!gtvEvWAfZ_O;n$@>XT7GmmIV65z zjJ#sl`7)mE<;|HUE9ayxxaq57)x+);dMj_Oji0Y1u%rMjTznQOBDX&0)7VhY)sK4@ zfN(+2@2I8?I~C7yVF?nmN*%E-5cGqq?KvX4FjIU!Sg*IUi4FTHN3H3849QxI3X zK>yJerat^$@TWy3>B_f_ESbo7tzaM<#?(WGRaCsHO|8S^?c=l4YTT0^cls`Gyoc6_ zJ^qlKLho5z(k5K+s50Y`>yjC@Uu8y=31}TZ(VYHpp=ok)e@y{#ZSDi)&WOO9eG2uS z`u^j{?t;6leYr-fAN{9Lieh+Lv$1Q>|NLgV z{*<=>NfYrUsHu5uKL0hl=)2#A3Yo}=yW2Z_TQl72l6@tNrt<`50gQ zT_k7to0-s!x$d60y%MMZPL_>4>Oih0=OJYJOodVCs&-<n6IGsk$8%8>efyG62Ka@_GKW*W4$Qudetvw_0&;zQI*lbyOXWwPAM z?D<$hW@Uu+R+pGBU!qrdMr%eZ5}z|2kYkZ%$;V-hNeX+RQX<7Wp|OO({tcK0Pl`*6 zAhzHB%RC}Bje%`?XF=faPd-*vp;DFmokmlwgp5vX+QjXK=`%CMmChvvfJJS@-&Jpy zt#N!4qr*hiS(q_)U$5Ox4*&oF literal 3945 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 From 20e180464d6cd58d126e38faa38fef826e8debf5 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 16 Jun 2017 10:20:00 +0100 Subject: [PATCH 024/138] dictionary: add another OS release (Mantis#1769) --- wwwroot/inc/dictionary.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wwwroot/inc/dictionary.php b/wwwroot/inc/dictionary.php index 398b202e9..03f01ad2d 100644 --- a/wwwroot/inc/dictionary.php +++ b/wwwroot/inc/dictionary.php @@ -2595,6 +2595,7 @@ function platform_is_ok () 2704 => array ('chapter_id' => 17, 'dict_value' => 'MikroTik%GPASS%CCR1009-7G-1C-1S+'), 2705 => array ('chapter_id' => 13, 'dict_value' => '[[OpenBSD%GSKIP%OpenBSD 6.1 | http://www.openbsd.org/61.html]]'), 2706 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%CE8850-32CQ-EI'), + 2707 => array ('chapter_id' => 13, 'dict_value' => 'MicroSoft%GSKIP%Windows Server 2016'), # Any new "default" dictionary records must go above this line (i.e., with From ed4484b836296977fb1545e64579779e47ecc352 Mon Sep 17 00:00:00 2001 From: Fred Stuck Date: Fri, 16 Jun 2017 15:17:46 +0100 Subject: [PATCH 025/138] cover comments too in IPv4 search (Mantis#1773) * getIPv4PrefixSearchResult() --- wwwroot/inc/database.php | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index 8dd434246..ea99844e0 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -2764,17 +2764,22 @@ function unbindIPv6FromObject ($ip_bin, $object_id) function getIPv4PrefixSearchResult ($terms) { - $byname = getSearchResultByField - ( - 'IPv4Network', - array ('id'), - 'name', - $terms, - 'ip' - ); $ret = array(); - foreach ($byname as $row) - $ret[$row['id']] = spotEntity ('ipv4net', $row['id']); + foreach (array ('name', 'comment') as $column) + { + $tmp = getSearchResultByField + ( + 'IPv4Network', + array ('id'), + $column, + $terms, + 'ip' + ); + foreach ($tmp as $row) + { + $ret[$row['id']] = spotEntity ('ipv4net', $row['id']); + } + } return $ret; } From cf7202551977b9a892e165e4703641bc1cab215e Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 16 Jun 2017 15:41:44 +0100 Subject: [PATCH 026/138] improve the previous change Do the same for IPv6 and make a ChangeLog entry. * getIPv4PrefixSearchResult() * getIPv6PrefixSearchResult() --- ChangeLog | 2 ++ wwwroot/inc/database.php | 25 +++++++++++++------------ 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8299d3932..9480b9a9e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,8 @@ update: better display objects that have no common name update: highlight RackCode syntax in the Permissions viewer too update: refine delivery of rack thumb images +0.20.14 + update: cover comments too in IPv4 & IPv6 search (Mantis#1773 by Fred Stuck) 0.20.13 2017-05-12 update: fix performance for pages with images (GH#190 by Michael A. Mikhailov) update: improve SNMP support for Brocade devices (GH#180 by Chris Jones) diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index ea99844e0..63bc8ce96 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -2776,26 +2776,27 @@ function getIPv4PrefixSearchResult ($terms) 'ip' ); foreach ($tmp as $row) - { $ret[$row['id']] = spotEntity ('ipv4net', $row['id']); - } } return $ret; } function getIPv6PrefixSearchResult ($terms) { - $byname = getSearchResultByField - ( - 'IPv6Network', - array ('id'), - 'name', - $terms, - 'ip' - ); $ret = array(); - foreach ($byname as $row) - $ret[$row['id']] = spotEntity ('ipv6net', $row['id']); + foreach (array ('name', 'comment') as $column) + { + $tmp = getSearchResultByField + ( + 'IPv6Network', + array ('id'), + $column, + $terms, + 'ip' + ); + foreach ($tmp as $row) + $ret[$row['id']] = spotEntity ('ipv6net', $row['id']); + } return $ret; } From 0a7ffbe4375d9c7d61f6df97ccd7180557c6e59f Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 16 Jun 2017 16:45:04 +0100 Subject: [PATCH 027/138] spell a public class method as public Keep it consistent with the other declarations in the file. --- wwwroot/inc/exceptions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwwroot/inc/exceptions.php b/wwwroot/inc/exceptions.php index de890cbbd..101124891 100644 --- a/wwwroot/inc/exceptions.php +++ b/wwwroot/inc/exceptions.php @@ -181,7 +181,7 @@ function __construct ($message) class InvalidArgException extends RackTablesError { // derive an instance of InvalidRequestArgException - function newIRAE ($argname = NULL) + public function newIRAE ($argname = NULL) { if ($argname === NULL) return new InvalidRequestArgException ($this->name, $this->value, $this->reason); From 8bdd76e7706b8da04091e9afec6ed2b06f63fe74 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 16 Jun 2017 17:12:25 +0100 Subject: [PATCH 028/138] decrease direct use of $_REQUEST and $sic, pt. 20 * updateObjectAttributes() --- wwwroot/inc/ophandlers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwwroot/inc/ophandlers.php b/wwwroot/inc/ophandlers.php index 904c4e5e4..56795c238 100644 --- a/wwwroot/inc/ophandlers.php +++ b/wwwroot/inc/ophandlers.php @@ -1374,7 +1374,7 @@ function updateObjectAttributes ($object_id) { $type_id = getObjectType ($object_id); $oldvalues = getAttrValues ($object_id); - $num_attrs = isset ($_REQUEST['num_attrs']) ? $_REQUEST['num_attrs'] : 0; + $num_attrs = array_key_exists ('num_attrs', $_REQUEST) ? genericAssertion ('num_attrs', 'uint0') : 0; for ($i = 0; $i < $num_attrs; $i++) { $attr_id = genericAssertion ("${i}_attr_id", 'uint'); From dfc8176e958c0f40eadacf6430c652ca0192f205 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 16 Jun 2017 18:43:05 +0100 Subject: [PATCH 029/138] make the object properties form more user-friendly updateObjectAttributes() used to feed each new attribute value to MySQL connection and let it raise an exception for an invalid input. The exception would be dispatched as a hard error with the MySQL error codes and a stack trace page. Improve this by making calls to genericAssertion() as required and converting any resulting IRAE exceptions to a human-readable form. Add helper methods getValue() and getReason() to InvalidArgException. --- wwwroot/inc/exceptions.php | 8 ++++++++ wwwroot/inc/ophandlers.php | 29 +++++++++++++++++++++++------ 2 files changed, 31 insertions(+), 6 deletions(-) diff --git a/wwwroot/inc/exceptions.php b/wwwroot/inc/exceptions.php index 101124891..d3550576b 100644 --- a/wwwroot/inc/exceptions.php +++ b/wwwroot/inc/exceptions.php @@ -198,6 +198,14 @@ function __construct ($name, $value, $reason = NULL) $this->value = $value; $this->reason = $reason; } + public function getValue() + { + return $this->value; + } + public function getReason() + { + return $this->reason; + } } // this simplifies construction and helps in catching "soft" diff --git a/wwwroot/inc/ophandlers.php b/wwwroot/inc/ophandlers.php index 56795c238..ffc978b96 100644 --- a/wwwroot/inc/ophandlers.php +++ b/wwwroot/inc/ophandlers.php @@ -1398,23 +1398,40 @@ function updateObjectAttributes ($object_id) continue; } - // The value could be uint/float, but we don't know ATM. Let SQL - // server check this and complain. - if ('date' == $oldvalues[$attr_id]['type']) - $value = timestampFromDatetimestr (genericAssertion ("${i}_value", 'datetime')); - - switch ($oldvalues[$attr_id]['type']) + try { + switch ($oldvalues[$attr_id]['type']) + { case 'uint': + genericAssertion ("${i}_value", 'uint0'); + $oldvalue = $oldvalues[$attr_id]['value']; + break; case 'float': + genericAssertion ("${i}_value", 'decimal0'); + $oldvalue = $oldvalues[$attr_id]['value']; + break; case 'string': + // already checked above + $oldvalue = $oldvalues[$attr_id]['value']; + break; case 'date': + $value = timestampFromDatetimestr (genericAssertion ("${i}_value", 'datetime')); $oldvalue = $oldvalues[$attr_id]['value']; break; case 'dict': + // Not 'uint0' as 0 is handled above. + genericAssertion ("${i}_value", 'uint'); $oldvalue = $oldvalues[$attr_id]['key']; break; default: + throw new RackTablesError ('Unexpected attribute type', RackTablesError::INTERNAL); + } + } + catch (InvalidRequestArgException $irae) + { + // The submitted form may include a number of changes hence the error message + // must use same term as the form label (before the conversion it is the input name). + throw new InvalidRequestArgException ($oldvalues[$attr_id]['name'], $irae->getValue(), $irae->getReason()); } if ($value === $oldvalue) // ('' == 0), but ('' !== 0) continue; From b4fb59fae05194ebcb85b1df7e3cf99ce8af13ed Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Tue, 20 Jun 2017 12:42:26 +0100 Subject: [PATCH 030/138] printPDOException(): refine some text In this context the class name is always PDOException. --- wwwroot/inc/exceptions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wwwroot/inc/exceptions.php b/wwwroot/inc/exceptions.php index d3550576b..735ccc5a2 100644 --- a/wwwroot/inc/exceptions.php +++ b/wwwroot/inc/exceptions.php @@ -376,11 +376,11 @@ function printPDOException ($e) header ('Content-Type: text/html; charset=UTF-8'); echo '' . "\n"; echo '' . "\n"; - echo " PDO Exception \n"; + echo "PDOException\n"; echo "\n"; echo "\n"; - echo ' '; - echo '

Pdo exception: ' . get_class ($e) . '

' . $e->getMessage() . ' (' . $e->getCode() . ')'; + echo ''; + echo '

PDOException

' . $e->getMessage() . ' (' . $e->getCode() . ')'; echo '

at file ' . $e->getFile() . ', line ' . $e->getLine() . '

';
 	echo stringTrace ($e->getTrace());
 	echo '
'; From 5b9082042c4450a1b93a483d0abbdae143728d9c Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 22 Jun 2017 13:55:14 +0100 Subject: [PATCH 031/138] refine displaying of attributes formatAttributeValue() was initially purposed for objects and when it yielded a hyperlink it would hard-code "page=depot" into it. When the function was later reused for racks, rows and locations, this logic didn't deliver working URLs. Add necessary checks such that this feature only tries to work when it can work, add a date format mouse hint, add minimal reporting of RackCode parsing errors and move some code around for clarity. Modify the functions below as required: * renderRow() * renderRackInfoPortlet() * renderObject() * renderSearchResults() * renderLocationPage() --- ChangeLog | 1 + wwwroot/inc/interface.php | 98 ++++++++++++++++++++++++++++----------- 2 files changed, 72 insertions(+), 27 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9480b9a9e..2c984374b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ update: better display objects that have no common name update: highlight RackCode syntax in the Permissions viewer too update: refine delivery of rack thumb images + bugfix: put dictionary-based attributes formatting right 0.20.14 update: cover comments too in IPv4 & IPv6 search (Mantis#1773 by Fred Stuck) 0.20.13 2017-05-12 diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index 3a858ca9e..0151855be 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -690,7 +690,7 @@ function renderRow ($row_id) $record['value'] != '' && permitted (NULL, NULL, NULL, array (array ('tag' => '$attr_' . $record['id']))) ) - $summary['{sticker}' . $record['name']] = formatAttributeValue ($record); + $summary['{sticker}' . $record['name']] = formatAttributeValue ($record, 1561); // Main layout starts. echo ""; @@ -1313,8 +1313,13 @@ function renderRackInfoPortlet ($rackData) // Display populated attributes, but skip 'height' since it's already displayed above // and skip 'sort_order' because it's modified using AJAX foreach (getAttrValuesSorted ($rackData['id']) as $record) - if ($record['id'] != 27 && $record['id'] != 29 && $record['value'] != '') - $summary['{sticker}' . $record['name']] = formatAttributeValue ($record); + if + ( + $record['id'] != 27 && $record['id'] != 29 && + $record['value'] != '' && + permitted (NULL, NULL, NULL, array (array ('tag' => '$attr_' . $record['id']))) + ) + $summary['{sticker}' . $record['name']] = formatAttributeValue ($record, 1560); $summary['% used'] = getProgressBar (getRSUforRack ($rackData)); $summary['Objects'] = count ($rackData['mountedObjects']); $summary['tags'] = ''; @@ -1467,7 +1472,7 @@ function renderObject ($object_id) $record['value'] != '' && permitted (NULL, NULL, NULL, array (array ('tag' => '$attr_' . $record['id']))) ) - $summary['{sticker}' . $record['name']] = formatAttributeValue ($record); + $summary['{sticker}' . $record['name']] = formatAttributeValue ($record, $info['objtype_id']); $summary[] = array (getOutputOf ('printTagTRs', $info, makeHref @@ -3691,7 +3696,15 @@ function renderSearchResults ($terms, $summary) { $record = $aval[$attr_id]; echo ""; - echo ""; + if ($attr_id == 3) // FQDN + { + // Switch context for the RackCode in MGMT_PROTOS to work. + $saved_ctx = getContext(); + fixContext ($object); + } + echo ''; + if ($attr_id == 3) + restoreContext ($saved_ctx); } echo '
${record['name']}:" . formatAttributeValue ($record) . "
' . formatAttributeValue ($record, $object['objtype_id']) . '
'; } @@ -3989,7 +4002,7 @@ function renderLocationPage ($location_id) $record['value'] != '' && permitted (NULL, NULL, NULL, array (array ('tag' => '$attr_' . $record['id']))) ) - $summary['{sticker}' . $record['name']] = formatAttributeValue ($record); + $summary['{sticker}' . $record['name']] = formatAttributeValue ($record, 1562); $summary['tags'] = ''; renderEntitySummary ($locationData, 'Summary', $summary); if ($locationData['comment'] != '') @@ -5928,13 +5941,21 @@ function formatIfTypeVariants ($variants, $select_name) return getSelect ($sorted_select, array('name' => $select_name)); } -function formatAttributeValue ($record) +function formatAttributeValue ($record, $objtype_id) { - if ('date' == $record['type']) - return datetimestrFromTimestamp ($record['value']); - - if (! isset ($record['key'])) // if record is a dictionary value, generate href with autotag in cfe + switch ($record['type']) { + case 'uint': + case 'float': + return $record['value']; + case 'date': + return sprintf + ( + '%s', + datetimeFormatHint (getConfigVar ('DATETIME_FORMAT')), + datetimestrFromTimestamp ($record['value']) + ); + case 'string': if ($record['id'] == 3) // FQDN attribute foreach (getMgmtProtosConfig() as $proto => $filter) try @@ -5948,25 +5969,48 @@ function formatAttributeValue ($record) catch (RackTablesError $e) { // syntax error in $filter + // FIXME: In the current implementation the exception class is neither RackCodeError + // nor RCParserError, which is likely wrong. In the specific case of a syntax error + // it would be helpful to display its text in the warning. + showWarning ("could not parse '${filter}' for management protocol '${proto}' in MGMT_PROTOS"); continue; } - return isset ($record['href']) ? "${record['a_value']}" : $record['a_value']; - } - - $href = makeHref - ( - array + return array_key_exists ('href', $record) ? + "${record['a_value']}" : + $record['a_value']; + case 'dict': + $map = array ( - 'page'=>'depot', - 'tab'=>'default', - 'andor' => 'and', - 'cfe' => '{$attr_' . $record['id'] . '_' . $record['key'] . '}', - ) - ); - $result = "" . $record['a_value'] . ""; - if (isset ($record['href'])) - $result .= " " . getImageHREF ('html', 'vendor's info page') . ""; - return $result; + // The rackspace view features the tag filter but a dictionary-based autotag would + // never match there because the current code generates {$attr_X_Y} only for objects. + // As soon as racks have these autotags too, changing the value below to 'rackspace' + // will make filtering work as expected. + 1560 => NULL, + // The user interface at the moment does not implement the tag filter for rows or + // locations, also these object types don't have dictionary-based autotags. + 1561 => NULL, + 1562 => NULL, + ); + if (NULL === $filter_pageno = array_fetch ($map, $objtype_id, 'depot')) + $result = $record['a_value']; + else + { + $filter_args = array + ( + 'page' => $filter_pageno, + 'tab' => 'default', + 'andor' => 'and', + 'cfe' => '{$attr_' . $record['id'] . '_' . $record['key'] . '}', + ); + $filter_url = makeHref ($filter_args); + $result = "${record['a_value']}"; + } + if (array_key_exists ('href', $record)) + $result .= " " . getImageHREF ('html', 'vendor\'s info page') . ""; + return $result; + default: + throw new InvalidArgException ('record[type]', $record['type']); + } } function addAutoScrollScript ($anchor_name) From 5ff78aff0d0fc255d469a5e7ce5d64e0df646afb Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 23 Jun 2017 12:59:21 +0100 Subject: [PATCH 032/138] refine editing of attributes It used to be possible to map "date" attributes to racks, rows and locations, but the properties editor would not know how to handle those attributes in particular and would not make permission checks correctly in general. This change addresses those issues by replacing four similar code blocks with one new function that can handle all types of attributes for all types of objects and makes necessary permission checks. * renderEditAttributeTRs(): a new universal function * renderEditRowForm(): use the new function instead of custom local code * renderEditObjectForm(): idem * renderEditRackForm(): idem * renderEditLocationForm(): idem * updateObjectAttributes(): update request argument checks to match what the current implementation puts into the form --- ChangeLog | 1 + wwwroot/inc/interface.php | 207 +++++++++++-------------------------- wwwroot/inc/ophandlers.php | 8 +- 3 files changed, 64 insertions(+), 152 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2c984374b..e1503553e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ update: highlight RackCode syntax in the Permissions viewer too update: refine delivery of rack thumb images bugfix: put dictionary-based attributes formatting right + bugfix: date attributes now can be set for racks, rows and locations 0.20.14 update: cover comments too in IPv4 & IPv6 search (Mantis#1773 by Fred Stuck) 0.20.13 2017-05-12 diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index 0151855be..89026b425 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -729,6 +729,61 @@ function renderRow ($row_id) echo "
"; } +function renderEditAttributeTRs ($update_op, $values, $objtype_id, $skip_ids = array()) +{ + $datehint = ' (' . datetimeFormatHint (getConfigVar ('DATETIME_FORMAT')) . ')'; + $i = 0; + foreach ($values as $record) + { + $annex = array (array ('tag' => '$attr_' . $record['id'])); + $can_view = permitted (NULL, NULL, NULL, $annex); + if (in_array ($record['id'], $skip_ids) || ! $can_view) + continue; + $can_update = permitted (NULL, NULL, $update_op, $annex); + $can_clear = permitted (NULL, NULL, 'clearSticker', $annex); + // Ability to update ultimately includes ability to set to an empty value, + // i.e. to clear, but making the check this way in the ophandler is complicated, + // so let's keep it consistently imperfect for the time being and maybe + // fix it later. + $clear_html = ($record['value'] != '' && ($can_clear /* || $can_update*/)) ? + getOpLink (array ('op' => 'clearSticker', 'attr_id' => $record['id']), '', 'clear', 'Clear value', 'need-confirmation') : + ' '; + echo "${clear_html}"; + echo '' . $record['name'] . ($record['type'] == 'date' ? $datehint : '') . ':'; + echo ''; + switch ($record['type']) + { + case 'uint': + case 'float': + case 'string': + $ro_or_rw = $can_update ? "name=${i}_value" : 'disabled'; + echo ""; + break; + case 'date': + $ro_or_rw = $can_update ? "name=${i}_value" : 'disabled'; + $date_value = $record['value'] ? datetimestrFromTimestamp ($record['value']) : ''; + echo ""; + break; + case 'dict': + $ro_or_rw = $can_update ? array ('name' => "${i}_value") : array ('name' => "${i}_value", 'disabled' => 1); + $chapter = readChapter ($record['chapter_id'], 'o'); + $chapter[0] = '-- NOT SET --'; + $chapter = cookOptgroups ($chapter, $objtype_id, $record['key']); + printNiftySelect ($chapter, $ro_or_rw, $record['key']); + break; + default: + throw new InvalidArgException ('record[type]', $record['type']); + } // switch + if ($can_update) + { + echo ""; + $i++; + } + echo ''; + } // foreach + echo ""; +} + function renderEditRowForm ($row_id) { $row = getRowInfo ($row_id); @@ -745,39 +800,7 @@ function renderEditRowForm ($row_id) printSelect ($locations, array ('name' => 'location_id'), $row['location_id']); echo "\n"; echo " Name (required):\n"; - - // optional attributes - $values = getAttrValuesSorted ($row_id); - $num_attrs = count ($values); - echo "\n"; - $i = 0; - foreach ($values as $record) - { - echo ""; - echo ''; - if ($record['value'] != '') - echo getOpLink (array('op'=>'clearSticker', 'attr_id'=>$record['id']), '', 'clear', 'Clear value', 'need-confirmation'); - else - echo ' '; - echo ''; - echo "${record['name']}:"; - switch ($record['type']) - { - case 'uint': - case 'float': - case 'string': - echo ""; - break; - case 'dict': - $chapter = readChapter ($record['chapter_id'], 'o'); - $chapter[0] = '-- NOT SET --'; - $chapter = cookOptgroups ($chapter, 1562, $record['key']); - printNiftySelect ($chapter, array ('name' => "${i}_value"), $record['key']); - break; - } - echo "\n"; - $i++; - } + renderEditAttributeTRs ('updateRow', getAttrValuesSorted ($row_id), 1561); if ($row['count'] == 0) { echo ' Actions:'; @@ -1111,52 +1134,7 @@ function renderEditObjectForm() echo getPopupLink ('objlist', array(), 'findlink', 'attach', 'Select a container'); echo "\n"; } - // optional attributes - $i = 0; - $values = getAttrValuesSorted ($object_id); - if (count($values) > 0) - { - foreach ($values as $record) - { - if (! permitted (NULL, NULL, NULL, array ( - array ('tag' => '$attr_' . $record['id']), - array ('tag' => '$any_op'), - ))) - continue; - echo ""; - echo ''; - if ($record['value'] != '') - echo getOpLink (array('op'=>'clearSticker', 'attr_id'=>$record['id']), '', 'clear', 'Clear value', 'need-confirmation'); - else - echo ' '; - echo ''; - echo "${record['name']}"; - if ($record['type'] == 'date') - echo ' (' . datetimeFormatHint (getConfigVar ('DATETIME_FORMAT')) . ')'; - echo ':'; - switch ($record['type']) - { - case 'uint': - case 'float': - case 'string': - echo ""; - break; - case 'dict': - $chapter = readChapter ($record['chapter_id'], 'o'); - $chapter[0] = '-- NOT SET --'; - $chapter = cookOptgroups ($chapter, $object['objtype_id'], $record['key']); - printNiftySelect ($chapter, array ('name' => "${i}_value"), $record['key']); - break; - case 'date': - $date_value = $record['value'] ? datetimestrFromTimestamp ($record['value']) : ''; - echo ""; - break; - } - echo "\n"; - $i++; - } - } - echo ' Has problems: Tags:"; printTagsPicker (); echo "\n"; - // optional attributes - $values = getAttrValuesSorted ($rack_id); - $num_attrs = count($values); - $num_attrs = $num_attrs-2; // subtract for the 'height' and 'sort_order' attributes - echo "\n"; - $i = 0; - foreach ($values as $record) - { - // Skip the 'height' attribute as it's already displayed as a required field - // Also skip the 'sort_order' attribute - if ($record['id'] == 27 || $record['id'] == 29) - continue; - echo ""; - echo ''; - if ($record['value'] != '') - echo getOpLink (array('op'=>'clearSticker', 'attr_id'=>$record['id']), '', 'clear', 'Clear value', 'need-confirmation'); - else - echo ' '; - echo ''; - echo "${record['name']}:"; - switch ($record['type']) - { - case 'uint': - case 'float': - case 'string': - echo ""; - break; - case 'dict': - $chapter = readChapter ($record['chapter_id'], 'o'); - $chapter[0] = '-- NOT SET --'; - $chapter = cookOptgroups ($chapter, 1560, $record['key']); - printNiftySelect ($chapter, array ('name' => "${i}_value"), $record['key']); - break; - } - echo "\n"; - $i++; - } + renderEditAttributeTRs ('updateRack', getAttrValuesSorted ($rack_id), 1560, array (27, 29)); echo " Has problems: Tags:"; printTagsPicker (); echo "\n"; - // optional attributes - $values = getAttrValuesSorted ($location_id); - $num_attrs = count($values); - echo "\n"; - $i = 0; - foreach ($values as $record) - { - echo ""; - echo ''; - if ($record['value'] != '') - echo getOpLink (array ('op'=>'clearSticker', 'attr_id'=>$record['id']), '', 'clear', 'Clear value', 'need-confirmation'); - else - echo ' '; - echo ''; - echo "${record['name']}:"; - switch ($record['type']) - { - case 'uint': - case 'float': - case 'string': - echo ""; - break; - case 'dict': - $chapter = readChapter ($record['chapter_id'], 'o'); - $chapter[0] = '-- NOT SET --'; - $chapter = cookOptgroups ($chapter, 1562, $record['key']); - printNiftySelect ($chapter, array ('name' => "${i}_value"), $record['key']); - break; - } - echo "\n"; - $i++; - } + renderEditAttributeTRs ('updateLocation', getAttrValuesSorted ($location_id), 1562); echo '' . ' ' . '' . diff --git a/wwwroot/inc/ophandlers.php b/wwwroot/inc/ophandlers.php index ffc978b96..da9486f7b 100644 --- a/wwwroot/inc/ophandlers.php +++ b/wwwroot/inc/ophandlers.php @@ -1374,7 +1374,7 @@ function updateObjectAttributes ($object_id) { $type_id = getObjectType ($object_id); $oldvalues = getAttrValues ($object_id); - $num_attrs = array_key_exists ('num_attrs', $_REQUEST) ? genericAssertion ('num_attrs', 'uint0') : 0; + $num_attrs = genericAssertion ('num_attrs', 'uint0'); for ($i = 0; $i < $num_attrs; $i++) { $attr_id = genericAssertion ("${i}_attr_id", 'uint'); @@ -1382,10 +1382,10 @@ function updateObjectAttributes ($object_id) throw new InvalidRequestArgException ('attr_id', $attr_id, 'malformed request'); $value = genericAssertion ("${i}_value", 'string0'); - // If the object is a rack, skip certain attributes as they are handled elsewhere - // (height, sort_order) + // If the object is a rack, certain attributes (height, sort_order) never normally + // appear in this subset of the request arguments as they are processed elsewhere. if ($type_id == 1560 && ($attr_id == 27 || $attr_id == 29)) - continue; + throw new RackTablesError ('unexpected special meaning attr_id', RackTablesError::INTERNAL); // Delete attribute and move on, when the field is empty or if the field // type is a dictionary and it is the "--NOT SET--" value of 0. From e9446e3b20e7df0e47e918d1baa91b1248742c81 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 23 Jun 2017 16:05:09 +0100 Subject: [PATCH 033/138] don't call getConfigVar('EXT_IPV4_VIEW') too often Specifically, not inside foreach. * renderObject() * renderIPForObject() --- wwwroot/inc/interface.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index 89026b425..e40e67d42 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -1485,7 +1485,7 @@ function renderObject ($object_id) { startPortlet ('IP addresses'); echo "\n"; - if (getConfigVar ('EXT_IPV4_VIEW') == 'yes') + if ('yes' == $ext_ipv4_view = getConfigVar ('EXT_IPV4_VIEW')) echo "\n"; else echo "\n"; @@ -1513,7 +1513,7 @@ function renderObject ($object_id) $is_first_row = FALSE; } echo $rendered_alloc['td_ip']; - if (getConfigVar ('EXT_IPV4_VIEW') == 'yes') + if ($ext_ipv4_view == 'yes') { echo $rendered_alloc['td_network']; echo $rendered_alloc['td_routed_by']; @@ -1844,6 +1844,7 @@ function printNewItemTR ($default_type, $object_id) $alloc_list = ''; // most of the output is stored here $used_alloc_types = array(); + $ext_ipv4_view = getConfigVar ('EXT_IPV4_VIEW'); foreach (getObjectIPAllocations ($object_id) as $alloc) { if (! isset ($used_alloc_types[$alloc['type']])) @@ -1857,7 +1858,7 @@ function printNewItemTR ($default_type, $object_id) $alloc_list .= ""; $alloc_list .= ""; $alloc_list .= $rendered_alloc['td_ip']; - if (getConfigVar ('EXT_IPV4_VIEW') == 'yes') + if ($ext_ipv4_view == 'yes') { $alloc_list .= $rendered_alloc['td_network']; $alloc_list .= $rendered_alloc['td_routed_by']; From 3a24387228c849fb44f2a6e61a104bbf53684f74 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Tue, 27 Jun 2017 13:28:20 +0100 Subject: [PATCH 034/138] renderObject(): make rackspace portlet conditional Original idea by Lucas Aimaretto. --- ChangeLog | 1 + wwwroot/inc/interface.php | 19 +++++++++++-------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index e1503553e..062ec47a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ bugfix: date attributes now can be set for racks, rows and locations 0.20.14 update: cover comments too in IPv4 & IPv6 search (Mantis#1773 by Fred Stuck) + update: suppress the rackspace portlet column if it is empty 0.20.13 2017-05-12 update: fix performance for pages with images (GH#190 by Michael A. Mikhailov) update: improve SNMP support for Brocade devices (GH#180 by Chris Jones) diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index e40e67d42..c9bdeed92 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -1362,7 +1362,7 @@ function renderObject ($object_id) // Main layout starts. echo "
OS interfaceIP addressnetworkrouted bypeers
OS interfaceIP addresspeers
" . getOpLink (array ('op' => 'del', 'ip' => $alloc['addrinfo']['ip']), '', 'delete', 'Delete this IP address') . "" . $rendered_alloc['td_name_suffix'] . "
"; echo "\n"; - // left column with uknown number of portlets + // A mandatory left column with varying number of portlets. echo "\n"; - // After left column we have (surprise!) right column with rackspace portlet only. - echo "'; } - echo ""; - echo "

${info['dname']}

"; // display summary portlet @@ -1586,19 +1586,22 @@ function renderObject ($object_id) renderSLBTriplets ($info); echo ""; - if (!in_array($info['objtype_id'], $virtual_obj_types)) + // A conditional right column with the rackspace portlet only. + if + ( + ! in_array ($info['objtype_id'], $virtual_obj_types) && + count ($rack_ids = getResidentRacksData ($object_id, FALSE)) + ) { - // rackspace portlet + echo ''; startPortlet ('rackspace allocation'); - foreach (getResidentRacksData ($object_id, FALSE) as $rack_id) + foreach ($rack_ids as $rack_id) renderRack ($rack_id, $object_id); echo '
'; finishPortlet(); + echo '
\n"; + echo "\n"; } function renderRackMultiSelect ($sname, $racks, $selected) From 1c48fd7022464603f85e68eb6e8a3b6bc505d9ff Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Sun, 2 Jul 2017 15:48:02 +0100 Subject: [PATCH 035/138] upgrade CodeMirror from 5.26.0 to 5.27.4 --- wwwroot/css/codemirror/codemirror.css | 2 +- wwwroot/js/codemirror/codemirror.js | 711 +++++++++++++++----------- 2 files changed, 426 insertions(+), 287 deletions(-) diff --git a/wwwroot/css/codemirror/codemirror.css b/wwwroot/css/codemirror/codemirror.css index b962b3837..b008351a6 100644 --- a/wwwroot/css/codemirror/codemirror.css +++ b/wwwroot/css/codemirror/codemirror.css @@ -119,7 +119,7 @@ .cm-s-default .cm-property, .cm-s-default .cm-operator {} .cm-s-default .cm-variable-2 {color: #05a;} -.cm-s-default .cm-variable-3 {color: #085;} +.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;} .cm-s-default .cm-comment {color: #a50;} .cm-s-default .cm-string {color: #a11;} .cm-s-default .cm-string-2 {color: #f50;} diff --git a/wwwroot/js/codemirror/codemirror.js b/wwwroot/js/codemirror/codemirror.js index 9f51ccf25..9e084ffb7 100644 --- a/wwwroot/js/codemirror/codemirror.js +++ b/wwwroot/js/codemirror/codemirror.js @@ -1493,12 +1493,13 @@ function startState(mode, a1, a2) { // Fed to the mode parsers, provides helper functions to make // parsers more succinct. -var StringStream = function(string, tabSize) { +var StringStream = function(string, tabSize, lineOracle) { this.pos = this.start = 0 this.string = string this.tabSize = tabSize || 8 this.lastColumnPos = this.lastColumnValue = 0 this.lineStart = 0 + this.lineOracle = lineOracle }; StringStream.prototype.eol = function () {return this.pos >= this.string.length}; @@ -1565,23 +1566,65 @@ StringStream.prototype.hideFirstChars = function (n, inner) { try { return inner() } finally { this.lineStart -= n } }; +StringStream.prototype.lookAhead = function (n) { + var oracle = this.lineOracle + return oracle && oracle.lookAhead(n) +}; + +var SavedContext = function(state, lookAhead) { + this.state = state + this.lookAhead = lookAhead +}; + +var Context = function(doc, state, line, lookAhead) { + this.state = state + this.doc = doc + this.line = line + this.maxLookAhead = lookAhead || 0 +}; + +Context.prototype.lookAhead = function (n) { + var line = this.doc.getLine(this.line + n) + if (line != null && n > this.maxLookAhead) { this.maxLookAhead = n } + return line +}; + +Context.prototype.nextLine = function () { + this.line++ + if (this.maxLookAhead > 0) { this.maxLookAhead-- } +}; + +Context.fromSaved = function (doc, saved, line) { + if (saved instanceof SavedContext) + { return new Context(doc, copyState(doc.mode, saved.state), line, saved.lookAhead) } + else + { return new Context(doc, copyState(doc.mode, saved), line) } +}; + +Context.prototype.save = function (copy) { + var state = copy !== false ? copyState(this.doc.mode, this.state) : this.state + return this.maxLookAhead > 0 ? new SavedContext(state, this.maxLookAhead) : state +}; + // Compute a style array (an array starting with a mode generation // -- for invalidation -- followed by pairs of end positions and // style strings), which is used to highlight the tokens on the // line. -function highlightLine(cm, line, state, forceToEnd) { +function highlightLine(cm, line, context, forceToEnd) { // A styles array always starts with a number identifying the // mode/overlays that it is based on (for easy invalidation). var st = [cm.state.modeGen], lineClasses = {} // Compute the base array of styles - runMode(cm, line.text, cm.doc.mode, state, function (end, style) { return st.push(end, style); }, - lineClasses, forceToEnd) + runMode(cm, line.text, cm.doc.mode, context, function (end, style) { return st.push(end, style); }, + lineClasses, forceToEnd) + var state = context.state // Run overlays, adjust style array. var loop = function ( o ) { var overlay = cm.state.overlays[o], i = 1, at = 0 - runMode(cm, line.text, overlay.mode, true, function (end, style) { + context.state = true + runMode(cm, line.text, overlay.mode, context, function (end, style) { var start = i // Ensure there's a token end at the current position, and that i points at it while (at < end) { @@ -1605,49 +1648,54 @@ function highlightLine(cm, line, state, forceToEnd) { }; for (var o = 0; o < cm.state.overlays.length; ++o) loop( o ); + context.state = state return {styles: st, classes: lineClasses.bgClass || lineClasses.textClass ? lineClasses : null} } function getLineStyles(cm, line, updateFrontier) { if (!line.styles || line.styles[0] != cm.state.modeGen) { - var state = getStateBefore(cm, lineNo(line)) - var result = highlightLine(cm, line, line.text.length > cm.options.maxHighlightLength ? copyState(cm.doc.mode, state) : state) - line.stateAfter = state + var context = getContextBefore(cm, lineNo(line)) + var resetState = line.text.length > cm.options.maxHighlightLength && copyState(cm.doc.mode, context.state) + var result = highlightLine(cm, line, context) + if (resetState) { context.state = resetState } + line.stateAfter = context.save(!resetState) line.styles = result.styles if (result.classes) { line.styleClasses = result.classes } else if (line.styleClasses) { line.styleClasses = null } - if (updateFrontier === cm.doc.frontier) { cm.doc.frontier++ } + if (updateFrontier === cm.doc.highlightFrontier) + { cm.doc.modeFrontier = Math.max(cm.doc.modeFrontier, ++cm.doc.highlightFrontier) } } return line.styles } -function getStateBefore(cm, n, precise) { +function getContextBefore(cm, n, precise) { var doc = cm.doc, display = cm.display - if (!doc.mode.startState) { return true } - var pos = findStartLine(cm, n, precise), state = pos > doc.first && getLine(doc, pos-1).stateAfter - if (!state) { state = startState(doc.mode) } - else { state = copyState(doc.mode, state) } - doc.iter(pos, n, function (line) { - processLine(cm, line.text, state) - var save = pos == n - 1 || pos % 5 == 0 || pos >= display.viewFrom && pos < display.viewTo - line.stateAfter = save ? copyState(doc.mode, state) : null - ++pos + if (!doc.mode.startState) { return new Context(doc, true, n) } + var start = findStartLine(cm, n, precise) + var saved = start > doc.first && getLine(doc, start - 1).stateAfter + var context = saved ? Context.fromSaved(doc, saved, start) : new Context(doc, startState(doc.mode), start) + + doc.iter(start, n, function (line) { + processLine(cm, line.text, context) + var pos = context.line + line.stateAfter = pos == n - 1 || pos % 5 == 0 || pos >= display.viewFrom && pos < display.viewTo ? context.save() : null + context.nextLine() }) - if (precise) { doc.frontier = pos } - return state + if (precise) { doc.modeFrontier = context.line } + return context } // Lightweight form of highlight -- proceed over this line and // update state, but don't save a style array. Used for lines that // aren't currently visible. -function processLine(cm, text, state, startAt) { +function processLine(cm, text, context, startAt) { var mode = cm.doc.mode - var stream = new StringStream(text, cm.options.tabSize) + var stream = new StringStream(text, cm.options.tabSize, context) stream.start = stream.pos = startAt || 0 - if (text == "") { callBlankLine(mode, state) } + if (text == "") { callBlankLine(mode, context.state) } while (!stream.eol()) { - readToken(mode, stream, state) + readToken(mode, stream, context.state) stream.start = stream.pos } } @@ -1668,26 +1716,26 @@ function readToken(mode, stream, state, inner) { throw new Error("Mode " + mode.name + " failed to advance stream.") } +var Token = function(stream, type, state) { + this.start = stream.start; this.end = stream.pos + this.string = stream.current() + this.type = type || null + this.state = state +}; + // Utility for getTokenAt and getLineTokens function takeToken(cm, pos, precise, asArray) { - var getObj = function (copy) { return ({ - start: stream.start, end: stream.pos, - string: stream.current(), - type: style || null, - state: copy ? copyState(doc.mode, state) : state - }); } - var doc = cm.doc, mode = doc.mode, style pos = clipPos(doc, pos) - var line = getLine(doc, pos.line), state = getStateBefore(cm, pos.line, precise) - var stream = new StringStream(line.text, cm.options.tabSize), tokens + var line = getLine(doc, pos.line), context = getContextBefore(cm, pos.line, precise) + var stream = new StringStream(line.text, cm.options.tabSize, context), tokens if (asArray) { tokens = [] } while ((asArray || stream.pos < pos.ch) && !stream.eol()) { stream.start = stream.pos - style = readToken(mode, stream, state) - if (asArray) { tokens.push(getObj(true)) } + style = readToken(mode, stream, context.state) + if (asArray) { tokens.push(new Token(stream, style, copyState(doc.mode, context.state))) } } - return asArray ? tokens : getObj() + return asArray ? tokens : new Token(stream, style, context.state) } function extractLineClasses(type, output) { @@ -1705,21 +1753,21 @@ function extractLineClasses(type, output) { } // Run the given mode's parser over a line, calling f for each token. -function runMode(cm, text, mode, state, f, lineClasses, forceToEnd) { +function runMode(cm, text, mode, context, f, lineClasses, forceToEnd) { var flattenSpans = mode.flattenSpans if (flattenSpans == null) { flattenSpans = cm.options.flattenSpans } var curStart = 0, curStyle = null - var stream = new StringStream(text, cm.options.tabSize), style + var stream = new StringStream(text, cm.options.tabSize, context), style var inner = cm.options.addModeClass && [null] - if (text == "") { extractLineClasses(callBlankLine(mode, state), lineClasses) } + if (text == "") { extractLineClasses(callBlankLine(mode, context.state), lineClasses) } while (!stream.eol()) { if (stream.pos > cm.options.maxHighlightLength) { flattenSpans = false - if (forceToEnd) { processLine(cm, text, state, stream.pos) } + if (forceToEnd) { processLine(cm, text, context, stream.pos) } stream.pos = text.length style = null } else { - style = extractLineClasses(readToken(mode, stream, state, inner), lineClasses) + style = extractLineClasses(readToken(mode, stream, context.state, inner), lineClasses) } if (inner) { var mName = inner[0].name @@ -1754,8 +1802,9 @@ function findStartLine(cm, n, precise) { var lim = precise ? -1 : n - (cm.doc.mode.innerMode ? 1000 : 100) for (var search = n; search > lim; --search) { if (search <= doc.first) { return doc.first } - var line = getLine(doc, search - 1) - if (line.stateAfter && (!precise || search <= doc.frontier)) { return search } + var line = getLine(doc, search - 1), after = line.stateAfter + if (after && (!precise || search + (after instanceof SavedContext ? after.lookAhead : 0) <= doc.modeFrontier)) + { return search } var indented = countColumn(line.text, null, cm.options.tabSize) if (minline == null || minindent > indented) { minline = search - 1 @@ -1765,6 +1814,23 @@ function findStartLine(cm, n, precise) { return minline } +function retreatFrontier(doc, n) { + doc.modeFrontier = Math.min(doc.modeFrontier, n) + if (doc.highlightFrontier < n - 10) { return } + var start = doc.first + for (var line = n - 1; line > start; line--) { + var saved = getLine(doc, line).stateAfter + // change is on 3 + // state on line 1 looked ahead 2 -- so saw 3 + // test 1 + 2 < 3 should cover this + if (saved && (!(saved instanceof SavedContext) || line + saved.lookAhead < n)) { + start = line + 1 + break + } + } + doc.highlightFrontier = Math.min(doc.highlightFrontier, start) +} + // LINE DATA STRUCTURE // Line objects. These hold state related to a line, including @@ -2817,20 +2883,30 @@ function coordsCharInner(cm, lineObj, lineNo, x, y) { ;var assign; ((assign = wrappedLineExtent(cm, lineObj, preparedMeasure, y), begin = assign.begin, end = assign.end, assign)) } - pos = new Pos(lineNo, begin) + pos = new Pos(lineNo, Math.floor(begin + (end - begin) / 2)) var beginLeft = cursorCoords(cm, pos, "line", lineObj, preparedMeasure).left var dir = beginLeft < x ? 1 : -1 var prevDiff, diff = beginLeft - x, prevPos - do { + var steps = Math.ceil((end - begin) / 4) + outer: do { prevDiff = diff prevPos = pos - pos = moveVisually(cm, lineObj, pos, dir) - if (pos == null || pos.ch < begin || end <= (pos.sticky == "before" ? pos.ch - 1 : pos.ch)) { - pos = prevPos - break + var i = 0 + for (; i < steps; ++i) { + var prevPos$1 = pos + pos = moveVisually(cm, lineObj, pos, dir) + if (pos == null || pos.ch < begin || end <= (pos.sticky == "before" ? pos.ch - 1 : pos.ch)) { + pos = prevPos$1 + break outer + } } diff = cursorCoords(cm, pos, "line", lineObj, preparedMeasure).left - x - } while ((dir < 0) != (diff < 0) && (Math.abs(diff) <= Math.abs(prevDiff))) + if (steps > 1) { + var diff_change_per_step = Math.abs(diff - prevDiff) / steps + steps = Math.min(steps, Math.ceil(Math.abs(diff) / diff_change_per_step)) + dir = diff < 0 ? 1 : -1 + } + } while (diff != 0 && (steps > 1 || ((dir < 0) != (diff < 0) && (Math.abs(diff) <= Math.abs(prevDiff))))) if (Math.abs(diff) > Math.abs(prevDiff)) { if ((diff < 0) == (prevDiff < 0)) { throw new Error("Broke out of infinite loop in coordsCharInner") } pos = prevPos @@ -3164,7 +3240,7 @@ function updateHeightsInViewport(cm) { } var diff = cur.line.height - height if (height < 2) { height = textHeight(display) } - if (diff > .001 || diff < -.001) { + if (diff > .005 || diff < -.005) { updateLineHeight(cur.line, height) updateWidgetHeight(cur.line) if (cur.rest) { for (var j = 0; j < cur.rest.length; j++) @@ -3271,6 +3347,13 @@ function maybeScrollWindow(cm, rect) { function scrollPosIntoView(cm, pos, end, margin) { if (margin == null) { margin = 0 } var rect + if (!cm.options.lineWrapping && pos == end) { + // Set pos and end to the cursor positions around the character pos sticks to + // If pos.sticky == "before", that is around pos.ch - 1, otherwise around pos.ch + // If pos == Pos(_, 0, "before"), pos and end are unchanged + pos = pos.ch ? Pos(pos.line, pos.sticky == "before" ? pos.ch - 1 : pos.ch, "after") : pos + end = pos.sticky == "before" ? Pos(pos.line, pos.ch + 1, "before") : pos + } for (var limit = 0; limit < 5; limit++) { var changed = false var coords = cursorCoords(cm, pos) @@ -3345,12 +3428,8 @@ function addToScrollTop(cm, top) { // shown. function ensureCursorVisible(cm) { resolveScrollToPos(cm) - var cur = cm.getCursor(), from = cur, to = cur - if (!cm.options.lineWrapping) { - from = cur.ch ? Pos(cur.line, cur.ch - 1) : cur - to = Pos(cur.line, cur.ch + 1) - } - cm.curOp.scrollToPos = {from: from, to: to, margin: cm.options.cursorScrollMargin} + var cur = cm.getCursor() + cm.curOp.scrollToPos = {from: cur, to: cur, margin: cm.options.cursorScrollMargin} } function scrollToCoords(cm, x, y) { @@ -3941,22 +4020,23 @@ function countDirtyView(cm) { // HIGHLIGHT WORKER function startWorker(cm, time) { - if (cm.doc.mode.startState && cm.doc.frontier < cm.display.viewTo) + if (cm.doc.highlightFrontier < cm.display.viewTo) { cm.state.highlight.set(time, bind(highlightWorker, cm)) } } function highlightWorker(cm) { var doc = cm.doc - if (doc.frontier < doc.first) { doc.frontier = doc.first } - if (doc.frontier >= cm.display.viewTo) { return } + if (doc.highlightFrontier >= cm.display.viewTo) { return } var end = +new Date + cm.options.workTime - var state = copyState(doc.mode, getStateBefore(cm, doc.frontier)) + var context = getContextBefore(cm, doc.highlightFrontier) var changedLines = [] - doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function (line) { - if (doc.frontier >= cm.display.viewFrom) { // Visible - var oldStyles = line.styles, tooLong = line.text.length > cm.options.maxHighlightLength - var highlighted = highlightLine(cm, line, tooLong ? copyState(doc.mode, state) : state, true) + doc.iter(context.line, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function (line) { + if (context.line >= cm.display.viewFrom) { // Visible + var oldStyles = line.styles + var resetState = line.text.length > cm.options.maxHighlightLength ? copyState(doc.mode, context.state) : null + var highlighted = highlightLine(cm, line, context, true) + if (resetState) { context.state = resetState } line.styles = highlighted.styles var oldCls = line.styleClasses, newCls = highlighted.classes if (newCls) { line.styleClasses = newCls } @@ -3964,19 +4044,22 @@ function highlightWorker(cm) { var ischange = !oldStyles || oldStyles.length != line.styles.length || oldCls != newCls && (!oldCls || !newCls || oldCls.bgClass != newCls.bgClass || oldCls.textClass != newCls.textClass) for (var i = 0; !ischange && i < oldStyles.length; ++i) { ischange = oldStyles[i] != line.styles[i] } - if (ischange) { changedLines.push(doc.frontier) } - line.stateAfter = tooLong ? state : copyState(doc.mode, state) + if (ischange) { changedLines.push(context.line) } + line.stateAfter = context.save() + context.nextLine() } else { if (line.text.length <= cm.options.maxHighlightLength) - { processLine(cm, line.text, state) } - line.stateAfter = doc.frontier % 5 == 0 ? copyState(doc.mode, state) : null + { processLine(cm, line.text, context) } + line.stateAfter = context.line % 5 == 0 ? context.save() : null + context.nextLine() } - ++doc.frontier if (+new Date > end) { startWorker(cm, cm.options.workDelay) return true } }) + doc.highlightFrontier = context.line + doc.modeFrontier = Math.max(doc.modeFrontier, context.line) if (changedLines.length) { runInOp(cm, function () { for (var i = 0; i < changedLines.length; i++) { regLineChange(cm, changedLines[i], "text") } @@ -4147,6 +4230,7 @@ function postUpdateDisplay(cm, update) { updateSelection(cm) updateScrollbars(cm, barMeasure) setDocumentHeight(cm, barMeasure) + update.force = false } update.signal(cm, "update", cm) @@ -4509,7 +4593,7 @@ function resetModeState(cm) { if (line.stateAfter) { line.stateAfter = null } if (line.styles) { line.styles = null } }) - cm.doc.frontier = cm.doc.first + cm.doc.modeFrontier = cm.doc.highlightFrontier = cm.doc.first startWorker(cm, 100) cm.state.modeGen++ if (cm.curOp) { regChange(cm) } @@ -4843,8 +4927,8 @@ function copyHistoryArray(events, newGroup, instantiateSel) { // include a given position (and optionally a second position). // Otherwise, simply returns the range between the given positions. // Used for cursor motion and such. -function extendRange(doc, range, head, other) { - if (doc.cm && doc.cm.display.shift || doc.extend) { +function extendRange(range, head, other, extend) { + if (extend) { var anchor = range.anchor if (other) { var posBefore = cmp(head, anchor) < 0 @@ -4862,16 +4946,18 @@ function extendRange(doc, range, head, other) { } // Extend the primary selection range, discard the rest. -function extendSelection(doc, head, other, options) { - setSelection(doc, new Selection([extendRange(doc, doc.sel.primary(), head, other)], 0), options) +function extendSelection(doc, head, other, options, extend) { + if (extend == null) { extend = doc.cm && (doc.cm.display.shift || doc.extend) } + setSelection(doc, new Selection([extendRange(doc.sel.primary(), head, other, extend)], 0), options) } // Extend all selections (pos is an array of selections with length // equal the number of selections) function extendSelections(doc, heads, options) { var out = [] + var extend = doc.cm && (doc.cm.display.shift || doc.extend) for (var i = 0; i < doc.sel.ranges.length; i++) - { out[i] = extendRange(doc, doc.sel.ranges[i], heads[i], null) } + { out[i] = extendRange(doc.sel.ranges[i], heads[i], null, extend) } var newSel = normalizeSelection(out, doc.sel.primIndex) setSelection(doc, newSel, options) } @@ -5255,8 +5341,7 @@ function makeChangeSingleDocInEditor(cm, change, spans) { if (recomputeMaxLength) { cm.curOp.updateMaxLine = true } } - // Adjust frontier, schedule worker - doc.frontier = Math.min(doc.frontier, from.line) + retreatFrontier(doc, from.line) startWorker(cm, 400) var lendiff = change.text.length - (to.line - from.line) - 1 @@ -5366,7 +5451,7 @@ function changeLine(doc, handle, changeType, op) { // // See also http://marijnhaverbeke.nl/blog/codemirror-line-tree.html -var LeafChunk = function(lines) { +function LeafChunk(lines) { var this$1 = this; this.lines = lines @@ -5377,47 +5462,49 @@ var LeafChunk = function(lines) { height += lines[i].height } this.height = height -}; +} -LeafChunk.prototype.chunkSize = function () { return this.lines.length }; +LeafChunk.prototype = { + chunkSize: function chunkSize() { return this.lines.length }, -// Remove the n lines at offset 'at'. -LeafChunk.prototype.removeInner = function (at, n) { + // Remove the n lines at offset 'at'. + removeInner: function removeInner(at, n) { var this$1 = this; - for (var i = at, e = at + n; i < e; ++i) { - var line = this$1.lines[i] - this$1.height -= line.height - cleanUpLine(line) - signalLater(line, "delete") - } - this.lines.splice(at, n) -}; + for (var i = at, e = at + n; i < e; ++i) { + var line = this$1.lines[i] + this$1.height -= line.height + cleanUpLine(line) + signalLater(line, "delete") + } + this.lines.splice(at, n) + }, -// Helper used to collapse a small branch into a single leaf. -LeafChunk.prototype.collapse = function (lines) { - lines.push.apply(lines, this.lines) -}; + // Helper used to collapse a small branch into a single leaf. + collapse: function collapse(lines) { + lines.push.apply(lines, this.lines) + }, -// Insert the given array of lines at offset 'at', count them as -// having the given height. -LeafChunk.prototype.insertInner = function (at, lines, height) { + // Insert the given array of lines at offset 'at', count them as + // having the given height. + insertInner: function insertInner(at, lines, height) { var this$1 = this; - this.height += height - this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at)) - for (var i = 0; i < lines.length; ++i) { lines[i].parent = this$1 } -}; + this.height += height + this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at)) + for (var i = 0; i < lines.length; ++i) { lines[i].parent = this$1 } + }, -// Used to iterate over a part of the tree. -LeafChunk.prototype.iterN = function (at, n, op) { + // Used to iterate over a part of the tree. + iterN: function iterN(at, n, op) { var this$1 = this; - for (var e = at + n; at < e; ++at) - { if (op(this$1.lines[at])) { return true } } -}; + for (var e = at + n; at < e; ++at) + { if (op(this$1.lines[at])) { return true } } + } +} -var BranchChunk = function(children) { +function BranchChunk(children) { var this$1 = this; this.children = children @@ -5430,106 +5517,108 @@ var BranchChunk = function(children) { this.size = size this.height = height this.parent = null -}; +} -BranchChunk.prototype.chunkSize = function () { return this.size }; +BranchChunk.prototype = { + chunkSize: function chunkSize() { return this.size }, -BranchChunk.prototype.removeInner = function (at, n) { + removeInner: function removeInner(at, n) { var this$1 = this; - this.size -= n - for (var i = 0; i < this.children.length; ++i) { - var child = this$1.children[i], sz = child.chunkSize() - if (at < sz) { - var rm = Math.min(n, sz - at), oldHeight = child.height - child.removeInner(at, rm) - this$1.height -= oldHeight - child.height - if (sz == rm) { this$1.children.splice(i--, 1); child.parent = null } - if ((n -= rm) == 0) { break } - at = 0 - } else { at -= sz } - } - // If the result is smaller than 25 lines, ensure that it is a - // single leaf node. - if (this.size - n < 25 && - (this.children.length > 1 || !(this.children[0] instanceof LeafChunk))) { - var lines = [] - this.collapse(lines) - this.children = [new LeafChunk(lines)] - this.children[0].parent = this - } -}; + this.size -= n + for (var i = 0; i < this.children.length; ++i) { + var child = this$1.children[i], sz = child.chunkSize() + if (at < sz) { + var rm = Math.min(n, sz - at), oldHeight = child.height + child.removeInner(at, rm) + this$1.height -= oldHeight - child.height + if (sz == rm) { this$1.children.splice(i--, 1); child.parent = null } + if ((n -= rm) == 0) { break } + at = 0 + } else { at -= sz } + } + // If the result is smaller than 25 lines, ensure that it is a + // single leaf node. + if (this.size - n < 25 && + (this.children.length > 1 || !(this.children[0] instanceof LeafChunk))) { + var lines = [] + this.collapse(lines) + this.children = [new LeafChunk(lines)] + this.children[0].parent = this + } + }, -BranchChunk.prototype.collapse = function (lines) { + collapse: function collapse(lines) { var this$1 = this; - for (var i = 0; i < this.children.length; ++i) { this$1.children[i].collapse(lines) } -}; + for (var i = 0; i < this.children.length; ++i) { this$1.children[i].collapse(lines) } + }, -BranchChunk.prototype.insertInner = function (at, lines, height) { + insertInner: function insertInner(at, lines, height) { var this$1 = this; - this.size += lines.length - this.height += height - for (var i = 0; i < this.children.length; ++i) { - var child = this$1.children[i], sz = child.chunkSize() - if (at <= sz) { - child.insertInner(at, lines, height) - if (child.lines && child.lines.length > 50) { - // To avoid memory thrashing when child.lines is huge (e.g. first view of a large file), it's never spliced. - // Instead, small slices are taken. They're taken in order because sequential memory accesses are fastest. - var remaining = child.lines.length % 25 + 25 - for (var pos = remaining; pos < child.lines.length;) { - var leaf = new LeafChunk(child.lines.slice(pos, pos += 25)) - child.height -= leaf.height - this$1.children.splice(++i, 0, leaf) - leaf.parent = this$1 + this.size += lines.length + this.height += height + for (var i = 0; i < this.children.length; ++i) { + var child = this$1.children[i], sz = child.chunkSize() + if (at <= sz) { + child.insertInner(at, lines, height) + if (child.lines && child.lines.length > 50) { + // To avoid memory thrashing when child.lines is huge (e.g. first view of a large file), it's never spliced. + // Instead, small slices are taken. They're taken in order because sequential memory accesses are fastest. + var remaining = child.lines.length % 25 + 25 + for (var pos = remaining; pos < child.lines.length;) { + var leaf = new LeafChunk(child.lines.slice(pos, pos += 25)) + child.height -= leaf.height + this$1.children.splice(++i, 0, leaf) + leaf.parent = this$1 + } + child.lines = child.lines.slice(0, remaining) + this$1.maybeSpill() } - child.lines = child.lines.slice(0, remaining) - this$1.maybeSpill() + break } - break + at -= sz } - at -= sz - } -}; + }, -// When a node has grown, check whether it should be split. -BranchChunk.prototype.maybeSpill = function () { - if (this.children.length <= 10) { return } - var me = this - do { - var spilled = me.children.splice(me.children.length - 5, 5) - var sibling = new BranchChunk(spilled) - if (!me.parent) { // Become the parent node - var copy = new BranchChunk(me.children) - copy.parent = me - me.children = [copy, sibling] - me = copy - } else { - me.size -= sibling.size - me.height -= sibling.height - var myIndex = indexOf(me.parent.children, me) - me.parent.children.splice(myIndex + 1, 0, sibling) - } - sibling.parent = me.parent - } while (me.children.length > 10) - me.parent.maybeSpill() -}; + // When a node has grown, check whether it should be split. + maybeSpill: function maybeSpill() { + if (this.children.length <= 10) { return } + var me = this + do { + var spilled = me.children.splice(me.children.length - 5, 5) + var sibling = new BranchChunk(spilled) + if (!me.parent) { // Become the parent node + var copy = new BranchChunk(me.children) + copy.parent = me + me.children = [copy, sibling] + me = copy + } else { + me.size -= sibling.size + me.height -= sibling.height + var myIndex = indexOf(me.parent.children, me) + me.parent.children.splice(myIndex + 1, 0, sibling) + } + sibling.parent = me.parent + } while (me.children.length > 10) + me.parent.maybeSpill() + }, -BranchChunk.prototype.iterN = function (at, n, op) { + iterN: function iterN(at, n, op) { var this$1 = this; - for (var i = 0; i < this.children.length; ++i) { - var child = this$1.children[i], sz = child.chunkSize() - if (at < sz) { - var used = Math.min(n, sz - at) - if (child.iterN(at, used, op)) { return true } - if ((n -= used) == 0) { break } - at = 0 - } else { at -= sz } + for (var i = 0; i < this.children.length; ++i) { + var child = this$1.children[i], sz = child.chunkSize() + if (at < sz) { + var used = Math.min(n, sz - at) + if (child.iterN(at, used, op)) { return true } + if ((n -= used) == 0) { break } + at = 0 + } else { at -= sz } + } } -}; +} // Line widgets are block elements displayed above or below a line. @@ -5898,7 +5987,7 @@ var Doc = function(text, mode, firstLine, lineSep, direction) { this.scrollTop = this.scrollLeft = 0 this.cantEdit = false this.cleanGeneration = 1 - this.frontier = firstLine + this.modeFrontier = this.highlightFrontier = firstLine var start = Pos(firstLine, 0) this.sel = simpleSelection(start) this.history = new History(null) @@ -6421,8 +6510,8 @@ function clearDragCursor(cm) { // garbage collected. function forEachCodeMirror(f) { - if (!document.body.getElementsByClassName) { return } - var byClass = document.body.getElementsByClassName("CodeMirror") + if (!document.getElementsByClassName) { return } + var byClass = document.getElementsByClassName("CodeMirror") for (var i = 0; i < byClass.length; i++) { var cm = byClass[i].CodeMirror if (cm) { f(cm) } @@ -6596,11 +6685,8 @@ function isModifierKey(value) { return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod" } -// Look up the name of a key as indicated by an event object. -function keyName(event, noShift) { - if (presto && event.keyCode == 34 && event["char"]) { return false } - var base = keyNames[event.keyCode], name = base - if (name == null || event.altGraphKey) { return false } +function addModifierNames(name, event, noShift) { + var base = name if (event.altKey && base != "Alt") { name = "Alt-" + name } if ((flipCtrlCmd ? event.metaKey : event.ctrlKey) && base != "Ctrl") { name = "Ctrl-" + name } if ((flipCtrlCmd ? event.ctrlKey : event.metaKey) && base != "Cmd") { name = "Cmd-" + name } @@ -6608,6 +6694,14 @@ function keyName(event, noShift) { return name } +// Look up the name of a key as indicated by an event object. +function keyName(event, noShift) { + if (presto && event.keyCode == 34 && event["char"]) { return false } + var name = keyNames[event.keyCode] + if (name == null || event.altGraphKey) { return false } + return addModifierNames(name, event, noShift) +} + function getKeyMap(val) { return typeof val == "string" ? keyMap[val] : val } @@ -6834,6 +6928,9 @@ function lookupKeyForEditor(cm, name, handle) { || lookupKey(name, cm.options.keyMap, handle, cm) } +// Note that, despite the name, this function is also used to check +// for bound mouse clicks. + var stopSeq = new Delayed function dispatchKey(cm, name, e, handle) { var seq = cm.state.keySeq @@ -6945,6 +7042,37 @@ function onKeyPress(e) { cm.display.input.onKeyPress(e) } +var DOUBLECLICK_DELAY = 400 + +var PastClick = function(time, pos, button) { + this.time = time + this.pos = pos + this.button = button +}; + +PastClick.prototype.compare = function (time, pos, button) { + return this.time + DOUBLECLICK_DELAY > time && + cmp(pos, this.pos) == 0 && button == this.button +}; + +var lastClick; +var lastDoubleClick; +function clickRepeat(pos, button) { + var now = +new Date + if (lastDoubleClick && lastDoubleClick.compare(now, pos, button)) { + lastClick = lastDoubleClick = null + return "triple" + } else if (lastClick && lastClick.compare(now, pos, button)) { + lastDoubleClick = new PastClick(now, pos, button) + lastClick = null + return "double" + } else { + lastClick = new PastClick(now, pos, button) + lastDoubleClick = null + return "single" + } +} + // A mouse down can be a single click, double click, triple click, // start of selection drag, start of text drag, new cursor // (ctrl-click), rectangle drag (alt-drag), or xwin @@ -6966,62 +7094,79 @@ function onMouseDown(e) { return } if (clickInGutter(cm, e)) { return } - var start = posFromMouse(cm, e) + var pos = posFromMouse(cm, e), button = e_button(e), repeat = pos ? clickRepeat(pos, button) : "single" window.focus() - switch (e_button(e)) { - case 1: - // #3261: make sure, that we're not starting a second selection - if (cm.state.selectingText) - { cm.state.selectingText(e) } - else if (start) - { leftButtonDown(cm, e, start) } - else if (e_target(e) == display.scroller) - { e_preventDefault(e) } - break - case 2: - if (webkit) { cm.state.lastMiddleDown = +new Date } - if (start) { extendSelection(cm.doc, start) } + // #3261: make sure, that we're not starting a second selection + if (button == 1 && cm.state.selectingText) + { cm.state.selectingText(e) } + + if (pos && handleMappedButton(cm, button, pos, repeat, e)) { return } + + if (button == 1) { + if (pos) { leftButtonDown(cm, pos, repeat, e) } + else if (e_target(e) == display.scroller) { e_preventDefault(e) } + } else if (button == 2) { + if (pos) { extendSelection(cm.doc, pos) } setTimeout(function () { return display.input.focus(); }, 20) - e_preventDefault(e) - break - case 3: + } else if (button == 3) { if (captureRightClick) { onContextMenu(cm, e) } else { delayBlurEvent(cm) } - break } } -var lastClick; -var lastDoubleClick; -function leftButtonDown(cm, e, start) { +function handleMappedButton(cm, button, pos, repeat, event) { + var name = "Click" + if (repeat == "double") { name = "Double" + name } + else if (repeat == "triple") { name = "Triple" + name } + name = (button == 1 ? "Left" : button == 2 ? "Middle" : "Right") + name + + return dispatchKey(cm, addModifierNames(name, event), event, function (bound) { + if (typeof bound == "string") { bound = commands[bound] } + if (!bound) { return false } + var done = false + try { + if (cm.isReadOnly()) { cm.state.suppressEdits = true } + done = bound(cm, pos) != Pass + } finally { + cm.state.suppressEdits = false + } + return done + }) +} + +function configureMouse(cm, repeat, event) { + var option = cm.getOption("configureMouse") + var value = option ? option(cm, repeat, event) : {} + if (value.unit == null) { + var rect = chromeOS ? event.shiftKey && event.metaKey : event.altKey + value.unit = rect ? "rectangle" : repeat == "single" ? "char" : repeat == "double" ? "word" : "line" + } + if (value.extend == null || cm.doc.extend) { value.extend = cm.doc.extend || event.shiftKey } + if (value.addNew == null) { value.addNew = mac ? event.metaKey : event.ctrlKey } + if (value.moveOnDrag == null) { value.moveOnDrag = !(mac ? event.altKey : event.ctrlKey) } + return value +} + +function leftButtonDown(cm, pos, repeat, event) { if (ie) { setTimeout(bind(ensureFocus, cm), 0) } else { cm.curOp.focus = activeElt() } - var now = +new Date, type - if (lastDoubleClick && lastDoubleClick.time > now - 400 && cmp(lastDoubleClick.pos, start) == 0) { - type = "triple" - } else if (lastClick && lastClick.time > now - 400 && cmp(lastClick.pos, start) == 0) { - type = "double" - lastDoubleClick = {time: now, pos: start} - } else { - type = "single" - lastClick = {time: now, pos: start} - } + var behavior = configureMouse(cm, repeat, event) - var sel = cm.doc.sel, modifier = mac ? e.metaKey : e.ctrlKey, contained + var sel = cm.doc.sel, contained if (cm.options.dragDrop && dragAndDrop && !cm.isReadOnly() && - type == "single" && (contained = sel.contains(start)) > -1 && - (cmp((contained = sel.ranges[contained]).from(), start) < 0 || start.xRel > 0) && - (cmp(contained.to(), start) > 0 || start.xRel < 0)) - { leftButtonStartDrag(cm, e, start, modifier) } + repeat == "single" && (contained = sel.contains(pos)) > -1 && + (cmp((contained = sel.ranges[contained]).from(), pos) < 0 || pos.xRel > 0) && + (cmp(contained.to(), pos) > 0 || pos.xRel < 0)) + { leftButtonStartDrag(cm, event, pos, behavior) } else - { leftButtonSelect(cm, e, start, type, modifier) } + { leftButtonSelect(cm, event, pos, behavior) } } // Start a text drag. When it ends, see if any dragging actually // happen, and treat as a click if it didn't. -function leftButtonStartDrag(cm, e, start, modifier) { +function leftButtonStartDrag(cm, event, pos, behavior) { var display = cm.display, moved = false var dragEnd = operation(cm, function (e) { if (webkit) { display.scroller.draggable = false } @@ -7032,8 +7177,8 @@ function leftButtonStartDrag(cm, e, start, modifier) { off(display.scroller, "drop", dragEnd) if (!moved) { e_preventDefault(e) - if (!modifier) - { extendSelection(cm.doc, start) } + if (!behavior.addNew) + { extendSelection(cm.doc, pos, null, null, behavior.extend) } // Work around unexplainable focus problem in IE9 (#2127) and Chrome (#3081) if (webkit || ie && ie_version == 9) { setTimeout(function () {document.body.focus(); display.input.focus()}, 20) } @@ -7042,13 +7187,13 @@ function leftButtonStartDrag(cm, e, start, modifier) { } }) var mouseMove = function(e2) { - moved = moved || Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) >= 10 + moved = moved || Math.abs(event.clientX - e2.clientX) + Math.abs(event.clientY - e2.clientY) >= 10 } var dragStart = function () { return moved = true; } // Let the drag handler handle this. if (webkit) { display.scroller.draggable = true } cm.state.draggingText = dragEnd - dragEnd.copy = mac ? e.altKey : e.ctrlKey + dragEnd.copy = !behavior.moveOnDrag // IE's approach to draggable if (display.scroller.dragDrop) { display.scroller.dragDrop() } on(document, "mouseup", dragEnd) @@ -7060,13 +7205,21 @@ function leftButtonStartDrag(cm, e, start, modifier) { setTimeout(function () { return display.input.focus(); }, 20) } +function rangeForUnit(cm, pos, unit) { + if (unit == "char") { return new Range(pos, pos) } + if (unit == "word") { return cm.findWordAt(pos) } + if (unit == "line") { return new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0))) } + var result = unit(cm, pos) + return new Range(result.from, result.to) +} + // Normal selection, as opposed to text dragging. -function leftButtonSelect(cm, e, start, type, addNew) { +function leftButtonSelect(cm, event, start, behavior) { var display = cm.display, doc = cm.doc - e_preventDefault(e) + e_preventDefault(event) var ourRange, ourIndex, startSel = doc.sel, ranges = startSel.ranges - if (addNew && !e.shiftKey) { + if (behavior.addNew && !behavior.extend) { ourIndex = doc.sel.contains(start) if (ourIndex > -1) { ourRange = ranges[ourIndex] } @@ -7077,28 +7230,19 @@ function leftButtonSelect(cm, e, start, type, addNew) { ourIndex = doc.sel.primIndex } - if (chromeOS ? e.shiftKey && e.metaKey : e.altKey) { - type = "rect" - if (!addNew) { ourRange = new Range(start, start) } - start = posFromMouse(cm, e, true, true) + if (behavior.unit == "rectangle") { + if (!behavior.addNew) { ourRange = new Range(start, start) } + start = posFromMouse(cm, event, true, true) ourIndex = -1 - } else if (type == "double") { - var word = cm.findWordAt(start) - if (cm.display.shift || doc.extend) - { ourRange = extendRange(doc, ourRange, word.anchor, word.head) } - else - { ourRange = word } - } else if (type == "triple") { - var line = new Range(Pos(start.line, 0), clipPos(doc, Pos(start.line + 1, 0))) - if (cm.display.shift || doc.extend) - { ourRange = extendRange(doc, ourRange, line.anchor, line.head) } - else - { ourRange = line } } else { - ourRange = extendRange(doc, ourRange, start) + var range = rangeForUnit(cm, start, behavior.unit) + if (behavior.extend) + { ourRange = extendRange(ourRange, range.anchor, range.head, behavior.extend) } + else + { ourRange = range } } - if (!addNew) { + if (!behavior.addNew) { ourIndex = 0 setSelection(doc, new Selection([ourRange], 0), sel_mouse) startSel = doc.sel @@ -7106,7 +7250,7 @@ function leftButtonSelect(cm, e, start, type, addNew) { ourIndex = ranges.length setSelection(doc, normalizeSelection(ranges.concat([ourRange]), ourIndex), {scroll: false, origin: "*mouse"}) - } else if (ranges.length > 1 && ranges[ourIndex].empty() && type == "single" && !e.shiftKey) { + } else if (ranges.length > 1 && ranges[ourIndex].empty() && behavior.unit == "char" && !behavior.extend) { setSelection(doc, normalizeSelection(ranges.slice(0, ourIndex).concat(ranges.slice(ourIndex + 1)), 0), {scroll: false, origin: "*mouse"}) startSel = doc.sel @@ -7119,7 +7263,7 @@ function leftButtonSelect(cm, e, start, type, addNew) { if (cmp(lastPos, pos) == 0) { return } lastPos = pos - if (type == "rect") { + if (behavior.unit == "rectangle") { var ranges = [], tabSize = cm.options.tabSize var startCol = countColumn(getLine(doc, start.line).text, start.ch, tabSize) var posCol = countColumn(getLine(doc, pos.line).text, pos.ch, tabSize) @@ -7138,20 +7282,14 @@ function leftButtonSelect(cm, e, start, type, addNew) { cm.scrollIntoView(pos) } else { var oldRange = ourRange - var anchor = oldRange.anchor, head = pos - if (type != "single") { - var range - if (type == "double") - { range = cm.findWordAt(pos) } - else - { range = new Range(Pos(pos.line, 0), clipPos(doc, Pos(pos.line + 1, 0))) } - if (cmp(range.anchor, anchor) > 0) { - head = range.head - anchor = minPos(oldRange.from(), range.anchor) - } else { - head = range.anchor - anchor = maxPos(oldRange.to(), range.head) - } + var range = rangeForUnit(cm, pos, behavior.unit) + var anchor = oldRange.anchor, head + if (cmp(range.anchor, anchor) > 0) { + head = range.head + anchor = minPos(oldRange.from(), range.anchor) + } else { + head = range.anchor + anchor = maxPos(oldRange.to(), range.head) } var ranges$1 = startSel.ranges.slice(0) ranges$1[ourIndex] = new Range(clipPos(doc, anchor), head) @@ -7168,7 +7306,7 @@ function leftButtonSelect(cm, e, start, type, addNew) { function extend(e) { var curCount = ++counter - var cur = posFromMouse(cm, e, true, type == "rect") + var cur = posFromMouse(cm, e, true, behavior.unit == "rectangle") if (!cur) { return } if (cmp(cur, lastPos) != 0) { cm.curOp.focus = activeElt() @@ -7334,6 +7472,7 @@ function defineOptions(CodeMirror) { if (next.attach) { next.attach(cm, prev || null) } }) option("extraKeys", null) + option("configureMouse", null) option("lineWrapping", false, wrappingChanged, true) option("gutters", [], function (cm) { @@ -7361,14 +7500,12 @@ function defineOptions(CodeMirror) { option("resetSelectionOnContextMenu", true) option("lineWiseCopyCut", true) + option("pasteLinesPerSelection", true) option("readOnly", false, function (cm, val) { if (val == "nocursor") { onBlur(cm) cm.display.input.blur() - cm.display.disabled = true - } else { - cm.display.disabled = false } cm.display.input.readOnlyChanged(val) }) @@ -7633,7 +7770,7 @@ function indentLine(cm, n, how, aggressive) { // Fall back to "prev" when the mode doesn't have an indentation // method. if (!doc.mode.indent) { how = "prev" } - else { state = getStateBefore(cm, n) } + else { state = getContextBefore(cm, n).state } } var tabSize = cm.options.tabSize @@ -7709,7 +7846,7 @@ function applyTextInput(cm, inserted, deleted, sel, origin) { for (var i = 0; i < lastCopied.text.length; i++) { multiPaste.push(doc.splitLines(lastCopied.text[i])) } } - } else if (textLines.length == sel.ranges.length) { + } else if (textLines.length == sel.ranges.length && cm.options.pasteLinesPerSelection) { multiPaste = map(textLines, function (l) { return [l]; }) } } @@ -7969,7 +8106,7 @@ function addEditorMethods(CodeMirror) { getStateAfter: function(line, precise) { var doc = this.doc line = clipLine(doc, line == null ? doc.first + doc.size - 1: line) - return getStateBefore(this, line + 1, precise) + return getContextBefore(this, line + 1, precise).state }, cursorCoords: function(start, mode) { @@ -8050,6 +8187,7 @@ function addEditorMethods(CodeMirror) { triggerOnKeyDown: methodOp(onKeyDown), triggerOnKeyPress: methodOp(onKeyPress), triggerOnKeyUp: onKeyUp, + triggerOnMouseDown: methodOp(onMouseDown), execCommand: function(cmd) { if (commands.hasOwnProperty(cmd)) @@ -9189,6 +9327,7 @@ TextareaInput.prototype.onContextMenu = function (e) { TextareaInput.prototype.readOnlyChanged = function (val) { if (!val) { this.reset() } + this.textarea.disabled = val == "nocursor" }; TextareaInput.prototype.setUneditable = function () {}; @@ -9344,7 +9483,7 @@ CodeMirror.fromTextArea = fromTextArea addLegacyProps(CodeMirror) -CodeMirror.version = "5.26.0" +CodeMirror.version = "5.27.4" return CodeMirror; From f686aa8e43ac43057fca2741b8d563ef4c3bd3e6 Mon Sep 17 00:00:00 2001 From: Brian Date: Thu, 29 Jun 2017 12:22:14 -0700 Subject: [PATCH 036/138] Added link to SDK in error Added link to SDK project page in error message when python package is not installed. --- gateways/ucssdk | 1 + 1 file changed, 1 insertion(+) diff --git a/gateways/ucssdk b/gateways/ucssdk index 10db0471a..e0329cc1d 100755 --- a/gateways/ucssdk +++ b/gateways/ucssdk @@ -32,6 +32,7 @@ try: from ucsmsdk.mometa.compute.ComputeRackUnit import ComputeRackUnit except Exception, err: sys.stderr.write('UCS Python SDK is missing %s (Path: %s)\n' % (str(err), sys.path)) + sys.stderr.write('

Available at https://communities.cisco.com/docs/DOC-64378

\n') sys.exit(2) loggedin = 0 From e28c58ad56d53f21998862558a50b91e47f55485 Mon Sep 17 00:00:00 2001 From: Alexey Andriyanov Date: Thu, 15 Jun 2017 15:36:00 +0300 Subject: [PATCH 037/138] scanIPSpace: optimize SQL for fetching last log Use the same WHERE filter in subquery. Changed functions: - scanIPv4Space - scanIPv6Space --- wwwroot/inc/database.php | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index 63bc8ce96..f42fd34e6 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -2104,7 +2104,8 @@ function scanIPv4Space ($pairlist, $filter_flags = IPSCAN_ANY) $whereexpr4 = '('; $whereexpr5a = '('; $whereexpr5b = '('; - $whereexpr6 = '('; + $whereexpr6a = '('; + $whereexpr6b = '('; $qparams = array(); $qparams_bin = array(); foreach ($pairlist as $tmp) @@ -2116,7 +2117,8 @@ function scanIPv4Space ($pairlist, $filter_flags = IPSCAN_ANY) $whereexpr4 .= $or . "rsip between ? and ?"; $whereexpr5a .= $or . "remoteip between ? and ?"; $whereexpr5b .= $or . "localip between ? and ?"; - $whereexpr6 .= $or . "l.ip between ? and ?"; + $whereexpr6a .= $or . "ip between ? and ?"; + $whereexpr6b .= $or . "l.ip between ? and ?"; $or = ' or '; $qparams[] = ip4_bin2db ($tmp['first']); $qparams[] = ip4_bin2db ($tmp['last']); @@ -2130,7 +2132,8 @@ function scanIPv4Space ($pairlist, $filter_flags = IPSCAN_ANY) $whereexpr4 .= ')'; $whereexpr5a .= ')'; $whereexpr5b .= ')'; - $whereexpr6 .= ')'; + $whereexpr6a .= ')'; + $whereexpr6b .= ')'; // 1. collect labels and reservations if ($filter_flags & IPSCAN_DO_ADDR) @@ -2279,8 +2282,8 @@ function scanIPv4Space ($pairlist, $filter_flags = IPSCAN_ANY) if ($filter_flags & IPSCAN_DO_LOG) { $query = "select l.ip, l.user, UNIX_TIMESTAMP(l.date) AS time from IPv4Log l INNER JOIN " . - " (SELECT MAX(id) as id FROM IPv4Log GROUP BY ip) v USING (id) WHERE ${whereexpr6}"; - $result = usePreparedSelectBlade ($query, $qparams); + " (SELECT MAX(id) as id FROM IPv4Log WHERE ${whereexpr6a} GROUP BY ip) v USING (id) WHERE ${whereexpr6b}"; + $result = usePreparedSelectBlade ($query, array_merge ($qparams, $qparams)); while ($row = $result->fetch (PDO::FETCH_ASSOC)) { $ip_bin = ip4_int2bin ($row['ip']); @@ -2318,7 +2321,8 @@ function scanIPv6Space ($pairlist, $filter_flags = IPSCAN_ANY) $whereexpr3a = '('; $whereexpr3b = '('; $whereexpr4 = '('; - $whereexpr6 = '('; + $whereexpr6a = '('; + $whereexpr6b = '('; $qparams = array(); foreach ($pairlist as $tmp) { @@ -2327,7 +2331,8 @@ function scanIPv6Space ($pairlist, $filter_flags = IPSCAN_ANY) $whereexpr3a .= $or . "vip between ? and ?"; $whereexpr3b .= $or . "vip between ? and ?"; $whereexpr4 .= $or . "rsip between ? and ?"; - $whereexpr6 .= $or . "l.ip between ? and ?"; + $whereexpr6a .= $or . "ip between ? and ?"; + $whereexpr6b .= $or . "l.ip between ? and ?"; $or = ' or '; $qparams[] = $tmp['first']; $qparams[] = $tmp['last']; @@ -2337,7 +2342,8 @@ function scanIPv6Space ($pairlist, $filter_flags = IPSCAN_ANY) $whereexpr3a .= ')'; $whereexpr3b .= ')'; $whereexpr4 .= ')'; - $whereexpr6 .= ')'; + $whereexpr6a .= ')'; + $whereexpr6b .= ')'; // 1. collect labels and reservations if ($filter_flags & IPSCAN_DO_ADDR) @@ -2430,8 +2436,8 @@ function scanIPv6Space ($pairlist, $filter_flags = IPSCAN_ANY) if ($filter_flags & IPSCAN_DO_LOG) { $query = "select l.ip, l.user, UNIX_TIMESTAMP(l.date) AS time from IPv6Log l INNER JOIN " . - " (SELECT MAX(id) as id FROM IPv6Log GROUP BY ip) v USING (id) WHERE ${whereexpr6}"; - $result = usePreparedSelectBlade ($query, $qparams); + " (SELECT MAX(id) as id FROM IPv6Log WHERE ${whereexpr6a} GROUP BY ip) v USING (id) WHERE ${whereexpr6b}"; + $result = usePreparedSelectBlade ($query, array_merge ($qparams, $qparams)); while ($row = $result->fetch (PDO::FETCH_ASSOC)) { $ip_bin = $row['ip']; From 0238500554077cd7d5c820c7d17ce0843d74568f Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 6 Jul 2017 09:46:00 +0100 Subject: [PATCH 038/138] printRackThumbImage(): clarify a comment --- wwwroot/inc/solutions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wwwroot/inc/solutions.php b/wwwroot/inc/solutions.php index cceeb72e6..cc1ec7ed4 100644 --- a/wwwroot/inc/solutions.php +++ b/wwwroot/inc/solutions.php @@ -184,9 +184,9 @@ function printRackThumbImage ($rack_id, $scale = 1, $object_id = NULL) $totalheight = 3 + 3 + $rackData['height'] * 2; $totalwidth = $offset[2] + $rtwidth[2] + 3; $img = createTrueColorOrThrow ('rack_php_gd_error', $totalwidth, $totalheight); - # It was measured, that caching palette in an array is faster, than - # calling colorFromHex() multiple times. It matters, when user's - # browser is trying to fetch many minirack images in parallel. + // It has been benchmarked that caching the palette in an array is faster than just + // calling colorFromHex() again and again. The diffierence is visible when user's + // browser is trying to fetch many minirack images in parallel. $color = array ( 'F' => colorFromHex ($img, '8fbfbf'), From 3c0139711353f3aab94ccd3d0857a21a835f83db Mon Sep 17 00:00:00 2001 From: Maxime Guyot Date: Wed, 5 Jul 2017 16:04:12 +0200 Subject: [PATCH 039/138] Add 2028TP-HC0R-SIOM and 6028R-E1CR12L from SuperMicro --- wwwroot/inc/dictionary.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wwwroot/inc/dictionary.php b/wwwroot/inc/dictionary.php index 03f01ad2d..9758f3f87 100644 --- a/wwwroot/inc/dictionary.php +++ b/wwwroot/inc/dictionary.php @@ -2596,6 +2596,8 @@ function platform_is_ok () 2705 => array ('chapter_id' => 13, 'dict_value' => '[[OpenBSD%GSKIP%OpenBSD 6.1 | http://www.openbsd.org/61.html]]'), 2706 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%CE8850-32CQ-EI'), 2707 => array ('chapter_id' => 13, 'dict_value' => 'MicroSoft%GSKIP%Windows Server 2016'), + 2708 => array ('chapter_id' => 11, 'dict_value' => '[[SuperMicro%GPASS%6028R-E1CR12L | https://www.supermicro.com/products/system/2u/6028/ssg-6028r-e1cr12l.cfm]]'), + 2709 => array ('chapter_id' => 31, 'dict_value' => '[[SuperMicro%GPASS%2028TP-HC0R-SIOM | https://www.supermicro.com/products/system/2U/2028/SYS-2028TP-HC0R-SIOM.cfm]]'), # Any new "default" dictionary records must go above this line (i.e., with From 655da69810a52d5e3ea1c757ee3f118d501bc180 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 6 Jul 2017 17:39:18 +0100 Subject: [PATCH 040/138] refine some code in markBestSpan() Remove an unused global, declare arrays before the first use, use foreach instead of hard-coded index range, spell comparison with zero, eliminate a redundant variable and use array_search(). --- wwwroot/inc/functions.php | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/wwwroot/inc/functions.php b/wwwroot/inc/functions.php index 0860ddbf6..710ece14c 100644 --- a/wwwroot/inc/functions.php +++ b/wwwroot/inc/functions.php @@ -598,26 +598,20 @@ function markAllSpans (&$rackData) // descending) and mark the best (if any). function markBestSpan (&$rackData, $i) { - global $template, $templateWidth; - for ($j = 0; $j < 6; $j++) + global $templateWidth; + $height = array(); + $square = array(); + foreach ($templateWidth as $j => $width) { $height[$j] = rectHeight ($rackData, $i, $j); - $square[$j] = $height[$j] * $templateWidth[$j]; + $square[$j] = $height[$j] * $width; } // find the widest rectangle of those with maximal height - $maxsquare = max ($square); - if (!$maxsquare) + if (0 == $maxsquare = max ($square)) return FALSE; - $best_template_index = 0; - for ($j = 0; $j < 6; $j++) - if ($square[$j] == $maxsquare) - { - $best_template_index = $j; - $bestheight = $height[$j]; - break; - } + $best_template_index = array_search ($maxsquare, $square); // distribute span marks - markSpan ($rackData, $i, $bestheight, $best_template_index); + markSpan ($rackData, $i, $height[$best_template_index], $best_template_index); return TRUE; } From c910f77be145601e10c53315d77772402c725cd3 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 7 Jul 2017 10:06:53 +0100 Subject: [PATCH 041/138] simplify rackModificationPermitted() Don't do the work permitted() already does internally and clarify control flow. This eliminates two variables. --- wwwroot/inc/functions.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wwwroot/inc/functions.php b/wwwroot/inc/functions.php index 710ece14c..f04f21cd3 100644 --- a/wwwroot/inc/functions.php +++ b/wwwroot/inc/functions.php @@ -636,10 +636,10 @@ function applyObjectMountMask (&$rackData, $object_id) // check permissions for rack modification function rackModificationPermitted ($rackData, $op, $with_context=TRUE) { - $op_annex = array (array ('tag' => '$op_'.$op), array ('tag' => '$any_op')); - $rack_op_annex = array_merge ($rackData['etags'], $rackData['itags'], $rackData['atags'], $op_annex); - $context = !$with_context || permitted (NULL, NULL, NULL, $op_annex); - return $context && permitted (NULL, NULL, NULL, $rack_op_annex); + if ($with_context && ! permitted (NULL, NULL, $op)) + return FALSE; + $rack_op_annex = array_merge ($rackData['etags'], $rackData['itags'], $rackData['atags']); + return permitted (NULL, NULL, $op, $rack_op_annex); } // Design change means transition between 'F' and 'A' and back. From 34f5d4eb9e41a47a727a90e33951186288b2bd04 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 7 Jul 2017 10:43:39 +0100 Subject: [PATCH 042/138] refine some table formatting * renderRackspaceRowEditor() * renderRackSortForm() --- wwwroot/inc/interface.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index c9bdeed92..0b98afba6 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -639,11 +639,11 @@ function printNewItemTR () echo ''; printImageHREF ('create', 'Add new row', TRUE); echo ' '; - echo ''; + echo ' '; } startPortlet ('Rows'); echo "\n"; - echo "\n"; + echo "\n"; if (getConfigVar ('ADDNEW_AT_TOP') == 'yes') printNewItemTR (); foreach (listCells ('row') as $row_id => $rowInfo) @@ -653,16 +653,17 @@ function printNewItemTR () $delete_racks_str = $rc ? " and $rc rack(s)" : ''; echo getOpLink (array ('op'=>'deleteRow', 'row_id'=>$row_id), '', 'destroy', 'Delete row'.$delete_racks_str, 'need-confirmation'); printOpFormIntro ('updateRow', array ('row_id' => $row_id)); - echo '"; - echo ""; + echo ''; + echo ''; echo "\n"; } if (getConfigVar ('ADDNEW_AT_TOP') != 'yes') @@ -1044,7 +1045,7 @@ function () { startPortlet ('Racks'); echo "
 # Racks# DevicesLocationName Row link
 # Racks# DevicesLocationName  Row link
'; + echo ''; echo $rc; - echo ''; + echo ''; echo getRowMountsCount ($row_id); echo ''; renderLocationSelectTree ('location_id', $rowInfo['location_id']); echo ""; printImageHREF ('save', 'Save changes', TRUE); echo "" . mkCellA ($rowInfo) . " ' . mkCellA ($rowInfo) . '
\n"; echo "\n"; - echo "
Drag to change order
    \n"; + echo "
    \n"; foreach (getRacks($row_id) as $rack_id => $rackInfo) echo "
  • ${rackInfo['name']}
  • \n"; echo "
\n"; From a688bfd70049c7a26b7f739b938c24624c97923a Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 7 Jul 2017 11:11:41 +0100 Subject: [PATCH 043/138] update some old comments --- wwwroot/inc/exceptions.php | 4 ++-- wwwroot/inc/functions.php | 2 +- wwwroot/inc/ophandlers.php | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/wwwroot/inc/exceptions.php b/wwwroot/inc/exceptions.php index 735ccc5a2..2707bc905 100644 --- a/wwwroot/inc/exceptions.php +++ b/wwwroot/inc/exceptions.php @@ -218,8 +218,8 @@ public function dispatch() } } -// this wraps certain known PDO errors and is caught in process.php -// as a "soft" error +// This wraps certain known PDO errors and is caught in index.php?module=redirect +// and elsewhere to be handled as a "soft" error. class RTDatabaseError extends RackTablesError { public function dispatch() diff --git a/wwwroot/inc/functions.php b/wwwroot/inc/functions.php index f04f21cd3..2ee332172 100644 --- a/wwwroot/inc/functions.php +++ b/wwwroot/inc/functions.php @@ -3236,7 +3236,7 @@ function getAllVLANOptions ($except = array()) return $ret; } -// Let's have this debug helper here to enable debugging of process.php w/o interface.php. +// This debugging helper does not depend on interface.php. function dump ($var) { echo '

';
diff --git a/wwwroot/inc/ophandlers.php b/wwwroot/inc/ophandlers.php
index da9486f7b..dfe86709c 100644
--- a/wwwroot/inc/ophandlers.php
+++ b/wwwroot/inc/ophandlers.php
@@ -3161,7 +3161,8 @@ function updVSTRule_get_named_param ($name, $haystack, &$last_used_name)
 	}
 	catch (Exception $e)
 	{
-		// Every case that is soft-processed in process.php, will have the working copy available for a retry.
+		// Every case that is soft-processed in index.php?module=redirect will have
+		// the working copy available for a retry.
 		if ($e instanceof InvalidRequestArgException || $e instanceof RTDatabaseError)
 		{
 			startSession();

From 3f047ada80244481538153e2c032ca454658c9ad Mon Sep 17 00:00:00 2001
From: Denis Ovsienko 
Date: Fri, 7 Jul 2017 11:43:31 +0100
Subject: [PATCH 044/138] refine a couple error messages

* proxyCactiRequest()
* proxyMuninRequest()
---
 wwwroot/inc/solutions.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/wwwroot/inc/solutions.php b/wwwroot/inc/solutions.php
index cc1ec7ed4..2ac022784 100644
--- a/wwwroot/inc/solutions.php
+++ b/wwwroot/inc/solutions.php
@@ -418,7 +418,7 @@ function proxyCactiRequest ($server_id, $graph_id)
 	$ret = array();
 	$servers = getCactiServers();
 	if (! array_key_exists ($server_id, $servers))
-		throw new InvalidRequestArgException ('server_id', $server_id);
+		throw new InvalidRequestArgException ('server_id', $server_id, 'there is no such server');
 	$cacti_url = $servers[$server_id]['base_url'];
 	$url = "${cacti_url}/graph_image.php?action=view&local_graph_id=${graph_id}&rra_id=" . getConfigVar ('CACTI_RRA_ID');
 	$postvars = 'action=login&login_username=' . $servers[$server_id]['username'];
@@ -499,7 +499,7 @@ function proxyMuninRequest ($server_id, $graph)
 	$ret = array();
 	$servers = getMuninServers();
 	if (! array_key_exists ($server_id, $servers))
-		throw new InvalidRequestArgException ('server_id', $server_id);
+		throw new InvalidRequestArgException ('server_id', $server_id, 'there is no such server');
 	$munin_url = $servers[$server_id]['base_url'];
 	$url = "${munin_url}/${domain}/${host}.${domain}/${graph}-day.png";
 

From 37095aac37c2b856b3ac9ae33a789c37891d5e1a Mon Sep 17 00:00:00 2001
From: Denis Ovsienko 
Date: Fri, 7 Jul 2017 14:58:16 +0100
Subject: [PATCH 045/138] put usort_portlist() right (GH #199)

The input to sortPortList() is an array of arrays, if it is an array of
anything else the function (since commit 07d22ce) will use array_fetch()
on the elements anyway, causing issues downstream. Vladimir Sukhonosov
had reported numerous PHP warnings in this regard.

Fix usort_portlist() to feed proper argument into sortPortList().
---
 wwwroot/inc/functions.php | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/wwwroot/inc/functions.php b/wwwroot/inc/functions.php
index 2ee332172..e0cfdc633 100644
--- a/wwwroot/inc/functions.php
+++ b/wwwroot/inc/functions.php
@@ -4859,12 +4859,9 @@ function sortPortList ($plist, $name_in_value = FALSE)
 }
 
 // This function works like standard php usort function and uses sortPortList.
-function usort_portlist(&$array)
+function usort_portlist (&$portnames)
 {
-	$temp_array = array();
-	foreach($array as $portname)
-		$temp_array[$portname] = 1;
-	$array = array_keys (sortPortList ($temp_array, FALSE));
+	$portnames = array_keys (sortPortList (array_fill_keys ($portnames, array())));
 }
 
 // return a "?, ?, ?, ... ?, ?" string consisting of N question marks

From d2ae1e0d179b2f664afb1fb0b923f6028c861fed Mon Sep 17 00:00:00 2001
From: Denis Ovsienko 
Date: Fri, 7 Jul 2017 15:06:45 +0100
Subject: [PATCH 046/138] check argument type in array_fetch()

If the argument is not an array, it is a bug in the code as arguments to
that function come from other functions, not directly from user input.
Raise an exception before the broken code makes any [more] damage. Add
more tests.
---
 tests/PureFunctionTest.php | 7 +++++++
 wwwroot/inc/functions.php  | 2 ++
 2 files changed, 9 insertions(+)

diff --git a/tests/PureFunctionTest.php b/tests/PureFunctionTest.php
index 883e6c152..61c0a6bdd 100644
--- a/tests/PureFunctionTest.php
+++ b/tests/PureFunctionTest.php
@@ -1231,6 +1231,13 @@ public function providerNaryIAE ()
 			array ('parseSearchTerms', array ('one "two" "three')),
 			array ('parseSearchTerms', array ('one "" three')),
 			array ('parseSearchTerms', array ('""')),
+
+			array ('array_fetch', array (-1, 0, 0)),
+			array ('array_fetch', array (0, 0, 0)),
+			array ('array_fetch', array (1, 0, 0)),
+			array ('array_fetch', array (FALSE, 0, 0)),
+			array ('array_fetch', array (NULL, 0, 0)),
+			array ('array_fetch', array ('', 0, 0)),
 		);
 	}
 
diff --git a/wwwroot/inc/functions.php b/wwwroot/inc/functions.php
index e0cfdc633..79c21c52c 100644
--- a/wwwroot/inc/functions.php
+++ b/wwwroot/inc/functions.php
@@ -5825,6 +5825,8 @@ function array_sub ($a, $b)
 // returns the requested element value or the default value if not found
 function array_fetch ($array, $key, $default_value)
 {
+	if (! is_array ($array))
+		throw new InvalidArgException ('array', $array, 'is not an array');
 	return array_key_exists ($key, $array) ? $array[$key] : $default_value;
 }
 

From d4efef555c85b524d87bc5601031a3ddde4f2de0 Mon Sep 17 00:00:00 2001
From: Denis Ovsienko 
Date: Mon, 10 Jul 2017 10:37:35 +0100
Subject: [PATCH 047/138] add a comment as a follow-up to commit dfc8176e

---
 wwwroot/inc/exceptions.php | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/wwwroot/inc/exceptions.php b/wwwroot/inc/exceptions.php
index 2707bc905..602c2523c 100644
--- a/wwwroot/inc/exceptions.php
+++ b/wwwroot/inc/exceptions.php
@@ -198,6 +198,11 @@ function __construct ($name, $value, $reason = NULL)
 		$this->value = $value;
 		$this->reason = $reason;
 	}
+	// Instead of the two methods below it would be better to have a single method
+	// like setArgumentName() in order not to expose unnecessary details to the
+	// users of the class. However, this is not possible because the Exception
+	// class does not allow to redefine the message string, which the constructor
+	// assigns based on the argument name.
 	public function getValue()
 	{
 		return $this->value;

From c7be1b904fcf4d9d2bb83d8df905992fdaa48c94 Mon Sep 17 00:00:00 2001
From: Denis Ovsienko 
Date: Thu, 13 Jul 2017 17:02:28 +0100
Subject: [PATCH 048/138] tests: test cleanup_ldap_cache.php in express.sh

---
 tests/express.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/express.sh b/tests/express.sh
index 727ff37a6..73882afa1 100755
--- a/tests/express.sh
+++ b/tests/express.sh
@@ -40,7 +40,8 @@ rm -f "$TEMPFILE"
 # A side effect of syncdomain.php is testing whether init.php is functional.
 echo
 cd "$BASEDIR/wwwroot"
-../scripts/syncdomain.php --help || exit 1
+echo 'Testing syncdomain.php'; ../scripts/syncdomain.php --help || exit 1
+echo 'Testing cleanup_ldap_cache.php'; ../scripts/cleanup_ldap_cache.php || exit 1
 
 # At this point it makes sense to test specific functions.
 echo

From 475f4da1deea30543900966db469c8f2b18d35b7 Mon Sep 17 00:00:00 2001
From: Denis Ovsienko 
Date: Thu, 13 Jul 2017 17:06:27 +0100
Subject: [PATCH 049/138] init_config(): omit the PHP closing tag at EOF

---
 wwwroot/inc/install.php | 2 --
 1 file changed, 2 deletions(-)

diff --git a/wwwroot/inc/install.php b/wwwroot/inc/install.php
index dc102b4e3..7b48bfb45 100644
--- a/wwwroot/inc/install.php
+++ b/wwwroot/inc/install.php
@@ -301,10 +301,8 @@ function print_form
 # here, it will be readable by unauthorized visitors.
 #\$helpdesk_banner = 'This RackTables instance is supported by Example Inc. IT helpdesk, dial ext. 1234 to report a problem.';
 
-
 ENDOFTEXT
 );
-	fwrite ($conf, "?>\n");
 	fclose ($conf);
 	echo "The configuration file has been written successfully.
"; return TRUE; From f48482e402726f928e3ffffff6112d1a392d3a33 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 13 Jul 2017 17:09:25 +0100 Subject: [PATCH 050/138] omit the PHP closing tag at EOF in all PHP files "If a file is pure PHP code, it is preferable to omit the PHP closing tag at the end of the file. This prevents accidental whitespace or new lines being added after the PHP closing tag, which may cause unwanted effects because PHP will start output buffering when there is no intention from the programmer to send any output at that point in the script." -- PHP manual --- scripts/cleanup_ldap_cache.php | 2 -- scripts/syncdomain.php | 1 - tests/ConfigVarTest.php | 2 -- tests/DBMutexTest.php | 2 -- tests/DictionaryAttributeTest.php | 2 -- tests/EmptySQLWhereTest.php | 2 -- tests/EntityLinkTriggerTest.php | 1 - tests/GetChildrenListTest.php | 1 - tests/GetRowsCountTest.php | 2 -- tests/LinkTriggerTest.php | 1 - tests/ObjectAttributesTest.php | 2 -- tests/ObjectCircularReferenceTest.php | 1 - tests/ObjectLogTest.php | 1 - tests/ObjectPortsTest.php | 2 -- tests/PureFunctionTest.php | 1 - tests/RackspaceFunctionsTest.php | 2 -- tests/RenderDepotTest.php | 1 - tests/ScriptFunctionsTest.php | 2 -- tests/StringInsertHrefsTest.php | 1 - tests/TagFunctionsTest.php | 2 -- tests/TagTreeCircularReferenceTest.php | 1 - tests/TestHelper.php | 1 - tests/UpgradeTest.php | 1 - tests/UserAccountTest.php | 2 -- tests/bootstrap.php | 1 - wwwroot/inc/ajax-interface.php | 1 - wwwroot/inc/auth.php | 2 -- wwwroot/inc/caching.php | 2 -- wwwroot/inc/code.php | 2 -- wwwroot/inc/config.php | 2 -- wwwroot/inc/database.php | 2 -- wwwroot/inc/deviceconfig.php | 2 -- wwwroot/inc/dictionary.php | 2 -- wwwroot/inc/exceptions.php | 2 -- wwwroot/inc/functions.php | 2 -- wwwroot/inc/init.php | 2 -- wwwroot/inc/install.php | 2 -- wwwroot/inc/interface-8021q.php | 2 -- wwwroot/inc/interface-cables.php | 2 -- wwwroot/inc/interface-config.php | 2 -- wwwroot/inc/interface-lib.php | 2 -- wwwroot/inc/interface-reports.php | 2 -- wwwroot/inc/interface.php | 2 -- wwwroot/inc/navigation.php | 2 -- wwwroot/inc/ophandlers.php | 2 -- wwwroot/inc/popup.php | 1 - wwwroot/inc/pre-init.php | 2 -- wwwroot/inc/remote.php | 2 -- wwwroot/inc/slb-interface.php | 2 -- wwwroot/inc/slb.php | 2 -- wwwroot/inc/snmp.php | 1 - wwwroot/inc/solutions.php | 2 -- wwwroot/inc/triggers.php | 2 -- wwwroot/inc/upgrade.php | 2 -- wwwroot/index.php | 1 - 55 files changed, 93 deletions(-) diff --git a/scripts/cleanup_ldap_cache.php b/scripts/cleanup_ldap_cache.php index 77b31daf6..cacca66ba 100755 --- a/scripts/cleanup_ldap_cache.php +++ b/scripts/cleanup_ldap_cache.php @@ -19,5 +19,3 @@ constructLDAPOptions(); discardLDAPCache ($LDAP_options['cache_expiry']); } - -?> diff --git a/scripts/syncdomain.php b/scripts/syncdomain.php index b4a8cb494..221d0006d 100755 --- a/scripts/syncdomain.php +++ b/scripts/syncdomain.php @@ -200,4 +200,3 @@ function print_message_line($text, $flags = 0) } } exit (0); -?> diff --git a/tests/ConfigVarTest.php b/tests/ConfigVarTest.php index c198012bb..41b31cb76 100644 --- a/tests/ConfigVarTest.php +++ b/tests/ConfigVarTest.php @@ -153,5 +153,3 @@ public function providerIAE1 () ); } } - -?> diff --git a/tests/DBMutexTest.php b/tests/DBMutexTest.php index b356d18e7..88180bfa4 100644 --- a/tests/DBMutexTest.php +++ b/tests/DBMutexTest.php @@ -20,5 +20,3 @@ public function testNonExisting () $this->assertSame (FALSE, releaseDBMutex (get_class() . getmypid())); } } - -?> diff --git a/tests/DictionaryAttributeTest.php b/tests/DictionaryAttributeTest.php index 75dd2fd92..b3fd5e511 100644 --- a/tests/DictionaryAttributeTest.php +++ b/tests/DictionaryAttributeTest.php @@ -182,5 +182,3 @@ public function tearDown () usePreparedDeleteBlade ('Attribute', array ('id' => array_keys ($this->attr_types))); } } - -?> diff --git a/tests/EmptySQLWhereTest.php b/tests/EmptySQLWhereTest.php index 45d1fcdd8..a351d23ed 100644 --- a/tests/EmptySQLWhereTest.php +++ b/tests/EmptySQLWhereTest.php @@ -42,5 +42,3 @@ public function testMalformedUpdate2 () usePreparedUpdateBlade ('TagTree', NULL, NULL); } } - -?> diff --git a/tests/EntityLinkTriggerTest.php b/tests/EntityLinkTriggerTest.php index e7aa94d76..1930797ea 100644 --- a/tests/EntityLinkTriggerTest.php +++ b/tests/EntityLinkTriggerTest.php @@ -499,4 +499,3 @@ public function testInvalidateRackLink () ); } } -?> diff --git a/tests/GetChildrenListTest.php b/tests/GetChildrenListTest.php index 3fe411c04..e64d392d6 100644 --- a/tests/GetChildrenListTest.php +++ b/tests/GetChildrenListTest.php @@ -92,4 +92,3 @@ public function testGetTagChildrenList () $this->assertCount (self::$num_children, $children); } } -?> diff --git a/tests/GetRowsCountTest.php b/tests/GetRowsCountTest.php index 26b84062e..b6f5c2573 100644 --- a/tests/GetRowsCountTest.php +++ b/tests/GetRowsCountTest.php @@ -42,5 +42,3 @@ public function tearDown () usePreparedExecuteBlade ('DROP TABLE `' . $this->table_name . '`'); } } - -?> diff --git a/tests/LinkTriggerTest.php b/tests/LinkTriggerTest.php index 2740fcc9e..bf208dca7 100644 --- a/tests/LinkTriggerTest.php +++ b/tests/LinkTriggerTest.php @@ -162,4 +162,3 @@ public function testUpdateLinkBetweenIncompatiblePorts () ); } } -?> diff --git a/tests/ObjectAttributesTest.php b/tests/ObjectAttributesTest.php index 077a8907f..71fd03b4c 100644 --- a/tests/ObjectAttributesTest.php +++ b/tests/ObjectAttributesTest.php @@ -84,5 +84,3 @@ public function testIncompatible2 () } } - -?> diff --git a/tests/ObjectCircularReferenceTest.php b/tests/ObjectCircularReferenceTest.php index aba6a9cc0..1910d17b8 100644 --- a/tests/ObjectCircularReferenceTest.php +++ b/tests/ObjectCircularReferenceTest.php @@ -121,4 +121,3 @@ public function testUpdateLocationCircularReference () ); } } -?> diff --git a/tests/ObjectLogTest.php b/tests/ObjectLogTest.php index c82163514..6a59969a7 100644 --- a/tests/ObjectLogTest.php +++ b/tests/ObjectLogTest.php @@ -96,4 +96,3 @@ public function testRenderLogRecords () } } } -?> diff --git a/tests/ObjectPortsTest.php b/tests/ObjectPortsTest.php index 8d1b709ae..12bd60ead 100644 --- a/tests/ObjectPortsTest.php +++ b/tests/ObjectPortsTest.php @@ -192,5 +192,3 @@ public function tearDown () commitDeleteObject ($this->object_id); } } - -?> diff --git a/tests/PureFunctionTest.php b/tests/PureFunctionTest.php index 61c0a6bdd..5b92dd7ed 100644 --- a/tests/PureFunctionTest.php +++ b/tests/PureFunctionTest.php @@ -1270,4 +1270,3 @@ public function providerTreeApplyFuncIAE () ); } } -?> diff --git a/tests/RackspaceFunctionsTest.php b/tests/RackspaceFunctionsTest.php index 85376b956..0efb4b720 100644 --- a/tests/RackspaceFunctionsTest.php +++ b/tests/RackspaceFunctionsTest.php @@ -209,5 +209,3 @@ public function tearDown () commitDeleteRow ($this->row_id); } } - -?> diff --git a/tests/RenderDepotTest.php b/tests/RenderDepotTest.php index 06a2a0b4f..8353341a5 100644 --- a/tests/RenderDepotTest.php +++ b/tests/RenderDepotTest.php @@ -39,4 +39,3 @@ public function testRenderDepot () } } } -?> diff --git a/tests/ScriptFunctionsTest.php b/tests/ScriptFunctionsTest.php index 0b0dcde31..79fa9291e 100644 --- a/tests/ScriptFunctionsTest.php +++ b/tests/ScriptFunctionsTest.php @@ -53,5 +53,3 @@ public function testSaveNULLName () saveScript (NULL, NULL); } } - -?> diff --git a/tests/StringInsertHrefsTest.php b/tests/StringInsertHrefsTest.php index 7ca7c673b..e55126b65 100644 --- a/tests/StringInsertHrefsTest.php +++ b/tests/StringInsertHrefsTest.php @@ -55,4 +55,3 @@ public function provider () ); } } -?> diff --git a/tests/TagFunctionsTest.php b/tests/TagFunctionsTest.php index 0ff37d2d0..7ddf28511 100644 --- a/tests/TagFunctionsTest.php +++ b/tests/TagFunctionsTest.php @@ -64,5 +64,3 @@ public function testTransform() $this->assertEquals ($this->a_tag_ids, buildTagIdsFromChain (buildTagChainFromIds ($this->a_tag_ids))); } } - -?> diff --git a/tests/TagTreeCircularReferenceTest.php b/tests/TagTreeCircularReferenceTest.php index 3964eeb46..d9c8dcb6a 100644 --- a/tests/TagTreeCircularReferenceTest.php +++ b/tests/TagTreeCircularReferenceTest.php @@ -43,4 +43,3 @@ public function testCreateCircularReference () commitUpdateTag ($this->taga_id, 'unit test tag a', $this->tagc_id, 'yes'); } } -?> diff --git a/tests/TestHelper.php b/tests/TestHelper.php index c5d22bc0a..d836eb5d6 100644 --- a/tests/TestHelper.php +++ b/tests/TestHelper.php @@ -13,4 +13,3 @@ public static function ensureUsingUnitTestDatabase () throw new Exception ('Test must connect to unit testing database (see tests/README).'); } } -?> diff --git a/tests/UpgradeTest.php b/tests/UpgradeTest.php index fdefdc4c4..59dd5df56 100644 --- a/tests/UpgradeTest.php +++ b/tests/UpgradeTest.php @@ -62,4 +62,3 @@ public function testUpgrades () } } } -?> diff --git a/tests/UserAccountTest.php b/tests/UserAccountTest.php index 1154a7307..b1ec8d7bc 100644 --- a/tests/UserAccountTest.php +++ b/tests/UserAccountTest.php @@ -52,5 +52,3 @@ public function testDuplicate () commitCreateUserAccount ($this->user_name, 'x' . self::REALNAME, sha1 (self::PSWDHASH)); } } - -?> diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 0a0cac6d1..76715c7b2 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -11,4 +11,3 @@ // Sanity check DB connection TestHelper::ensureUsingUnitTestDatabase (); -?> diff --git a/wwwroot/inc/ajax-interface.php b/wwwroot/inc/ajax-interface.php index 7930a0eca..2de477f36 100644 --- a/wwwroot/inc/ajax-interface.php +++ b/wwwroot/inc/ajax-interface.php @@ -337,4 +337,3 @@ function getAutocompleteListAJAX() echo json_encode ($rows); } -?> diff --git a/wwwroot/inc/auth.php b/wwwroot/inc/auth.php index 9e92d1853..2881dea65 100644 --- a/wwwroot/inc/auth.php +++ b/wwwroot/inc/auth.php @@ -650,5 +650,3 @@ function authenticated_via_database ($userinfo, $password) return FALSE; return $userinfo['user_password_hash'] == sha1 ($password); } - -?> diff --git a/wwwroot/inc/caching.php b/wwwroot/inc/caching.php index 0189a5acd..41f991f54 100644 --- a/wwwroot/inc/caching.php +++ b/wwwroot/inc/caching.php @@ -100,5 +100,3 @@ function HTTPDateToUnixTime ($string) return FALSE; return gmmktime ($hours, $minutes, $seconds, $month, $day, $year); } - -?> diff --git a/wwwroot/inc/code.php b/wwwroot/inc/code.php index bc0add7d1..37177039d 100644 --- a/wwwroot/inc/code.php +++ b/wwwroot/inc/code.php @@ -759,5 +759,3 @@ function getRackCodeWarnings () ); return $ret; } - -?> diff --git a/wwwroot/inc/config.php b/wwwroot/inc/config.php index f7b54ec5f..622bfd578 100644 --- a/wwwroot/inc/config.php +++ b/wwwroot/inc/config.php @@ -14,5 +14,3 @@ */ define ('CODE_VERSION', '0.20.13'); - -?> diff --git a/wwwroot/inc/database.php b/wwwroot/inc/database.php index f42fd34e6..494650b62 100644 --- a/wwwroot/inc/database.php +++ b/wwwroot/inc/database.php @@ -6074,5 +6074,3 @@ function releaseDBMutex ($name) $row = $result->fetchColumn(); return $row === '1'; } - -?> diff --git a/wwwroot/inc/deviceconfig.php b/wwwroot/inc/deviceconfig.php index f80449e3a..52a1f81fc 100644 --- a/wwwroot/inc/deviceconfig.php +++ b/wwwroot/inc/deviceconfig.php @@ -3573,5 +3573,3 @@ function iosxr4ReadInterfaceStatus ($input) } return $result; } - -?> diff --git a/wwwroot/inc/dictionary.php b/wwwroot/inc/dictionary.php index 9758f3f87..178a8d713 100644 --- a/wwwroot/inc/dictionary.php +++ b/wwwroot/inc/dictionary.php @@ -2605,5 +2605,3 @@ function platform_is_ok () # and dictionary updates working properly. 49999 => array ('chapter_id' => 13, 'dict_value' => '[[RH Fedora%GSKIP%Fedora 15 | http://docs.fedoraproject.org/release-notes/f15/en-US/html/]]'), ); - -?> diff --git a/wwwroot/inc/exceptions.php b/wwwroot/inc/exceptions.php index 602c2523c..29d876f1d 100644 --- a/wwwroot/inc/exceptions.php +++ b/wwwroot/inc/exceptions.php @@ -436,5 +436,3 @@ function printException ($e) else printGenericException ($e); } - -?> diff --git a/wwwroot/inc/functions.php b/wwwroot/inc/functions.php index 79c21c52c..19d27d2be 100644 --- a/wwwroot/inc/functions.php +++ b/wwwroot/inc/functions.php @@ -6663,5 +6663,3 @@ function syncObjectPorts ($object_id, $desiredPorts) $dbxlink->exec ('UNLOCK TABLES'); showSuccess (sprintf ('Added ports: %u, changed: %u, deleted: %u', count ($to_add), count ($to_update), count ($to_delete))); } - -?> diff --git a/wwwroot/inc/init.php b/wwwroot/inc/init.php index 8be1b1554..779bf1174 100644 --- a/wwwroot/inc/init.php +++ b/wwwroot/inc/init.php @@ -162,5 +162,3 @@ $target_given_tags = array(); callHook ('initFinished'); - -?> diff --git a/wwwroot/inc/install.php b/wwwroot/inc/install.php index 7b48bfb45..c945fe09a 100644 --- a/wwwroot/inc/install.php +++ b/wwwroot/inc/install.php @@ -2325,5 +2325,3 @@ function get_pseudo_file ($name) return $query; } } - -?> diff --git a/wwwroot/inc/interface-8021q.php b/wwwroot/inc/interface-8021q.php index 4fe25c0d1..44a6816c8 100644 --- a/wwwroot/inc/interface-8021q.php +++ b/wwwroot/inc/interface-8021q.php @@ -1643,5 +1643,3 @@ function renderEditVlan ($vlan_ck) finishPortlet(); } - -?> diff --git a/wwwroot/inc/interface-cables.php b/wwwroot/inc/interface-cables.php index d631aee98..43bc0147d 100644 --- a/wwwroot/inc/interface-cables.php +++ b/wwwroot/inc/interface-cables.php @@ -295,5 +295,3 @@ function renderPatchCableOIFCompatEditor() ); echo '
'; } - -?> diff --git a/wwwroot/inc/interface-config.php b/wwwroot/inc/interface-config.php index e59fa42f4..934c6a3cf 100644 --- a/wwwroot/inc/interface-config.php +++ b/wwwroot/inc/interface-config.php @@ -1185,5 +1185,3 @@ function printNewItemTR() printNewItemTR(); echo ''; } - -?> diff --git a/wwwroot/inc/interface-lib.php b/wwwroot/inc/interface-lib.php index 9a2b17c70..7344ed5c4 100644 --- a/wwwroot/inc/interface-lib.php +++ b/wwwroot/inc/interface-lib.php @@ -1206,5 +1206,3 @@ function showMySQLWarnings() } $rtdebug_mysql_warnings = array(); } - -?> diff --git a/wwwroot/inc/interface-reports.php b/wwwroot/inc/interface-reports.php index 68cbe7308..d99098308 100644 --- a/wwwroot/inc/interface-reports.php +++ b/wwwroot/inc/interface-reports.php @@ -980,5 +980,3 @@ function renderDataIntegrityReport () if (! $violations) echo '

No integrity violations found

'; } - -?> diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index 0b98afba6..dfceae1c6 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -6451,5 +6451,3 @@ function renderTableViewer ($columns, $rows, $params = NULL) echo ''; echo ''; } - -?> diff --git a/wwwroot/inc/navigation.php b/wwwroot/inc/navigation.php index e252a4ecb..5155c9f49 100644 --- a/wwwroot/inc/navigation.php +++ b/wwwroot/inc/navigation.php @@ -918,5 +918,3 @@ $popuphandler['objlist'] = 'renderPopupObjectSelector'; $popuphandler['portlist'] = 'renderPopupPortSelector'; $popuphandler['inet4list'] = 'renderPopupIPv4Selector'; - -?> diff --git a/wwwroot/inc/ophandlers.php b/wwwroot/inc/ophandlers.php index dfe86709c..44dee8377 100644 --- a/wwwroot/inc/ophandlers.php +++ b/wwwroot/inc/ophandlers.php @@ -3850,5 +3850,3 @@ function updateVLANDomain() usePreparedUpdateBlade ('VLANDomain', array ('group_id' => $group_id, 'description' => $description), array ('id' => $domain_id)); showSuccess ("VLAN domain updated successfully"); } - -?> diff --git a/wwwroot/inc/popup.php b/wwwroot/inc/popup.php index fa90c610b..b128deec6 100644 --- a/wwwroot/inc/popup.php +++ b/wwwroot/inc/popup.php @@ -518,4 +518,3 @@ function renderPopupHTML ($contents) diff --git a/wwwroot/inc/pre-init.php b/wwwroot/inc/pre-init.php index fc545a776..9f5dc741b 100644 --- a/wwwroot/inc/pre-init.php +++ b/wwwroot/inc/pre-init.php @@ -101,5 +101,3 @@ function fileSearchExists ($filename) } return file_exists ($filename); } - -?> diff --git a/wwwroot/inc/remote.php b/wwwroot/inc/remote.php index 91d7d5ded..9b75db24a 100644 --- a/wwwroot/inc/remote.php +++ b/wwwroot/inc/remote.php @@ -831,5 +831,3 @@ function ios12ShortenIfName ($ifname) $ifname = preg_replace ('/^(e|fa|gi|te|po|xg|lo|ma)\s+(\d.*)/', '$1$2', $ifname); return $ifname; } - -?> diff --git a/wwwroot/inc/slb-interface.php b/wwwroot/inc/slb-interface.php index e319ba1b4..c945b9ecd 100644 --- a/wwwroot/inc/slb-interface.php +++ b/wwwroot/inc/slb-interface.php @@ -628,5 +628,3 @@ function renderLVSConfig ($object_id) echo ""; echo "
" . buildLVSConfig ($object_id) . "
"; } - -?> diff --git a/wwwroot/inc/slb.php b/wwwroot/inc/slb.php index c20aa4935..c9bf820a1 100644 --- a/wwwroot/inc/slb.php +++ b/wwwroot/inc/slb.php @@ -730,5 +730,3 @@ function getRSListInPool ($rspool_id) } return $ret; } - -?> diff --git a/wwwroot/inc/snmp.php b/wwwroot/inc/snmp.php index 71a80b891..b28fcac53 100644 --- a/wwwroot/inc/snmp.php +++ b/wwwroot/inc/snmp.php @@ -4856,4 +4856,3 @@ function detectSoftwareType ($objectInfo, $sysDescr) return; } } -?> diff --git a/wwwroot/inc/solutions.php b/wwwroot/inc/solutions.php index 2ac022784..306c29f88 100644 --- a/wwwroot/inc/solutions.php +++ b/wwwroot/inc/solutions.php @@ -566,5 +566,3 @@ function printSVGMessageBar ($text = 'lost message', $textattrs = array(), $rect echo ">${text}\n"; echo "\n"; } - -?> diff --git a/wwwroot/inc/triggers.php b/wwwroot/inc/triggers.php index 419bff38e..649d6927a 100644 --- a/wwwroot/inc/triggers.php +++ b/wwwroot/inc/triggers.php @@ -344,5 +344,3 @@ function triggerGraphCycleResolver() } return count (getInvalidNodes ($nodelist)) ? 'attn' : ''; } - -?> diff --git a/wwwroot/inc/upgrade.php b/wwwroot/inc/upgrade.php index 101efa38d..3f01f3a83 100644 --- a/wwwroot/inc/upgrade.php +++ b/wwwroot/inc/upgrade.php @@ -1548,5 +1548,3 @@ function convertMgmtConfigVars() } return implode (',', $ret); } - -?> diff --git a/wwwroot/index.php b/wwwroot/index.php index a1a3777bb..7f04376c6 100644 --- a/wwwroot/index.php +++ b/wwwroot/index.php @@ -304,4 +304,3 @@ ob_end_clean(); printException ($e); } -?> From f5b9c21a83e8ed15fdd11c24fbd104569c8f862a Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 13 Jul 2017 17:45:48 +0100 Subject: [PATCH 051/138] renderEditObjectForm(): add a LABEL for a CHECKBOX --- wwwroot/inc/interface.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wwwroot/inc/interface.php b/wwwroot/inc/interface.php index dfceae1c6..8ec287466 100644 --- a/wwwroot/inc/interface.php +++ b/wwwroot/inc/interface.php @@ -1136,7 +1136,8 @@ function renderEditObjectForm() echo "\n"; } renderEditAttributeTRs ('update', getAttrValuesSorted ($object_id), $object['objtype_id']); - echo " Has problems: '; + echo '\n"; From 2864fb8d49abac7dc4e3da5f5e391024f4f86fe6 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Thu, 13 Jul 2017 18:08:35 +0100 Subject: [PATCH 052/138] RTSNMPDevice: handle SNMP versions stricter There is no gain in assuming that if SNMP version is not 1, not 2 and not 3, it means it is 1. Keep it simple. --- wwwroot/inc/snmp.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wwwroot/inc/snmp.php b/wwwroot/inc/snmp.php index b28fcac53..3da6d4402 100644 --- a/wwwroot/inc/snmp.php +++ b/wwwroot/inc/snmp.php @@ -4647,7 +4647,6 @@ function __construct($hostname, $snmpsetup) switch ($snmpsetup['version']) { case 1: - default: $this->snmp = new RTSNMPv1($hostname, $snmpsetup); break; case 2: @@ -4656,6 +4655,8 @@ function __construct($hostname, $snmpsetup) case 3: $this->snmp = new RTSNMPv3($hostname, $snmpsetup); break; + default: + throw new InvalidArgException ('snmpsetup[\'version\']', $snmpsetup['version'], 'unsupported SNMP version'); } } From 1cfcac1b31489bd2394c97294586bc9b900da740 Mon Sep 17 00:00:00 2001 From: Denis Ovsienko Date: Fri, 14 Jul 2017 16:01:02 +0100 Subject: [PATCH 053/138] only use the PHP opening tag once per file There used to be a few code blocks that switched PHP interpreting on and off with PHP tags, convert those to use either heredoc or plain echo as that is the usual syntax for this purpose elsewhere in the code. Fixup some indentation while at it. * renderInstallerHTML() * renderInterfaceHTML() * renderIndex() * dragon() * renderSNMPPortFinder() * renderPopupHTML() * printStatic404() * renderUpgraderHTML() --- wwwroot/inc/install.php | 19 +++---- wwwroot/inc/interface.php | 103 +++++++++++++++++++------------------ wwwroot/inc/popup.php | 21 ++++---- wwwroot/inc/secret.php.off | 21 ++++++++ wwwroot/inc/solutions.php | 6 ++- wwwroot/inc/upgrade.php | 9 ++-- 6 files changed, 102 insertions(+), 77 deletions(-) create mode 100644 wwwroot/inc/secret.php.off diff --git a/wwwroot/inc/install.php b/wwwroot/inc/install.php index c945fe09a..447153ccc 100644 --- a/wwwroot/inc/install.php +++ b/wwwroot/inc/install.php @@ -36,9 +36,10 @@ function renderInstallerHTML() } $title = "RackTables installation: step ${step} of " . count ($stepfunc); header ('Content-Type: text/html; charset=UTF-8'); -?> + echo << -<?php echo $title; ?> +${title}