Difference between revisions of "Jeff8356:Common wikitext"
(→Citations: Added more <ref> samples in citations) |
|||
(14 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{personal}} | {{personal}} | ||
− | This page | + | This page is for common wikitext used on Apnea Board and sort of a pseudo sandbox to test out new stuff I find. Feel free to use the talk function or copy any of the source. This page was created as more of a semi-permanent home for common code since the official Sandbox page gets reset occasionally. |
− | Most of the sample code here is taken from the [https://en.wikipedia.org/wiki/Help:Wikitext Wikitext help pages] from Wikipedia. Although they use a lot of templates to get the job done, there are usually alternative ways of achieving the same results without templates. All the code used here does not require any special templates unless noted. | + | Most of the sample code here is taken from the [https://en.wikipedia.org/wiki/Help:Wikitext Wikitext help pages] from Wikipedia. Although they use a lot of templates to get the job done, there are usually alternative ways of achieving the same results without templates. All the code used here does not require any special templates unless noted. Click the "Edit" or "View Source" links above to see the actual code used. |
[https://meta.wikimedia.org/wiki/Help:Wikitext Mediawiki help pages] are another good source for wikitext. | [https://meta.wikimedia.org/wiki/Help:Wikitext Mediawiki help pages] are another good source for wikitext. | ||
Line 76: | Line 76: | ||
=== Citations === | === Citations === | ||
− | We currently do not have a citation template but simple citations can still be done. | + | We currently do not have a citation template but simple citations can still be done using <ref></ref>. |
Searching Apnea Board <ref>Searching Apnea Board - http://www.apneaboard.com/forums/search.php</ref> | Searching Apnea Board <ref>Searching Apnea Board - http://www.apneaboard.com/forums/search.php</ref> | ||
Help using Apnea Board <ref>Getting Help - http://www.apneaboard.com/forums/misc.php?action=help</ref> | Help using Apnea Board <ref>Getting Help - http://www.apneaboard.com/forums/misc.php?action=help</ref> | ||
+ | |||
+ | Apple has added a new security feature to macOS Ventura <ref>[https://developer.apple.com/documentation/macos-release-notes/macos-13-release-notes macOS Ventura release notes] Apple Developer Docs, Retrieved 25 Nov 2022</ref><ref>[https://appleinsider.com/inside/macos-ventura/tips/how-to-manage-thunderbolt-usb-security-in-macos-ventura Thunderbolt and USB security in macOS Ventura] Apple Insider, Retrieved 26 Dec 2022 </ref>. This will prevent your Mac from communicating with USB and Thunderbolt devices and will prevent you from importing your SD card data. | ||
These will appear in the References section at the end of the page using <nowiki><references /></nowiki> under the heading. | These will appear in the References section at the end of the page using <nowiki><references /></nowiki> under the heading. | ||
Line 86: | Line 88: | ||
=== Notes === | === Notes === | ||
− | This part of the text requires clarification | + | This part of the text requires clarification.<ref group="note">Expanded note 1</ref> And this needs even more clarification.<ref group="note">Another note</ref> |
These will appear in the notes section at the end of the page using <nowiki><references group="note" /></nowiki> under the heading. | These will appear in the notes section at the end of the page using <nowiki><references group="note" /></nowiki> under the heading. | ||
Line 92: | Line 94: | ||
=== Using both together === | === Using both together === | ||
An example of using citations and notes together inline:<br /> | An example of using citations and notes together inline:<br /> | ||
− | You can set the time zone in your cpap machine. <ref>Time Zone Map - https://www.timeanddate.com/time/map/</ref> Some machines may have special requirements. <ref group=note>S11 series machines will re-format the SD card</ref> | + | You can set the time zone in your cpap machine. <ref>Time Zone Map - https://www.timeanddate.com/time/map/</ref> Some machines may have special requirements. <ref group="note">S11 series machines will re-format the SD card</ref> |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Math symbols == | == Math symbols == | ||
− | π·r<sup>2</sup>·h E=mc<sup>2</sup> | + | π·r<sup>2</sup>·h | E=mc<sup>2</sup> | H<sub>2</sub>O | CO<sub>2</sub> = <code><nowiki>&pi;&middot;r<sup>2</sup>&middot;h E=mc<sup>2</sup> H<sub>2</sub>O CO<sub>2</sub></nowiki></code> |
To convert Hours:minutes:seconds to decimal. Example: 8:23:17 | To convert Hours:minutes:seconds to decimal. Example: 8:23:17 | ||
Line 113: | Line 103: | ||
8 × 1 + 23 ÷ 60 + 17 ÷ 3600 | 8 × 1 + 23 ÷ 60 + 17 ÷ 3600 | ||
8 + 0.3833 + 0.0047 = 8.388 hours | 8 + 0.3833 + 0.0047 = 8.388 hours | ||
+ | |||
+ | More on math symbols and special characters can be found [https://meta.wikimedia.org/wiki/Help:Advanced_editing#Special_characters HERE] and [https://meta.wikimedia.org/wiki/Help:Displaying_a_formula HERE] | ||
== Tables == | == Tables == | ||
Line 149: | Line 141: | ||
# Item 3 | # Item 3 | ||
+ | == Invisible text (comments) == | ||
+ | You can leave comments in the code that will not be visible when viewing the page: | ||
+ | <nowiki><!-- This text will normally only appear in Edit or View Source mode. It's typically used to leave notes for other wiki editors. --></nowiki> | ||
+ | <!-- This text is hidden from view --> | ||
+ | |||
+ | == Basic text formatting == | ||
+ | === Italics === | ||
+ | ''Italics'' = <code><nowiki>''Italics''</nowiki></code> | ||
+ | === Bold === | ||
+ | '''Bold''' = <code><nowiki>'''Bold'''</nowiki></code> | ||
+ | === Italics and Bold === | ||
+ | '''''Italics and bold''''' = <code><nowiki>'''''Italics and bold'''''</nowiki></code> | ||
+ | === Strikethrough === | ||
+ | <s>Strikethrough text</s> = <code><nowiki><s>Strikethrough text</s></nowiki></code> | ||
+ | === Underline === | ||
+ | <u>Underlined text</u> = <code><nowiki><u>Underlined text</u></nowiki></code> | ||
+ | === Highlighting and coloring text === | ||
+ | <span style="background:yellow"> Some highlighted text </span> and some plain text. = <code><nowiki><span style="background:yellow"> Some highlighted text </span> and some plain text.</nowiki></code> | ||
+ | |||
+ | <span style="color:#FF0000"> This text will be red </span> = <code><nowiki><span style="color:#FF0000"> This text will be red </span></nowiki></code> | ||
+ | |||
+ | More info on highlighting and coloring can be found here: [https://meta.wikimedia.org/wiki/Wiki_color_formatting_help Wiki color formatting help] | ||
+ | |||
+ | === Displaying code === | ||
+ | You can highlight a snippet of code like <code>/Users/YourUsernameHere/Documents/</code> = <code><nowiki><code>/Users/YourUsernameHere/Documents/</code></nowiki></code> | ||
+ | |||
+ | == Limiting text formatting == | ||
+ | === Leading space === | ||
+ | |||
+ | Sample text in a text block <nowiki>(Similar to <nowiki>, <pre>, or <code>)</nowiki> but still interprets wiki code, and preserves extra spaces. | ||
+ | |||
+ | Testing multiple lines | ||
+ | Line 2 | ||
+ | Line 3 | ||
+ | |||
+ | Just indent the line with a space(s) and the text is placed in a block like above. No tags required. Preserves formatting and extra spaces. | ||
+ | |||
+ | === <pre> === | ||
+ | <nowiki><pre></pre></nowiki> Does not interpret wikicode, and preserves extra spaces. Displays special characters. <pre> Some sample text using <pre> with [[wikimarkup]] tags and extra spaces. Also displays special characters using &</pre> | ||
+ | |||
+ | === <nowiki> === | ||
+ | <nowiki><nowiki></nowiki></nowiki> Does not interpret wikicode, but strips extra spaces and new lines. Also displays special characters. Does not use a text block like <pre> or "leading space".<br /> | ||
+ | |||
+ | <nowiki>Some sample text with [[wikimarkup]], but strips extra spaces. Displays special characters using &</nowiki> | ||
+ | |||
+ | == Inserting a spreadsheet == | ||
+ | Inserting an Excel or LibreOffice spreadsheet is made much easier by using two available online converters. [https://excel2wiki.toolforge.org/index.php excel2wiki] and [https://magnustools.toolforge.org/tab2wiki.php tab2wiki]. You just copy the data directly from the spreadsheet and paste it into the window. There is no need to convert it to csv or any other format first. The sites will convert it directly into a Wiki table, then just copy the wikicode into the wiki editor window. NOTE: Only copy the actual data cells you want in the table. Copying entire columns/rows will create excessive empty cells and make the table quite large. | ||
+ | |||
+ | Both sites create a compact table which is easier for editing in the wiki editor. A compact table has all the data for one row contained on one line seperated by double pipes <code>||</code><br /> | ||
+ | If the data in the table needs to be formatted in a certain way you can do it in one of two ways: | ||
+ | # Edit each cell manually using the wiki editor | ||
+ | # Use an advanced text editor like BBEdit or Notepad++. Both have find/replace that can use regex (grep expressions) that can get the job done very quickly. From the website, copy the generated wiki table code into your text editor then use the find/replace tool. After the table is formatted to your liking copy/paste it into the wiki editor window. | ||
+ | |||
+ | A sample regex Find pattern for the small spreadsheet (using BBEdit): <code>^.*?\|\h*\b(.*?)\h*\|\|\h*(.*?)\h*\|\|\h*(.*?)\h*$</code> | ||
+ | |||
+ | And the corresponding replace pattern (using BBEdit): <code>\1 ||style=text-align:right| \2 ||style=text-align:right| \3</code> | ||
+ | |||
+ | The above would align all the cells in the second and third columns to the right (minus the header row).<br /> | ||
+ | <br /> | ||
+ | |||
+ | The following examples were done using LibreOffice Calc and excel2wiki: | ||
+ | |||
+ | === Small spreadsheet === | ||
+ | Simple spreadsheet | ||
+ | |||
+ | {| class="wikitable" | ||
+ | |+ Sample spreadsheet from LibreOffice Calc | ||
+ | ! FILE !! SIZE (bytes) !! Cumulative Size | ||
+ | |- | ||
+ | | STR.edf ||style=text-align:right| 127,516 ||style=text-align:right| 127516 | ||
+ | |- | ||
+ | | DATALOG/20220420/ || || | ||
+ | |- | ||
+ | | DATALOG/20220420/20220420_223131_CSL.crc ||style=text-align:right| 8 ||style=text-align:right| 127524 | ||
+ | |- | ||
+ | | DATALOG/20220420/20220420_223131_CSL.edf || 800 || 128324 | ||
+ | |- | ||
+ | | DATALOG/20220420/20220420_223131_EVE.crc ||style=text-align:center| 8 ||style=text-align:center| 128332 | ||
+ | |- | ||
+ | | DATALOG/20220420/20220420_223131_EVE.edf || 1,528 || 129860 | ||
+ | |- | ||
+ | | DATALOG/20220420/20220420_223136_BRP.crc || 8 || 129868 | ||
+ | |- | ||
+ | | DATALOG/20220420/20220420_223136_BRP.edf || 4,718,596 || 4848464 | ||
+ | |- | ||
+ | | DATALOG/20220420/20220420_223136_PLD.crc || 8 || 4848472 | ||
+ | |- | ||
+ | | DATALOG/20220420/20220420_223136_PLD.edf || 428,828 || 5277300 | ||
+ | |- | ||
+ | | DATALOG/20220420/20220420_223136_SAD.crc || 8 || 5277308 | ||
+ | |- | ||
+ | | DATALOG/20220420/20220420_223136_SAD.edf || 191,236 || 5468544 | ||
+ | |} | ||
+ | |||
+ | View the source and you can see that some of the cells have different alignment for the second and third columns (just as examples). | ||
+ | |||
+ | === Large spreadsheet === | ||
+ | Sample large spreadsheet that is collapsible, and is pre-collapsed to save space. | ||
+ | |||
+ | {| class="wikitable mw-collapsible mw-collapsed" | ||
+ | |+ style=white-space:nowrap | Sample Ax10 series STR.edf spreadsheet | ||
+ | ! AS10-CPAP !! AS10-AutoSet !! AS10-AutoSet !! AS10-AutoSet !! AC10-ASV !! AC10-S !! AC10-Vauto !! AC10-Vauto !! AC10-Pacewave !! AC10-Pacewave !! AS10-Autoset | ||
+ | |- | ||
+ | | 37015 || 37028 || 37031 || 37032 || 37043 || 37047 || 37051 || 37052 || 37060 || 37061 || 37102 | ||
+ | |- | ||
+ | | Date || Date || Date || Date || Date || Date || Date || Date || Date || Date || Date | ||
+ | |- | ||
+ | | MaskOn || MaskOn || MaskOn || MaskOn || MaskOn || MaskOn || MaskOn || MaskOn || MaskOn || MaskOn || MaskOn | ||
+ | |- | ||
+ | | MaskOff || MaskOff || MaskOff || MaskOff || MaskOff || MaskOff || MaskOff || MaskOff || MaskOff || MaskOff || MaskOff | ||
+ | |- | ||
+ | | MaskEvents || MaskEvents || MaskEvents || MaskEvents || MaskEvents || MaskEvents || MaskEvents || MaskEvents || MaskEvents || MaskEvents || MaskEvents | ||
+ | |- | ||
+ | | Duration || Duration || Duration || Duration || Duration || Duration || Duration || Duration || Duration || Duration || Duration | ||
+ | |- | ||
+ | | OnDuration || OnDuration || OnDuration || OnDuration || OnDuration || OnDuration || OnDuration || OnDuration || OnDuration || OnDuration || OnDuration | ||
+ | |- | ||
+ | | PatientHours || PatientHours || PatientHours || PatientHours || PatientHours || PatientHours || PatientHours || PatientHours || PatientHours || PatientHours || PatientHours | ||
+ | |- | ||
+ | | Mode || Mode || Mode || Mode || Mode || Mode || Mode || Mode || Mode || Mode || Mode | ||
+ | |- | ||
+ | | S.RampEnable || S.RampEnable || S.RampEnable || S.RampEnable || S.RampEnable || S.RampEnable || S.RampEnable || S.RampEnable || S.RampEnable || S.RampEnable || S.RampEnable | ||
+ | |- | ||
+ | | S.RampTime || S.RampTime || S.RampTime || S.RampTime || S.RampTime || S.RampTime || S.RampTime || S.RampTime || S.RampTime || S.RampTime || S.RampTime | ||
+ | |- | ||
+ | | S.C.StartPress || S.C.StartPress || S.C.StartPress || S.C.StartPress || S.C.StartPress || S.C.StartPress || S.C.StartPress || S.C.StartPress || S.C.StartPress || S.C.StartPress || S.C.StartPress | ||
+ | |- | ||
+ | | S.C.Press || S.C.Press || S.C.Press || S.C.Press || S.C.Press || S.C.Press || S.C.Press || S.C.Press || S.C.Press || S.C.Press || S.C.Press | ||
+ | |- | ||
+ | | S.EPR.ClinEnable || S.EPR.ClinEnable || S.EPR.ClinEnable || S.EPR.ClinEnable || S.AV.StartPress || S.BL.StartPress || S.EPR.ClinEnable || S.EPR.ClinEnable || S.AV.StartPress || S.AV.StartPress || S.EPR.ClinEnable | ||
+ | |- | ||
+ | | S.EPR.EPREnable || S.EPR.EPREnable || S.EPR.EPREnable || S.EPR.EPREnable || S.AV.EPAP || S.BL.IPAP || S.EPR.EPREnable || S.EPR.EPREnable || S.AV.EPAP || S.AV.EPAP || S.EPR.EPREnable | ||
+ | |- | ||
+ | | S.EPR.Level || S.EPR.Level || S.EPR.Level || S.EPR.Level || S.AV.MaxPS || S.BL.EPAP || S.EPR.Level || S.EPR.Level || S.AV.MaxPS || S.AV.MaxPS || S.EPR.Level | ||
+ | |- | ||
+ | | S.EPR.EPRType || S.EPR.EPRType || S.EPR.EPRType || S.EPR.EPRType || S.AV.MinPS || S.BL.BackupRate || S.EPR.EPRType || S.EPR.EPRType || S.AV.MinPS || S.AV.MinPS || S.EPR.EPRType | ||
+ | |- | ||
+ | | S.SmartStart || S.AS.StartPress || S.AS.Comfort || S.AS.Comfort || S.AA.StartPress || S.RiseEnable || S.BL.StartPress || S.BL.StartPress || S.AA.StartPress || S.AA.StartPress || S.AS.Comfort | ||
+ | |- | ||
+ | | S.PtAccess || S.AS.MaxPress || S.AS.StartPress || S.AS.StartPress || S.AA.MaxEPAP || S.RiseTime || S.BL.IPAP || S.BL.IPAP || S.AA.MaxEPAP || S.AA.MaxEPAP || S.AS.StartPress | ||
+ | |- | ||
+ | | S.ABFilter || S.AS.MinPress || S.AS.MaxPress || S.AS.MaxPress || S.AA.MinEPAP || S.Cycle || S.BL.EPAP || S.BL.EPAP || S.AA.MinEPAP || S.AA.MinEPAP || S.AS.MaxPress | ||
+ | |- | ||
+ | | S.Mask || S.SmartStart || S.AS.MinPress || S.AS.MinPress || S.AA.MaxPS || S.Trigger || S.EasyBreathe || S.EasyBreathe || S.AA.MaxPS || S.AA.MaxPS || S.AS.MinPress | ||
+ | |- | ||
+ | | S.Tube || S.PtAccess || S.SmartStart || S.SmartStart || S.AA.MinPS || S.TiMax || S.VA.StartPress || S.BL.BackupRate || S.AA.MinPS || S.AA.MinPS || S.SmartStart | ||
+ | |- | ||
+ | | S.ClimateControl || S.ABFilter || S.PtAccess || S.PtAccess || S.SmartStart || S.TiMin || S.VA.MaxIPAP || S.VA.StartPress || S.SmartStart || S.SmartStart || S.PtAccess | ||
+ | |- | ||
+ | | S.HumEnable || S.Mask || S.ABFilter || S.ABFilter || S.PtAccess || S.SmartStart || S.VA.MinEPAP || S.VA.MaxIPAP || S.PtAccess || S.PtAccess || S.ABFilter | ||
+ | |- | ||
+ | | S.HumLevel || S.Tube || S.Mask || S.Mask || S.ABFilter || S.PtAccess || S.VA.PS || S.VA.MinEPAP || S.ABFilter || S.ABFilter || S.Mask | ||
+ | |- | ||
+ | | S.TempEnable || S.ClimateControl || S.Tube || S.Tube || S.LeakAlert || S.ABFilter || S.RiseEnable || S.VA.PS || S.LeakAlert || S.LeakAlert || S.Tube | ||
+ | |- | ||
+ | | S.Temp || S.HumEnable || S.ClimateControl || S.ClimateControl || S.Mask || S.LeakAlert || S.RiseTime || S.RiseEnable || S.Mask || S.Mask || S.ClimateControl | ||
+ | |- | ||
+ | | HeatedTube || S.HumLevel || S.HumEnable || S.HumEnable || S.Tube || S.Mask || S.Cycle || S.RiseTime || S.Tube || S.Tube || S.HumEnable | ||
+ | |- | ||
+ | | Humidifier || S.TempEnable || S.HumLevel || S.HumLevel || S.ClimateControl || S.Tube || S.Trigger || S.Cycle || S.ClimateControl || S.ClimateControl || S.HumLevel | ||
+ | |- | ||
+ | | BlowPress.95 || S.Temp || S.TempEnable || S.TempEnable || S.HumEnable || S.ClimateControl || S.TiMax || S.Trigger || S.HumEnable || S.HumEnable || S.TempEnable | ||
+ | |- | ||
+ | | BlowPress.5 || HeatedTube || S.Temp || S.Temp || S.HumLevel || S.HumEnable || S.TiMin || S.TiMax || S.HumLevel || S.HumLevel || S.Temp | ||
+ | |- | ||
+ | | Flow.95 || Humidifier || HeatedTube || HeatedTube || S.TempEnable || S.HumLevel || S.SmartStart || S.TiMin || S.TempEnable || S.TempEnable || HeatedTube | ||
+ | |- | ||
+ | | Flow.5 || BlowPress.95 || Humidifier || Humidifier || S.Temp || S.TempEnable || S.PtAccess || S.SmartStart || S.Temp || S.Temp || Humidifier | ||
+ | |- | ||
+ | | BlowFlow.50 || BlowPress.5 || BlowPress.95 || BlowPress.95 || S.ExternalHum || S.Temp || S.ABFilter || S.PtAccess || S.ExternalHum || S.ExternalHum || BlowPress.95 | ||
+ | |- | ||
+ | | AmbHumidity.50 || Flow.95 || BlowPress.5 || BlowPress.5 || HeatedTube || HeatedTube || S.LeakAlert || S.ABFilter || HeatedTube || HeatedTube || BlowPress.5 | ||
+ | |- | ||
+ | | HumTemp.50 || Flow.5 || Flow.95 || Flow.95 || Humidifier || Humidifier || S.Mask || S.LeakAlert || Humidifier || Humidifier || Flow.95 | ||
+ | |- | ||
+ | | HTubeTemp.50 || BlowFlow.50 || Flow.5 || Flow.5 || BlowPress.95 || BlowPress.95 || S.Tube || S.Mask || BlowPress.95 || BlowPress.95 || Flow.5 | ||
+ | |- | ||
+ | | HTubePow.50 || AmbHumidity.50 || BlowFlow.50 || BlowFlow.50 || BlowPress.5 || BlowPress.5 || S.ClimateControl || S.Tube || BlowPress.5 || BlowPress.5 || BlowFlow.50 | ||
+ | |- | ||
+ | | HumPow.50 || HumTemp.50 || AmbHumidity.50 || AmbHumidity.50 || Flow.95 || Flow.95 || S.HumEnable || S.ClimateControl || Flow.95 || Flow.95 || AmbHumidity.50 | ||
+ | |- | ||
+ | | SpO2.50 || HTubeTemp.50 || HumTemp.50 || HumTemp.50 || Flow.5 || Flow.5 || S.HumLevel || S.HumEnable || Flow.5 || Flow.5 || HumTemp.50 | ||
+ | |- | ||
+ | | SpO2.95 || HTubePow.50 || HTubeTemp.50 || HTubeTemp.50 || BlowFlow.50 || BlowFlow.50 || S.TempEnable || S.HumLevel || BlowFlow.50 || BlowFlow.50 || HTubeTemp.50 | ||
+ | |- | ||
+ | | SpO2.Max || HumPow.50 || HTubePow.50 || HTubePow.50 || AmbHumidity.50 || AmbHumidity.50 || S.Temp || S.TempEnable || AmbHumidity.50 || AmbHumidity.50 || HTubePow.50 | ||
+ | |- | ||
+ | | SpO2Thresh || SpO2.50 || HumPow.50 || HumPow.50 || HumTemp.50 || HumTemp.50 || HeatedTube || S.Temp || HumTemp.50 || HumTemp.50 || HumPow.50 | ||
+ | |- | ||
+ | | MaskPress.50 || SpO2.95 || SpO2.50 || SpO2.50 || HTubeTemp.50 || HTubeTemp.50 || Humidifier || HeatedTube || HTubeTemp.50 || HTubeTemp.50 || SpO2.50 | ||
+ | |- | ||
+ | | MaskPress.95 || SpO2.Max || SpO2.95 || SpO2.95 || HTubePow.50 || HTubePow.50 || BlowPress.95 || Humidifier || HTubePow.50 || HTubePow.50 || SpO2.95 | ||
+ | |- | ||
+ | | MaskPress.Max || SpO2Thresh || SpO2.Max || SpO2.Max || HumPow.50 || HumPow.50 || BlowPress.5 || BlowPress.95 || HumPow.50 || HumPow.50 || SpO2.Max | ||
+ | |- | ||
+ | | Leak.95 || MaskPress.50 || SpO2Thresh || SpO2Thresh || SpO2.50 || SpO2.50 || Flow.95 || BlowPress.5 || SpO2.50 || SpO2.50 || SpO2Thresh | ||
+ | |- | ||
+ | | Leak.70 || MaskPress.95 || MaskPress.50 || MaskPress.50 || SpO2.95 || SpO2.95 || Flow.5 || Flow.95 || SpO2.95 || SpO2.95 || MaskPress.50 | ||
+ | |- | ||
+ | | AHI || MaskPress.Max || MaskPress.95 || MaskPress.95 || SpO2.Max || SpO2.Max || BlowFlow.50 || Flow.5 || SpO2.Max || SpO2.Max || MaskPress.95 | ||
+ | |- | ||
+ | | Fault.Device || TgtIPAP.50 || MaskPress.Max || MaskPress.Max || SpO2Thresh || SpO2Thresh || AmbHumidity.50 || BlowFlow.50 || SpO2Thresh || SpO2Thresh || MaskPress.Max | ||
+ | |- | ||
+ | | Fault.Alarm || TgtIPAP.95 || TgtIPAP.50 || TgtIPAP.50 || MaskPress.50 || SpontTrig% || HumTemp.50 || AmbHumidity.50 || MaskPress.50 || MaskPress.50 || TgtIPAP.50 | ||
+ | |- | ||
+ | | Fault.Humidifier || TgtIPAP.Max || TgtIPAP.95 || TgtIPAP.95 || MaskPress.95 || SpontCyc% || HTubeTemp.50 || HumTemp.50 || MaskPress.95 || MaskPress.95 || TgtIPAP.95 | ||
+ | |- | ||
+ | | Fault.HeatedTube || TgtEPAP.50 || TgtIPAP.Max || TgtIPAP.Max || MaskPress.Max || MaskPress.50 || HTubePow.50 || HTubeTemp.50 || MaskPress.Max || MaskPress.Max || TgtIPAP.Max | ||
+ | |- | ||
+ | | Crc16 || TgtEPAP.95 || TgtEPAP.50 || TgtEPAP.50 || TgtIPAP.50 || MaskPress.95 || HumPow.50 || HTubePow.50 || TgtIPAP.50 || TgtIPAP.50 || TgtEPAP.50 | ||
+ | |- | ||
+ | | || TgtEPAP.Max || TgtEPAP.95 || TgtEPAP.95 || TgtIPAP.95 || MaskPress.Max || SpO2.50 || HumPow.50 || TgtIPAP.95 || TgtIPAP.95 || TgtEPAP.95 | ||
+ | |- | ||
+ | | || Leak.50 || TgtEPAP.Max || TgtEPAP.Max || TgtIPAP.Max || TgtIPAP.50 || SpO2.95 || SpO2.50 || TgtIPAP.Max || TgtIPAP.Max || TgtEPAP.Max | ||
+ | |- | ||
+ | | || Leak.95 || Leak.50 || Leak.50 || TgtEPAP.50 || TgtIPAP.95 || SpO2.Max || SpO2.95 || TgtEPAP.50 || TgtEPAP.50 || Leak.50 | ||
+ | |- | ||
+ | | || Leak.70 || Leak.95 || Leak.95 || TgtEPAP.95 || TgtIPAP.Max || SpO2Thresh || SpO2.Max || TgtEPAP.95 || TgtEPAP.95 || Leak.95 | ||
+ | |- | ||
+ | | || Leak.Max || Leak.70 || Leak.70 || TgtEPAP.Max || TgtEPAP.50 || SpontCyc% || SpO2Thresh || TgtEPAP.Max || TgtEPAP.Max || Leak.70 | ||
+ | |- | ||
+ | | || MinVent.50 || Leak.Max || Leak.Max || Leak.50 || TgtEPAP.95 || MaskPress.50 || SpontTrig% || Leak.50 || Leak.50 || Leak.Max | ||
+ | |- | ||
+ | | || MinVent.95 || MinVent.50 || MinVent.50 || Leak.95 || TgtEPAP.Max || MaskPress.95 || SpontCyc% || Leak.95 || Leak.95 || MinVent.50 | ||
+ | |- | ||
+ | | || MinVent.Max || MinVent.95 || MinVent.95 || Leak.70 || Leak.50 || MaskPress.Max || MaskPress.50 || Leak.70 || Leak.70 || MinVent.95 | ||
+ | |- | ||
+ | | || RespRate.50 || MinVent.Max || MinVent.Max || Leak.Max || Leak.95 || TgtIPAP.50 || MaskPress.95 || Leak.Max || Leak.Max || MinVent.Max | ||
+ | |- | ||
+ | | || RespRate.95 || RespRate.50 || RespRate.50 || MinVent.50 || Leak.70 || TgtIPAP.95 || MaskPress.Max || MinVent.50 || MinVent.50 || RespRate.50 | ||
+ | |- | ||
+ | | || RespRate.Max || RespRate.95 || RespRate.95 || MinVent.95 || Leak.Max || TgtIPAP.Max || TgtIPAP.50 || MinVent.95 || MinVent.95 || RespRate.95 | ||
+ | |- | ||
+ | | || TidVol.50 || RespRate.Max || RespRate.Max || MinVent.Max || MinVent.50 || TgtEPAP.50 || TgtIPAP.95 || MinVent.Max || MinVent.Max || RespRate.Max | ||
+ | |- | ||
+ | | || TidVol.95 || TidVol.50 || TidVol.50 || RespRate.50 || MinVent.95 || TgtEPAP.95 || TgtIPAP.Max || RespRate.50 || RespRate.50 || TidVol.50 | ||
+ | |- | ||
+ | | || TidVol.Max || TidVol.95 || TidVol.95 || RespRate.95 || MinVent.Max || TgtEPAP.Max || TgtEPAP.50 || RespRate.95 || RespRate.95 || TidVol.95 | ||
+ | |- | ||
+ | | || AHI || TidVol.Max || TidVol.Max || RespRate.Max || RespRate.50 || Leak.50 || TgtEPAP.95 || RespRate.Max || RespRate.Max || TidVol.Max | ||
+ | |- | ||
+ | | || HI || AHI || AHI || TidVol.50 || RespRate.95 || Leak.95 || TgtEPAP.Max || TidVol.50 || TidVol.50 || AHI | ||
+ | |- | ||
+ | | || AI || HI || HI || TidVol.95 || RespRate.Max || Leak.70 || Leak.50 || TidVol.95 || TidVol.95 || HI | ||
+ | |- | ||
+ | | || OAI || AI || AI || TidVol.Max || TidVol.50 || Leak.Max || Leak.95 || TidVol.Max || TidVol.Max || AI | ||
+ | |- | ||
+ | | || CAI || OAI || OAI || TgtVent.50 || TidVol.95 || MinVent.50 || Leak.70 || TgtVent.50 || TgtVent.50 || OAI | ||
+ | |- | ||
+ | | || UAI || CAI || CAI || TgtVent.95 || TidVol.Max || MinVent.95 || Leak.Max || TgtVent.95 || TgtVent.95 || CAI | ||
+ | |- | ||
+ | | || CSR || UAI || UAI || TgtVent.Max || IERatio.50 || MinVent.Max || MinVent.50 || TgtVent.Max || TgtVent.Max || UAI | ||
+ | |- | ||
+ | | || Fault.Device || CSR || CSR || AHI || IERatio.95 || RespRate.50 || MinVent.95 || AHI || AHI || CSR | ||
+ | |- | ||
+ | | || Fault.Alarm || Fault.Device || Fault.Device || HI || IERatio.Max || RespRate.95 || MinVent.Max || HI || HI || Fault.Device | ||
+ | |- | ||
+ | | || Fault.Humidifier || Fault.Alarm || Fault.Alarm || AI || Ti.50 || RespRate.Max || RespRate.50 || AI || AI || Fault.Alarm | ||
+ | |- | ||
+ | | || Fault.HeatedTube || Fault.Humidifier || Fault.Humidifier || Fault.Device || Ti.95 || TidVol.50 || RespRate.95 || Fault.Device || Fault.Device || Fault.Humidifier | ||
+ | |- | ||
+ | | || Crc16 || Fault.HeatedTube || Fault.HeatedTube || Fault.Alarm || Ti.Max || TidVol.95 || RespRate.Max || Fault.Alarm || Fault.Alarm || Fault.HeatedTube | ||
+ | |- | ||
+ | | || || Crc16 || Crc16 || Fault.Humidifier || AHI || TidVol.Max || TidVol.50 || Fault.Humidifier || Fault.Humidifier || Crc16 | ||
+ | |- | ||
+ | | || || || || Fault.HeatedTube || HI || IERatio.50 || TidVol.95 || Fault.HeatedTube || Fault.HeatedTube || | ||
+ | |- | ||
+ | | || || || || Crc16 || AI || IERatio.95 || TidVol.Max || Crc16 || Crc16 || | ||
+ | |- | ||
+ | | || || || || || Fault.Device || IERatio.Max || IERatio.50 || || || | ||
+ | |- | ||
+ | | || || || || || Fault.Alarm || Ti.50 || IERatio.95 || || || | ||
+ | |- | ||
+ | | || || || || || Fault.Humidifier || Ti.95 || IERatio.Max || || || | ||
+ | |- | ||
+ | | || || || || || Fault.HeatedTube || Ti.Max || Ti.50 || || || | ||
+ | |- | ||
+ | | || || || || || Crc16 || AHI || Ti.95 || || || | ||
+ | |- | ||
+ | | || || || || || || HI || Ti.Max || || || | ||
+ | |- | ||
+ | | || || || || || || AI || AHI || || || | ||
+ | |- | ||
+ | | || || || || || || OAI || HI || || || | ||
+ | |- | ||
+ | | || || || || || || CAI || AI || || || | ||
+ | |- | ||
+ | | || || || || || || UAI || OAI || || || | ||
+ | |- | ||
+ | | || || || || || || Fault.Device || CAI || || || | ||
+ | |- | ||
+ | | || || || || || || Fault.Alarm || UAI || || || | ||
+ | |- | ||
+ | | || || || || || || Fault.Humidifier || Fault.Device || || || | ||
+ | |- | ||
+ | | || || || || || || Fault.HeatedTube || Fault.Alarm || || || | ||
+ | |- | ||
+ | | || || || || || || Crc16 || Fault.Humidifier || || || | ||
+ | |- | ||
+ | | || || || || || || || Fault.HeatedTube || || || | ||
+ | |- | ||
+ | | || || || || || || || Crc16 || || || | ||
+ | |} | ||
+ | |||
+ | |||
+ | |||
+ | <!-- Place all code above here --> | ||
== References == | == References == | ||
<references /> | <references /> |
Latest revision as of 04:23, 27 December 2022
This page is for common wikitext used on Apnea Board and sort of a pseudo sandbox to test out new stuff I find. Feel free to use the talk function or copy any of the source. This page was created as more of a semi-permanent home for common code since the official Sandbox page gets reset occasionally.
Most of the sample code here is taken from the Wikitext help pages from Wikipedia. Although they use a lot of templates to get the job done, there are usually alternative ways of achieving the same results without templates. All the code used here does not require any special templates unless noted. Click the "Edit" or "View Source" links above to see the actual code used.
Mediawiki help pages are another good source for wikitext.
Contents
Images and text flow
Larger images
Some text above...
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Some text below
Text will not wrap the image if you use "center" or "none" after |thumb|
The sample code for the above images: [[file:FL EPR.jpg|thumb|center|1000px|Untreated Inspiratory Flow Limitation]]<br />
No tables, flowing text
Testing images and text flow using <br clear=all> and also <div style="clear:both"></div>
Both do the same thing as seen below.
No tables involved
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<br clear=all> used here
Some other stuff. Does not wrap the image. Any amount of text can be added between the images.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<div style="clear:both"></div> used here
Even more text that does not wrap the image
Tables with borders
Using tables with borders
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. |
Tables without borders
Using tables without borders
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. |
Citations and Notes
Citations
We currently do not have a citation template but simple citations can still be done using <ref></ref>.
Searching Apnea Board [1]
Help using Apnea Board [2]
Apple has added a new security feature to macOS Ventura [3][4]. This will prevent your Mac from communicating with USB and Thunderbolt devices and will prevent you from importing your SD card data.
These will appear in the References section at the end of the page using <references /> under the heading.
Notes
This part of the text requires clarification.[note 1] And this needs even more clarification.[note 2]
These will appear in the notes section at the end of the page using <references group="note" /> under the heading.
Using both together
An example of using citations and notes together inline:
You can set the time zone in your cpap machine. [5] Some machines may have special requirements. [note 3]
Math symbols
π·r2·h | E=mc2 | H2O | CO2 = π·r<sup>2</sup>·h E=mc<sup>2</sup> H<sub>2</sub>O CO<sub>2</sub>
To convert Hours:minutes:seconds to decimal. Example: 8:23:17
(hour × 1) + (minutes ÷ 60) + (seconds ÷ 3600) 8 × 1 + 23 ÷ 60 + 17 ÷ 3600 8 + 0.3833 + 0.0047 = 8.388 hours
More on math symbols and special characters can be found HERE and HERE
Tables
Standard table with headers
header 1 | header 2 | header 3 |
---|---|---|
row 1, cell 1 | row 1, cell 2 | row 1, cell 3 |
row 2, cell 1 | row 2, cell 2 | row 2, cell 3 |
Lists
Bulleted list
- Bulleted list item
- Item 2
- Item 2.1
- Item 2.2
- Item 2.2.1
- Item 3
Numbered list
- Numbered list item
- Item 2
- Item 2.1
- Item 2.1.1
- Item 2.1.2
- Item 2.2
- Item 2.1
- Item 3
Invisible text (comments)
You can leave comments in the code that will not be visible when viewing the page:
<!-- This text will normally only appear in Edit or View Source mode. It's typically used to leave notes for other wiki editors. -->
Basic text formatting
Italics
Italics = ''Italics''
Bold
Bold = '''Bold'''
Italics and Bold
Italics and bold = '''''Italics and bold'''''
Strikethrough
Strikethrough text = <s>Strikethrough text</s>
Underline
Underlined text = <u>Underlined text</u>
Highlighting and coloring text
Some highlighted text and some plain text. = <span style="background:yellow"> Some highlighted text </span> and some plain text.
This text will be red = <span style="color:#FF0000"> This text will be red </span>
More info on highlighting and coloring can be found here: Wiki color formatting help
Displaying code
You can highlight a snippet of code like /Users/YourUsernameHere/Documents/
= <code>/Users/YourUsernameHere/Documents/</code>
Limiting text formatting
Leading space
Sample text in a text block (Similar to <nowiki>, <pre>, or <code>) but still interprets wiki code, and preserves extra spaces.
Testing multiple lines Line 2 Line 3
Just indent the line with a space(s) and the text is placed in a block like above. No tags required. Preserves formatting and extra spaces.
<pre>
<pre></pre> Does not interpret wikicode, and preserves extra spaces. Displays special characters.Some sample text using <pre> with [[wikimarkup]] tags and extra spaces. Also displays special characters using &
<nowiki>
<nowiki></nowiki> Does not interpret wikicode, but strips extra spaces and new lines. Also displays special characters. Does not use a text block like <pre> or "leading space".
Some sample text with [[wikimarkup]], but strips extra spaces. Displays special characters using &
Inserting a spreadsheet
Inserting an Excel or LibreOffice spreadsheet is made much easier by using two available online converters. excel2wiki and tab2wiki. You just copy the data directly from the spreadsheet and paste it into the window. There is no need to convert it to csv or any other format first. The sites will convert it directly into a Wiki table, then just copy the wikicode into the wiki editor window. NOTE: Only copy the actual data cells you want in the table. Copying entire columns/rows will create excessive empty cells and make the table quite large.
Both sites create a compact table which is easier for editing in the wiki editor. A compact table has all the data for one row contained on one line seperated by double pipes ||
If the data in the table needs to be formatted in a certain way you can do it in one of two ways:
- Edit each cell manually using the wiki editor
- Use an advanced text editor like BBEdit or Notepad++. Both have find/replace that can use regex (grep expressions) that can get the job done very quickly. From the website, copy the generated wiki table code into your text editor then use the find/replace tool. After the table is formatted to your liking copy/paste it into the wiki editor window.
A sample regex Find pattern for the small spreadsheet (using BBEdit): ^.*?\|\h*\b(.*?)\h*\|\|\h*(.*?)\h*\|\|\h*(.*?)\h*$
And the corresponding replace pattern (using BBEdit): \1 ||style=text-align:right| \2 ||style=text-align:right| \3
The above would align all the cells in the second and third columns to the right (minus the header row).
The following examples were done using LibreOffice Calc and excel2wiki:
Small spreadsheet
Simple spreadsheet
FILE | SIZE (bytes) | Cumulative Size |
---|---|---|
STR.edf | 127,516 | 127516 |
DATALOG/20220420/ | ||
DATALOG/20220420/20220420_223131_CSL.crc | 8 | 127524 |
DATALOG/20220420/20220420_223131_CSL.edf | 800 | 128324 |
DATALOG/20220420/20220420_223131_EVE.crc | 8 | 128332 |
DATALOG/20220420/20220420_223131_EVE.edf | 1,528 | 129860 |
DATALOG/20220420/20220420_223136_BRP.crc | 8 | 129868 |
DATALOG/20220420/20220420_223136_BRP.edf | 4,718,596 | 4848464 |
DATALOG/20220420/20220420_223136_PLD.crc | 8 | 4848472 |
DATALOG/20220420/20220420_223136_PLD.edf | 428,828 | 5277300 |
DATALOG/20220420/20220420_223136_SAD.crc | 8 | 5277308 |
DATALOG/20220420/20220420_223136_SAD.edf | 191,236 | 5468544 |
View the source and you can see that some of the cells have different alignment for the second and third columns (just as examples).
Large spreadsheet
Sample large spreadsheet that is collapsible, and is pre-collapsed to save space.
AS10-CPAP | AS10-AutoSet | AS10-AutoSet | AS10-AutoSet | AC10-ASV | AC10-S | AC10-Vauto | AC10-Vauto | AC10-Pacewave | AC10-Pacewave | AS10-Autoset |
---|---|---|---|---|---|---|---|---|---|---|
37015 | 37028 | 37031 | 37032 | 37043 | 37047 | 37051 | 37052 | 37060 | 37061 | 37102 |
Date | Date | Date | Date | Date | Date | Date | Date | Date | Date | Date |
MaskOn | MaskOn | MaskOn | MaskOn | MaskOn | MaskOn | MaskOn | MaskOn | MaskOn | MaskOn | MaskOn |
MaskOff | MaskOff | MaskOff | MaskOff | MaskOff | MaskOff | MaskOff | MaskOff | MaskOff | MaskOff | MaskOff |
MaskEvents | MaskEvents | MaskEvents | MaskEvents | MaskEvents | MaskEvents | MaskEvents | MaskEvents | MaskEvents | MaskEvents | MaskEvents |
Duration | Duration | Duration | Duration | Duration | Duration | Duration | Duration | Duration | Duration | Duration |
OnDuration | OnDuration | OnDuration | OnDuration | OnDuration | OnDuration | OnDuration | OnDuration | OnDuration | OnDuration | OnDuration |
PatientHours | PatientHours | PatientHours | PatientHours | PatientHours | PatientHours | PatientHours | PatientHours | PatientHours | PatientHours | PatientHours |
Mode | Mode | Mode | Mode | Mode | Mode | Mode | Mode | Mode | Mode | Mode |
S.RampEnable | S.RampEnable | S.RampEnable | S.RampEnable | S.RampEnable | S.RampEnable | S.RampEnable | S.RampEnable | S.RampEnable | S.RampEnable | S.RampEnable |
S.RampTime | S.RampTime | S.RampTime | S.RampTime | S.RampTime | S.RampTime | S.RampTime | S.RampTime | S.RampTime | S.RampTime | S.RampTime |
S.C.StartPress | S.C.StartPress | S.C.StartPress | S.C.StartPress | S.C.StartPress | S.C.StartPress | S.C.StartPress | S.C.StartPress | S.C.StartPress | S.C.StartPress | S.C.StartPress |
S.C.Press | S.C.Press | S.C.Press | S.C.Press | S.C.Press | S.C.Press | S.C.Press | S.C.Press | S.C.Press | S.C.Press | S.C.Press |
S.EPR.ClinEnable | S.EPR.ClinEnable | S.EPR.ClinEnable | S.EPR.ClinEnable | S.AV.StartPress | S.BL.StartPress | S.EPR.ClinEnable | S.EPR.ClinEnable | S.AV.StartPress | S.AV.StartPress | S.EPR.ClinEnable |
S.EPR.EPREnable | S.EPR.EPREnable | S.EPR.EPREnable | S.EPR.EPREnable | S.AV.EPAP | S.BL.IPAP | S.EPR.EPREnable | S.EPR.EPREnable | S.AV.EPAP | S.AV.EPAP | S.EPR.EPREnable |
S.EPR.Level | S.EPR.Level | S.EPR.Level | S.EPR.Level | S.AV.MaxPS | S.BL.EPAP | S.EPR.Level | S.EPR.Level | S.AV.MaxPS | S.AV.MaxPS | S.EPR.Level |
S.EPR.EPRType | S.EPR.EPRType | S.EPR.EPRType | S.EPR.EPRType | S.AV.MinPS | S.BL.BackupRate | S.EPR.EPRType | S.EPR.EPRType | S.AV.MinPS | S.AV.MinPS | S.EPR.EPRType |
S.SmartStart | S.AS.StartPress | S.AS.Comfort | S.AS.Comfort | S.AA.StartPress | S.RiseEnable | S.BL.StartPress | S.BL.StartPress | S.AA.StartPress | S.AA.StartPress | S.AS.Comfort |
S.PtAccess | S.AS.MaxPress | S.AS.StartPress | S.AS.StartPress | S.AA.MaxEPAP | S.RiseTime | S.BL.IPAP | S.BL.IPAP | S.AA.MaxEPAP | S.AA.MaxEPAP | S.AS.StartPress |
S.ABFilter | S.AS.MinPress | S.AS.MaxPress | S.AS.MaxPress | S.AA.MinEPAP | S.Cycle | S.BL.EPAP | S.BL.EPAP | S.AA.MinEPAP | S.AA.MinEPAP | S.AS.MaxPress |
S.Mask | S.SmartStart | S.AS.MinPress | S.AS.MinPress | S.AA.MaxPS | S.Trigger | S.EasyBreathe | S.EasyBreathe | S.AA.MaxPS | S.AA.MaxPS | S.AS.MinPress |
S.Tube | S.PtAccess | S.SmartStart | S.SmartStart | S.AA.MinPS | S.TiMax | S.VA.StartPress | S.BL.BackupRate | S.AA.MinPS | S.AA.MinPS | S.SmartStart |
S.ClimateControl | S.ABFilter | S.PtAccess | S.PtAccess | S.SmartStart | S.TiMin | S.VA.MaxIPAP | S.VA.StartPress | S.SmartStart | S.SmartStart | S.PtAccess |
S.HumEnable | S.Mask | S.ABFilter | S.ABFilter | S.PtAccess | S.SmartStart | S.VA.MinEPAP | S.VA.MaxIPAP | S.PtAccess | S.PtAccess | S.ABFilter |
S.HumLevel | S.Tube | S.Mask | S.Mask | S.ABFilter | S.PtAccess | S.VA.PS | S.VA.MinEPAP | S.ABFilter | S.ABFilter | S.Mask |
S.TempEnable | S.ClimateControl | S.Tube | S.Tube | S.LeakAlert | S.ABFilter | S.RiseEnable | S.VA.PS | S.LeakAlert | S.LeakAlert | S.Tube |
S.Temp | S.HumEnable | S.ClimateControl | S.ClimateControl | S.Mask | S.LeakAlert | S.RiseTime | S.RiseEnable | S.Mask | S.Mask | S.ClimateControl |
HeatedTube | S.HumLevel | S.HumEnable | S.HumEnable | S.Tube | S.Mask | S.Cycle | S.RiseTime | S.Tube | S.Tube | S.HumEnable |
Humidifier | S.TempEnable | S.HumLevel | S.HumLevel | S.ClimateControl | S.Tube | S.Trigger | S.Cycle | S.ClimateControl | S.ClimateControl | S.HumLevel |
BlowPress.95 | S.Temp | S.TempEnable | S.TempEnable | S.HumEnable | S.ClimateControl | S.TiMax | S.Trigger | S.HumEnable | S.HumEnable | S.TempEnable |
BlowPress.5 | HeatedTube | S.Temp | S.Temp | S.HumLevel | S.HumEnable | S.TiMin | S.TiMax | S.HumLevel | S.HumLevel | S.Temp |
Flow.95 | Humidifier | HeatedTube | HeatedTube | S.TempEnable | S.HumLevel | S.SmartStart | S.TiMin | S.TempEnable | S.TempEnable | HeatedTube |
Flow.5 | BlowPress.95 | Humidifier | Humidifier | S.Temp | S.TempEnable | S.PtAccess | S.SmartStart | S.Temp | S.Temp | Humidifier |
BlowFlow.50 | BlowPress.5 | BlowPress.95 | BlowPress.95 | S.ExternalHum | S.Temp | S.ABFilter | S.PtAccess | S.ExternalHum | S.ExternalHum | BlowPress.95 |
AmbHumidity.50 | Flow.95 | BlowPress.5 | BlowPress.5 | HeatedTube | HeatedTube | S.LeakAlert | S.ABFilter | HeatedTube | HeatedTube | BlowPress.5 |
HumTemp.50 | Flow.5 | Flow.95 | Flow.95 | Humidifier | Humidifier | S.Mask | S.LeakAlert | Humidifier | Humidifier | Flow.95 |
HTubeTemp.50 | BlowFlow.50 | Flow.5 | Flow.5 | BlowPress.95 | BlowPress.95 | S.Tube | S.Mask | BlowPress.95 | BlowPress.95 | Flow.5 |
HTubePow.50 | AmbHumidity.50 | BlowFlow.50 | BlowFlow.50 | BlowPress.5 | BlowPress.5 | S.ClimateControl | S.Tube | BlowPress.5 | BlowPress.5 | BlowFlow.50 |
HumPow.50 | HumTemp.50 | AmbHumidity.50 | AmbHumidity.50 | Flow.95 | Flow.95 | S.HumEnable | S.ClimateControl | Flow.95 | Flow.95 | AmbHumidity.50 |
SpO2.50 | HTubeTemp.50 | HumTemp.50 | HumTemp.50 | Flow.5 | Flow.5 | S.HumLevel | S.HumEnable | Flow.5 | Flow.5 | HumTemp.50 |
SpO2.95 | HTubePow.50 | HTubeTemp.50 | HTubeTemp.50 | BlowFlow.50 | BlowFlow.50 | S.TempEnable | S.HumLevel | BlowFlow.50 | BlowFlow.50 | HTubeTemp.50 |
SpO2.Max | HumPow.50 | HTubePow.50 | HTubePow.50 | AmbHumidity.50 | AmbHumidity.50 | S.Temp | S.TempEnable | AmbHumidity.50 | AmbHumidity.50 | HTubePow.50 |
SpO2Thresh | SpO2.50 | HumPow.50 | HumPow.50 | HumTemp.50 | HumTemp.50 | HeatedTube | S.Temp | HumTemp.50 | HumTemp.50 | HumPow.50 |
MaskPress.50 | SpO2.95 | SpO2.50 | SpO2.50 | HTubeTemp.50 | HTubeTemp.50 | Humidifier | HeatedTube | HTubeTemp.50 | HTubeTemp.50 | SpO2.50 |
MaskPress.95 | SpO2.Max | SpO2.95 | SpO2.95 | HTubePow.50 | HTubePow.50 | BlowPress.95 | Humidifier | HTubePow.50 | HTubePow.50 | SpO2.95 |
MaskPress.Max | SpO2Thresh | SpO2.Max | SpO2.Max | HumPow.50 | HumPow.50 | BlowPress.5 | BlowPress.95 | HumPow.50 | HumPow.50 | SpO2.Max |
Leak.95 | MaskPress.50 | SpO2Thresh | SpO2Thresh | SpO2.50 | SpO2.50 | Flow.95 | BlowPress.5 | SpO2.50 | SpO2.50 | SpO2Thresh |
Leak.70 | MaskPress.95 | MaskPress.50 | MaskPress.50 | SpO2.95 | SpO2.95 | Flow.5 | Flow.95 | SpO2.95 | SpO2.95 | MaskPress.50 |
AHI | MaskPress.Max | MaskPress.95 | MaskPress.95 | SpO2.Max | SpO2.Max | BlowFlow.50 | Flow.5 | SpO2.Max | SpO2.Max | MaskPress.95 |
Fault.Device | TgtIPAP.50 | MaskPress.Max | MaskPress.Max | SpO2Thresh | SpO2Thresh | AmbHumidity.50 | BlowFlow.50 | SpO2Thresh | SpO2Thresh | MaskPress.Max |
Fault.Alarm | TgtIPAP.95 | TgtIPAP.50 | TgtIPAP.50 | MaskPress.50 | SpontTrig% | HumTemp.50 | AmbHumidity.50 | MaskPress.50 | MaskPress.50 | TgtIPAP.50 |
Fault.Humidifier | TgtIPAP.Max | TgtIPAP.95 | TgtIPAP.95 | MaskPress.95 | SpontCyc% | HTubeTemp.50 | HumTemp.50 | MaskPress.95 | MaskPress.95 | TgtIPAP.95 |
Fault.HeatedTube | TgtEPAP.50 | TgtIPAP.Max | TgtIPAP.Max | MaskPress.Max | MaskPress.50 | HTubePow.50 | HTubeTemp.50 | MaskPress.Max | MaskPress.Max | TgtIPAP.Max |
Crc16 | TgtEPAP.95 | TgtEPAP.50 | TgtEPAP.50 | TgtIPAP.50 | MaskPress.95 | HumPow.50 | HTubePow.50 | TgtIPAP.50 | TgtIPAP.50 | TgtEPAP.50 |
TgtEPAP.Max | TgtEPAP.95 | TgtEPAP.95 | TgtIPAP.95 | MaskPress.Max | SpO2.50 | HumPow.50 | TgtIPAP.95 | TgtIPAP.95 | TgtEPAP.95 | |
Leak.50 | TgtEPAP.Max | TgtEPAP.Max | TgtIPAP.Max | TgtIPAP.50 | SpO2.95 | SpO2.50 | TgtIPAP.Max | TgtIPAP.Max | TgtEPAP.Max | |
Leak.95 | Leak.50 | Leak.50 | TgtEPAP.50 | TgtIPAP.95 | SpO2.Max | SpO2.95 | TgtEPAP.50 | TgtEPAP.50 | Leak.50 | |
Leak.70 | Leak.95 | Leak.95 | TgtEPAP.95 | TgtIPAP.Max | SpO2Thresh | SpO2.Max | TgtEPAP.95 | TgtEPAP.95 | Leak.95 | |
Leak.Max | Leak.70 | Leak.70 | TgtEPAP.Max | TgtEPAP.50 | SpontCyc% | SpO2Thresh | TgtEPAP.Max | TgtEPAP.Max | Leak.70 | |
MinVent.50 | Leak.Max | Leak.Max | Leak.50 | TgtEPAP.95 | MaskPress.50 | SpontTrig% | Leak.50 | Leak.50 | Leak.Max | |
MinVent.95 | MinVent.50 | MinVent.50 | Leak.95 | TgtEPAP.Max | MaskPress.95 | SpontCyc% | Leak.95 | Leak.95 | MinVent.50 | |
MinVent.Max | MinVent.95 | MinVent.95 | Leak.70 | Leak.50 | MaskPress.Max | MaskPress.50 | Leak.70 | Leak.70 | MinVent.95 | |
RespRate.50 | MinVent.Max | MinVent.Max | Leak.Max | Leak.95 | TgtIPAP.50 | MaskPress.95 | Leak.Max | Leak.Max | MinVent.Max | |
RespRate.95 | RespRate.50 | RespRate.50 | MinVent.50 | Leak.70 | TgtIPAP.95 | MaskPress.Max | MinVent.50 | MinVent.50 | RespRate.50 | |
RespRate.Max | RespRate.95 | RespRate.95 | MinVent.95 | Leak.Max | TgtIPAP.Max | TgtIPAP.50 | MinVent.95 | MinVent.95 | RespRate.95 | |
TidVol.50 | RespRate.Max | RespRate.Max | MinVent.Max | MinVent.50 | TgtEPAP.50 | TgtIPAP.95 | MinVent.Max | MinVent.Max | RespRate.Max | |
TidVol.95 | TidVol.50 | TidVol.50 | RespRate.50 | MinVent.95 | TgtEPAP.95 | TgtIPAP.Max | RespRate.50 | RespRate.50 | TidVol.50 | |
TidVol.Max | TidVol.95 | TidVol.95 | RespRate.95 | MinVent.Max | TgtEPAP.Max | TgtEPAP.50 | RespRate.95 | RespRate.95 | TidVol.95 | |
AHI | TidVol.Max | TidVol.Max | RespRate.Max | RespRate.50 | Leak.50 | TgtEPAP.95 | RespRate.Max | RespRate.Max | TidVol.Max | |
HI | AHI | AHI | TidVol.50 | RespRate.95 | Leak.95 | TgtEPAP.Max | TidVol.50 | TidVol.50 | AHI | |
AI | HI | HI | TidVol.95 | RespRate.Max | Leak.70 | Leak.50 | TidVol.95 | TidVol.95 | HI | |
OAI | AI | AI | TidVol.Max | TidVol.50 | Leak.Max | Leak.95 | TidVol.Max | TidVol.Max | AI | |
CAI | OAI | OAI | TgtVent.50 | TidVol.95 | MinVent.50 | Leak.70 | TgtVent.50 | TgtVent.50 | OAI | |
UAI | CAI | CAI | TgtVent.95 | TidVol.Max | MinVent.95 | Leak.Max | TgtVent.95 | TgtVent.95 | CAI | |
CSR | UAI | UAI | TgtVent.Max | IERatio.50 | MinVent.Max | MinVent.50 | TgtVent.Max | TgtVent.Max | UAI | |
Fault.Device | CSR | CSR | AHI | IERatio.95 | RespRate.50 | MinVent.95 | AHI | AHI | CSR | |
Fault.Alarm | Fault.Device | Fault.Device | HI | IERatio.Max | RespRate.95 | MinVent.Max | HI | HI | Fault.Device | |
Fault.Humidifier | Fault.Alarm | Fault.Alarm | AI | Ti.50 | RespRate.Max | RespRate.50 | AI | AI | Fault.Alarm | |
Fault.HeatedTube | Fault.Humidifier | Fault.Humidifier | Fault.Device | Ti.95 | TidVol.50 | RespRate.95 | Fault.Device | Fault.Device | Fault.Humidifier | |
Crc16 | Fault.HeatedTube | Fault.HeatedTube | Fault.Alarm | Ti.Max | TidVol.95 | RespRate.Max | Fault.Alarm | Fault.Alarm | Fault.HeatedTube | |
Crc16 | Crc16 | Fault.Humidifier | AHI | TidVol.Max | TidVol.50 | Fault.Humidifier | Fault.Humidifier | Crc16 | ||
Fault.HeatedTube | HI | IERatio.50 | TidVol.95 | Fault.HeatedTube | Fault.HeatedTube | |||||
Crc16 | AI | IERatio.95 | TidVol.Max | Crc16 | Crc16 | |||||
Fault.Device | IERatio.Max | IERatio.50 | ||||||||
Fault.Alarm | Ti.50 | IERatio.95 | ||||||||
Fault.Humidifier | Ti.95 | IERatio.Max | ||||||||
Fault.HeatedTube | Ti.Max | Ti.50 | ||||||||
Crc16 | AHI | Ti.95 | ||||||||
HI | Ti.Max | |||||||||
AI | AHI | |||||||||
OAI | HI | |||||||||
CAI | AI | |||||||||
UAI | OAI | |||||||||
Fault.Device | CAI | |||||||||
Fault.Alarm | UAI | |||||||||
Fault.Humidifier | Fault.Device | |||||||||
Fault.HeatedTube | Fault.Alarm | |||||||||
Crc16 | Fault.Humidifier | |||||||||
Fault.HeatedTube | ||||||||||
Crc16 |
References
- ↑ Searching Apnea Board - http://www.apneaboard.com/forums/search.php
- ↑ Getting Help - http://www.apneaboard.com/forums/misc.php?action=help
- ↑ macOS Ventura release notes Apple Developer Docs, Retrieved 25 Nov 2022
- ↑ Thunderbolt and USB security in macOS Ventura Apple Insider, Retrieved 26 Dec 2022
- ↑ Time Zone Map - https://www.timeanddate.com/time/map/
Notes
Donate to Apnea Board