Re: Goodbye and Thanks for All The Code

2015-06-15 Thread danchik
) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/danchik%40rebelbase.com This email sent to danc...@rebelbase.com

Re: NSURLProtocol

2015-04-13 Thread danchik
: On 12 Apr 2015, at 04:07, danchik danc...@rebelbase.com wrote: an npapi plugin on a web page, it registers a protocol handler I’d say you’re on the wrong list then. This comes down almost entirely to what has been implemented/allowed for Safari, rather than being a general Cocoa

Re: NSURLProtocol

2015-04-12 Thread danchik
to be asked is, do you INTEND to use http or https? On Apr 11, 2015, at 8:07 PM, danchik danc...@rebelbase.com wrote: an npapi plugin on a web page, it registers a protocol handler On Apr 11, 2015, at 2:26 AM, Mike Abdullah mabdul...@karelia.com wrote: On 11 Apr 2015, at 02:28, Dan S danc

Re: NSURLProtocol

2015-04-11 Thread danchik
an npapi plugin on a web page, it registers a protocol handler On Apr 11, 2015, at 2:26 AM, Mike Abdullah mabdul...@karelia.com wrote: On 11 Apr 2015, at 02:28, Dan S danc...@rebelbase.com wrote: Is behavior of NSURLProtocol changed with Safari 5.1? I have a plugin that registeres a

Re: 10.5 Load Fonts for use in webview

2014-07-31 Thread danchik
is enough? - Original Message - From: danchik danc...@rebelbase.com To: Cocoa-dev@lists.apple.com Sent: Wednesday, July 30, 2014 3:56 PM Subject: 10.5 Load Fonts for use in webview Is there way to register a font included in the app bundle to be used with embedded webview on 10.5? Basically

10.5 Load Fonts for use in webview

2014-07-30 Thread danchik
Is there way to register a font included in the app bundle to be used with embedded webview on 10.5? Basically register it on load of the app so it is available in the browser that is embedded. There are some graphic routines abvailable but they all seem to require 10.6 Not looking for

Re: Turning off screen shot ability

2013-03-07 Thread danchik
admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/danchik%40rebelbase.com This email sent to danc...@rebelbase.com

Re: Turning off screen shot ability

2013-03-06 Thread danchik
. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/danchik%40rebelbase.com This email sent to danc...@rebelbase.com ___ Cocoa-dev mailing list (Cocoa

Re: Turning off screen shot ability

2013-03-06 Thread danchik
poster said dilluted) version of the question, which triggered my tourrettes :) - Original Message - From: Graham Cox graham@bigpond.com To: danchik danc...@rebelbase.com Cc: Brad O'Hearne br...@bighillsoftware.com; List Developer Cocoa cocoa-dev@lists.apple.com Sent: Wednesday

Re: NSData DataWithContentsOfURL within a protocol handler

2012-09-05 Thread danchik
Hello, is there a recomendation of a better list for this question ? - Original Message - From: danchik danc...@rebelbase.com To: cocoa-dev-boun...@lists.apple.com Sent: Thursday, August 02, 2012 3:33 PM Subject: NSData DataWithContentsOfURL within a protocol handler Hello, I

NSData DataWithContentsOfURL within a protocol handler

2012-08-29 Thread danchik
Hello, I was callingNSData *data = [NSData DataWithContentsOfURL:url within the -startLoading of custom protocol handler, which worked fine for 10.5 through 10.7, but in 10.8, for some reason the call timesout with unknown error (256) Seems that in 10.8 any calls I make to pull the content

Re: Sandboxing die.die.die

2012-08-22 Thread danchik
to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/danchik%40rebelbase.com This email sent to danc...@rebelbase.com ___ Cocoa-dev mailing

launch application de-elevated

2012-08-16 Thread danchik
Hello, I have a postinstall script that starts a program to do some finla configurations (the installer was elevated with password during the install), after all is done, the program starts the installed application via: [[NSWorkspace sharedWorkspace] launchApplication:appPath] which works,

Re: launch application de-elevated

2012-08-16 Thread danchik
Hello, I have a postinstall script that starts a program to do some final configurations (the installer was elevated with password during the install), after all is done, the program starts the installed application via: [[NSWorkspace sharedWorkspace] launchApplication:appPath] which works,

Re: launch application de-elevated

2012-08-16 Thread danchik
ahh, bummer... By chance, do you have a link that we can reference here for where Apple sais that? Thank You - Original Message - From: Kyle Sluder k...@ksluder.com To: danchik danc...@rebelbase.com; Cocoa-dev@lists.apple.com Sent: Thursday, August 16, 2012 3:37 PM Subject: Re

CodeSigning with Developer ID Cert

2012-06-18 Thread danchik
Hello, We obtained the Apple Developer ID code signing cert, and signed our pkg with it. When testing with different OSes it produced several errors. On Lion (turning on gatekeeper on), prior to installation the Untrusted Cert (paraphrasing) warning came up. On Snow Leopard -

Re: Determine architecture of a running application

2011-07-22 Thread danchik
32 bit safari browser in a new process. - Original Message - From: David Duncan david.dun...@apple.com To: danchik danc...@rebelbase.com Cc: Cocoa-dev@lists.apple.com Sent: Friday, July 22, 2011 9:23 AM Subject: Re: Determine architecture of a running application On Jul 21, 2011, at 9

Re: Determine architecture of a running application

2011-07-22 Thread danchik
them in the same process as Safari as it used to before the 5.1 :( In which case nothing wont help since the plugin in question expects to operate in the same process as the Safari. - Original Message - From: Ken Thomases k...@codeweavers.com To: danchik danc...@rebelbase.com Cc

Determine architecture of a running application

2011-07-21 Thread danchik
Hello, how can one determine if the currently running app is 32bit or 64 Specifically: I have a 32 bit plugin compiled for 10.5+ and it needs to know if it was loaded by 32bit or 64bit Safari I am aware of the [[NSRunningApplication currentApplication] executableArchitecture], unfortunately

Re: Getting a bezier path for a character

2010-04-29 Thread danchik
Thank You also (now unrelated to the paths) when drawing strings into context using NSAttributedStrings is there a way to specify that the text is to be drawn vertically with the Font attribute or some attribute on NSAttributedString directly? or do I have to explicitly transform the context

Re: Getting a bezier path for a character

2010-04-29 Thread danchik
by 'reverse' i meant : [transform invert]; [transform concat]; since i'd have to first [transform transformXBy:yBy]; [transform rotateByDegrees:]; [transform concat]; [myAttrString drawWithRect:options:] - Original Message - From: Graham Cox graham@bigpond.com To: danchik danc

Re: Getting a bezier path for a character

2010-04-29 Thread danchik
]; [NSGraphicsContext restoreGraphicsState]; - Original Message - From: Graham Cox graham@bigpond.com To: danchik danc...@rebelbase.com Cc: Cocoa-Dev List cocoa-dev@lists.apple.com Sent: Thursday, April 29, 2010 8:48 PM Subject: Re: Getting a bezier path for a character On 30/04

Re: Getting a bezier path for a character

2010-04-29 Thread danchik
did not get restored without inverting and concating the transform (not until adding another save/restore after loading new context) - Original Message - From: Graham Cox graham@bigpond.com To: danchik danc...@rebelbase.com Cc: Cocoa-Dev List cocoa-dev@lists.apple.com Sent

Getting a bezier path for a character

2010-04-27 Thread danchik
Hi, I been trying to figure out how to get the Bezier path for a character in different fonts, but can't quiet figure out why things dont work in some fonts. Some (many) fonts do not rednder the right path for the glyph, a 'W' in in Arial Black for example is fine (looks like W), but in Arial

Re: Localizing of print dialogs

2010-04-24 Thread danchik
- From: Clark S. Cox III clarkc...@gmail.com To: danchik danc...@rebelbase.com Cc: Cocoa-dev@lists.apple.com Sent: Friday, April 23, 2010 11:46 PM Subject: Re: Localizing of print dialogs Even the system resources only use the localized variant if the application itself is localized. If you don't

Localizing of print dialogs

2010-04-23 Thread danchik
Hi, is there something that I need to do to make the dialogs (not the ones included with app) come up localized? For example, calling [printOperation runOperation] brings up the print dialog always in English, even though the user language should be Russian for example BUT doing print from say

NSPrintPanel

2010-03-10 Thread danchik
Hello, Is there a way to access/modify information in the print panel while the dialog is up? Lets say the task is to modify the currently selected paper size based on the available sizes when ever the user changes a printer selection. Is there a way to be notified of events on the