Failure doing very simple "replace value of node ..." on an attribute

Hello
(Working on DBXML 2.5.13. on Windows Server 2003)
With the following document in a container:
<village xmlns="carrapateira.info">
<pictures quantity="124"/>
</village>
When trying to replace the value of the attribute 'quantity' with the dbxml shell, using the following commands:
dbxml> setn "" "carrapateira.info"
Binding -> carrapateira.info
dbxml> cquery /village/pictures
1 objects returned for eager expression '/village/pictures'
dbxml> print
<pictures xmlns="carrapateira.info" quantity="124"/>
dbxml> contextQ @quantity
1 objects returned for expression '@quantity'
dbxml> print
{}quantity="124"
dbxml> contextQ "replace value of node . with 222"
stdin:7: contextQuery failed
I always get that last message, whatever I try.
What is fundamentally wrong in my approach? Or is this a shell problem?
Thank you
Koen

George
I have run some tests, of which a Java program. The problem persisted.
I re-created the container completely and it now works. I have no clue why I had that problem and what solved it.
I will keep you informed if this error repeats.
I have another problem with XQuery Update which I will post in another thread later.
Thank you very much,
Koen

Similar Messages

  • What does 'kernel bug in process suhelperd' mean in very simple terms please

    what does 'kernel bug in process suhelperd' mean in very simple terms please

    Hi,
    Any that ends in a "d" tends to be a dameon process used by the System as a whole.
    As in launchd is the process that make sure all the Extensions and Kexts that run the OS are started.
    helper would refer to a specific thing  (the info you posted offers no reference to that and I don't know off the top of my head)
    The su would probably refer to the permissions this item has at that moment in time (su is normally a Terminal Instruction allowing temporary but high level access).
    Without more info about a possible link to an action within the OS or an app it would be hard to say if it is a real concern.
    It seems to refer to a conflict.  It could be that the item is not written for the current OS, is outdated via Upgrades for instance, or written in a way that is now Protected by the way the current OS works.
    Console Messages can be helpful when you can attribute them to specific events such as a Crash Log or the Action in an App matching a Time in the Log (you generally have to be watching).
    9:18 pm      Tuesday; January 6, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • I recently had a catastrophic hard drive failure and had to replace it.  At the time, I had a VERY extensive music library and it is now lost. This entire library was also on iTunes. Is it possible to recover that library, or do I have to download again?

    I recently had a catastrophic hard drive failure and had to replace it.  At the time, I had a VERY extensive music library and it is now lost. This entire library was also on iTunes. Is it possible to recover that library, or do I have to download again?

    If your hard drive was not backed up then you can download items purchased from the iTunes Store.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not available in all countries; apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this). Movies currently available in the USA only. Downloading previously purchased movies and TV shows requires iTunes 10.6 or later.  Discontinued items not available. For items not included in the iCloud list, or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid.  Apple notes it is your responsibility to back up your purchases.
    Did you subscribe to iTunes Match service?  If you did, your other music would be available too.
    Note, this restores the music files themselves, not playlists, playcount, ratings, or other things associated with the actual library file structure.
    You really should consider getting a backup drive. Hard drives failures are a certainty and it saves a lot of grief.

  • The touch pad on my Mac book Pro is very sensitive and causes changes without hardly touching it. Can this be changed or does it need replacement?

    The touch pad on my Mac book Pro is very sensitive and causes changes without hardly touching it. Can this be changed or does it need replacement?

    Touchpads are just that, touchpads.
    You touch it and something happens unfortunately, you can't rest your fingers on it while your waiting to do something else or it triggers a response.
    You either have to train yourself to remove your fingers and keep them suspended, causing wrist, arm and hand pain, or plug in a standard mouse where nothing happens until you press the button, like years of ergonomic experience has shown is a much superior method.
    Touchpads are likely less expensive to produce and breakdown less often under warranty, so just like less expensive to produce glossy screens, it's a cost cutting measure they were  incorporated into our devices and required users to adapt to sweeps, gestures and other useless actions for little benefit.
    I've owned my Early 2011 MacBook Pro for a year now and have only used the trackpad once, the mushy keyboard perhaps only a couple of dozen times. Preferring external devices where I can rest my digits and nothing happens until I apply pressure or use a scroll wheel.
    Needless to say my keyboard area is in brand new condiiton, remains covered from the original packaging, protects against dirt and spills too.
    Mac's keyboard and trackpad area tend to wear out pretty fast, like in about 3 years, making one consider getting a new machine long before it physically fails.

  • Need help with a very simple example.  Trying to reference a value

    Im very new to Sql Load and have created this very simple example of what I need to do.
    I just want to reference the ID column from one table to be inserted into another table as DEV_ID.
    Below are my: 1) Control File, 2) Datafile, 3) Table Description, 4) Table Description
    1) CONTROL FILE:
    LOAD DATA
    INFILE 'test.dat'
    APPEND
    INTO TABLE p_ports
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
    DEV_id REF(CONSTANT 'P_DEVICES',NAME),
    NAME FILLER ,
    PORT_NO
    2) DATAFILE:
    COMM881-0326ES09,6
    3) TABLE DESCRIPTION:
    SQL> describe p_ports
    Name Null? Type
    ID NOT NULL NUMBER(10)
    DEV_ID NOT NULL NUMBER(10)
    PORT_NO     NUMBER(3)

    hi,
    i managed to do this for my app. (think i referred to viewTransitions sample code and modified quite a bit)
    i can't remember this well cos i did this quite a while back, but i will try to help as much as possible
    1) from the appdelegate i initialize a root controller (view controller class)
    2) this root controller actually contains two other view controllers, let's call it viewAController and viewBController, for the screens which u are going to toggle in between. and there's also a function, let's call it toggleMenu, which will set the menus to and fro. i copied this whole chunk from the sample code. it actually defines the code on what to do, i.e. if current view is A switch to B and vice versa.
    3) inside the controller files, you need to implement the toggleMenu function too, which basically calls the rootController's toggleMenu
    4) we also need viewA and viewB files(view class)
    5) need to add the .xib files for the respective views and link them up to the controller class. i did not use the .xib files for ui layout though, because of my app's needs. however, it will not work properly without the .xib files.
    5) inside the view class of both views, i.e. viewA.m and viewB.m, you need to create a button, that will call the toggleMenu function inside the respective controller class.
    it will look something like this:
    [Button addTarget:ViewAController action:@selector(toggleMenu:) forControlEvents:UIControlEventTouchUpInside];
    so the flow is really button (in view)-> toggleMenu(viewController) -> toggleMenu(rootController)
    i'm sorry it sounds pretty hazy, i did this part weeks before and can't really remember. i hope it helps.

  • Very simple EJB 3.0 MDB but I get NullPointerException

    I tried to create a very simple EJB 3.0 Message Driven Bean in JDeveloper 10.1.3.2 as follows:
    Message Driven Bean Class:
    import javax.ejb.MessageDriven;
    import javax.jms.Message;
    import javax.jms.MessageListener;
    @MessageDriven(mappedName="MDBQueue")
    public class MDB implements MessageListener {
    public void onMessage(Message message) {
    System.out.println("Got message!");
    Application Client:
    import javax.annotation.Resource;
    import javax.jms.*;
    public class MDBAppClient {
    @Resource(mappedName="MDBQueueConnectionFactory")
    private static QueueConnectionFactory queueCF;
    @Resource(mappedName="MDBQueue")
    private static Queue mdbQueue;
    public static void main(String args[]) {
    try {
    QueueConnection queueCon = queueCF.createQueueConnection();
    QueueSession queueSession = queueCon.createQueueSession
    (false, Session.AUTO_ACKNOWLEDGE);
    QueueSender queueSender = queueSession.createSender(null);
    TextMessage msg = queueSession.createTextMessage("hello");
    queueSender.send(mdbQueue, msg);
    System.out.println("Sent message to MDB");
    queueCon.close();
    } catch(Exception e) {
    e.printStackTrace();
    But I get the following error:
    java.lang.NullPointerException
         at model.MDBAppClient.main(MDBAppClient.java:17)
    I read similar problem in the this thread:
    Re: message driven bean on ejb 3.0 does not work
    some one said that the version in ejb-jar.xml must be changed from 2.1 to 3.0
    but in this case there is no ejb-jar.xml.
    ( I have other cases with ejb-jar.xml file but I can't change the version in ejb-jar.xml)
    the version in web.xml is 2.4 but it not accept any value except 2.4 and an error occur when I tried to change it to 3.0
    please can you tell me why I get NullPointerException and how can I allow EJB 3.0 MDB and JMS to work in JDeveloper

    Note that you can't run MDBs in the embedded OC4J in JDeveloper - try deploying to a stand-alone install of OC4J and see if it works there.

  • Very Simple Problem-- Need help in method selection process

    Hello,
    It's difficult to explain the background of the program I am making-- but I am stuck at a very simple problem, that I can only solve with a very long block of if statements:
    I have 3 possible numbers-- 1, 2, or 3.
    Imagine two numbers are already taken-- say 1 and 2. I want a variable to set itself to the number that's not taken (3).
    So, again: If two numbers were taken say 2 or 3-- I want the variable to be sent to the other one that isn't taken-- 1.
    Thank you for your help,
    Evan.

    Actually, I'll just tell you the context of the program-- here is what I have so far:
    This program is meant to simulate Monty Hall Problem:
    http://en.wikipedia.org/wiki/Monty_Hall_problem
    The program sets up an array of three possible values. Each one of those values represents a door with either a goat or a car behind it. It then randomly sets one of those values to 1 (in order to represent a car as per the Monty Hall problem), and 0's represent goats.
    The user, which is simulated by the program (does not involve actual interaction), chooses a door initially.
    The game show hosts then reveals a door that is not the users initial choice, but IS a goat ( an array value of 0).
    For example if the array was [0][0][1]
    The user could pick door one (array position 0). Which is a goat.
    The game show host then reveals a goat that is not the users choice-- which would be array position 1.
    After the game show host reveals the goat-- I want the user to always switch his decision to the only other remaining door that was not his first choice.
    Then I wanted the computer to test to see if his final choice is the one with a car. And to tally up the amount of times he got it right.
    --Sorry that was long winded:
    import TerminalIO.*;//imports TerminalIO package for system.out.println
    import java.util.*;//import java.util for random
    public class Monty_Problem
         int doors[]= {0,0,0};
         Random rand= new Random();
         double wins,totals=0;
         public void carAssignment()
              int car_door= rand.nextInt(3);
              doors[car_door]=1;
         public int judgesChoice(int judgeDoor, int initialChoice)
              if(judgeDoor != initialChoice && doors[judgeDoor]!=1)
                   return judgeDoor;
              else
                   return judgesChoice(rand.nextInt(3), initialChoice); //infinite loop right here that I cannot remedy.  I want the program to have the judge pick a location that is not occupied by a  '1' and is not the user's choice. 
         public void gamePlaySwitches()
              int initialChoice= rand.nextInt(3);
              int judgeDoor = 0;
              int secondChoice= 0;
              judgeDoor= judgesChoice(rand.nextInt(3), initialChoice);
              //This part is meant to have the user switch choices from his initial choice
                   // to the only other choice that hasn't been revealed by the judge. 
              while(secondChoice == initialChoice || secondChoice== judgeDoor)
                   secondChoice++;
              if(doors[secondChoice]==1)
                   wins++;
                   totals++;
              else
                   totals++;          
         public static void main(String [] args)//creates the main menu
              Monty_Problem a= new Monty_Problem();
              int games=0;
              while(games!=100)
                        a.carAssignment();
                        a.gamePlaySwitches();
                        games++;
              System.out.println(a.wins/a.totals);
    }Edited by: EvanD on Jan 11, 2008 4:17 PM

  • How to create  a very simple dyamic tree with rich faces

    hi i have spent more than 5 days trying to make a very simple rich faces tree but with no result
    i want to make a very simple dyamic tree
    for example i have a button when i click it.i want to add two nodes in my tree("node 1" and "node 2")
    i have also failed in making even a static tree with richfaces i think that some thing is wrong with them i checked the live demo website
    http://livedemo.exadel.com/richfaces-demo/richfaces/tree.jsf?c=tree
    i have tried the source code but with no result :(
    thank you

    You can try something like this
    <rich:tree switchType="server" >
    <rich:treeNodesAdaptor nodes="#{CB.calendarioHandler.organizacion.departamentos}"
    var="departamento">
    <rich:treeNode>
    <h:outputText value="#{departamento.nombre}"/>
    </rich:treeNode>
    <rich:treeNodesAdaptor nodes="#{departamento.empleados}"
    var="empleado">
    <rich:treeNode>
    <h:outputText value="#{empleado.nombre}"/>
    </rich:treeNode>
    <rich:treeNodesAdaptor nodes="#{empleado.calendarios}"
    var="calendario">
    <rich:treeNode>
    <h:outputText value="#{calendario.nombre}"/>
    </rich:treeNode>
    </rich:treeNodesAdaptor>
    </rich:treeNodesAdaptor>
    </rich:treeNodesAdaptor>
    </rich:tree>
    where departamentos, empleados and calendarios are just simple pojos lists.
    I hope to help.
    Edited by: sfdgd on Apr 1, 2009 6:40 PM

  • Creating a very simple XML-driven gallery

    Hi, I'm learning XML in AS3 and I am having real trouble finding a resource that can help me learn how to build a very simple XML-driven picture gallery.
    I am working in an FLA file with AS3, with a dynamic text field with the instance name "textfield". I also have a UILoader Component with the instance name "UILoaderComponent" and an XML file called "rootdir.xml".
    I have an XML file in the following format.
    <images>
         <imagenames>
              <name>image1</name>
              <name>image2</name>
              <name>image3</name>
              <name>image4</name>
              <name>image5</name>
         </imagenames>
         <imagepaths>
              <path>image1.jpg</path>
              <path>image2.jpg</path>
              <path>image3.jpg</path>
              <path>image4.jpg</path>
              <path>image5.jpg</path>
         </imagepaths>
    </images>
    I am using the following as my actionscript.
    var xmlLoader:URLLoader = new URLLoader();
    var xmlData:XML = new XML();
    xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
    xmlLoader.load(new URLRequest("rootdir.xml"));
    function LoadXML(e:Event):void {
    xmlData = new XML(e.target.data);
    parseImg(xmlData);
    function parseImg(imgLoad:XML):void {
    var imgChild:XMLList = imgLoad.images.children();
    for each (var imgTrace:XML in imgChild) {
    trace(imgTrace);
    No matter which way I experiment, I always have poor results with my dynamic text, and every tutorial I've followed does not reproduce anything like the same returned data in "textfield" that it does with the trace command.
    My objective is: I simply want to build a menu inside a textbox called "textfield" that lists images1-5, and when clicked, calls upon the relevant image. For instance: I load the file "rootdir.xml" into the file "index.fla". I call a function to parse the XML into a dynamic text box called "textfield". When image 2 is clicked on the textbox "textfield", it would call upon a function that would load into the UIComponent Loader "image2.jpg".
    Are there any tutorials for this? I'm so confused as to why dynamic text operates so differently from the trace command. I'm not interested in doing a fancy menu bar with thumbnails, scrollbars and animations, I just want to learn the basics.

    I don't really see how you are getting a valid trace out of that code (I get nothing if I try it as is), but as far as the textfield goes, you haven't shown any attempt in your code that might help to point to why you cannot get the text into a textfield.  It might be a problem with how you are trying to write to the textfield and not how your are manipulating the data.
    While you could make use of a textfield for the menu, doing so is not straightforward, as you would need to implement htmlText with special coding in order to have the text clickable.  You might consider using a List component or ComboBox instead.
    What I always do when I am working with xml is to store the data into a data structure, usually an array conatining objects, and then make use of that structure rather than dippng into the xml data itself when I utilize the data.
    Another thing, which rquigley demonstrated, is that your xml will serve its purpose better if the data for each image is collected under the same node.  If you have separate sections for each piece of data like you have, when it comes to editing it will be more prone to error as you have to be sure you are editing the correct entry of each separate group.
    I too am no expert in the world of xml, but I have not yet worked with parameters inside the tags, so I would usually structure it as...
    <images>
       <image>
           <imgName>image 1</imgName>
           <imgPath>image1.jpg</imgPath>
       </image>
       <image>
           <imgName>image 2</imgName>
           <imgPath>image2.jpg</imgPath>
       </image>
    </images>
    Now, back to what you have...  let's say you have a textField named imgText that you want to list the image names in.  The following should work, though I do not go my usual route of storing the data into an object array first...
    function parseImg(imgLoad:XML):void {
       var imgNames:XMLList = imgLoad.imagenames.name;
       var imgPaths:XMLList = imgLoad.imagepaths.path;
       // show name
       for each (var nameTrace:XML in imgNames) {
          trace(nameTrace);
          imgText.appendText(nameTrace +"\n");
       // show path
       for each (var pathTrace:XML in imgPaths) {
          trace(pathTrace);
          imgText.appendText(pathTrace +"\n");
       // show name and path
       for(var i:uint=0; i<imgNames.length(); i++){
          trace(imgNames[i].text()+"  "+imgPaths[i].text());
          imgText.appendText(imgNames[i].text()+"  "+imgPaths[i].text() +"\n");

  • Very simple spreadsheet crashes Numbers?

    Hi,
    This very simple spreadsheet entered on the Mac version of Numbers onto iCloud, crashes Numbers on my iPad. Can somebody confirm that this is indeed an issue with Numbers, and not some quirk in my configuration?
    Any suggestion to work that issue around?
    Needless to say, this spreadsheet is an extreme reduction of a complex spreadsheet that does significant statistical data analysis on biochemistry experimental data coming from a spectrophotometer. That spreadsheet works beautifully on the Mac, and I would like to have it run on the iPad, for use in the lab.
    The crash comes from this formula in the "Keep" columns:
    =IF (NOT(Outlier '2'),y '2', "")
    The slightly simpler formula without the "else" value crashes number too:
    =IF (NOT(Outlier '2'),y '2')
    Removing the "Keep" column altogether prevents Number from crashing...
    Thanks a million

    For the sake of it, I recreated that spreadsheet on the iPad directly, and of course, it doesn't crash...

  • Very simple example of distributed cache

    Hi,
    I followed the getting started guide and I have a config xml that lists a VirtualCache. Then I wrote a very simple main class, TestCache1 that does this:
    private static NamedCache cache = CacheFactory.getCache("VirtualCache");
    public static void main(String[] args) {
    cache.put("hello", "hello");
    and then a TestCache2 that gets the value:
    private static NamedCache cache = CacheFactory.getCache("VirtualCache");
    public static void main(String[] args) {
    Object hello = cache.get("hello");
    System.err.println(hello);
    so I run TestCache1 and then i run TestCache2, but the result is "null". I have a very basic problem where I want one java class to add stuff to a cache that another java process can access. WHat do I need to do?
    Thanks, Jason

    Hi,
    Yes I started up both test classes using the same configuration file but it's just not working. Here's the config file:
    +<cache-config>+
    +<caching-scheme-mapping>+
    +<!--+
    Caches with any name will be created as default replicated.
    -->
    +<cache-mapping>+
    +<cache-name>*</cache-name>+
    +<scheme-name>default-replicated</scheme-name>+
    +</cache-mapping>+
    +<cache-mapping>+
    +<cache-name>VirtualCache</cache-name>+
    +<scheme-name>default-distributed</scheme-name>+
    +</cache-mapping>+
    +</caching-scheme-mapping>+
    +<caching-schemes>+
    +<!--+
    Default Replicated caching scheme.
    -->
    +<replicated-scheme>+
    +<scheme-name>default-replicated</scheme-name>+
    +<service-name>ReplicatedCache</service-name>+
    +<backing-map-scheme>+
    +<class-scheme>+
    +<scheme-ref>default-backing-map</scheme-ref>+
    +</class-scheme>+
    +</backing-map-scheme>+
    +</replicated-scheme>+
    +<!--+
    Default Distributed caching scheme.
    -->
    +<distributed-scheme>+
    +<scheme-name>default-distributed</scheme-name>+
    +<service-name>DistributedCache</service-name>+
    +<backing-map-scheme>+
    +<class-scheme>+
    +<scheme-ref>default-backing-map</scheme-ref>+
    +</class-scheme>+
    +</backing-map-scheme>+
    +</distributed-scheme>+
    +<!--+
    Default backing map scheme definition used by all
    The caches that do not require any eviction policies
    -->
    +<class-scheme>+
    +<scheme-name>default-backing-map</scheme-name>+
    +<class-name>com.tangosol.util.SafeHashMap</class-name>+
    +</class-scheme>+
    +</caching-schemes>+
    +</cache-config>+
    Thanks again, Jason

  • Set chart value (property node) from a waveform ARRAY?!?

    Hi!
    In Labview 8.0 I want to send data to a front panel chart via its value property node. This works just fine if I wire a single waveform to the value property (attachment1). However, if I wire it with a waveform array (attachment2) it fails. Is there any workaround?
    Thanks in advance,
      Rudolf
    Attachments:
    attachment1.PNG ‏3 KB
    attachment2.PNG ‏3 KB

    The reason I was showing this with only one graph was that
    the
    two-graph version failed for me. I had tried having separate data
    sources, of course. Just to be sure I have rebuilt the VI from scratch
    as per your diagram (see attached image and VI) and run it again with
    the same results:
    The failure was not in my inability to see the
    plot but rather in an error message (attachment) which would only
    occur if I tried to wire more than a single plot into the value node.
    I subsequently also tried doing this using 1D and 2D DBL arrays and
    observed a similar problem: the 1D case works fine, the 2D case throws
    "insane object" errors and crashes labview entirely.
    Message Edited by frumpel on 04-05-2007 10:53 AM
    Attachments:
    test1.vi ‏16 KB
    block-diagram.PNG ‏33 KB
    error-message.PNG ‏15 KB

  • Need help with something VERY SIMPLE

    I'm brand new to Motion - as if today - but I'm only trying to do some VERY simple motions with photos - a simultaneous zoom in and reposition. What I've been doing is setting the starting key frame at one position (adjusting the x, y) and setting the scale. Then I create a second key frame and adjust the postion and scale. It will do the zoom, but then it re adjusts the starting position. If I readjust the starting key frame, it automatically readjusts the second key frame. I don't get it! Applying the various 'behaviors' doesn't seen to help. Certainly there's something obvious here that I'm missing - as I was able to do this in FCP. For some reason the key frames are not fixed when it comes to position.

    hi,
    a couple of thoughts?
    did you actually set a keyframe for position at the first frame?
    Also unless you are parked right on a keyframe or have the record button on, if you adjust a value, all the values for all keyframes adjust accordingly. I often mess something up because I wasnt parked on a keyframe.
    hth
    adam

  • I've read that Promise Pegasus2 series does not sell replacement parts. I'm buying the new MacPro but am concerned about spending $2K for storage that may break and cannot be fixed. What are others buying for storage for the new MacPro?

    I've read that Promise Pegasus2 R6 thunderbolt 2 series does not sell replacement parts (no replacement parts for any of the Pegasus line). I'm buying the new MacPro but am concerned about spending $2K for storage (12tb version) that may break and cannot be fixed (am told that one must purchase a new unit if a part breaks). What are others buying for storage for the new MacPro? Thanks so much for your help.
    Discussion about this issue at MacWorld.com:  http://www.macworld.com/article/2082783/first-look-promises-pegasus2-r6-thunderb olt-2-raid-array.html

    I've used the original Pegasus R6 units for a couple of years now and have been very pleased with them.  On the two occasions I've had to call on their technical sujpport, I've found them readily available, knowledgeable, and very helpful.  In one case it involved the reset of a unit after a power failure at an inopportune time; in the other case it was a question about upgrading disk drives to higher capacities (1 Gb gto 4 Gb).  I was pleased to learn that their tech support people were in California and as good if not better than upper-tier AppleCare reps. The hardware itself has functioned flawlessly so far.

  • Very lightweight replacement for oblogout

    I was just doing some housecleaning and realized that several packages, some which were always running in the background (consolekit) were only needed on my system for oblogout.
    I like oblogout, but when I realized how much I could get rid of without it, out it went.
    Then I thought about making a replacement and I found a very simple way to do it, though it has one dependency: tint2-svn from the AUR.  As I already use tint2-svn, this was great for me.  I'm curious whether others would have enough interest to justify a PKGBUILD for this tiny hack.
    Basically it is a two line script (mylogout):
    #!/bin/bash
    tint2 -c ~/.config/tint2/tint2rc.off >/dev/null 2>&1 &
    echo "$!" > ~/.mylogout.pid
    And an extra tint2 rc (tint2rc.off)
    rounded = 12
    border_width = 1
    background_color = #ffffff 20
    border_color = #000000 20
    panel_monitor = 1
    panel_position = center center horizontal
    panel_size = 652 140
    panel_margin = 0 0
    panel_padding = 0 0 0
    panel_dock = 0
    wm_menu = 0
    panel_layer = top
    panel_background_id = 1
    panel_items = L
    launcher_padding = 0 0 0
    launcher_background_id = 0
    launcher_icon_size = 128
    launcher_item_app = /usr/share/applications/logout_cancel.desktop
    launcher_item_app = /usr/share/applications/logout_logout.desktop
    launcher_item_app = /usr/share/applications/logout_reboot.desktop
    launcher_item_app = /usr/share/applications/logout_shutdown.desktop
    launcher_item_app = /usr/share/applications/logout_lock.desktop
    With the appropriate .desktop files with exec lines like "exec = kill $(cat ~/.mylogout.pid) && reboot" or "exec = kill $(cat ~/.mylogout.pid) && shutdown -h now"
    If there is an interest I do need to be sure of one thing before I post the rest - for my system I just hijacked oblogout's icons.  While the source code is open, I'd need to double check on permission to reuse the images.
    If there is only limited interest, the above info should make it simple enough to replicate this on your system without any need for a PKGBUILD, just write the .desktop files, and get some icons you'd like.
    Last edited by Trilby (2012-01-26 22:10:35)

    The parts available, in the USA, are here: Part search results. Items available will be selectable. No where do I see any other part than the cm749-60036. You will need to look on sites like Amazon and eBay.
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

Maybe you are looking for

  • STO returns with EWM Error "Posting with reference to pur. order only possi

    Hi Experts, We are trying to STO returns GR (161 Movement) with transaction MIGO for a EWM managed plant. Plant A is a EWM managed plant and Plant B is IM managed plant. We created a stock transfer order with "B" as supplying plant for plant "A" but

  • Httpd: Could not determine the server's fully qualified domain name, using

    Hello, I am checking why the response time of the display of the pages of the sites are slow, then I checked the error_log file in /var/log/httpd and I got this texts: (I am hosting 3 sites in the server) [Mon May 14 21:21:37 2007] [alert] httpd: Cou

  • Primary key column auto increment

    Hello, In my Azure SQL Database I noticed that weird thing is happening. I have table with primary key column with auto increment, and all works fine, on new insert that value automatically increment, but every now and then, that value, for no reason

  • Will Actionscript 2.0 remain supported?

    I know Actionscript 3.0 is the new standard for Flash CS5. However, my work is largely concentrated in Photography and 3D Modeling. However I also must use Flash for a lot of my work, but do not really have the time to learn AS 3.0. Will I be able to

  • Firmware updates unavailable for most product code...

    Hi, it's over a month now that Nokia has released the latest 40.x.x firmware for its 5800 model, or should I say to a small, privilleged amount of customers? I have purchased a Nokia 5800 via Amazon.de, totally unbranded, product code is 0578314, and