Notification plugin

Hi,
I'm having a small issue with the notification plugin on apex 4.1
Whenever this plugin is used in an application (so after a notification is placed on a screen) the developer tools disappear from my browser window after I switch to a new page. This is probably due to the fact that my development session is terminated, because if I try to go back to the development environment via the browsers back button I am required to login again before I can do anything.
Anybody having the same issue and maybe a fix ?
Cheers
Bas

Hi Bas,
my college Anthony has identified the cause why the Builder session is getting invalidated, it's because of the following CSS setting in apex.jquery.gritter.css
.gritter-item-wrapper {
     position:relative;
     margin:0 0 10px 0;
     background:url('.'); /* ie7/8 fix */
url('.') is causing the issue.
He is currently checking how he has fixed that in the past and we will provide an updated version of the plug-in as soon as possible. As a workaround you might be able to just remove the background:url('.') from the CSS file.
We will keep you updated
Patrick
My Blog: http://www.inside-oracle-apex.com
APEX Plug-Ins: http://apex.oracle.com/plugins
Twitter: http://www.twitter.com/patrickwolf

Similar Messages

  • Apex Notification plugin fire to specific users page

    i have IR page, how can i send the notification to specific user with particular row or any reference column value/heading.also revert back to creater with replied massage.these users are using same application with same IR page from LAN.
    What i did in notification plug-in.
    download notification plug-in
    crate dynamic action
    Even: click
    *Selection Type :button
    *button name: send alert to user
         True Actions
    *action;[notification plug-in]
    Settings
    *Title: test
    *text: test body
    *delay:2 secthis is fired in my page ,but i need this notification in another user which is i defined in select list and click the button( send alert to user)
    Its achievable experts please share your idea!
    Thanx ,
    Ram

    Ram
    What exactly do you mean?
    1) Does the dynamic action only be fired if a specific is loged id and using the page the dynamic action is located.
    This is what the plugin is intented for and a condition will do what you want.
    2) Or user A is using the application and triggers the dynamic action and then user B sees a message when using the same application but on a different computer.This involves much more than a dynamic action.
    Something much sent a message to the server. On the server a message is generated adressed to user B. On the application a process is listening to the server for messages adresses to the user that is loged in.
    Nicolette

  • OM11g: Dynamic notifications on different user objects.

    Hello
    On the User object, I have 3 custom attributes. These attributes are of type "Checkbox". I'd like to notify an administrator when any one of these attributes change value.
    For example:
    Attribute1: Head Office Access
    Attribute2: Remote Office Access
    Attribute3: Foreign Office Access
    I have implemented a postprocess event handler on the "USER" object, for changetype "MODIFY".
    My orchestration event has the details of the attribute that changed, and I can tell if it's been checked, or unchecked, based on the value that is passed to my postprocess handler.
    My question though, is how do I call my notifier with this attribute, so i can have one notification template called "Physical Access Changed", and have the system differentiate between head office, remote office, and foreign office.
    Do I need 3 different notification templates? Can I do it with one? If so, how can I pass information from the postprocess handler, to the notification handler, to the resolver, and ultimately to the template?
    My current approach has a notification template for each access, and a the same message in each of them. My post process handler then determines based on the orchestration event which attribute was changed, and then calls the NotificationEvent with the appropriate template name. However, I'd like to collapse it to one NotificationEvent, and pass the orchestration attribute to it...
    Any ideas?
    Thank you.

    Thank you.
    I have a resolver class that implements NotificationEventResolver
    public class AccessNotificationResolver implements NotificationEventResolver {
    @Override
    public HashMap<String, Object> getReplacedData(String eventType, Map<String, Object> map) {
    String userLogin = (String) map.get("user_login");
    // find the user
    // iterate the attributes
    return resolvedNotificationData;
    This works, and lets me return any of the X2-Entity attributes that are listed in the Notification plugin. But, it does not allow me to return arbitrary data. For example, the checkboxes that are check or not checked for physical site access, in the notification show up as 1 or 0. So when someone gets added to the Head Office location my email reads:
    This is to inform you that $First_Name $Last_Name has had their access modified for the following location: Head Office: 1
    I would prefer that it say:
    This is to inform you that $First_Name $Last_Name has had their access modified for the following location: Head Office: Added
    I, however, don't seem to have a way to say "Added" and pass that up to the Notification template. Or am I missing something?
    Thank you.

  • Copy an application with plugins into a new application and change theme...

    I copied an application (theme 23) with plugins into a new application and then changed the theme to theme 26. After that, all plugins (skillbuilders super lov, skillbuilders modal, and notification plugin) didn't work at all. However, when I changed the theme back to the original theme, things worked.
    I have applications that use theme 26 with plugins and they all work fine. I think the problem is related to copying one application, containing plugins, into a new application. Does anyone have any idea of it?
    Thanks.

    Hi,
    Most plugins have css,images or js files which can be placed on the server.
    It might be that you have placed those files on the server in the theme directory.
    If you change the theme then the plugin can not find those files any more.
    Regards,
    Kees Vlek
    <tt>Company: http://www.orcado.nl
    Blog: http://www.orcado.nl/blog/blogger/listings/69-kvlek
    Twitter: http://www.twitter.com/skier66</tt>
    If the question is answered please change it to answered.

  • [SOLVED]Would be grateful for help with im notification shell script

    Hi all,
    Playing with finch (a console im client), and haven't found any notification plugins for it that work the way I want.
    What I have been doing is using tail to watch the logs. As the logs are in html, I use sed to strip the html tags:
    tail -n 1 -q -f ~/.purple/logs/bonjour/phinch/*/* | sed -e 's#<[^>]*>##g'
    I would like to use notify-send or dzen2 to create popup windows when the log file changes, but I'm not sure how (I am not an experienced programmer).
    This, for example, does not work:
    tail -n 1 -q -f ~/.purple/logs/bonjour/phinch/*/* | sed -e 's#<[^>]*>##g' | while read line ; do notify-send "${line}" ; done
    Removing sed from the stream above allows notify-send to pop up notifications. How can I have the same happen with sed in there?
    Last edited by hellomynameisphil (2011-10-22 17:49:34)

    hellomynameisphil wrote:
    tail -n 1 -q -f ~/.purple/logs/bonjour/phinch/*/* | sed -e 's#<[^>]*>##g' | while read line ; do notify-send "${line}" ; done
    Removing sed from the stream above allows notify-send to pop up notifications. How can I have the same happen with sed in there?
    The problem here is that sed is buffering its output to improve efficiency in pipes. Try with:
    tail -n 1 -q -f ~/.purple/logs/bonjour/phinch/*/* | sed -e 's#<[^>]*>##g' -u | while read line ; do notify-send "${line}" ; done
    And should work as well
    Regards

  • Notification (jGrowl) plug-in

    Hi,
    I use the notification plugin in one of my Apex applications. The theme of that application is theme 20. Everything works fine except that the rounded corners of the notification background is out of shape. Is this because theme 20 is not XHTML compliant? If so, is there any way to fix this in theme 20?
    Thanks.
    Andy

    Hi Andy,
    are you talking about my "Notification" dynamic action plug-in at http://www.oracle.com/technetwork/developer-tools/apex/application-express/apex-plug-ins-182042.html#dynamic ?
    I just switched the theme of my test application to theme 20 and it looks good in Chrome. What browser do you use and can you provide a test case on apex.oracle.com where the problem reproduces?
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Skillbuilders modal plugin

    Hi!
    I am trying to trigger Notification plugin on Skillbuilders autoclose Modal plugin. It works. But, I would trigger it only when success message is "Insert successful!".
    I made dynamic action, Event is Auto Close and action is Notification plugin. And there I would like to set condition to fire only when success message is equal to something.
    Success message is being hold by
    <div id="MESSAGE" class="t16success">What should I put in condition?
    Thanks!

    Alright, use
    this.data && this.data.$modalPageCloseObject.length!=0 && (this.data.$modalPageCloseObject.text()=="Action Processed.")"this.data.$modalPageCloseObject" is an array. It will contain all the objects matching the given selector. This will probably always be 1 element. I changed the test on the object aswell to check it's length rather than its existence.
    "(this.data.$modalPageCloseObject.text()" does not need the "find" since the object is already that one div.
    <div id="message">...</div>and performing
    $("#messagge").find("div") on it would return an empty array aswell.
    So .find() can be dropped, and just use text on the object.
    If there would ever be more objects in the array you can restrict to, say, the first element by using .eq() on the CloseObject.

  • My late 2009 iMac is running slow, particularly on Mail, more so since I upgraded to Yosemite. I have run an Etrecheck but it doesn't mean too much to me. If anyone can point me to what I need to do I'll be very grateful.

    My late 2009 iMac is running slow, particularly on Mail, more so since I upgraded to Yosemite. I have run an Etrecheck but it doesn't mean too much to me. If anyone can point me to what I need to do I'll be very grateful.
    Etrecheck says:
    Problem description:
    Imac late 2009 running slow
    EtreCheck version: 2.2 (132)
    Report generated 5/3/15, 4:33 PM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2009) (Technical Specifications)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                Empty  
            BANK 1/DIMM0
                Empty  
            BANK 0/DIMM1
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.3 (14D136) - Time since boot: 5:5:56
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (308.35 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Western Digital My Book 111A 1 TB
            disk1s1 (disk1s1) <not mounted> : 32 KB
            My Book (disk1s3) /Volumes/My Book : 1.00 TB (226.58 GB free)
        Apple Internal Memory Card Reader
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Configuration files: ℹ️
        /etc/hosts - Count: 30
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Toast 10 Titanium/Toast Titanium.app
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
        [not loaded]    com.roxio.TDIXController (1.7) [Click for support]
            /Library/Application Support/LogMeIn/drivers
        [loaded]    com.logmein.driver.LogMeInSoundDriver (4.1.48f99) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.NovatelWireless.driver.NovatelWirelessUSBCDCECMControl (3.0.13) [Click for support]
        [not loaded]    com.NovatelWireless.driver.NovatelWirelessUSBCDCECMData (3.0.13) [Click for support]
        [not loaded]    com.ZTE.driver.ZTEUSBCDCACMData (1.3.8) [Click for support]
        [not loaded]    com.ZTE.driver.ZTEUSBMassStorageFilter (1.3.8) [Click for support]
        [not loaded]    com.novamedia.driver.IceraUSB_MSD_Bypass (1.3.0) [Click for support]
        [not loaded]    com.novatelwireless.driver.3G (3.0.13) [Click for support]
        [not loaded]    com.novatelwireless.driver.DisableAutoInstall (3.0.13) [Click for support]
        [not loaded]    com.option.driver.Option72 (2.15.0) [Click for support]
        [not loaded]    com.option.driver.OptionHS (3.26.0) [Click for support]
        [not loaded]    com.option.driver.OptionMSD (1.21.0) [Click for support]
        [not loaded]    com.option.driver.OptionQC (1.11.0) [Click for support]
        [not loaded]    com.pctools.iantivirus.kfs (1.0.1) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.39) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.45) [Click for support]
        [not loaded]    com.vodafone.driver (3.0.9) [Click for support]
        [not loaded]    com.zte.driver.cdc_ecm_qmi (1.0.1) [Click for support]
        [not loaded]    com.zte.driver.cdc_usb_bus (1.0.1) [Click for support]
        [not loaded]    de.novamedia.driver.NMSmartplugSCSIDevice (1.0.1) [Click for support]
        [not loaded]    de.novamedia.oem.vodafone.vtp.huawei.cdc (0.0.2) [Click for support]
            /System/Library/Extensions/NMHuaweiPhonesVTPCDC.kext/Contents/Resources
        [not loaded]    de.novamedia.driver.NMUSBCDCACMData.VTP (3.2.6) [Click for support]
            /System/Library/Extensions/NovatelWireless3G.kext/Contents/Plugins
        [not loaded]    com.novatelwireless.driver.3GData (3.0.13) [Click for support]
            /System/Library/Extensions/Vodafone.kext/Contents/Plugins
        [not loaded]    com.vodafone.driver.Data (3.0.9) [Click for support]
            /Volumes/My Book/Extras/WD +TURBO Installer.app
        [not loaded]    com.wdc.driver.1394HP (1.0.9) [Click for support]
        [not loaded]    com.wdc.driver.USBHP (1.0.11) [Click for support]
    Startup Items: ℹ️
        AdobeVersionCueCS2: Path: /Library/StartupItems/AdobeVersionCueCS2
        Qmaster: Path: /Library/StartupItems/Qmaster
        VirtualPCOSServices: Path: /Library/StartupItems/VirtualPCOSServices
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudphotosd.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.Maps.pushdaemon.plist
        [killed]    com.apple.photolibraryd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        10 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [failed]    com.apple.mtrecorder.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.softwareupdated.plist
        [killed]    com.apple.wdhelper.plist
        8 processes killed due to memory pressure
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS4ServiceManager.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [failed]    com.logmein.LMILaunchAgentFixer.plist [Click for support] [Click for details]
        [running]    com.logmein.logmeingui.plist [Click for support]
        [running]    com.logmein.logmeinguiagent.plist [Click for support]
        [not loaded]    com.logmein.logmeinguiagentatlogin.plist [Click for support]
        [running]    de.novamedia.VodafoneDeviceObserver.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.adobe.versioncueCS3.plist [Click for support]
        [loaded]    com.adobe.versioncueCS4.plist [Click for support]
        [failed]    com.apple.spirecorder.plist
        [loaded]    com.bombich.ccc.plist [Click for support]
        [running]    com.logmein.logmeinserver.plist [Click for support]
        [loaded]    com.logmein.raupdate.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    jp.co.canon.MasterInstaller.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Mail    Application  (/Applications/Mail.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        iAntiVirus    Application Hidden (/Applications/iAntiVirus/iAntiVirus.app)
    Internet Plug-ins: ℹ️
        LogMeInSafari64: Version: 1.0.730 [Click for support]
        Unity Web Player: Version: UnityPlayer version 3.5.3f3 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        LogMeIn: Version: 1.0.730 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        LogMeInSafari32: Version: 1.0.730 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        SharePointBrowserPlugin: Version: 14.0.0 [Click for support]
        EPPEX Plugin: Version: 10.0 [Click for support]
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    Audio Plug-ins: ℹ️
        DVCPROHDAudio: Version: 1.2
    3rd Party Preference Panes: ℹ️
        Adobe Version Cue CS2  [Click for support]
        Adobe Version Cue CS3  [Click for support]
        Adobe Version Cue CS4  [Click for support]
        Déjà Vu  [Click for support]
        Flash Player  [Click for support]
        Growl  [Click for support]
        SixtyFourSwitcher  [Click for support]
    Time Machine: ℹ️
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 499.25 GB Disk used: 190.89 GB
        Destinations:
            My Book [Local]
            Total size: 1.00 TB
            Total number of backups: 13
            Oldest backup: 2015-04-21 19:59:59 +0000
            Last backup: 2015-05-02 19:49:37 +0000
            Size of backup disk: Adequate
                Backup size 1.00 TB > (Disk used 190.89 GB X 3)
    Top Processes by CPU: ℹ️
            12%    iavd
             5%    iAntiVirus
             5%    WindowServer
             5%    diskimages-helper
             1%    mdworker(5)
    Top Processes by Memory: ℹ️
        537 MB    kernel_task
        266 MB    Google Chrome Helper(4)
        111 MB    Google Chrome
        74 MB    ocspd
        74 MB    WindowServer
    Virtual Memory Information: ℹ️
        1.45 GB    Free RAM
        2.55 GB    Used RAM
        59 MB    Swap Used
    Diagnostics Information: ℹ️
        May 3, 2015, 11:26:23 AM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-05-03-112623_[ redacted].cpu_resource.diag [Click for details]
        May 3, 2015, 11:22:17 AM    Self test - passed

    Thanks for all the replies.
    I've now installed the ad blocker, thrown away the unwanted files, and thrown away a copy of Firefox that Adware said had a problematic extension.
    Things are better, but still slow.
    Activity Monitor shows that with just Mail, Chrome and Excel running, 2.9GB of my 4GB RAM is used. Opening InDesign (always slow) increase that to 3.2GB. But the graph stays green.
    Console shows several potential problems but I don't know if any are significant. In any case I will call my Mac store tomorrow to ask their advice about RAM.
    04/05/2015 18:52:05.309 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3383189 oid:3383189 ino:3383189 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Attachments/669999/5 -- /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Attachments/669999/5
    04/05/2015 18:52:05.309 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3375445 oid:3375445 ino:3375445 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Messages -- /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Messages
    04/05/2015 18:52:10.564 com.apple.backupd-helper[66]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    04/05/2015 18:52:11.090 com.apple.backupd-helper[66]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    04/05/2015 18:52:12.727 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:52:13.021 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:52:13.022 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:52:14.284 helpd[296]: Cannot find executable for CFBundle 0x7fb412caabe0 </Library/Documentation/Help/iWorkFunctionsHelp.help> (not loaded)
    04/05/2015 18:52:15.085 helpd[296]: Cannot find executable for CFBundle 0x7fb412d1f540 </Library/Documentation/Help/X422MFPHelp.help> (not loaded)
    04/05/2015 18:52:17.455 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:17.456 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:21.737 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:21.738 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:23.292 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:31.811 AddressBookManager[428]: Validate metadata timed out, cancelling
    04/05/2015 18:52:33.395 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.396 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (A9323757-5224-408D-AE23-0CB83451E046).
    04/05/2015 18:52:33.467 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:33.573 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.574 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (A9323757-5224-408D-AE23-0CB83451E046).
    04/05/2015 18:52:33.922 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.923 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (D9A0E166-5A9D-4D1B-B82F-E4CA68F064F3).
    04/05/2015 18:52:34.068 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:34.068 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (D9A0E166-5A9D-4D1B-B82F-E4CA68F064F3).
    04/05/2015 18:52:34.354 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:35.161 icbaccountsd[430]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fe8584355d0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    04/05/2015 18:52:35.597 helpd[296]: Could not find access page in directory /Applications/Carbon Copy Cloner/Carbon Copy Cloner.app/Contents/Resources/Help
    04/05/2015 18:52:35.598 helpd[296]: Could not find access page in directory /Applications/Carbon Copy Cloner/Carbon Copy Cloner.app/Contents/Resources/Help
    04/05/2015 18:52:35.612 helpd[296]: Could not find access page in directory /Applications/Final Cut Pro Studio/Final Cut Pro.app/Contents/Resources/English.lproj/Final Cut Pro Help
    04/05/2015 18:52:35.613 helpd[296]: Could not find access page in directory /Applications/Final Cut Pro Studio/Final Cut Pro.app/Contents/Resources/English.lproj/Final Cut Pro Help
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3111641 oid:3111641 ino:3111641 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com -- /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3078032 oid:3078032 ino:3078032 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected] -- /Users/leopard/Library/Mail/V2/[email protected]
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3096791 oid:3096791 ino:3096791 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/[Google Mail].mbox/Spam.mbox -- /Users/leopard/Library/Mail/V2/[email protected]/[Google Mail].mbox/Spam.mbox
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3112877 oid:3112877 ino:3112877 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com -- /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3105498 oid:3105498 ino:3105498 fsEvents:1 /Users/leopard/Library/Mail/V2/Mailboxes -- /Users/leopard/Library/Mail/V2/Mailboxes
    04/05/2015 18:52:39.465 sandboxd[328]: ([430]) icbaccountsd(430) deny mach-lookup com.apple.CrashReporterSupportHelper
    04/05/2015 18:52:42.205 com.apple.backupd[433]: Starting automatic backup
    04/05/2015 18:52:43.308 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:50.022 com.apple.backupd[433]: Backing up to /dev/disk1s3: /Volumes/My Book/Backups.backupdb
    04/05/2015 18:53:40.588 mapspushd[322]: 2015-05-04 18:53:40.588, 322, 42c4fc20, [MapsAnnouncements]: server returned error: 404 for URL http://gspe21.ls.apple.com/config/announcements?hardware=iMac10,1&lang=en&os=osx &os_build=14D136&os_version=10.10.3
    04/05/2015 18:53:40.589 mapspushd[322]: 2015-05-04 18:53:40.588, 322, 42c4fc20, [MapsAnnouncements]: Failed to load announcements document: Error Domain=GEOErrorDomain Code=-601 "The operation couldn’t be completed. (GEOErrorDomain error -601.)" UserInfo=0x7fba42c4deb0 {NSErrorFailingURLStringKey=http://gspe21.ls.apple.com/config/announcements?hardware=iMac10,1&lang=en&os=osx &os_build=14D136&os_version=10.10.3, HTTP Status Code=404}
    04/05/2015 18:53:40.989 com.apple.xpc.launchd[1]: (com.apple.quicklook[440]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    04/05/2015 18:53:41.159 nbagent[439]: XPC Activity invoked with state=0
    04/05/2015 18:53:41.160 nbagent[439]: XPC Activity invoked with state=2
    04/05/2015 18:53:41.329 storeaccountd[317]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff9a8580770> connection from pid 439 with interface <AccountServiceInterface: 0x7ff9a8598880> (PID 439)
    04/05/2015 18:53:41.739 periodic-wrapper[441]: Running daily periodic task.
    04/05/2015 18:53:43.613 storeaccountd[317]: ADI: {
        "Accept-Ranges" = bytes;
        "Cache-Control" = "max-age=14400";
        Connection = "Keep-Alive";
        "Content-Encoding" = gzip;
        "Content-Language" = "en-us";
        "Content-Length" = 793;
        "Content-Type" = "application/x-apple-plist";
        Date = "Mon, 04 May 2015 17:53:43 GMT";
        Etag = "\"e20-5071070ddab80\"";
        Expires = "Mon, 04 May 2015 21:53:43 GMT";
        "Keep-Alive" = "timeout=15, max=281";
        "Last-Modified" = "Tue, 04 Nov 2014 23:01:18 GMT";
        Server = Apache;
    04/05/2015 18:53:44.006 sandboxd[328]: ([447]) nbstated(447) deny ipc-posix-shm-read-data com.apple.AppleDatabaseChanged
    04/05/2015 18:53:58.000 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    04/05/2015 18:53:58.472 mdworker[366]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.474 mdworker[435]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.476 mdworker[436]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.476 mdworker[437]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.478 CoreServicesUIAgent[359]: unexpected message <OS_xpc_error: <error: 0x7fff76be0c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff76be0f70> { length = 18, contents = "Connection invalid" }
    }>
    04/05/2015 18:53:58.478 mdworker[438]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.558 fseventsd[42]: Logging disabled completely for device:1: /Volumes/Recovery HD
    04/05/2015 18:53:58.565 mds[55]: (Volume.Normal:2464) volume:0x7f96c413b000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    04/05/2015 18:53:58.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    04/05/2015 18:56:38.724 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:39.031 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:39.031 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:56:40.704 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:40.977 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:40.977 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:56:43.160 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:43.428 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:43.428 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:00.920 WindowServer[154]: CGXDisplayDidWakeNotification [729933074334]: posting kCGSDisplayDidWake
    04/05/2015 18:57:00.920 WindowServer[154]: handle_will_sleep_auth_and_shield_windows: Deferring.
    04/05/2015 18:57:01.086 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>: notification observer: com.apple.iChat   notification: __CFNotification 0x7fd522414040 {name = _NSDoNotDisturbDisabledNotification}
    04/05/2015 18:57:01.235 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>:    NC Disabled: NO
    04/05/2015 18:57:01.241 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>:   DND Enabled: NO
    04/05/2015 18:57:01.242 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>: Updating enabled: YES   (Topics: (
    04/05/2015 18:57:06.630 com.apple.backupd[433]: Will copy (547 KB) from Macintosh HD
    04/05/2015 18:57:06.720 com.apple.backupd[433]: Found 14392 files (112.99 GB) needing backup
    04/05/2015 18:57:06.728 com.apple.backupd[433]: 136.19 GB required (including padding), 118.1 GB available
    04/05/2015 18:57:09.840 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:10.119 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:10.119 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:12.387 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:12.668 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:12.669 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:14.340 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:14.619 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:14.619 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:14.620 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-05-02-204937 containing 782.8 MB; 118.88 GB now available, 136.19 GB required
    04/05/2015 18:57:22.106 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-05-03-181125 containing 31.6 MB; 118.92 GB now available, 136.19 GB required
    04/05/2015 18:57:22.108 com.apple.backupd[433]: Removed 2 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:57:22.281 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:22.562 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:22.562 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:47.959 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-25-125849 containing 2.94 GB; 121.86 GB now available, 136.19 GB required
    04/05/2015 18:57:47.960 com.apple.backupd[433]: Removed 3 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:58:01.552 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-26-110446 containing 6.31 GB; 128.17 GB now available, 136.19 GB required
    04/05/2015 18:58:01.554 com.apple.backupd[433]: Removed 4 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-27-095120 containing 110.88 GB; 239.05 GB now available, 136.19 GB required
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Deleted 5 backups containing 120.95 GB total; 239.05 GB now available, 136.19 GB required
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Backup date range was shortened: oldest backup is now Apr 28, 2015
    04/05/2015 18:59:01.076 com.apple.xpc.launchd[1]: (com.apple.quicklook[533]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    04/05/2015 18:59:09.015 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:59:10.846 nsurlstoraged[308]: purgeEntireFileSystemStore - failed to rename the current cache dir /Users/leopard/Library/Containers/com.apple.mail/Data/Library/Caches/com.apple. mail/fsCachedData to new cache dir /var/folders/wv/x9z7l4911p33dv8jyv6nby6m0000gn/T/fsCachedData_remove.  Errno=18
    04/05/2015 18:59:14.837 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:59:51.249 spindump[412]: Saved spin report for System Preferences version 14.0 (14.0) to /Library/Logs/DiagnosticReports/System Preferences_2015-05-04-185951_Paul-Breedens-imac-5.spin
    04/05/2015 19:00:05.000 kernel[0]: process WindowServer[154] caught causing excessive wakeups. Observed wakeups rate (per sec): 157; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 66094
    04/05/2015 19:00:05.871 com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Root[544]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash.DirectoryService
    04/05/2015 19:00:05.875 SubmitDiagInfo[340]: Couldn't load config file from on-disk location. Falling back to default location. Reason: Won't serialize in _readDictionaryFromJSONData due to nil object
    04/05/2015 19:00:11.473 spindump[412]: Saved wakeups_resource.diag report for WindowServer version ??? (???) to /Library/Logs/DiagnosticReports/WindowServer_2015-05-04-190011_Paul-Breedens-im ac-5.wakeups_resource.diag
    04/05/2015 19:00:56.197 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 19:00:56.530 iconservicesd[59]: Failed to move temp file /Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C-B706F28B0A 68.isdata.tmp to /Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C-B706F28B0A 68.isdata with error: Error Domain=NSCocoaErrorDomain Code=516 "“B9FF2D6E-5D0C-1218-402C-B706F28B0A68.isdata.tmp” couldn’t be moved to “com.apple.iconservices.store” because an item with the same name already exists." UserInfo=0x7fb949c13070 {NSSourceFilePathErrorKey=/Library/Caches/com.apple.iconservices.store/B9FF2D6E -5D0C-1218-402C-B706F28B0A68.isdata.tmp, NSUserStringVariant=(
        Move
    ), NSDestinationFilePath=/Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0 C-1218-402C-B706F28B0A68.isdata, NSFilePath=/Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C -B706F28B0A68.isdata.tmp, NSUnderlyingError=0x7fb949c11ba0 "The operation couldn’t be completed. File exists"}
    04/05/2015 19:00:57.204 QuickLookSatellite[545]: Failed to obtain sandbox extension for path=/Users/leopard/Library/Caches/com.apple.quicklook.satellite. Errno:1
    04/05/2015 19:00:57.211 QuickLookSatellite[545]: Failed to obtain sandbox extension for path=/Users/leopard/Library/Caches/com.apple.quicklook.satellite. Errno:1
    04/05/2015 19:00:57.796 QuickLookSatellite[545]: CGSConnectionByID: 0 is not a valid connection ID.
    04/05/2015 19:00:57.796 QuickLookSatellite[545]: Invalid Connection ID 0
    04/05/2015 19:01:02.753 sandboxd[328]: ([545]) QuickLookSatelli(545) deny file-issue-extension /Users/leopard/Library/Caches/com.apple.quicklook.satellite
    04/05/2015 19:01:02.824 sandboxd[328]: ([545]) QuickLookSatelli(545) deny mach-lookup com.apple.nsurlstorage-cache
    04/05/2015 19:01:02.837 sandboxd[328]: ([545]) QuickLookSatelli(545) deny file-issue-extension /Users/leopard/Library/Caches/com.apple.quicklook.satellite
    04/05/2015 19:01:02.896 sandboxd[328]: ([545]) QuickLookSatelli(545) deny mach-lookup com.apple.nsurlstorage-cache
    04/05/2015 19:01:08.015 com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.7940DB53-496F-47D2-87E2-C3EE3CBF1E27[545]) Service exited due to signal: Killed: 9
    04/05/2015 19:01:19.128 apsd[75]: Illegal subject name missing 'courier.push.apple.com' (2.5.4.3): ({
        label = "2.5.4.6";
        "localized label" = "2.5.4.6";
        type = string;
        value = US;
        label = "2.5.4.8";
        "localized label" = "2.5.4.8";
        type = string;
        value = California;
        label = "2.5.4.7";
        "localized label" = "2.5.4.7";
        type = string;
        value = Cupertino;
        label = "2.5.4.10";
        "localized label" = "2.5.4.10";
        type = string;
        value = "Apple Inc.";
        label = "2.5.4.3";
        "localized label" = "2.5.4.3";
        type = string;
        value = "courier.sandbox.push.apple.com";
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.3 instead of 10.10.3. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
    Call location:
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 0   CarbonCore                          0x93ff9291 ___Gestalt_SystemVersion_block_invoke + 135
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 1   libdispatch.dylib                   0x9a9460b5 dispatch_once_f + 251
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 2   libdispatch.dylib                   0x9a9470d8 dispatch_once + 31
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 3   CarbonCore                          0x93f7269d _Gestalt_SystemVersion + 1050
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 4   CarbonCore                          0x93f717c0 Gestalt + 150
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 5   AdobeAFL                            0x016ebfae _ZN5adobe3afl12MacFileUtils13AFileToFSSpecERKNS0_5AFileER6FSSpec + 5254
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 6   ???                                 0x8feb70b3 0x0 + 2414571699
    04/05/2015 19:01:28.908 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 19:01:28.952 Adobe InDesign CS5[550]: The function ‘CGSFlushWindow’ is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance. Please use `CGSFlushWindowContentRegion' instead.
    04/05/2015 19:01:29.229 Mail[309]: XOAUTH2 requires user
    04/05/2015 19:01:29.229 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    Hope this isn't too much ... thanks again for everyone's input.

  • Could not open DVD with libdvdcss

    I installed vlc, xine-lib, xine-ui, mplayer, libdvdcss, libdvdnav, libdvdread.
    I also installed "codecs" with packer.
    I'm trying to play two different DVDs and the following is what I get (even putting the disk into /dev/sr0 or using another DVD won't change):
    $ vlc /dev/sr1
    VLC media player 2.1.5 Rincewind (revision 2.1.4-49-gdab6cb5)
    [0x95b1220] pulse audio output error: PulseAudio server connection failure: Connection refused
    [0x952a8f8] main libvlc: VLC wird mit dem Standard-Interface ausgeführt. Benutzen Sie 'cvlc', um VLC ohne Interface zu verwenden.
    libdvdnav: Using dvdnav version 4.2.1
    libdvdread: Could not open /dev/sr1 with libdvdcss.
    libdvdread: Can't open /dev/sr1 for reading
    libdvdnav: vm: failed to open/read the DVD
    [0xb20a5e48] filesystem access error: read error: Input/output error
    [0xb39a6e10] main stream error: cannot pre fill buffer
    libdvdnav: Using dvdnav version 4.2.1
    libdvdread: Could not open /dev/sr1 with libdvdcss.
    libdvdread: Can't open /dev/sr1 for reading
    libdvdnav: vm: failed to open/read the DVD
    libdvdread: Could not open /dev/sr1 with libdvdcss.
    libdvdread: Can't open /dev/sr1 for reading
    [0xb1abe3f8] dvdread demux error: DVDRead cannot open source: /dev/sr1
    [0xb5a03700] main input error: open of `dvd:///dev/sr1' failed
    $ mplayer /dev/sr1
    MPlayer SVN-r37224 (C) 2000-2014 MPlayer Team
    210 audio & 441 video codecs
    Playing /dev/sr1.
    File not found: '/dev/sr1'
    Failed to open /dev/sr1.
    Exiting... (End of file)
    $ xine /dev/sr1
    Dies ist xine (X11 gui) - Ein freier Video-Player v0.99.8-[DEBUG].
    (c) 2000-2010 The xine Team.
    videowin: display is using xinerama with 1 screens
    videowin: going to assume we are using the first screen.
    videowin: size of the first screen is 1024x768.
    videowin: Xinerama fullscreen parameters: X_origin=0 Y_origin=0 Width=1024 Height=768
    pixel_aspect: 0.997627
    Failed to open VDPAU backend libvdpau_nouveau_vieux.so: Kann die Shared-Object-Datei nicht öffnen: Datei oder Verzeichnis nicht gefunden
    vo_vdpau: Can't create vdp device : No vdpau implementation.
    xv_set_property: property=1, value=0
    xine: could not connect to socket
    xine: Datei oder Verzeichnis nicht gefunden
    this is my video card
    01:00.0 VGA compatible controller: NVIDIA Corporation NV11 [GeForce2 MX200] (rev b2) (prog-if 00 [VGA controller])
    Subsystem: CardExpert Technology Device 0001
    Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 16
    Memory at d6000000 (32-bit, non-prefetchable) [size=16M]
    Memory at d8000000 (32-bit, prefetchable) [size=128M]
    Expansion ROM at d7ff0000 [disabled] [size=64K]
    Capabilities: [60] Power Management version 2
    Capabilities: [44] AGP version 2.0
    Kernel driver in use: nouveau
    Kernel modules: nouveau
    these commands were asked me on freenode's #archlinux channel:
    $ stat /dev/sr0
    Datei: „/dev/sr0“
    Größe: 0 Blöcke: 0 EA Block: 4096 blockorientierte Spezialdatei
    Gerät: 5h/5d Inode: 6351 Verknüpfungen: 1 Gerätetyp: b,0
    Zugriff: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 93/ optical)
    Zugriff : 2014-07-12 22:52:20.959057344 +0200
    Modifiziert: 2014-07-12 22:52:20.959057344 +0200
    Geändert : 2014-07-12 22:52:20.959057344 +0200
    Geburt : -
    $ getfacl /dev/sr0
    # file: dev/sr0
    # owner: root
    # group: optical
    user::rw-
    user:christian:rw-
    group::rw-
    mask::rw-
    other::---
    $ loginctl show-session $XDG_SESSION_ID -p Active
    Active=yes
    I feel like some other driver is missing...
    Last edited by leonixyz (2014-07-12 21:58:01)

    dodo3773 wrote:Can you test a regular video file and it works fine in vlc?
    ok, one step toward the solution:
    I've scp-ed an .mp4 and an .mpg from my laptop, chmod 777 them and finally I can play them
    dodo3773 wrote:
    Also, do you get any output from this command?:
    dmesg | grep CD
    $ dmesg | grep CD
    [ 1.227637] scsi 0:0:0:0: CD-ROM HL-DT-ST CD-RW GCE-8320B 1.02 PQ: 0 ANSI: 5
    [ 1.238061] scsi 0:0:1:0: CD-ROM LG DVD-ROM DRD8160B 1.01 PQ: 0 ANSI: 5
    [ 1.458996] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.459461] sr 0:0:0:0: Attached scsi CD-ROM sr0
    [ 1.471069] sr 0:0:1:0: Attached scsi CD-ROM sr1
    [ 1286.396790] sr 0:0:1:0: [sr1] CDB:
    [ 1286.426850] sr 0:0:1:0: [sr1] CDB:
    $ pacman -Qi vlc
    Name : vlc
    Version : 2.1.5-1
    Beschreibung : A multi-platform MPEG, VCD/DVD, and DivX player
    Architektur : i686
    URL : http://www.videolan.org/vlc/
    Lizenzen : LGPL2.1 GPL2
    Gruppen : Nichts
    Stellt bereit : Nichts
    Hängt ab von : a52dec libdvbpsi libxpm libdca qt4 libproxy sdl_image libdvdnav libtiger
    lua libmatroska zvbi taglib libmpcdec ffmpeg faad2 libupnp libshout libmad
    libmpeg2 xcb-util-keysyms libtar libxinerama
    Optionale Abhängigkeiten: avahi: for service discovery using bonjour protocol[Installiert]
    libnotify: for notification plugin[Installiert]
    ncurses: for ncurses interface support[Installiert]
    libdvdcss: for decoding encrypted DVDs[Installiert]
    lirc-utils: for lirc plugin[Installiert]
    libavc1394: for devices using the 1394ta AV/C
    libdc1394: for IEEE 1394 plugin
    kdelibs: KDE Solid hardware integration
    libva-vdpau-driver: vdpau back-end for nvidia[Installiert]
    libva-intel-driver: back-end for intel cards
    libbluray: for Blu-Ray support[Installiert]
    flac: for Free Lossless Audio Codec plugin[Installiert]
    portaudio: for portaudio support
    twolame: for TwoLAME mpeg2 encoder plugin
    projectm: for ProjectM visualisation plugin
    libcaca: for colored ASCII art video output[Installiert]
    libgme: for libgme plugin
    librsvg: for SVG plugin[Installiert]
    gnome-vfs: for GNOME Virtual File System support
    libgoom2: for libgoom plugin
    vcdimager: navigate VCD with libvcdinfo
    aalib: for ASCII art plugin[Installiert]
    libmtp: for MTP devices support
    smbclient: for SMB access plugin[Installiert]
    libcdio: for audio CD playback support[Installiert]
    ttf-freefont: for subtitle font
    ttf-dejavu: for subtitle font
    opus: for opus support[Installiert]
    libssh2: for sftp support[Installiert]
    lua-socket: for http interface
    Benötigt von : Nichts
    Optional für: Nichts
    Konflikt mit : vlc-plugin
    Ersetzt : vlc-plugin
    Installationsgröße: 44319,00 KiB
    Packer : Giovanni Scafora <[email protected]>
    Erstellt am : Mi 09 Jul 2014 15:14:36 CEST
    Installiert am : Sa 12 Jul 2014 21:15:04 CEST
    Installationsgrund : Ausdrücklich installiert
    Installations-Skript : Ja
    Verifiziert durch: Signatur

  • A link in a thunderbird message fails to activate firefox but if i copy & paste it in the ffx location bar, it goes to the linked web page

    a link in a thunderbird message fails to activate firefox but if i copy & paste it in the ffx location bar, it goes to the linked web page. Also, some web page links are failing except that some will work if i use right-click with open in new tab. just updated ffx to 3.6.13, then updated java per mozilla notification (plugin checker)

    Hi Larry,
    Thanks...that was one of the things I first tried. I did a save as another document.
    I also resized the image in PS so it would be at 100% of size, figuring that would help and I made the image box's background white instead of none, but nothing so far.
    It almosat seems like it is coming from the origianl template file?
    Babs

  • Web Service Response Customization

    Hi There !
    I wonder if it is possible to manipulate the pattern of response of the operations exposed by the OSM Web service .
    For example by invoking the operation CreateOrder which responded me
    <xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"> <env:Envelope
    <env:Header/>
    <env:Body>
    xmlns:n1="http://xmlns.oracle.com/communications/ordermanagement"> <n1:CreateOrderResponse
    <n1:OrderSummary>
    <n1:Id> 12 </ n1: Id>
    <n1:Specification>
    <n1:Cartridge>
    <n1:Name> ncaOsmFactibilidad </ n1: Name>
    <n1:Version> 1.0.0 </ n1: Version>
    </ n1: Cartridge>
    <n1:Type> ncaOsmFactibilidadOrder </ n1: Type>
    <n1:Source> ncaOsmFactibilidadOrder </ n1: Source>
    </ n1: Specification>
    <n1:State> open.running.in_progress </ n1: State>
    <n1:Reference> 17-12C96Z </ n1: Reference>
    <n1:Priority> 5 </ n1: Priority>
    </ n1: OrderSummary>
    </ n1: CreateOrderResponse>
    </ env: Body>
    </ env: Envelope>
    I would like to modify the response to include new custom elements
    Regards

    Hi Andres;
    We do not support the ability to enrich the Create Order response message in the way that you are describing below, however you may be able to make use of order lifecycle notifications to be able to generate a custom event out of OSM when an order is created. To do this, you would automate the order state change or order create even with an automated notification plugin, and then have it send a jms message on the queue/topic of your choosing and format it how you wish using xquery/xslt/java (just as with a task automator).
    Brian.

  • Integrating OSM with CRM & Inventory system

    Hi,
    We are using OSM 7.0 in our solution, in which we need to integrate OSM with CRM and one inventory system.
    We need to notify CRM at various stages during order fulfillment for e.g. after completing different milestones like Order submitted, Inventory Done and Order Completed. Among these notifications, Order Submitted notification would be a synchronous one and rest are the asynchronous notifications.
    We are not using AIA for integration with CRM. How we can send notifications to CRM for the above stated scenarios?
    Also, to integrate with Inventory system, we need to call a webservice exposed by that system. Could you please confirm if the below steps are correct to achieve the same or there is some other way?
    1. Write Automation plug-in
    2. Configure JMS queue on weblogic server
    3. Post request message on JMS queue
    4. Write JMS Client to get the message from the queue
    5. Package the message in SOAP envelop and call the webservice API.
    ~RS

    RS;
    In our AIA cartridges, we make use of automated OSM notifications to send events to Siebel CRM via AIA. There are several different kinds of notifications available in OSM, the ones that we use in particular for this purpose are data-change notifications which is invoked whenever a field on the order has changed (you configure which field when you create the notification). The field that you would want to listen for changes on in your case would be the field in the OSM order that you are using to store milestone/status information. The notification plugin would then be invoked whenever this field changes and can then send a status update to your CRM system if the change is relevant.
    As for your webservice integration question, first let me clarify - you are interested in invoking a web service via SOAP/HTTP instead of SOAP/JMS, is that correct?
    Assuming so, your basic steps below are directionally correct, but I would offer a few additional points to consider.
    Your automation plugin in step 1 would best (IMHO) be an XSLT or XQuery plugin vs. a custom java plugin. This will keep the scope of the business logic to the bare minimum of building up the SOAP message which of course XSLT and XQuery can handle with ease.
    I would recommend the payload of the JMS that you create in step 3 be the entire soap:envelope, this way your client in step 4 doesn't have to parse and wrap the message. It just blindly forwards it on to the real SOAP/HTTP endpoint and waits for a response.
    Your JMS client in step 4 would best be implemented by a message-driven-bean (MDB) which would be deployed to the OSM server instead of a standalone JMS client. MDB's are highly scalable JMS clients and really the way to go when you want to have some business logic be triggered based on the arrival of a JMS message.
    You probably need to add steps 6 and 7 which would be to deal with the response message back to your automation plugin. This would involve the MDB getting the SOAP/HTTP response back, creating a JMS message and putting it on the response queue (which would need to be defined in step 2) and copying the JMSCorrelationID value from the request to the response JMS message to ensure it can find its way back to the task that sent it.
    Now, all that being said, an alternative to all of this is to just have the automation plugin itself take care of posting the message to your SOAP/HTTP(s) endpoint. You could do this by writing a custom Java automation plugin that uses low level HTTP class libraries or uses standard WS client proxies to invoke the web service. There are pros and cons to this approach. The major pro being that it involves fewer moving pieces, the major con being that if your inventory service is not able to process requests as fast as OSM is making them (based on order volumes), then this may become a bottleneck in the OSM system. The bottlneck stems from the fact that OSM shares a pool of threads across all automation plugins. If you have one that is taking a very long time to process requests and the number of requests being processed concurrently is high, then this can lead to a situation where other automation plugins are starved. This won't result in an error, but it can result in a bottleneck which affects the overall performance of the system. This is really only a major concern if OSM is processing high volumes of orders and the inventory system is not able to keep pace.
    Brian.

  • Internet accounts error

    Like some others, I upgraded to OS X 10.10 and my Messages, FaceTime and iCloud connections stopped working.  I tried to log out & back in to FaceTime - but FaceTime won't work.  My Messages no longer sends to iMessage users.  I tried System Prefs > Internet Accounts and I get a spinning beachball then the error:
    Preferences Error
    Could not load Internet Account preference pane.
    I ran this command in the console (thanks Linc):
    find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) 2>&- | wc -l | pbcopy
    and the result it posted to the clipboard was 996
    Now what?

    I have also followed the test steps of removing the specified com.apple. and iMessage entries from the KeyChain of this computer. I deleted the flash storage and ensured that my SOCKS proxy was not enabled.
    I logged out and back in.  Then I tried to open Internet Accounts again - and this is what I got from the System Message Logs:
    2014-11-06 8:43:21.880 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    2014-11-06 8:43:23.478 PM QuickLookSatellite[6355]: CGSConnectionByID: 0 is not a valid connection ID.
    2014-11-06 8:43:23.479 PM QuickLookSatellite[6355]: Invalid Connection ID 0
    2014-11-06 8:43:24.107 PM com.apple.xpc.launchd[1]: (com.apple.imdmessageservices.IMDMessageServicesAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    2014-11-06 8:43:24.107 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    2014-11-06 8:43:32.222 PM QuickLookSatellite[6355]: CGSConnectionByID: 0 is not a valid connection ID.
    2014-11-06 8:43:32.222 PM QuickLookSatellite[6355]: CGSConnectionByID: 0 is not a valid connection ID.
    2014-11-06 8:44:02.807 PM bird[6011]: zone creation error: <CKError 0x7fac55935300: "Partial Failure" (2/1011); "Failed to modify some record zones"; partial errors: {
    69NH26W767.com.newtypekk.thefractalx:__defaultOwner__ = <CKError 0x7fac53540970: "Server Record Changed" (14/2037); "Error saving record zone <CKRecordZoneID: 0x7f99f2b3b0c0; 69NH26W767.com.newtypekk.thefractalx:__defaultOwner__> to server: Protection data didn't match">
    }>
    2014-11-06 8:44:04.825 PM cloudd[6038]: Received error 53 from the server: <CKDPResponseOperationResultError: 0x7f99f2676860> {
        clientError =     {
            type = zoneProtectionInfoTagMismatch;
        errorDescription = "Zone PCS oplock failed";
        errorKey = ck1lb0idb;
    2014-11-06 8:44:06.000 PM kernel[0]: bird[6011] Unable to quarantine: 93
    2014-11-06 8:44:09.000 PM kernel[0]: bird[6011] Unable to quarantine: 93
    2014-11-06 8:44:31.629 PM identityservicesd[6012]: [Warning] IMSetKeychainData: -67808 -- Could not store data for service: com.apple.facetime   account: registrationV1   accessGroup: nil
    2014-11-06 8:44:43.091 PM accountsd[6043]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account j****@*******.com (F92AA4AC-1EA2-4619-AD70-995625C713F6).
    2014-11-06 8:44:43.091 PM accountsd[6043]: AIDA Notification plugin running
    2014-11-06 8:44:43.156 PM icbaccountsd[6379]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fda78501e50 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    2014-11-06 8:44:43.273 PM sandboxd[164]: ([6379]) icbaccountsd(6379) deny mach-lookup com.apple.CrashReporterSupportHelper
    2014-11-06 8:44:43.367 PM sandboxd[164]: ([6379]) icbaccountsd(6379) deny file-read-data /Library/Preferences/com.apple.security-common.plist
    2014-11-06 8:45:02.107 PM System Preferences[6366]: view service marshal failed to init due to Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection from pid 0 was invalidated from this process.) UserInfo=0x60800026fd00 {NSDebugDescription=The connection from pid 0 was invalidated from this process.}
    timestamp: 20:45:02.106 Thursday 06 November 2014
    process/thread/queue: System Preferences (6366) / 0x10052a000 / com.apple.NSXPCConnection.user.endpoint
    code: line 2872 of /SourceCache/ViewBridge/ViewBridge-99/NSRemoteView.m in __62-[NSRemoteViewBase advanceToConfigPhase:awaitingWindowRights:]_block_invoke
    #communications_failure
    2014-11-06 8:45:02.108 PM System Preferences[6366]: ### com.apple.preferences.internetaccounts instantiatePrefPaneObject exception:service com.apple.preferences.internetaccounts.remoteservice failed to init an instance of InternetAccountsRemoteViewService on behalf of <NSRemoteView: 0x7f8860d35f20> due to proxy-communications-error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection from pid 0 was invalidated from this process.) UserInfo=0x60800026fd00 {NSDebugDescription=The connection from pid 0 was invalidated from this process.}

  • Xmonad and pidgin conversation windows

    Hi
    Not sure if this is a Pidgin related problem, but I'm trying to get urgencyhook to work with new conversation windows in Pidgin - it doesn't trigger an urgent before I focus the conversation window and send a new message (from another workspace.. text based MSN client).
    So basicly this is what's happening..
    I write "Open new window please.." and a new conversation window is opened on workspace "im" - if I go to the "im" workspace and focus the conversation window, then go back to workspace 3 "code", and type another message.. I receive the urgent notification.
    Anyone had this problem? I would love it to notify when opening a new conversation window. Using the "Message Notification" plugin for Pidgin.

    Incredibly fast.. this post is already on Google hehe.
    Ok, so.. I edited the notify plugin (Message Notification), in src/src/pidgin-2.7.0/pidgin/plugins/ to print a debug message whenever a conersation window was opened, and it does:
    (17:47:30) gtkspell: Failed to setup GtkSpell: enchant error for language: en_US.UTF-8
    (17:47:30) gtkconv: setting active conversation on toolbar 0x983b110
    (17:47:30) gtkconv: setting active conversation on toolbar 0x983b110
    (17:47:30) prefs: /pidgin/conversations/toolbar/wide changed, scheduling save.
    (17:47:31) notify: ***** CONVERSATION CREATED *****
    (17:47:31) prefs: /pidgin/conversations/im/y changed, scheduling save.
    static void
    conv_created(PurpleConversation *conv)
    purple_conversation_set_data(conv, "notify-message-count",
    GINT_TO_POINTER(0));
    purple_debug_misc("notify", "***** CONVERSATION CREATED *****\n");
    /* always attach the signals, notify() will take care of conversation
    * type checking */
    attach_signals(conv);
    Uhm, so.. it should notify, and it's being triggered. The problem must lie somewhere else.

  • Vlc segfaults (no fluidsynth installed)

    I've researched into why vlc is broken as of recently with its latest update. I also have the testing repo enabled if that helps. I try to run vlc but I get
    /tmp/alpm_MmFPEE/.INSTALL: line 1: 7257 Segmentation fault (core dumped) usr/lib/vlc/vlc-cache-gen -f /usr/lib/vlc/plugins
    I also tried to compile vlc-git, but i also get:
    GEN ../modules/plugins.dat
    /bin/sh: line 4: 20892 Segmentation fault (core dumped) ./vlc-cache-gen ../modules
    I also did not have fluidsynth installed when doing this. I'm not sure what plugins are causing this, here's the list of recommended dependencies installed:
    Optional dependencies for vlc
    avahi: for service discovery using bonjour protocol [installed]
    libnotify: for notification plugin [installed]
    ncurses: for ncurses interface support [installed]
    libdvdcss: for decoding encrypted DVDs [pending]
    lirc: for lirc plugin [pending]
    libavc1394: for devices using the 1394ta AV/C [installed]
    libdc1394: for IEEE 1394 plugin [installed]
    kdelibs: KDE Solid hardware integration [pending]
    libva-vdpau-driver: vdpau back-end for nvidia [installed]
    libva-intel-driver: back-end for intel cards
    libbluray: for Blu-Ray support [installed]
    flac: for Free Lossless Audio Codec plugin [installed]
    portaudio: for portaudio support [installed]
    twolame: for TwoLAME mpeg2 encoder plugin [pending]
    projectm: for ProjectM visualisation plugin [pending]
    libcaca: for colored ASCII art video output [installed]
    libgme: for libgme plugin [installed]
    librsvg: for SVG plugin [installed]
    gnome-vfs: for GNOME Virtual File System support [installed]
    libgoom2: for libgoom plugin [pending]
    vcdimager: navigate VCD with libvcdinfo [pending]
    aalib: for ASCII art plugin [installed]
    libmtp: for MTP devices support [installed]
    smbclient: for SMB access plugin [installed]
    libcdio: for audio CD playback support [installed]
    ttf-freefont: for subtitle font [installed]
    ttf-dejavu: for subtitle font [installed]
    opus: for opus support [installed]
    libssh2: for sftp support [installed]
    lua-socket: for http interface

    escitalopram wrote:I had the same problem today (My Dragon Player was also affected). After downgrading my nvidia driver (back to 346.59-1) VLC worked again.
    Thanks, I'll try this when I get home and edit with results. Also I'm using nvidia.

Maybe you are looking for