Revisions for trean/lib/base.php

Location: [ Horde ] / trean / 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.
 
  Revision Date Author Log Message
1.41 (+2 -2 lines) 06/14/2008 06:47 PM Michael Rubinsky mrubinsk

Only check and attempt to create a default share if we are actually logged
in. Partially(?) fixes 6924

Bug: 6924

1.40 (+5 -2 lines) 05/07/2008 09:24 AM Jan Schneider jan

Catch errors when adding the initial folder.

1.39 (+6 -4 lines) 01/04/2008 12:30 PM Chuck Hagenbuch chuck

re-define fixes

1.38 (+2 -2 lines) 01/02/2008 06:14 AM Jan Schneider jan

Happy New Year

1.37 (+4 -2 lines) 10/30/2007 08:24 PM Jan Schneider jan

First round of copyright assignments.

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

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

1.35 (+7 -2 lines) 12/31/2006 04:24 PM Chuck Hagenbuch chuck

[cjh] Move bookmarks from DataTree storage to a SQL table.

Probably still a few kinks to work out, but it works.

1.34 (+2 -2 lines) 12/30/2006 03:24 PM Jan Schneider jan

Standardize copyright wrapping and spacing.

1.33 (+2 -2 lines) 08/04/2006 09:46 AM Jan Schneider jan

Take advantage of share caching in Trean.
Maybe we want a separate configuration setting to turn this off or on in
Trean, in that case we need to check inside Trean_Bookmarks::singleton() if we
have a sufficiently new Horde_Share version.

1.32 (+4 -4 lines) 06/14/2006 07:14 PM Ben Chavet ben

Rename "categories" to "folders" to avoid confusion with Horde Categories.

1.31 (+2 -2 lines) 04/07/2006 10:39 PM Chuck Hagenbuch chuck

no errors when category_id isn't set.

1.30 (+2 -2 lines) 01/01/2006 04:12 PM Jan Schneider jan

Happy new year\!

1.29 (+10 -2 lines) 11/22/2005 04:13 PM Chuck Hagenbuch chuck

Try to make things a little lighter by using readonly sessions in
favicon.php and sending cache headers.

1.28 (+7 -9 lines) 05/10/2005 11:28 AM Jan Schneider jan

$my_bookmarks isn't used anywhere in Trean.

1.27 (+16 -2 lines) 03/15/2005 05:01 PM Ben Chavet ben

Add backend support for Horde_Share, though the UI doesn't reflect this yet.
Unfortunately, this breaks compatibility with Horde 3.0.x, but we're
shooting for a release with Horde 3.1.

be sure to run scripts/upgrades/2005-03-15_move_to_horde_share.php

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

Happy New Year

1.25 (+2 -3 lines) 12/14/2004 05:51 PM Ben Chavet ben

Restructured the bookmark storage to take better advantage of the natural
parent/child relationships that the datatree structure provides.

The most notable advantage of this is the ability to have bookmarks in
the root category (No more "You must have at least one category..."
messages).

Minor UI updates, more to come.

1.24 (+1 -7 lines) 12/03/2004 04:57 PM Chuck Hagenbuch chuck

This check is superfluous and breaks scripts that need AUTH_HANDLER honored.

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

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

1.22 (+6 -1 lines) 05/11/2004 03:32 PM Chuck Hagenbuch chuck

- strings instead of constants
- make sure all files have a header
- fix license references to all point to the actual LICENSE file.
- cleanups

1.21 (+2 -2 lines) 05/11/2004 02:57 PM Chuck Hagenbuch chuck

Trim WS

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

No more HORDE_LIBS.

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

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

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

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

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

Browser:: is now a framework package.

1.16 (+6 -3 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.15 (+2 -2 lines) 12/12/2003 07:10 PM Michael M Slusarz slusarz

Moved Horde_Text to framework.

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

prevent errors with transparent authentication.

1.13 (+29 -24 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.12 (+2 -2 lines) 04/20/2003 04:51 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) 04/11/2003 02:54 PM Michael M Slusarz slusarz

Use Browser::singleton().

1.10 (+4 -4 lines) 02/21/2003 08:22 PM Chuck Hagenbuch chuck

Fix viral typo.

1.9 (+5 -5 lines) 01/07/2003 05:15 AM Jan Schneider jan

Include Browser.php (and with it String.php) before Registry.php.

1.8 (+15 -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.7 (+2 -2 lines) 01/05/2003 12:37 AM mikec

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

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

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

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

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

1.4 (+2 -7 lines) 01/02/2003 05:58 PM Michael M Slusarz slusarz

Missed some Horde::authenticationFailureRedirect() conversions.

1.3 (+2 -2 lines) 11/25/2002 09:35 AM Chuck Hagenbuch chuck

Clean up a bunch of Trean, including adding sub-categories. A bunch of
this is still a mess.

1.2 (+6 -2 lines) 08/25/2002 10:29 PM mikec

Add information and short cut to a link that will take the current url and page title and create a bookmark entry.

Will need to find another home for it but at least it's there as it makes thinks much more usable.

1.1 08/25/2002 09:36 PM mikec

Initial Commit of Trean.