[svn] 3308: QE: yes - method on HTTPMultiService fixed

Revision: 3308
Author: [email protected]
Date: 2008-09-22 20:19:51 -0700 (Mon, 22 Sep 2008)
Log Message:
QE: yes - method on HTTPMultiService fixed
HTTPMultiService.rootURL -> baseURL - it is interpreted as a directory name, not a file name like rootURL
endpoint now works on mx.rpc.remoting.RemoteObject (not just the mxml variant)
also promoted concurrency and showBusyCursor to RemoteObject
removed RTE from getOperation for HTTPMultiService as it messes with data binding expressions eval'd before the operation is added
Docs: properties above moved from mxml.RemoteObject to RemoteObject, ASdoc changes for HTTPMultiService
Blazeds checkintests pass
Reviewer: Pete
Modified Paths:
flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/AbstractOperation.as
flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/HTTPMultiService.as
flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/Operation.as
flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/Operation.as
flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/mxml/Operation.as
flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/mxml/RemoteObject.as

cju wrote:Try including your graphic module into your initramfs.
(EDIT: Question unnecessary, found out how, thank you lots for suggestion!)
How can I mkinitcpio into my current initramfs? It doesn't seem to write into the actual one unless specified to it
Last edited by M4R10zM0113R (2015-01-17 20:07:14)

Similar Messages

  • [svn:fx-3.x] 7499: Addendum to fix for BLZ-233 - adjust visibility of new internal heartbeat util methods to protected from private .

    Revision: 7499
    Author:   [email protected]
    Date:     2009-06-02 16:10:08 -0700 (Tue, 02 Jun 2009)
    Log Message:
    Addendum to fix for BLZ-233 - adjust visibility of new internal heartbeat util methods to protected from private.
    QA: No
    Doc: No
    Checkintests Pass: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-233
    Modified Paths:
        flex/sdk/branches/3.x/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as

    inspired2apathy wrote:
    ... The goal is a ScrollPane that automatically wraps the text inside it. I've just about got it, but I have one thing that's not working. If I just put the JTextArea{s} in as the Editor, then you lose the any text that doesn't fit inside whatever the initial size was. Instead, I put the JTextAreas inside a JScrollPane which works fine, except that I still have to determine the size of the JScrollPane in advance. I would like to make each Editor/JScrollPane start out with just a single line of text and expand until it reaches a certain small number of lines.
    ... What am I missing?THE BASICS. See if this isn't what you are trying to do.
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    public class Test
      public static void main(String[] args) {
        JTextArea ta = new JTextArea();
        ta.setLineWrap(true);
        ta.setWrapStyleWord(true);
        JScrollPane sp = new JScrollPane(ta);
        JFrame f = new JFrame();
        f.getContentPane().add(sp, "Center");
        f.setBounds(0, 0, 400, 300);
        f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
        f.setVisible(true); 
    }OP, your code was too long and complicated for me to compile and run. However, aren't you forgetting the two simple methods <tt>JTextArea.setLineWrap()</tt> and <tt>JTextArea.setWrapStyleWord()</tt>? Furthermore, I absolutely see no need for you to extend SWING components for demonstration this simple -- that is, if I understand your problem correctly.

  • [svn:bz-4.0.0_fixes] 16633: Merge fix from trunk

    Revision: 16633
    Revision: 16633
    Author:   [email protected]
    Date:     2010-06-23 07:55:57 -0700 (Wed, 23 Jun 2010)
    Log Message:
    Merge fix from trunk
    Bugs: Watson #2632745 - Edge server to lcds server connection leak.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: This is the BlazeDS part of the fix, there will be an LCDS part as well.
    This wasn't an Edge Server bug per say, the real bug goes as follows:
    -Take a messaging sample that uses RTMP.
    -Connect and subscribe the Consumer to the destination.
    -Get Message Generator stream messages to the destination.
    -Close the browser window.
    -At this point, you?\226?\128?\153d expect the FlexClient to time out (after 5 seconds if no FlexClient timeout is defined, or as specified by FlexClient timeout) which should time out the RTMPFlexSession. However, FlexClient does not time out because Message Generator is wrongly keeping the FlexClient alive as it?\226?\128?\153s pushing messages to it.
    The bug is scattered across FlexClient.java class but mainly in FlexClient#push method. This method calls FlexClient#updateLastUse at the beginning of the method but what it should do is to delay FlexClient#updateLastUse until  the message is actually written to the network (which won?\226?\128?\153t be the case when the browser window is closed, hence FlexClient will time out as expected).
    This has an important side-effect for the Edge Server. When RTMP is in use, and there?\226?\128?\153s a stream of messages from Message Generator to a Flex client, when the browser window is closed, the connection between the Flex client and the Edge Server is cleaned up correctly, but the connection between the Edge Server and the backing App Server on behalf of the FlexClient stays open due to FlexClient not timing out, until the message streaming stops.
    The fix is to not call FlexClient#updateLastUse right away in FlexClient#push, and delay it when we actually know that the message is written to the client.
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/client/FlexClient.java

  • [svn] 2312: CursorManager: New functionality and a fix for SDK-15029

    Revision: 2312
    Author: [email protected]
    Date: 2008-06-30 17:24:01 -0700 (Mon, 30 Jun 2008)
    Log Message:
    CursorManager: New functionality and a fix for SDK-15029
    * NEW: When the mouse leaves a window/stage where a cursor is set, the cursor no longer sits on the edge of the screen until the mouse comes back into the window, it disappears.
    * NEW: In AIR, when the mouse leaves an active window and glides over an inactive window (without giving it focus) where a cursor is set, the system pointer will be hidden and the custom cursor will appear while gliding over that window, and disappear when you leave that window.
    * FIX: When a cursor is set in a child Window, and the mouse moves over another Window or WindowedApplication, the cursor no longer disappears -- the correct system pointer or custom cursor will display.
    * Fixed listener leaks when switching systemManagers (neither Jason nor I can tell when/why it would happen in CursorManager, however).
    Reviewer: Jason
    Bugs: SDK-15029
    Doc: No
    QA: Yes, here's an exhaustive list of ideas:
    * We'll need tests for the new behaviors.
    * For all tests, we need to try behavior in air AND behavior in (sa)player, and test regressions.
    * Please test SDK-15583 again, all other cursor tests.
    * Take the test case for SDK-15029 and open up TWO MyWindows. Test how the cursors change across all three app windows when they are overlapped like a Venn diagram, with different combinations of custom cursors on and off -- we should have test cases for all of this behavior.
    * Test that custom cursors work properly when the mouse leaves a non-rectangular stage with transparency.
    * Test mouse drag situations -- drag off stage, release, move back to stage; drag off and back onto stage, etc.
    * In my tests, I found a lot of bad behavior in AIR, and player seemed to be fine. Do we have drag and drop use cases for AIR with custom cursors?
    A list of some bugs I encountered:
    * BUG (cosmetic): If the mouse is outside the stage when a cursor changes for the first time (say you toggle a checkbox which sets the cursor using the keyboard), the cursor will appear on the stage in the last known mouse position. When the mouse returns to the stage, everything will start working correctly again.
    * BUG (cosmetic): In AIR, if you drag out, and back into the window, then release, a MOUSE_OUT is fired again over the stage, which is wrong. The mouse coords given are (-1,-1), also wrong. This causes the system cursor to show instead of the custom cursor.
    * BUG: In AIR: if you drag off the edge of a Window with a custom cursor, the cursor will vanish. The MOUSE_OUT event correctly event fires while dragging off the window. Even though the handler tells the system mouse cursor to appear, it doesn't -- might be an AIR issue, since the mouse is still dragging when told to show. If you move back over the active window without dragging, the cursor goes back to normal.
    * BUG: In AIR: if you drag over another window with a cursor, MOUSE_MOVE events don't fire on that other window until you let go. Therefore, a custom cursor in that window does not get drawn, nor does a system cursor. If you move back over the active window without dragging, the cursor goes back to normal.
    * BUG: In AIR: When dragging, off a window, Event.MOUSE_LEAVE only fires after the mouse is let go (unlike MOUSE_OUT), EVEN IF the mouse is dragged back over the window and released over the window. So you're told the mouse left when it didn't.
    * BUG: In Player: I could never get Event.MOUSE_LEAVE to fire when added to the stage in saplayer or browser.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15029
    http://bugs.adobe.com/jira/browse/SDK-15029
    http://bugs.adobe.com/jira/browse/SDK-15583
    http://bugs.adobe.com/jira/browse/SDK-15029
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/managers/CursorManagerImpl.a s

  • [svn:fx-4.x] 14696: Temporary FTETextField Fix

    Revision: 14696
    Revision: 14696
    Author:   [email protected]
    Date:     2010-03-10 19:08:30 -0800 (Wed, 10 Mar 2010)
    Log Message:
    Temporary FTETextField Fix
    http://bugs.adobe.com/jira/browse/SDK-25669 - FTETextField relies on the render event
    Temporary fix is to also listen for the ENTER_FRAME event when invalidating. A longer term solution will be investigated later.
    QE notes: n/a
    Doc notes: n/a
    Bugs: SDK-25669
    Reviewer: Alex
    Tests run: checkintests
    Is noteworthy for integration: yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-25669
        http://bugs.adobe.com/jira/browse/SDK-25669
    Modified Paths:
        flex/sdk/branches/4.x/frameworks/projects/spark/src/mx/core/FTETextField.as

    Stope
    Mailing me ***
    Sent from my I phone

  • [svn:fx-trunk] 5243: Two Mxml Vector fixes.

    Revision: 5243
    Author: [email protected]
    Date: 2009-03-11 12:13:39 -0700 (Wed, 11 Mar 2009)
    Log Message:
    Two Mxml Vector fixes.
    tests Passed: checkintests
    Needs QA: YES
    Needs DOC: NO
    Bug fixes: SDK-19808, SDK-19810
    API Change: NO
    Reviewer: Gaurav
    Code-level description of changes:
    reflect/TypeTable.java
    Modified getElementType() by checking for vectorType instead of
    arrayType and moving the Array handling to the else block.
    builder/VectorBuilder.java
    Modified ElementNodeHandler to use isAssignableTo() instead of equals().
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19808
    http://bugs.adobe.com/jira/browse/SDK-19810
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/VectorBuilder.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/TypeTable.java

  • [svn:fx-trunk] 9318: GraphicElement filters bug fix

    Revision: 9318
    Author:   [email protected]
    Date:     2009-08-14 14:17:01 -0700 (Fri, 14 Aug 2009)
    Log Message:
    GraphicElement filters bug fix
    https://bugs.adobe.com/jira/browse/SDK-22683 - GraphicElement filters are not set properly when the filters array is modified directly
    GraphicElement.filters property has been modified to behave the same way as DisplayObject.filters. The getter function always returns a copy of the filters. This prevents the developer from mutating the filters except through the filters setter.
    QE notes: Add tests where the filters property is mutated
    Doc notes: Mention that the getter returns a copy and that using the setter is the only way to change the value
    Bugs: SDK-22683
    Reviewer: Chet
    Tests run: spark/primitives
    Is noteworthy for integration: Yes (tooling should be aware that the getter is returning a copy)
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22683
        http://bugs.adobe.com/jira/browse/SDK-22683
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

    error dateField not selecion date 27/11/2002 ?
    This is bug flex 3 ?
    thanks

  • [svn:fx-trunk] 12886: SpriteVisualElement globalToLocal bug fix

    Revision: 12886
    Revision: 12886
    Author:   [email protected]
    Date:     2009-12-12 17:35:34 -0800 (Sat, 12 Dec 2009)
    Log Message:
    SpriteVisualElement globalToLocal bug fix
    SDK-24477 - resized SpriteVisualElement returns the incorrect point when calling globalToLocal
    Updated GroupBase and SpriteVisualElement to ignore stretchX and stretchY when calculating globalToLocal and localToGlobal
    QE notes: Add tests for globalToLocal and localToGlobal
    Doc notes: none
    Bugs: SDK-24477
    Reviewer: Evtim
    Tests run: checkintests, primitives, Group
    Is noteworthy for integration: Yes. Fixes TH-8488
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24477
        http://bugs.adobe.com/jira/browse/SDK-24477
        http://bugs.adobe.com/jira/browse/TH-8488
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/core/SpriteVisualElement.as

    error dateField not selecion date 27/11/2002 ?
    This is bug flex 3 ?
    thanks

  • [svn:fx-trunk] 5318: * Vector tag bug fix.

    Revision: 5318
    Author: [email protected]
    Date: 2009-03-16 08:02:21 -0700 (Mon, 16 Mar 2009)
    Log Message:
    * Vector tag bug fix.
    tests Passed: checkintests
    Needs QA: YES
    Needs DOC: NO
    Bug fixes: SDK-19835
    API Change: NO
    Reviewer: Gaurav
    Code-level description of changes:
    builder/DocumentBuilder.java
    rep/Vector.java
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19835
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/DocumentBuilder.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/Vector.java

    error dateField not selecion date 27/11/2002 ?
    This is bug flex 3 ?
    thanks

  • [svn:fx-3.x] 7852: Changing the fix for SDK-19811 as the E4X escaping behavior is dependent on the target player  (i.e.

    Revision: 7852
    Author:   [email protected]
    Date:     2009-06-15 13:34:23 -0700 (Mon, 15 Jun 2009)
    Log Message:
    Changing the fix for SDK-19811 as the E4X escaping behavior is dependent on the target player (i.e. swfVersion) rather than the version of the runtime.
    QE: Yes, please test --target-player=9 and 10, and AIR
    Doc: No
    Checkintest: Pass
    Reviewer: Svetlin
    Bugs: SDK-19811 - SOAPEncoder double-encodes string values in AS proxy code generated from .NET webservices
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19811
        http://bugs.adobe.com/jira/browse/SDK-19811
    Modified Paths:
        flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/managers/SystemManager.as
        flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/messaging/config/LoaderConfig. as
        flex/sdk/branches/3.x/frameworks/projects/rpc/src/mx/rpc/xml/XMLEncoder.as

    I checked my java version on my mac, and its 1.3.1.
    So I thought that I would update my pc's java to 1.3.1.
    After doing that, and verifying that it was updated,
    I still get the s ame exceptions when I use backspace
    on a new font!!! I just don't get it.
    Maybe it doesn't have to do with the java version, maybe its a computer
    setting or something. I'd switch to the mac and program
    it on that, however that seems ridiculous that it
    would refuse to work on my pc. Any suggestions?
    im running win98 SE on the pc, if that helps anyone.

  • [svn:fx-trunk] 10002: Gradient matrix transform fix

    Revision: 10002
    Author:   [email protected]
    Date:     2009-09-03 13:17:09 -0700 (Thu, 03 Sep 2009)
    Log Message:
    Gradient matrix transform fix
    http://bugs.adobe.com/jira/browse/SDK-22928 - Gradient matrix transform applying incorrect transforms
    Previously, the logic transformed the gradient to fill the shape bounds and then combined the matrix transform. Now using the same values for the discreet transform properties versus the matrix properties should result in the same appearance.
    These changes are applied to LinearGradient, RadialGradient, LinearGradientStroke and RadialGradientStroke.
    QE notes: Matrix transform behavior has changed
    Doc notes: Need info on matrix behavior
    Bugs: SDK-22928
    Reviewer: Glenn
    Tests run: spark/primitives
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22928
        http://bugs.adobe.com/jira/browse/SDK-22928
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/LinearGradient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/LinearGradientStroke.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RadialGradient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RadialGradientStroke.as

  • [svn] 4783: QA: Yes

    Revision: 4783
    Author: [email protected]
    Date: 2009-02-02 06:49:52 -0800 (Mon, 02 Feb 2009)
    Log Message:
    QA: Yes
    Doc: No
    Checkintests: Pass
    Reviewer: Gaurav
    Bugs:
    ASC-3140 Multiple dot / period / . in number assignment throws compiler exception - expecting compiler error
    Fixed.
    General code cleanup in the Scanner.
    Memory statistics gathering in Nodes turned on.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/ASC-3140
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/parser/Node.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/parser/Scanner.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/parser/States.java

  • [svn] 4830: * Resubmitting 4795 with an additional fix for unresolved namespaces

    Revision: 4830
    Author:   [email protected]
    Date:     2009-02-04 08:03:13 -0800 (Wed, 04 Feb 2009)
    Log Message:
    * Resubmitting 4795 with an additional fix for unresolved namespaces
      that come from variables.  For example:
        var ns:Namespace = new Namespace("blah");
        foo.ns::bar();
      This is part of the fix for SDK-17798.  It allows
      DataBindingFirstPassEvaluator to find type information for
      namespaceBT2 in:
      But this isn't a complete fix, because I couldn't figure out how to
      allow the PropertyWatcher for "test_namespace::namespaceBT2" to
      access the property.  The solution will probably be to provide the
      open namespaces to the PropertyWatcher, but I haven't figured out
      how to do this yet.
    tests Passed: checkintests, performance testsuite
    Needs QA: YES
    Needs DOC: NO
    Bug fixes: SDK-19047, SDK-17798 (partial fix)
    API Change: NO
    Reviewer: Erik
    Code-level description of changes:
      semantics/FlowAnalyzer.java
        See notes for revision 4795.
      util/Context.java
        Modified processUnresolvedNamespaces() to report an error if we
        can't find a Slot for the namespace, but no longer report an error
        if we find a Slot without a Value.  This happens when the
        namespace is defined in a variable.  ConstantEvaluator will not
        have run yet, so the Slot for the namespace will not have a Value.
        We just silently punt in this case.  The VM will report an error
        at runtime if the namespace can't be resolved.  Unfortunately,
        data binding won't be able to track down change events in this
        case, though.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-17798
        http://bugs.adobe.com/jira/browse/SDK-19047
        http://bugs.adobe.com/jira/browse/SDK-17798
    Modified Paths:
        flex/sdk/trunk/modules/asc/src/java/macromedia/asc/semantics/FlowAnalyzer.java
        flex/sdk/trunk/modules/asc/src/java/macromedia/asc/util/Context.java

  • Hi can the battery of ipod nano 2nd genration be replaced ? if yes where can i fix it in riyadh/saudi arabia

    h it is my pleasure to own 3 product from apple. the only problem i have is with the battery of my ipod nano 4 GB battery that is not working without the charger. i would like to know if it can be replaced?
    if yes can i know where can i go in saudi arabia in the city of riyadh for that?
    best regards

    No. The replacement program is for the 1st generation.

  • [svn:fx-trunk] 5224: Flex SDK Bug Fixes

    Revision: 5224
    Author: [email protected]
    Date: 2009-03-10 14:06:53 -0700 (Tue, 10 Mar 2009)
    Log Message:
    Flex SDK Bug Fixes
    SDK-19772 Initially invisible graphic element can not be made visible
    When visible is false, we were both setting the displayObject invisible and not drawing the graphics. When visible was then set to true, we changed the displayObject visibility, but didn't draw the graphics. The fix is to always draw the graphics when we are not sharing our displayObject. This way we simply toggle visibility on the displayObject on/off, instead of having to perform a redraw.
    SDK-19581 BitmapFill incorrectly handle source property
    Updated code to match code in BitmapGraphic. If the source is a class, we still need to check the type of the newly instantiated instance of that class.
    SDK-19085 unexpected behaviour when setting scaleX < 3 on a LinearGradient
    Internally, we no longer allow scaleX to be less than 2. Visually, this shouldn't have much impact.
    QE Notes: n/a
    Doc Notes: n/a
    Bugs: SDK-19772, SDK-19581, SDK-19085
    Reviewer: Evtim, Chet
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19772
    http://bugs.adobe.com/jira/browse/SDK-19581
    http://bugs.adobe.com/jira/browse/SDK-19085
    http://bugs.adobe.com/jira/browse/SDK-19772
    http://bugs.adobe.com/jira/browse/SDK-19581
    http://bugs.adobe.com/jira/browse/SDK-19085
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/BitmapGraphic.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/baseClasses/GraphicElement.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/BitmapFill.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/LinearGradient.as

    error dateField not selecion date 27/11/2002 ?
    This is bug flex 3 ?
    thanks

Maybe you are looking for

  • Reg: Report on GR Returns and IR Returns with PI 2005.1 700

    Hi,    I would like to report on GR Returns and IR retuns from Purchasing Datasources i.e. 2LIS_02_SCL(total returns).    I created GR with 101 movement and GR with 102 movement. I checked in RSA3, i could see data with Procecs Key 002. But, i don't

  • Macbook Pro does not enter sleep mode anymore

    Hey guys! I have found several threads relating to this topic, none of them offering a solution, which worked for me. I recently updated from Tiger to Leopard (clean install), since then my computer won´t go to sleep automatically. I can put it to sl

  • How do I get the DVD menu to come on when the disc is inserted.

    Each time I've burned a DVD with iDVD, instead of the menu coming up when the disc is inserted in the DVD player, the movie begins playing automatically. It should bring up the menu first. I have the chapter marker set at the beginning of the movie a

  • Netflix Silverlight not working in Chrome?

    I just got a MacBook Pro and I have never had a Mac before. I want to watch Netlix but it told me to download Silverlight which I did. I then restarted Chrome and it still said I hadn't downloaded it but it was there in the downloads section of the c

  • Strange system-wide bahviour

    I don't know if this is a virus, or what. I've noticed two strange phenomena over the past several days. 1. Under the apple menu, I get reduplication of Restart, Shutdown and Log out. The bottom of the menu goes: "Sleep Restart... Restart Shut Down..