Boost logo

Boost :

From: Christoph Kögl (christoph_at_[hidden])
Date: 2004-03-24 15:40:14


Mein Browser ist Mozilla unter Linux. Der linke und der obere
Navigationsrahmen ist vorhanden. Im zentralen Bereich der Seite steht
"Error 404: No target servlet configured for uri:
/browserbanking/546.0".
Bis vor wenigen Wochen gab es keine Probleme mit dem Browserbanking
in genau dieser Konfiguration, seither geht es nicht mehr. Unter Windows
mit IE6 habe ich keine Probleme.

Am Don, 2004-03-18 um 08.57 schrieb SourceForge.net:

> Bugs item #918568, was opened at 2004-03-17 23:57
> Message generated for change (Tracker Item Submitted) made by Item Submitter
> You can respond by visiting:
> https://sourceforge.net/tracker/?func=detail&atid=107586&aid=918568&group_id=7586
>
> Category: functional
> Group: None
> Status: Open
> Resolution: None
> Priority: 5
> Submitted By: Nobody/Anonymous (nobody)
> Assigned to: Mark Rodgers (mark_rodgers)
> Summary: signals
>
> Initial Comment:
> //to suppoet intel-win32 under inter8.0, change bellow!
>
> file:singals
>
> namespace boost {
> namespace BOOST_SIGNALS_NAMESPACE {
> class trackable;
>
> namespace detail {
> // Represents an object that has been bound as
> part of a slot, and how
> // to notify that object of a disconnect
> struct bound_object {
> void* obj;
> void* data;
> void (*disconnect)(void*, void*);
>
> bool operator==(const bound_object& other) const
> { return obj == other.obj && data ==
> other.data; }
> bool operator<(const bound_object& other) const
> { return obj < other.obj; }
>
> //Add by ty, to support intel 80 compiler, 2004/03/18
> bool operator!=(const bound_object& other) const
> { return !(*this==other); }
> bool operator>(const bound_object&
> other) const
> { return !(*this < other); }
>
> };
>
> ----------------------------------------------------------------------
>
> You can respond by visiting:
> https://sourceforge.net/tracker/?func=detail&atid=107586&aid=918568&group_id=7586
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by: IBM Linux Tutorials
> Free Linux tutorial presented by Daniel Robbins, President and CEO of
> GenToo technologies. Learn everything from fundamentals to system
> administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
> _______________________________________________
> Boost-bugs mailing list
> Boost-bugs_at_[hidden]
> https://lists.sourceforge.net/lists/listinfo/boost-bugs
> _______________________________________________
> Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk