Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 10-29-2010, 12:41 PM   #16
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,469
Karma: 5432724
Join Date: Nov 2009
Device: many
Hi,

I wonder ... if thread 3 was doing the following:

const QString &atrribute_value = Utility::URLDecodePath( XtoQ( attribute.getValue() ) );

at the same time that thread 4 was doing

attribute.setValue( QtoX( Utility::URLEncodePath( new_path ) ) );

and the attribute itself was the same and if setValue released/freed memory to rpelace it with a new piece at the same time that the first thread was trying to read it, you might end up with a segfault.

Again, this is all a big guess on my part. Only Valloric will know for sure if this guess is all wet or not.

If I knew where the attribute.setValue and getValue routines were in the source code and if there was a lock involved at that point (grab a lock before reading the value to prevent another thread from changing it underneath you), I would know more.
KevinH is offline   Reply With Quote
Old 10-29-2010, 12:45 PM   #17
Valloric
Created Sigil, FlightCrew
Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.
 
Valloric's Avatar
 
Posts: 1,982
Karma: 350515
Join Date: Feb 2008
Device: Kobo Clara HD
Thread 4 dies in Xerces.

That Mac OS X report with detailed stack traces is pretty awesome. It has given me a clue as to what's causing this.

But some exploratory questions first. Is this behaviour repeatable? That is, can you make it consistently crash every time for this epub file? From the looks of the stack traces, I doubt anyone else will be able to reproduce this except on your machine.

Also, please don't remove these reports. You removed the first one, and now I can't correlate it with the second one. If you want to provide information that you would like to keep private, there's a system for that already in place: a private issue template on the tracker, where this should have been reported in the first place.
Valloric is offline   Reply With Quote
Advert
Old 10-29-2010, 12:59 PM   #18
Valloric
Created Sigil, FlightCrew
Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.Valloric ought to be getting tired of karma fortunes by now.
 
Valloric's Avatar
 
Posts: 1,982
Karma: 350515
Join Date: Feb 2008
Device: Kobo Clara HD
Quote:
Originally Posted by KevinH View Post
I wonder ... if thread 3 was doing the following:

const QString &atrribute_value = Utility::URLDecodePath( XtoQ( attribute.getValue() ) );

at the same time that thread 4 was doing

attribute.setValue( QtoX( Utility::URLEncodePath( new_path ) ) );
We're talking about the PerformHTMLUpdates::UpdateReferenceInNode function, right? Take a look at PerformHTMLUpdates::UpdateHTMLReferences function just above it. All the "path" nodes are retrieved at once, and then every one is independently scheduled for possible updates by QtConcurrent.

Since XhtmlDoc::GetTagMatchingDescendants should only return unique nodes, no two entrances on UpdateReferenceInNode should use the same node. Meaning that while that function is not thread safe, it is reentrant and that's all we need here.
Valloric is offline   Reply With Quote
Old 10-29-2010, 01:08 PM   #19
erikjacobson
Member
erikjacobson began at the beginning.
 
erikjacobson's Avatar
 
Posts: 12
Karma: 10
Join Date: Sep 2010
Device: none
Hi Kevin.

Thanks for your attention and time. Not sure what to say about the "old mac" code. This is what Indesign CS4 gives me when I publish for electronic editions. It's styled with paragraph and character styles and they're pretty basic and few, 4 paragraph and one character (for italics). I'm not a deep code guy. I can deal with HTML and CSS and run the occasional script. That said maybe I need to just unzip the ePub file that InDesign outputs and noodle around in it with a text editor. It does seem like it must be something to do with my Mac OS if this isn't giving you any trouble and if I can't even see the display text (although i can see the text in code view and, as mentioned before, in the italics in display mode—so in display mode it's just large swaths of white with italics here and there). I could see the text in the display before I upgraded; kind of a randomly weird issue...
erikjacobson is offline   Reply With Quote
Old 10-29-2010, 01:11 PM   #20
erikjacobson
Member
erikjacobson began at the beginning.
 
erikjacobson's Avatar
 
Posts: 12
Karma: 10
Join Date: Sep 2010
Device: none
Hi. Wow, you wrote 2 threads while i was composing one. Should I repeat the crash and post a couple more of these reports? I could open the one we were talking about a month ago and see if it still crashes.
erikjacobson is offline   Reply With Quote
Advert
Old 10-29-2010, 01:41 PM   #21
erikjacobson
Member
erikjacobson began at the beginning.
 
erikjacobson's Avatar
 
Posts: 12
Karma: 10
Join Date: Sep 2010
Device: none
Well now I can't get it to reproduce the event with the file I uploaded to you in the issue report. However, when I close the Sigil application instead of closing gracefully and quietly it gives me an "application quit unexpectedly" statement and posts the report below. I also opened up the ePub file that was crashing on me last month and it no longer crashes when i scroll down the image. But it does again render all no-italicized text in white. I've attached a screen shot in case your curious. This screen capture image is of the file I uploaded to you in the issue report.


Process: Sigil [332]
Path: /Applications/Sigil.app/Contents/MacOS/Sigil
Identifier: com.valloric.Sigil.app
Version: 0.3.0 (0.3.0)
Code Type: X86 (Native)
Parent Process: launchd [98]

Date/Time: 2010-10-29 10:34:04.079 -0700
OS Version: Mac OS X 10.6.4 (10F569)
Report Version: 6

Interval Since Last Report: 151327 sec
Crashes Since Last Report: 13
Per-App Interval Since Last Report: 6580 sec
Per-App Crashes Since Last Report: 9
Anonymous UUID: 0E187728-26FE-465A-B092-38AC52A2753B

Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Thread 0 Crashed: Dispatch queue: com.apple.main-thread
0 com.apple.CoreFoundation 0x97b6bc94 CFRelease + 196
1 QtGui 0x01bb03b9 QDesktopWidget::resizeEvent(QResizeEvent*) + 47545
2 QtGui 0x01e02653 QFontEngine::~QFontEngine() + 563
3 QtGui 0x01bb19d2 QDesktopWidget::resizeEvent(QResizeEvent*) + 53202
4 QtGui 0x01df95e8 QFontInfo::family() const + 3144
5 QtGui 0x01df97db QFontInfo::family() const + 3643
6 QtCore 0x02c8c94d QThreadStorageData::set(void*) + 157
7 QtGui 0x01df7dd0 QFont::operator!=(QFont const&) const + 768
8 QtGui 0x01b7d9f4 qt_mac_execute_apple_script(char const*, AEDesc*) + 500
9 QtGui 0x01bfc1ad QApplication::~QApplication() + 1053
10 com.valloric.Sigil.app 0x0000da3c main + 2604
11 com.valloric.Sigil.app 0x0000cdaa start + 54

Thread 1: Dispatch queue: com.apple.libdispatch-manager
0 libSystem.B.dylib 0x968b2942 kevent + 10
1 libSystem.B.dylib 0x968b305c _dispatch_mgr_invoke + 215
2 libSystem.B.dylib 0x968b2519 _dispatch_queue_invoke + 163
3 libSystem.B.dylib 0x968b22be _dispatch_worker_thread2 + 240
4 libSystem.B.dylib 0x968b1d41 _pthread_wqthread + 390
5 libSystem.B.dylib 0x968b1b86 start_wqthread + 30

Thread 2:
0 libSystem.B.dylib 0x9688c142 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x968b9cbc _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x96902203 pthread_cond_wait + 48
3 QtCore 0x02c8db96 QWaitCondition::wait(QMutex*, unsigned long) + 278
4 QtCore 0x02cf511c QThreadPool::start(QRunnable*, int) + 524
5 QtCore 0x02cf8de6 QThread::setPriority(QThread::Priority) + 502
6 libSystem.B.dylib 0x968b981d _pthread_start + 345
7 libSystem.B.dylib 0x968b96a2 thread_start + 34

Thread 3:
0 libSystem.B.dylib 0x9688c142 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x968b9cbc _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x96902203 pthread_cond_wait + 48
3 QtCore 0x02c8db96 QWaitCondition::wait(QMutex*, unsigned long) + 278
4 QtCore 0x02cf511c QThreadPool::start(QRunnable*, int) + 524
5 QtCore 0x02cf8de6 QThread::setPriority(QThread::Priority) + 502
6 libSystem.B.dylib 0x968b981d _pthread_start + 345
7 libSystem.B.dylib 0x968b96a2 thread_start + 34

Thread 4:
0 libSystem.B.dylib 0x9688c142 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x968b9cbc _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x96902203 pthread_cond_wait + 48
3 QtWebKit 0x01471985 JSValueIsEqual + 1376181
4 QtWebKit 0x01471a21 JSValueIsEqual + 1376337
5 libSystem.B.dylib 0x968b981d _pthread_start + 345
6 libSystem.B.dylib 0x968b96a2 thread_start + 34

Thread 5:
0 libSystem.B.dylib 0x968b19d2 __workq_kernreturn + 10
1 libSystem.B.dylib 0x968b1f68 _pthread_wqthread + 941
2 libSystem.B.dylib 0x968b1b86 start_wqthread + 30

Thread 6:
0 libSystem.B.dylib 0x968b19d2 __workq_kernreturn + 10
1 libSystem.B.dylib 0x968b1f68 _pthread_wqthread + 941
2 libSystem.B.dylib 0x968b1b86 start_wqthread + 30

Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x00000000 ebx: 0x97b6bbdd ecx: 0x00064ed0 edx: 0x00000001
edi: 0x1a937ca0 esi: 0x00000000 ebp: 0xbffff868 esp: 0xbffff850
ss: 0x0000001f efl: 0x00000246 eip: 0x97b6bc94 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
cr2: 0xffe2a050

Binary Images:
0x1000 - 0x4c0fe3 +com.valloric.Sigil.app 0.3.0 (0.3.0) <B91B70AB-ED88-CD6B-92EC-AD9A32E326C5> /Applications/Sigil.app/Contents/MacOS/Sigil
0x713000 - 0x75cff3 +QtSvg 4.7.0 (compatibility 4.7.0) <7C8B3BCB-24C2-F274-26D7-9109455D8E90> /Applications/Sigil.app/Contents/Frameworks/QtSvg.framework/Versions/4/QtSvg
0x76a000 - 0x1948fef +QtWebKit 4.7.0 (compatibility 4.7.0) <C9CCB1E6-8F1F-3440-120D-A15FB8E01C7A> /Applications/Sigil.app/Contents/Frameworks/QtWebKit.framework/Versions/4/QtWebKit
0x1b69000 - 0x24d4fff +QtGui 4.7.0 (compatibility 4.7.0) <D04CC921-DB30-D890-E154-AC019D2FFE19> /Applications/Sigil.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui
0x2619000 - 0x266cfef +QtXml 4.7.0 (compatibility 4.7.0) <790A3430-57E0-6151-91DF-8C1F1500931A> /Applications/Sigil.app/Contents/Frameworks/QtXml.framework/Versions/4/QtXml
0x267d000 - 0x2afdffb +QtXmlPatterns 4.7.0 (compatibility 4.7.0) <85AC357D-1070-5F82-31D5-1A1440EC748D> /Applications/Sigil.app/Contents/Frameworks/QtXmlPatterns.framework/Versions/4/QtXmlPatterns
0x2b5d000 - 0x2c61ffb +QtNetwork 4.7.0 (compatibility 4.7.0) <7B1D8BF5-B1BC-5BEF-2FD9-138B187ED3A1> /Applications/Sigil.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtNetwork
0x2c84000 - 0x2ee3fe7 +QtCore 4.7.0 (compatibility 4.7.0) <66721B55-67FE-8DA6-5DA0-B8B1623573D9> /Applications/Sigil.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore
0x2f2f000 - 0x2f71ff7 +phonon 4.4.0 (compatibility 4.4.0) <8E8E4D10-C9F6-9051-F205-728554E10A38> /Applications/Sigil.app/Contents/Frameworks/phonon.framework/Versions/4/phonon
0x2f86000 - 0x3000feb +QtDBus 4.7.0 (compatibility 4.7.0) <500F3201-6CBB-B669-AEBC-B0E54ADAB0A0> /Applications/Sigil.app/Contents/Frameworks/QtDBus.framework/Versions/4/QtDBus
0x17d63000 - 0x17d69ff3 +libqgif.dylib ??? (???) <ADFC2257-FC44-C645-8F30-BAE8FF931250> /Applications/Sigil.app/Contents/PlugIns/imageformats/libqgif.dylib
0x17d6e000 - 0x17d74fff +libqico.dylib ??? (???) <627D1F56-ABFF-80F0-B652-399094662BD8> /Applications/Sigil.app/Contents/PlugIns/imageformats/libqico.dylib
0x17d79000 - 0x17daeff7 +libqjpeg.dylib ??? (???) <4F064C64-4F3A-C917-3D56-65C3B5BDA3EF> /Applications/Sigil.app/Contents/PlugIns/imageformats/libqjpeg.dylib
0x17db3000 - 0x17dfdfe7 +libqmng.dylib ??? (???) <6C1F2FCC-7221-DCB1-8670-1762BAE5E3EB> /Applications/Sigil.app/Contents/PlugIns/imageformats/libqmng.dylib
0x17e04000 - 0x17e08ffb +libqsvg.dylib ??? (???) <C695E0EC-8CE5-E4EC-108B-EA3EFB03DACE> /Applications/Sigil.app/Contents/PlugIns/imageformats/libqsvg.dylib
0x17e0d000 - 0x17e5cffb +libqtiff.dylib ??? (???) <12BBB757-0C4A-993C-DD70-2907E05A42D3> /Applications/Sigil.app/Contents/PlugIns/imageformats/libqtiff.dylib
0x1816c000 - 0x18176ff7 +libqgenericbearer.dylib ??? (???) <794F8FE7-D76D-D95A-C840-A054B71BB49E> /Applications/Sigil.app/Contents/PlugIns/bearer/libqgenericbearer.dylib
0x1817c000 - 0x181a7ff3 +libqnmbearer.dylib ??? (???) <4A198CBC-EF2B-2FEF-505E-5B5B1FDE046E> /Applications/Sigil.app/Contents/PlugIns/bearer/libqnmbearer.dylib
0x181ae000 - 0x181d0ffb +libqcncodecs.dylib ??? (???) <E83AE51F-9E3D-AD20-3ADD-390C010BEF21> /Applications/Sigil.app/Contents/PlugIns/codecs/libqcncodecs.dylib
0x181d4000 - 0x181fcfeb +libqjpcodecs.dylib ??? (???) <E40C8864-CDC1-BBAE-B244-BCFCA5359AC7> /Applications/Sigil.app/Contents/PlugIns/codecs/libqjpcodecs.dylib
0x18201000 - 0x18213fef +libqkrcodecs.dylib ??? (???) <A0785E13-03D8-E33B-936E-BED3D0F02867> /Applications/Sigil.app/Contents/PlugIns/codecs/libqkrcodecs.dylib
0x18217000 - 0x1823cfe7 +libqtwcodecs.dylib ??? (???) <B95B6608-33FF-7BE7-B74A-2521E786C88B> /Applications/Sigil.app/Contents/PlugIns/codecs/libqtwcodecs.dylib
0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
0x90003000 - 0x90011fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
0x90012000 - 0x90027fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x90079000 - 0x900caff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x900cb000 - 0x900ceffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x902be000 - 0x90478fe3 com.apple.ImageIO.framework 3.0.3 (3.0.3) <A93A514B-C1BF-21D0-FB03-CB775DE4FFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x90479000 - 0x9047aff7 com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x90485000 - 0x90591ff7 libGLProgrammability.dylib ??? (???) <1B315838-F477-5416-7504-67EC3433AD4A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x9062a000 - 0x9066cff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x9066d000 - 0x9067aff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x9067b000 - 0x906b8ff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <398BB007-41FD-1A30-26D8-CB86ED5E467E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x906b9000 - 0x906dafe7 com.apple.opencl 12.1 (12.1) <DA2AC3FA-ED11-2D10-21E9-7BDF4778B228> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x90713000 - 0x9071fff7 libkxld.dylib ??? (???) <322A4B52-8305-3081-6B74-813C3A87A56D> /usr/lib/system/libkxld.dylib
0x90720000 - 0x90764fe7 com.apple.Metadata 10.6.3 (507.10) <630494FA-3BB3-EDD3-E10B-8DAAF4831E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x90765000 - 0x907f7fe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x907f8000 - 0x907f8ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x90801000 - 0x90807fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x90808000 - 0x90936fe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x90937000 - 0x90a38fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
0x90a39000 - 0x90a39ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
0x90a3a000 - 0x90a5afe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
0x90b36000 - 0x90b4affb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x90b4b000 - 0x90b7cff3 libTrueTypeScaler.dylib ??? (???) <7601D717-236D-8F4E-91F5-E69BB2920478> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x90b7d000 - 0x90b88ff7 libGL.dylib ??? (???) <B87E0676-F5EF-8DA3-6DEE-13C43B3832A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x90bd0000 - 0x90bf4ff7 libJPEG.dylib ??? (???) <5CE96981-6B2A-D15B-4A17-E7BD329095B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x90bf5000 - 0x90bffff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x90c00000 - 0x90ca9ff7 com.apple.CFNetwork 454.9.8 (454.9.8) <DB2A5C33-E833-1B3A-4DE0-5FF172B2048B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x90cdd000 - 0x90e5ffe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2314BD12-0821-75BB-F3BC-98D324CFD30A> /usr/lib/libicucore.A.dylib
0x90e60000 - 0x91295ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x91296000 - 0x912f1ff7 com.apple.framework.IOKit 2.0 (???) <A013B850-6ECB-594A-CBD6-DB156B11871B> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x912f2000 - 0x9139affb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x914d3000 - 0x914daff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x92488000 - 0x9248dff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x925ef000 - 0x92638fe7 libTIFF.dylib ??? (???) <9CFF48CC-4852-4D06-17AC-3C947C824159> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x92639000 - 0x929a1ff7 com.apple.QuartzCore 1.6.2 (227.22) <4288F0D2-0C87-F054-C372-8764B44DE024> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x929cd000 - 0x929ebff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x929ec000 - 0x92e02ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x933ec000 - 0x93412fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x93837000 - 0x93838ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x93839000 - 0x93903fef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x93904000 - 0x939d5fe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <8FDB4C40-D453-DA53-2A66-9A53998AB23C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
0x939d6000 - 0x93a00ff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x93a8b000 - 0x93a94ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x93b55000 - 0x93b66ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x93d15000 - 0x93d31fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x93d32000 - 0x93d65ff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x93de9000 - 0x93e84ff7 com.apple.ApplicationServices.ATS 275.11.1 (???) <5FF65EC7-F512-530A-7771-3DE240EE6E43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x941c7000 - 0x9420aff7 libGLU.dylib ??? (???) <2093A1FB-67BD-39E0-CDE5-A97A77BDDBCE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x9446a000 - 0x944a5feb libFontRegistry.dylib ??? (???) <A102F61F-25D5-001A-20C3-56304C585072> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x944b2000 - 0x944c2ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
0x944c3000 - 0x944c3ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x944d8000 - 0x94570fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x945b8000 - 0x9466effb libFontParser.dylib ??? (???) <067DC1A2-764B-41EA-B07E-4205472749B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x9466f000 - 0x9498ffeb com.apple.CoreServices.CarbonCore 861.13 (861.13) <52803668-3669-36BD-57DD-078FBA835081> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x949a6000 - 0x94a9aff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <9EC28185-D26F-533F-90C4-FBAA13A15947> /usr/lib/libiconv.2.dylib
0x94b0f000 - 0x94b79fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
0x94bb3000 - 0x94bc1ff7 com.apple.opengl 1.6.9 (1.6.9) <4F06C166-00CF-5ACF-77E3-5A960A5E8AD3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x94bc2000 - 0x94beaff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
0x94beb000 - 0x94cddff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D2C86308-F998-C83D-F49B-CD484D4EFE6A> /usr/lib/libcrypto.0.9.8.dylib
0x94e21000 - 0x94e21ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x94e23000 - 0x94e35ff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <F91A4E32-01AA-49DB-2205-3DBE1FEFFC43> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x94e36000 - 0x95011ff3 libType1Scaler.dylib ??? (???) <6FBA8250-3271-6ED4-052D-E27C2136E38F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
0x95012000 - 0x95276fef com.apple.security 6.1.1 (37594) <3F68A006-6B30-85D5-1A75-8D748F72A6D5> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x95277000 - 0x95324fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
0x95325000 - 0x95327ff7 libRadiance.dylib ??? (???) <AB06F616-E3EA-5966-029A-8AA44BBE5B28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x95328000 - 0x95c08ff7 com.apple.AppKit 6.6.6 (1038.29) <6F28C335-6DC2-AE0E-B79A-F256DBD0BB45> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x95c09000 - 0x95c0bff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x95c0c000 - 0x95ce7fe7 com.apple.DesktopServices 1.5.7 (1.5.7) <A69072AD-C47E-A00D-4A69-6E46A7FB2119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x95ce8000 - 0x95d35feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <87BA2C52-8451-F0E5-DCDE-E0B9E4D40405> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
0x95d36000 - 0x95e62fff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x9606a000 - 0x96074ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x960a8000 - 0x960abfe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
0x960ac000 - 0x963d0fef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x9688b000 - 0x96a31feb libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
0x96a32000 - 0x96a35ff7 libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <3B49AED9-0DBA-9D21-F9AC-8784363AD762> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x96be6000 - 0x96c17ff7 libGLImage.dylib ??? (???) <9340012D-595A-6243-9C97-7D30D76D9D9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x96c18000 - 0x96c93fe7 com.apple.audio.CoreAudio 3.2.2 (3.2.2) <51D0E2DC-B15F-AF6C-70D8-026DDAD4E2A5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x976ef000 - 0x97771ffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x97772000 - 0x97775ff7 libCoreVMClient.dylib ??? (???) <CA0BA8DC-0159-A808-A300-750358A6970C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x977a0000 - 0x9787dff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x978cc000 - 0x978ccff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x978d2000 - 0x97908fff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
0x97909000 - 0x9790dff7 libGIF.dylib ??? (???) <3ECD4D2C-40FE-E9A0-A2D2-E36D1C00D3A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x9790e000 - 0x9794fff7 libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <8BAE1FC1-A478-F151-17C7-2D5DE470AC4F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x97950000 - 0x97a00ff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x97a01000 - 0x97a44ff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x97b5f000 - 0x97cd9fe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x97cda000 - 0x984c9557 com.apple.CoreGraphics 1.545.0 (???) <DCED8E1A-7504-C31A-B6EF-98BFF1A61060> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x9850a000 - 0x98550ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
0x98586000 - 0x9858aff7 IOSurface ??? (???) <66E11D8E-CF4B-EFD0-37F9-20177C647021> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x98730000 - 0x98774ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x987d0000 - 0x98831fe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x98a83000 - 0x98cf3ffb com.apple.Foundation 6.6.3 (751.29) <E77D3906-99F4-FEF4-FBB0-86FB3C94073E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x98cf4000 - 0x98cffff7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <4FA0CE4A-BDE5-0E3D-37F0-03B41F0C2637> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x98e3c000 - 0x98e50fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
0x98e87000 - 0x98e91fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x98ea0000 - 0x98f04ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x99131000 - 0x991b1feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x991b2000 - 0x991d4fef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x991f0000 - 0x9928dfe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x993a5000 - 0x993ddff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <76C02F5C-98FD-BD64-B5FB-C698FB76EA25> /usr/lib/libcups.2.dylib
0x993de000 - 0x993deff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x993df000 - 0x993e3ff7 libGFXShared.dylib ??? (???) <2D32BDBF-C941-93FD-E233-F03D28DB9E94> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x993ea000 - 0x99498ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x9957b000 - 0x99634fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
0x99670000 - 0x996dfff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x996e0000 - 0x996e0ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x99809000 - 0x99859ff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x998c4000 - 0x998dfff7 libPng.dylib ??? (???) <36A3D75E-5178-4358-7F02-444E276D61AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x998e0000 - 0x998f8ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib

Model: iMac4,1, BootROM IM41.0055.B08, 2 processors, Intel Core Duo, 2 GHz, 2 GB, SMC 1.1f5
Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 256 MB
Memory Module: global_name
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x89), Broadcom BCM43xx 1.0 (5.10.91.27)
Bluetooth: Version 2.3.3f8, 2 service, 19 devices, 1 incoming serial ports
Network Service: Built-in Ethernet, Ethernet, en0
Serial ATA Device: Hitachi HDS725050KLA360, 465.76 GB
Parallel ATA Device: PIONEER DVD-RW DVR-K05
USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd300000
USB Device: Optical USB Mouse, 0x046d (Logitech Inc.), 0xc016, 0xfd330000
USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfd320000
USB Device: My Book, 0x1058 (Western Digital Technologies, Inc.), 0x1100, 0xfd100000
USB Device: USB Hub, 0x05e3 (Genesys Logic, Inc.), 0x0604, 0x5d100000
USB Device: iP3600 series, 0x04a9 (Canon Inc.), 0x10ca, 0x5d160000
USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x7d100000
USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x7d200000
FireWire Device: External HDD Button & Lights, WD, Up to 400 Mb/sec
Attached Thumbnails
Click image for larger version

Name:	sigil-screen-capture-01.jpg
Views:	223
Size:	80.6 KB
ID:	60343  
erikjacobson is offline   Reply With Quote
Old 10-29-2010, 02:17 PM   #22
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,469
Karma: 5432724
Join Date: Nov 2009
Device: many
Hi Valloric,

So I tried opening his test epub and then exiting Sigil and after a few attempts was able to see missing graphics at the start actually replaced with the "alt string once" and then text mess ups followed by good loads until it segfaulted.

The crashed thread happened in a similar the place:


Thread 4 Crashed:
0 com.valloric.Sigil.app 0x00000001001660d1 xercesc_3_1::BaseRefVectorOf<xercesc_3_1:OMNode> ::addElement(xercesc_3_1:OMNode*) + 17
1 com.valloric.Sigil.app 0x0000000100157679 xercesc_3_1:OMAttrImpl::setValue(unsigned short const*) + 137
2 com.valloric.Sigil.app 0x000000010001223c PerformHTMLUpdates::UpdateReferenceInNode(xercesc_ 3_1:OMElement*) + 2636
3 com.valloric.Sigil.app 0x00000001000131ee QtConcurrent::RunFunctionTask<void>::run() + 30
4 QtCore 0x0000000103045425 QThreadPool::start(QRunnable*, int) + 341
5 QtCore 0x00000001030494cf QThread::setPriority(QThread::Priority) + 495
6 libSystem.B.dylib 0x00007fff8024e456 _pthread_start + 331
7 libSystem.B.dylib 0x00007fff8024e309 thread_start + 13

and it ***MAY*** be related to the processing of this line - as it was always the first image that seemed to get messed up or was missing or replaced by alt once it opened.

<img src="images/chapter-01_fmt.jpeg" alt="chapter-01.tif" />

If you want me to try to generate more backtraces or post others to the issue just let me know.

Take care,

KevinH
KevinH is offline   Reply With Quote
Old 10-29-2010, 02:45 PM   #23
erikjacobson
Member
erikjacobson began at the beginning.
 
erikjacobson's Avatar
 
Posts: 12
Karma: 10
Join Date: Sep 2010
Device: none
Enclosed is the style sheet for the file. I took out all references to a specific font and inserted generic "serif" which made the regular text appear in black but made the italics disappear into the white zone (see attached jpg screen capture). I've tried inserting a color attribute into the italic span class, both as "color: rgb(0,0,0);" and also "black" with no change, so I removed them to their original, which did not state any color for the italic.

Interestingly enough I'm not having crash issues anymore. Could there be a conflict with another program I'm running? Although it looks like I'm running the same programs I always do: Photoshop, Bridge & Indesign.


@font-face {
font-family: serif;
font-style: normal;
font-weight: normal;
}

div.generated-style {
}
div.generated-style-2 {
}
p.first-paragraph {
font-family: serif;
line-height: 1.27em;
font-size: 0.92em;
margin-bottom: 0.00em;
margin-top: 9.16em;
text-indent: 0.00em;
margin-right: 0.00em;
margin-left: 0.00em;
text-align: justify;
font-weight: normal;
font-style: normal;
color: rgb(0,0,0);
}
p.paragraph-text {
font-family: serif;
line-height: 1.27em;
font-size: 0.92em;
margin-bottom: 0.00em;
margin-top: 0.00em;
text-indent: 1.36em;
margin-right: 0.00em;
margin-left: 0.00em;
text-align: justify;
font-weight: normal;
font-style: normal;
color: rgb(0,0,0);
}
span.generated-style {
}
span.italic {
font-weight: normal;
font-style: italic;
}
Attached Thumbnails
Click image for larger version

Name:	sigil-screen-capture-02.jpg
Views:	212
Size:	149.6 KB
ID:	60346  
erikjacobson is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
adding recipes in mac osx snow leopard borjoz Calibre 2 07-30-2012 12:27 AM
Calibre 0.7.2 Mac Snow Leopard problem NAHMME Calibre 8 06-13-2010 01:29 PM
Calibre 0.7.2 Mac Snow Leopard problem NAHMME Introduce Yourself 5 06-12-2010 08:57 PM
Snow Leopard + Calibre 0.6 = CRASH! :( sea_los Calibre 217 10-31-2009 04:13 AM


All times are GMT -4. The time now is 10:14 PM.


MobileRead.com is a privately owned, operated and funded community.