summaryrefslogtreecommitdiffstats
path: root/paste/include/geshi/languages
diff options
context:
space:
mode:
Diffstat (limited to 'paste/include/geshi/languages')
-rw-r--r--paste/include/geshi/languages/codeworker/codeworker.php52
-rw-r--r--paste/include/geshi/languages/css/css.php52
-rw-r--r--paste/include/geshi/languages/delphi/delphi.php54
-rw-r--r--paste/include/geshi/languages/html/html.php52
-rw-r--r--paste/include/geshi/languages/javascript/javascript.php52
-rw-r--r--paste/include/geshi/languages/php/php.php53
-rw-r--r--paste/include/geshi/languages/php/php4.php54
-rw-r--r--paste/include/geshi/languages/php/php5.php53
-rw-r--r--paste/include/geshi/languages/qbasic/qbasic.php52
-rw-r--r--paste/include/geshi/languages/web3d/vrml97.php46
10 files changed, 520 insertions, 0 deletions
diff --git a/paste/include/geshi/languages/codeworker/codeworker.php b/paste/include/geshi/languages/codeworker/codeworker.php
new file mode 100644
index 0000000..617b5ea
--- /dev/null
+++ b/paste/include/geshi/languages/codeworker/codeworker.php
@@ -0,0 +1,52 @@
+<?php
+/**
+ * GeSHi - Generic Syntax Highlighter
+ *
+ * For information on how to use GeSHi, please consult the documentation
+ * found in the docs/ directory, or online at http://geshi.org/docs/
+ *
+ * This file is part of GeSHi.
+ *
+ * GeSHi is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GeSHi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GeSHi; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * You can view a copy of the GNU GPL in the COPYING file that comes
+ * with GeSHi, in the docs/ directory.
+ *
+ * @package lang
+ * @author Nigel McNie <nigel@geshi.org>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
+ * @copyright (C) 2005 Nigel McNie
+ * @version 1.1.0
+ *
+ */
+
+/*
+ * Codeworker language file for GeSHi
+ *
+ * [notes about language]
+ *
+ * [notes about this implementation of the language]
+ *
+ */
+
+/** Get the GeSHiCodeContext class */
+require_once GESHI_CLASSES_ROOT . 'class.geshicodecontext.php';
+
+
+$this->_humanLanguageName = 'CodeWorker';
+
+$this->_rootContext =& new GeSHiCodeContext('codeworker');
+
+?>
diff --git a/paste/include/geshi/languages/css/css.php b/paste/include/geshi/languages/css/css.php
new file mode 100644
index 0000000..d42505d
--- /dev/null
+++ b/paste/include/geshi/languages/css/css.php
@@ -0,0 +1,52 @@
+<?php
+/**
+ * GeSHi - Generic Syntax Highlighter
+ *
+ * For information on how to use GeSHi, please consult the documentation
+ * found in the docs/ directory, or online at http://geshi.org/docs/
+ *
+ * This file is part of GeSHi.
+ *
+ * GeSHi is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GeSHi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GeSHi; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * You can view a copy of the GNU GPL in the COPYING file that comes
+ * with GeSHi, in the docs/ directory.
+ *
+ * @package lang
+ * @author Nigel McNie <nigel@geshi.org>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
+ * @copyright (C) 2005 Nigel McNie
+ * @version 1.1.0
+ *
+ */
+
+/*
+ * CSS language file for GeSHi
+ *
+ * [notes about language]
+ *
+ * [notes about this implementation of the language]
+ *
+ */
+
+/** Get the GeSHiCodeContext class */
+require_once GESHI_CLASSES_ROOT . 'class.geshicodecontext.php';
+
+
+$this->_humanLanguageName = 'CSS';
+
+$this->_rootContext =& new GeSHiCodeContext('css');
+
+?> \ No newline at end of file
diff --git a/paste/include/geshi/languages/delphi/delphi.php b/paste/include/geshi/languages/delphi/delphi.php
new file mode 100644
index 0000000..8d55b10
--- /dev/null
+++ b/paste/include/geshi/languages/delphi/delphi.php
@@ -0,0 +1,54 @@
+<?php
+/**
+ * GeSHi - Generic Syntax Highlighter
+ *
+ * For information on how to use GeSHi, please consult the documentation
+ * found in the docs/ directory, or online at http://geshi.org/docs/
+ *
+ * This file is part of GeSHi.
+ *
+ * GeSHi is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GeSHi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GeSHi; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * You can view a copy of the GNU GPL in the COPYING file that comes
+ * with GeSHi, in the docs/ directory.
+ *
+ * @package lang
+ * @author Benny Baumann <BenBE@benbe.omorphia.de>, Nigel McNie <nigel@geshi.org>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
+ * @copyright (C) 2005 Nigel McNie
+ * @version 1.1.0
+ *
+ */
+
+/*
+ * Delphi language file for GeSHi
+ *
+ * [notes about language]
+ *
+ * This implementation of delphi uses it's own version of ASM. It might
+ * be the case in the future that another version of ASM is similar enough
+ * for it to be used instead of the current delphi-specific one.
+ *
+ */
+
+/** Get the GeSHiCodeContext class */
+require_once GESHI_CLASSES_ROOT . 'class.geshicodecontext.php';
+
+
+$this->_humanLanguageName = 'Delphi';
+
+$this->_rootContext =& new GeSHiCodeContext('delphi');
+
+?>
diff --git a/paste/include/geshi/languages/html/html.php b/paste/include/geshi/languages/html/html.php
new file mode 100644
index 0000000..e6a0768
--- /dev/null
+++ b/paste/include/geshi/languages/html/html.php
@@ -0,0 +1,52 @@
+<?php
+/**
+ * GeSHi - Generic Syntax Highlighter
+ *
+ * For information on how to use GeSHi, please consult the documentation
+ * found in the docs/ directory, or online at http://geshi.org/docs/
+ *
+ * This file is part of GeSHi.
+ *
+ * GeSHi is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GeSHi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GeSHi; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * You can view a copy of the GNU GPL in the COPYING file that comes
+ * with GeSHi, in the docs/ directory.
+ *
+ * @package lang
+ * @author Nigel McNie <nigel@geshi.org>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
+ * @copyright (C) 2005 Nigel McNie
+ * @version 1.1.0
+ *
+ */
+
+/*
+ * HTML language file for GeSHi
+ *
+ * [notes about language]
+ *
+ * [notes about this implementation of the language]
+ *
+ */
+
+/** Get the GeSHiCodeContext class */
+require_once GESHI_CLASSES_ROOT . 'class.geshicodecontext.php';
+
+
+$this->_humanLanguageName = 'HTML';
+
+$this->_rootContext =& new GeSHiCodeContext('html');
+
+?> \ No newline at end of file
diff --git a/paste/include/geshi/languages/javascript/javascript.php b/paste/include/geshi/languages/javascript/javascript.php
new file mode 100644
index 0000000..354ac04
--- /dev/null
+++ b/paste/include/geshi/languages/javascript/javascript.php
@@ -0,0 +1,52 @@
+<?php
+/**
+ * GeSHi - Generic Syntax Highlighter
+ *
+ * For information on how to use GeSHi, please consult the documentation
+ * found in the docs/ directory, or online at http://geshi.org/docs/
+ *
+ * This file is part of GeSHi.
+ *
+ * GeSHi is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GeSHi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GeSHi; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * You can view a copy of the GNU GPL in the COPYING file that comes
+ * with GeSHi, in the docs/ directory.
+ *
+ * @package lang
+ * @author Nigel McNie <nigel@geshi.org>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
+ * @copyright (C) 2005 Nigel McNie
+ * @version 1.1.0
+ *
+ */
+
+/*
+ * Javascript language file for GeSHi
+ *
+ * [notes about language]
+ *
+ * [notes about this implementation of the language]
+ *
+ */
+
+/** Get the GeSHiCodeContext class */
+require_once GESHI_CLASSES_ROOT . 'class.geshicodecontext.php';
+
+
+$this->_humanLanguageName = 'Javascript';
+
+$this->_rootContext =& new GeSHiCodeContext('javascript');
+
+?> \ No newline at end of file
diff --git a/paste/include/geshi/languages/php/php.php b/paste/include/geshi/languages/php/php.php
new file mode 100644
index 0000000..e627d86
--- /dev/null
+++ b/paste/include/geshi/languages/php/php.php
@@ -0,0 +1,53 @@
+<?php
+/**
+ * GeSHi - Generic Syntax Highlighter
+ *
+ * For information on how to use GeSHi, please consult the documentation
+ * found in the docs/ directory, or online at http://geshi.org/docs/
+ *
+ * This file is part of GeSHi.
+ *
+ * GeSHi is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GeSHi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GeSHi; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * You can view a copy of the GNU GPL in the COPYING file that comes
+ * with GeSHi, in the docs/ directory.
+ *
+ * @package lang
+ * @author Nigel McNie <nigel@geshi.org>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
+ * @copyright (C) 2005 Nigel McNie
+ * @version 1.1.0
+ *
+ */
+
+/*
+ * PHP language file for GeSHi
+ *
+ * [notes about language]
+ *
+ * [notes about this implementation of the language]
+ *
+ */
+
+/** Get the GeSHiCodeContext class */
+require_once GESHI_CLASSES_ROOT . 'class.geshicodecontext.php';
+
+
+$this->_humanLanguageName = 'PHP';
+
+$this->_rootContext =& new GeSHiCodeContext('html');
+$this->_rootContext->infectWith(new GeSHiCodeContext('php'));
+
+?>
diff --git a/paste/include/geshi/languages/php/php4.php b/paste/include/geshi/languages/php/php4.php
new file mode 100644
index 0000000..2b20c9b
--- /dev/null
+++ b/paste/include/geshi/languages/php/php4.php
@@ -0,0 +1,54 @@
+<?php
+/**
+ * GeSHi - Generic Syntax Highlighter
+ * ----------------------------------
+ *
+ * For information on how to use GeSHi, please consult the documentation
+ * found in the docs/ directory, or online at http://geshi.org/docs/
+ *
+ * This file is part of GeSHi.
+ *
+ * GeSHi is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GeSHi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GeSHi; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * You can view a copy of the GNU GPL in the COPYING file that comes
+ * with GeSHi, in the docs/ directory.
+ *
+ * @package lang
+ * @author Nigel McNie <nigel@geshi.org>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
+ * @copyright (C) 2005 Nigel McNie
+ * @version 1.1.0
+ *
+ */
+
+/*
+ * PHP4 language file for GeSHi
+ *
+ * [notes about language]
+ *
+ * [notes about this implementation of the language]
+ *
+ */
+
+/** Get the GeSHiCodeContext class */
+require_once GESHI_CLASSES_ROOT . 'class.geshicodecontext.php';
+
+
+$this->_humanLanguageName = 'PHP4';
+
+$this->_rootContext =& new GeSHiCodeContext('html');
+$this->_rootContext->infectWith(new GeSHiCodeContext('php', 'php4'));
+
+?>
diff --git a/paste/include/geshi/languages/php/php5.php b/paste/include/geshi/languages/php/php5.php
new file mode 100644
index 0000000..e108c04
--- /dev/null
+++ b/paste/include/geshi/languages/php/php5.php
@@ -0,0 +1,53 @@
+<?php
+/**
+ * GeSHi - Generic Syntax Highlighter
+ *
+ * For information on how to use GeSHi, please consult the documentation
+ * found in the docs/ directory, or online at http://geshi.org/docs/
+ *
+ * This file is part of GeSHi.
+ *
+ * GeSHi is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GeSHi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GeSHi; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * You can view a copy of the GNU GPL in the COPYING file that comes
+ * with GeSHi, in the docs/ directory.
+ *
+ * @package lang
+ * @author Nigel McNie <nigel@geshi.org>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
+ * @copyright (C) 2005 Nigel McNie
+ * @version 1.1.0
+ *
+ */
+
+/*
+ * PHP5 language file for GeSHi
+ *
+ * [notes about language]
+ *
+ * [notes about this implementation of the language]
+ *
+ */
+
+/** Get the GeSHiCodeContext class */
+require_once GESHI_CLASSES_ROOT . 'class.geshicodecontext.php';
+
+
+$this->_humanLanguageName = 'PHP';
+
+$this->_rootContext =& new GeSHiCodeContext('html');
+$this->_rootContext->infectWith(new GeSHiCodeContext('php', 'php5'));
+
+?>
diff --git a/paste/include/geshi/languages/qbasic/qbasic.php b/paste/include/geshi/languages/qbasic/qbasic.php
new file mode 100644
index 0000000..f69847c
--- /dev/null
+++ b/paste/include/geshi/languages/qbasic/qbasic.php
@@ -0,0 +1,52 @@
+<?php
+/**
+ * GeSHi - Generic Syntax Highlighter
+ *
+ * For information on how to use GeSHi, please consult the documentation
+ * found in the docs/ directory, or online at http://geshi.org/docs/
+ *
+ * This file is part of GeSHi.
+ *
+ * GeSHi is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GeSHi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GeSHi; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * You can view a copy of the GNU GPL in the COPYING file that comes
+ * with GeSHi, in the docs/ directory.
+ *
+ * @package lang
+ * @author Nigel McNie <nigel@geshi.org>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
+ * @copyright (C) 2005 Nigel McNie
+ * @version 1.1.0
+ *
+ */
+
+/*
+ * QBasic language file for GeSHi
+ *
+ * [notes about language]
+ *
+ * [notes about this implementation of the language]
+ *
+ */
+
+/** Get the GeSHiCodeContext class */
+require_once GESHI_CLASSES_ROOT . 'class.geshicodecontext.php';
+
+
+$this->_humanLanguageName = 'QBasic';
+
+$this->_rootContext =& new GeSHiCodeContext('qbasic');
+
+?> \ No newline at end of file
diff --git a/paste/include/geshi/languages/web3d/vrml97.php b/paste/include/geshi/languages/web3d/vrml97.php
new file mode 100644
index 0000000..d39326b
--- /dev/null
+++ b/paste/include/geshi/languages/web3d/vrml97.php
@@ -0,0 +1,46 @@
+<?php
+/**
+ * GeSHi - Generic Syntax Highlighter
+ * ----------------------------------
+ *
+ * For information on how to use GeSHi, please consult the documentation
+ * found in the docs/ directory, or online at http://geshi.org/docs/
+ *
+ * This file is part of GeSHi.
+ *
+ * GeSHi is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * GeSHi is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GeSHi; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * You can view a copy of the GNU GPL in the COPYING file that comes
+ * with GeSHi, in the docs/ directory.
+ *
+ * @package lang
+ * @author Nigel McNie <nigel@geshi.org>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
+ * @copyright (C) 2005 Nigel McNie
+ * @version 1.1.0
+ *
+ */
+
+/** Get the GeSHiCodeContext class */
+require_once GESHI_CLASSES_ROOT . 'class.geshicodecontext.php';
+
+/**
+ * VRML97 Language file for GeSHi
+ */
+$this->_humanLanguageName = 'VRML97';
+
+$this->_rootContext =& new GeSHiCodeContext('web3d', 'vrml97');
+
+?> \ No newline at end of file