diff --git a/htdocs/application/config/config.php b/htdocs/application/config/config.php index 7a52925..fb68077 100644 --- a/htdocs/application/config/config.php +++ b/htdocs/application/config/config.php @@ -23,7 +23,7 @@ | */ //$config['base_url'] = 'http://xmg_webgui'; -$config['base_url'] = 'http://xmg.phil.hhu.de'; +$config['base_url'] = 'https://xmg.phil.hhu.de'; /* |-------------------------------------------------------------------------- diff --git a/htdocs/application/views/home_view.php b/htdocs/application/views/home_view.php index 91ce567..ce969d8 100644 --- a/htdocs/application/views/home_view.php +++ b/htdocs/application/views/home_view.php @@ -5,7 +5,7 @@ XMG WebGUI - + diff --git a/htdocs/application/views/resources_view.php b/htdocs/application/views/resources_view.php index 987de76..4d6f2bb 100644 --- a/htdocs/application/views/resources_view.php +++ b/htdocs/application/views/resources_view.php @@ -5,7 +5,7 @@ Resources | XMG WebGUI - + @@ -87,7 +87,7 @@
  • Depictive grammar: an LTAG grammar fragment with semantic frames for English depictives, by Benjamin Burkhardt.
  • Al: a description of derivational polysemy with the suffix -al on verbs of change of possession, by Marios Andreou and Simon Petitjean (see the article here).
  • frame-constraints: a set of frame constraints defining a type hierarchy for selected event types, by Laura Kallmeyer.
  • -
  • FrenchTAG + MWE: a FrenchTAG grammar updated with a number of Multi Word Expressions, by Agata Savary (draft of an accompanying paper)
  • +
  • FrenchTAG + MWE: a FrenchTAG grammar updated with a number of Multi Word Expressions, by Agata Savary (draft of an accompanying paper)

  • Compiler lpframe - Morphological descriptions and frame semantics

    diff --git a/htdocs/application/views/tulipa_view.php b/htdocs/application/views/tulipa_view.php index 97520fe..c930138 100644 --- a/htdocs/application/views/tulipa_view.php +++ b/htdocs/application/views/tulipa_view.php @@ -9,7 +9,7 @@ - + diff --git a/htdocs/application/views/tulipa_viewer_view.php b/htdocs/application/views/tulipa_viewer_view.php index 233375b..fa6c500 100644 --- a/htdocs/application/views/tulipa_viewer_view.php +++ b/htdocs/application/views/tulipa_viewer_view.php @@ -6,7 +6,7 @@ - + diff --git a/htdocs/application/views/upload_grammar_form.php b/htdocs/application/views/upload_grammar_form.php index 1c72102..718d400 100644 --- a/htdocs/application/views/upload_grammar_form.php +++ b/htdocs/application/views/upload_grammar_form.php @@ -4,7 +4,7 @@ Metagrammar upload | XMG WebGUI - + diff --git a/htdocs/application/views/upload_viewer_form.php b/htdocs/application/views/upload_viewer_form.php index 68bb14a..1a08623 100644 --- a/htdocs/application/views/upload_viewer_form.php +++ b/htdocs/application/views/upload_viewer_form.php @@ -5,7 +5,7 @@ Grammar upload | XMG WebGUI - + diff --git a/htdocs/application/views/viewer_view.php b/htdocs/application/views/viewer_view.php index 8bd8bac..e7b046b 100644 --- a/htdocs/application/views/viewer_view.php +++ b/htdocs/application/views/viewer_view.php @@ -7,7 +7,7 @@ - + diff --git a/htdocs/application/views/workbench_view.php b/htdocs/application/views/workbench_view.php index 4b45a2a..f3dfba9 100644 --- a/htdocs/application/views/workbench_view.php +++ b/htdocs/application/views/workbench_view.php @@ -5,7 +5,7 @@ Workbench | XMG WebGUI - + diff --git a/htdocs/application/views/xtag_view.php b/htdocs/application/views/xtag_view.php index 3a5df2e..5a92512 100644 --- a/htdocs/application/views/xtag_view.php +++ b/htdocs/application/views/xtag_view.php @@ -6,7 +6,7 @@ XTAG | XMG WebGUI - + diff --git a/htdocs/system/core/Controller.php b/htdocs/system/core/Controller.php index 6d9bacf..d134c07 100755 --- a/htdocs/system/core/Controller.php +++ b/htdocs/system/core/Controller.php @@ -28,6 +28,7 @@ * @author EllisLab Dev Team * @link http://codeigniter.com/user_guide/general/controllers.html */ +#[\AllowDynamicProperties] class CI_Controller { private static $instance; diff --git a/htdocs/system/core/Input.php b/htdocs/system/core/Input.php index 434d1e4..758198a 100755 --- a/htdocs/system/core/Input.php +++ b/htdocs/system/core/Input.php @@ -27,6 +27,7 @@ * @author EllisLab Dev Team * @link http://codeigniter.com/user_guide/libraries/input.html */ +#[\AllowDynamicProperties] class CI_Input { /** diff --git a/htdocs/system/core/Loader.php b/htdocs/system/core/Loader.php index 8f41669..cab2242 100755 --- a/htdocs/system/core/Loader.php +++ b/htdocs/system/core/Loader.php @@ -27,6 +27,7 @@ * @category Loader * @link http://codeigniter.com/user_guide/libraries/loader.html */ +#[\AllowDynamicProperties] class CI_Loader { // All these are set automatically. Don't mess with them. diff --git a/htdocs/system/core/Router.php b/htdocs/system/core/Router.php index 9f5065f..d6338fc 100755 --- a/htdocs/system/core/Router.php +++ b/htdocs/system/core/Router.php @@ -27,6 +27,7 @@ * @category Libraries * @link http://codeigniter.com/user_guide/general/routing.html */ +#[\AllowDynamicProperties] class CI_Router { /** diff --git a/htdocs/system/core/URI.php b/htdocs/system/core/URI.php index 3097a57..33f31b5 100755 --- a/htdocs/system/core/URI.php +++ b/htdocs/system/core/URI.php @@ -27,8 +27,8 @@ * @author EllisLab Dev Team * @link http://codeigniter.com/user_guide/libraries/uri.html */ +#[\AllowDynamicProperties] class CI_URI { - /** * List of cached uri segments * diff --git a/htdocs/tulipa/uploads/index.html b/htdocs/tulipa/uploads/index.html deleted file mode 100644 index 065d2da..0000000 --- a/htdocs/tulipa/uploads/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - 403 Forbidden - - - -

    Directory access is forbidden.

    - - - \ No newline at end of file