From: Raphaël Barrois Date: Fri, 5 Apr 2013 21:43:49 +0000 (+0200) Subject: Add support for JS error reporting to Sentry. X-Git-Tag: xorg/1.1.8~9 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=e42b6614b2e616924d05e7b10834c0856b8fb5d6;p=platal.git Add support for JS error reporting to Sentry. Signed-off-by: Raphaël Barrois --- diff --git a/configs/platal.ini b/configs/platal.ini index cfc3820..532f221 100644 --- a/configs/platal.ini +++ b/configs/platal.ini @@ -159,6 +159,10 @@ econfiance = "" ; Key used to log errors to Sentry sentry_dsn = "" +; $globals->core->sentry_js_dsn +; Key used to log JS errors to Sentry +sentry_js_dsn = "" + ; The API section contains the configuration for the web services. [Api] diff --git a/modules/platal.php b/modules/platal.php index 481b4c4..f4b0443 100644 --- a/modules/platal.php +++ b/modules/platal.php @@ -613,9 +613,13 @@ Adresse de secours : ' . $to)); $wiz->apply($page, 'review', $action, $mode); } - function handler_test_error($page) + function handler_test_error($page, $mode = null) { - throw new Exception("Blih"); + if ($mode == 'js') { + $page->changeTpl('platal/error.tpl'); + } else { + throw new Exception("Blih"); + } } } diff --git a/templates/platal/error.tpl b/templates/platal/error.tpl new file mode 100644 index 0000000..3dcceff --- /dev/null +++ b/templates/platal/error.tpl @@ -0,0 +1,31 @@ +{**************************************************************************} +{* *} +{* Copyright (C) 2003-2013 Polytechnique.org *} +{* http://opensource.polytechnique.org/ *} +{* *} +{* This program 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. *} +{* *} +{* This program 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 this program; if not, write to the Free Software *} +{* Foundation, Inc., *} +{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *} +{* *} +{**************************************************************************} + +{literal} + +{/literal} diff --git a/templates/platal/raven.tpl b/templates/platal/raven.tpl new file mode 100644 index 0000000..e33bc08 --- /dev/null +++ b/templates/platal/raven.tpl @@ -0,0 +1,32 @@ +{**************************************************************************} +{* *} +{* Copyright (C) 2003-2013 Polytechnique.org *} +{* http://opensource.polytechnique.org/ *} +{* *} +{* This program 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. *} +{* *} +{* This program 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 this program; if not, write to the Free Software *} +{* Foundation, Inc., *} +{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *} +{* *} +{**************************************************************************} + +{if $globals->core->sentry_js_dsn} + {* Minified raven *} + + +{/if} diff --git a/templates/skin/common.header.tpl b/templates/skin/common.header.tpl index d91ddc1..f27554a 100644 --- a/templates/skin/common.header.tpl +++ b/templates/skin/common.header.tpl @@ -46,5 +46,6 @@ {include core=plpage.header.tpl} + {include file=platal/raven.tpl} {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}