Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2013-08-07 11:28:19 +0400
committerMichal Čihař <mcihar@suse.cz>2013-08-07 11:28:19 +0400
commitb4dc0213e644204a581535ef29f12eea931e9cf0 (patch)
treed65fa006a28ffeadd39cdc9e6112b84212659557 /js/doclinks.js
parent7deb885d18aca1de277b3975acea1bf9a41a6ca5 (diff)
Add infrastructure for doc links in SQL highlighter
Diffstat (limited to 'js/doclinks.js')
-rw-r--r--js/doclinks.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/js/doclinks.js b/js/doclinks.js
new file mode 100644
index 0000000000..3d88789caa
--- /dev/null
+++ b/js/doclinks.js
@@ -0,0 +1,7 @@
+/**
+ * Definition of links to MySQL documentation.
+ */
+
+var mysql_doc_keyword = {
+ 'SELECT': Array('select')
+};