Revisions for hermes/lib/base.php

Location: [ Horde ] / hermes / lib / base.php View: Logs | Branches | Statistics
Search Revisions:
Show diffs between and
Show Differences shows diffs to the previous revision. If you select a revision by clicking its row, Show Differences will show the differences to the selected row.
Show Branch:
  Revision Date Author Log Message
1.36 (+6 -4 lines) 01/02/2008 11:15 AM Chuck Hagenbuch chuck

Avoid using @ for define silencing; @ is generally slow, and errors
silenced with @ are still passed to error handlers registered with
set_error_handler().

Tags: HERMES_1_0, HERMES_1_0_RC2, HERMES_1_0_RC1

1.35 (+2 -1 lines) 09/13/2007 01:44 PM Jan Schneider jan

Prevent XSS with register_globals on.

1.34 (+2 -2 lines) 06/27/2007 01:23 PM Jan Schneider jan

Bump year, looks like a missed a few last time.

1.33 (+2 -2 lines) 01/01/2006 04:10 PM Jan Schneider jan

Happy new year\!

1.32 (+2 -2 lines) 10/13/2005 01:42 AM Matt Selsky selsky

ws

1.31 (+2 -2 lines) 01/03/2005 09:34 AM Jan Schneider jan

Happy New Year

1.30 (+2 -2 lines) 10/18/2004 08:45 PM Chuck Hagenbuch chuck

Registry::getParam() -> Registry::get().

1.29 (+5 -8 lines) 08/31/2004 02:29 PM Chuck Hagenbuch chuck

- start output compression. avoids weird problems when we load other
apps that start it (i.e., turba).
- avoid global $template variables.

1.28 (+5 -5 lines) 04/07/2004 10:43 AM Chuck Hagenbuch chuck

No more HORDE_LIBS.

1.27 (+6 -1 lines) 03/01/2004 12:12 PM eraserhd

* Rework submit screen so that it doesn't use the (now dead) rows renderer.

1.26 (+1 -5 lines) 02/13/2004 11:02 PM Chuck Hagenbuch chuck

Remove includes of Browser.php that are no longer needed.

1.25 (+2 -2 lines) 02/13/2004 08:36 PM Chuck Hagenbuch chuck

Config:: and Help:: moved to framework packages.

1.24 (+2 -2 lines) 02/12/2004 03:49 PM Chuck Hagenbuch chuck

Browser:: is now a framework package.

1.23 (+2 -2 lines) 01/24/2004 03:04 PM Chuck Hagenbuch chuck

[cjh] Various $no_auth and $self_contained_auth flags have been standardized
into an AUTH_HANDLER constant, which if defined signals the application
that it should not check permissions upon calling $registry->pushApp(),
as the calling script will handle that itself, or is a system-level cron
job/script/etc.
[cjh] Add an option to $registry->pushApp() to specify whether or not to check
application permissions.

1.22 (+2 -9 lines) 01/24/2004 12:15 AM Chuck Hagenbuch chuck

[cjh] The 'allow_guests' setting, and $registry->allowGuests(), have been
removed in favor of Horde_Perms application permissions.

1.21 (+1 -4 lines) 01/16/2004 05:27 PM Jan Schneider jan

Instantiate a global  object in core.php.

1.20 (+2 -2 lines) 01/15/2004 06:23 PM Jan Schneider jan

Move Horde_Perms to framework.

1.19 (+6 -3 lines) 01/14/2004 11:47 AM eraserhd

* Go to login screen if we get a permission denied from Registry::pushApp().
* Pass Registry::pushApp() error through to user.

1.18 (+3 -3 lines) 01/13/2004 01:46 PM mdjukic

updated paths for Horde_Form

1.17 (+2 -2 lines) 01/01/2004 10:15 AM Jan Schneider jan

Happy new year everyone.

1.16 (+4 -1 lines) 11/07/2003 12:29 AM Chuck Hagenbuch chuck

Implements a time review screen where a "time administrator" can see, modify
and delete submitted timeslices.  You must set permissions before you
can see it or edit time on it, see docs/INFO included in this patch for
more info.

Submitted by: "Jason M. Felice" <jfelice@cronosys.com>

1.15 (+5 -5 lines) 09/24/2003 04:42 PM Chuck Hagenbuch chuck

prevent errors with transparent authentication.

1.14 (+30 -26 lines) 09/20/2003 04:10 PM Chuck Hagenbuch chuck

Use horde/lib/core.php in all applications. For now, I've commented
out the HORDE_LIBS-based includes in core.php and we're still using
the old HORDE_BASE . '/lib/' includes everywhere. But the HORDE_LIBS
constant is now available everywhere and core.php is included to
properly set up the base framework.

I also hit a bunch of other base.php things while I was at it:

- always check the results of $registry->pushApp() and display an
error if it fails.

- removed old cache_ssl code which is handled by
Browser::downloadHeaders() now.

- make sure all base.php files check authentication (you may need to
specify allow_guests = true on some applications that were open
beforehand).

- move the auth check up as soon as possible so as not to do
unnecessary work.

- remove libraries and code that aren't used.

- try and organize files consistently.

- probably a few other minor things.

Please test out everything as you can and report problems or syntax
errors; I'm sure I missed a thing or two.

1.13 (+2 -2 lines) 04/26/2003 08:27 PM Chuck Hagenbuch chuck

Fix license URL.

1.12 (+2 -2 lines) 04/20/2003 04:50 PM Chuck Hagenbuch chuck

[cjh] Add a new API call, Auth::isAuthenticated($realm = null), for
determining whether or not a user is logged in to the current
realm (by default null). Auth::getAuth() is still used to get
the current user, but now you don't need to know the auth realm
to get the current user - just to check authentication.

This commit replaces Auth::getAuth() with Auth::isAuthenticated()
where appropriate. Hopefully I didn't miss anywhere or cause any
problems; let me know if you find anything.

1.11 (+2 -2 lines) 02/21/2003 08:21 PM Chuck Hagenbuch chuck

Fix viral typo.

1.10 (+3 -3 lines) 01/17/2003 05:40 PM Chuck Hagenbuch chuck

style, reference

1.9 (+17 -6 lines) 01/05/2003 01:35 PM Jan Schneider jan

Revert the mess. I hope I got all files and correct rollback positions.

1.8 (+2 -2 lines) 01/05/2003 12:37 AM mikec

revert last commit on apps that don't have registry calls.

1.7 (+2 -2 lines) 01/04/2003 11:51 PM mikec

require_once => require on standard.php so registry calls work.

1.6 (+6 -17 lines) 01/04/2003 10:58 PM Jan Schneider jan

Condense some code from the applications' base.php files into standard.php.

1.5 (+2 -2 lines) 01/03/2003 07:47 AM Jan Schneider jan

Bump year.

1.4 (+3 -3 lines) 09/24/2002 06:58 PM Chuck Hagenbuch chuck

phase 2: complete the renaming of FormSprocket:: to Horde_Form:: and
GraphSprocket:: to Horde_Graph::

1.3 (+1 -11 lines) 08/01/2002 12:09 PM Chuck Hagenbuch chuck

This isn't needed anymore.

1.2 (+11 -3 lines) 08/01/2002 12:26 AM Chuck Hagenbuch chuck

more improvements, and an attempt to make downloading work in IE over SSL. Hah!

1.1 07/19/2002 06:22 PM Chuck Hagenbuch chuck

Very alpha Hermes version. Lets you enter time. :)