I have made a sample application in which I am able to imp开发者_如何学编程lement help book via help viewer .
Right now it is storing and displaying content from application bundle, but I want to implement Internet Primary help book content, in which it checks the server to determine whether a newer version of each page is available before displaying the page. If the server isn’t available, or if the page has not been updated, then the local version is used.
I checked this url to implement it: http://developer.apple.com/mac/library/documentation/Carbon/Conceptual/ProvidingUserAssitAppleHelp/authoring_help/authoring_help_book.html#//apple_ref/doc/uid/TP30000903-CH206-CHDGIECE
In it they have specified:
To specify a remote server for your help content, do the following:
- Click “Show Details.”
- Click the checkbox labeled “Use remote URL for missing files and updates.”
- In the text field under this checkbox, enter the server address where your remote help content is available.
Problem is: I cannot get - where to click "Show Details", where to click the checkbox labeled.... is it done within XCode, within help viewer?
Can anyone suggest me exactly how to do it or some useful link to implement it?
Thanks,
Miraaj
You linked to a subsection of a section titled “Using the Help Indexer Utility”. That application is where the Show Details button is.
Read all of the section to which you're referring. The parent section is titled "Using the Help Indexer Utility," so it's reasonable to assume those steps are referring to the Help Indexer.app that comes with Xcode Tools.
精彩评论