From 081e7af0b6f6dec0ca685d3a538eacf20394c2cc Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Fri, 10 Nov 2017 18:47:11 -0600 Subject: [PATCH] Fix for internal anchor links in the build script. Seems this had been broken for some time now, but nobody noticed it. :-/ Thanks to Len Ovens for pointing this one out. :-) --- build.py | 5 +++-- include/about-ardours-interface.html | 1 + include/adding-pre-existing-material.html | 1 + include/adding-tracks-busses-and-vcas.html | 1 + include/audio-track-controls.html | 1 + include/audiomidi-busses-mixer-strips.html | 1 + include/aux-sends.html | 1 + include/behringer-devices-in-mackielogic-control-mode.html | 1 + include/bus-controls.html | 1 + include/cleaning-up-sessions.html | 1 + include/common-region-edit-operations.html | 1 + include/control-masters-mixer-strips.html | 1 + include/controlling-playback.html | 1 + include/controlling-track-ordering.html | 1 + include/copy-regions.html | 1 + include/copying-versus-linking.html | 1 + include/corresponding-regions-selection.html | 1 + include/create-midi-tracks.html | 1 + include/creating-location-markers.html | 1 + include/creating-range-markers.html | 1 + include/default-keyboard-bindings.html | 1 + include/devices-using-mackielogic-control-protocol.html | 1 + include/edit-point-control.html | 1 + include/editing-clocks.html | 1 + include/editor-lists.html | 1 + include/export-dialog.html | 1 + include/generic-midi-binding-maps.html | 1 + include/getting-more-plugins.html | 1 + include/grid-controls.html | 1 + include/import-dialog.html | 1 + include/interchange-with-other-daws.html | 1 + include/latency-considerations.html | 1 + include/layering-display.html | 1 + include/list-of-menu-actions.html | 1 + include/marker-context-menu.html | 1 + include/master-bus-strip.html | 1 + include/midi-track-controls.html | 1 + include/mnemonic-bindings-for-linux.html | 1 + include/monitor-section.html | 1 + include/monitor-setup-in-ardour.html | 1 + include/monitoring.html | 1 + include/mono-panner.html | 1 + include/move-regions-with-the-mouse.html | 1 + include/moving-markers.html | 1 + include/muting-and-soloing.html | 1 + include/navigating-the-editor.html | 1 + include/newopen-session-dialog.html | 1 + include/osc58-automation.html | 1 + include/osc58-controlling-ardour-with-osc.html | 1 + include/osc58-feedback.html | 1 + include/panning.html | 1 + include/patch-change.html | 1 + include/plugin-manager.html | 1 + include/quantize-midi.html | 1 + include/region-context-menu.html | 1 + include/region-naming.html | 1 + include/renaming-a-session.html | 1 + include/rhythm-ferret.html | 1 + include/ruler.html | 1 + include/searching-for-files-using-tags.html | 1 + include/select-regions.html | 1 + include/selection-and-punch-clocks.html | 1 + include/session-templates.html | 1 + include/signal-routing.html | 1 + include/snapshots.html | 1 + include/stem-exports.html | 1 + include/stereo-panner.html | 1 + include/stretching-regions.html | 1 + include/tempo-and-meter.html | 1 + include/the-edit-menu.html | 1 + include/the-loop-range.html | 1 + include/the-ranges-and-marks-lists.html | 1 + include/the-region-menu.html | 1 + include/the-snapshot-list.html | 1 + include/the-tracks-and-busses-list.html | 1 + include/the-view-menu.html | 1 + include/toolbox.html | 1 + include/track-and-bus-groups.html | 1 + include/track-color.html | 1 + include/track-context-menu.html | 1 + include/track-height.html | 1 + include/track-types.html | 1 + include/transport-bar.html | 1 + include/transport-clocks.html | 1 + include/transposing-midi.html | 1 + include/using-key-bindings.html | 1 + include/using-the-presonus-faderport8.html | 1 + include/vbap-panner.html | 1 + include/waveform-display.html | 1 + include/whats-in-a-session.html | 1 + include/which-regions-are-affected.html | 1 + include/working-with-ardour-built-plugin-editors.html | 1 + include/working-with-regions.html | 1 + include/zoom-controls.html | 1 + master-doc.txt | 2 -- 95 files changed, 96 insertions(+), 4 deletions(-) diff --git a/build.py b/build.py index 144760d..50ff861 100755 --- a/build.py +++ b/build.py @@ -22,7 +22,7 @@ import argparse # This matches all *non* letter/number, ' ', '.', '-', and '_' chars cleanString = re.compile(r'[^a-zA-Z0-9 \._-]+') # This matches new 'unbreakable' links, up to the closing quote or anchor -findLinks = re.compile(r'"@@[^#"]*"') +findLinks = re.compile(r'"@@[^#"]*[#"]') githuburl = 'https://github.com/Ardour/manual/edit/master/include/' # @@ -258,13 +258,14 @@ def FindInternalLinks(fs): for hdr in fs: if 'link' in hdr: linkDict['"@@' + hdr['link'] + '"'] = '"/' + hdr['filename'] + '/"' + linkDict['"@@' + hdr['link'] + '#'] = '"/' + hdr['filename'] + '/index.html#' return linkDict # # Internal links are of the form '@@link-name', which are references to the -# 'link:' field in the part header. We have to find all occurances and replace +# 'link:' field in the part header. We have to find all occurrences and replace # them with the appropriate link. # def FixInternalLinks(links, content, title): diff --git a/include/about-ardours-interface.html b/include/about-ardours-interface.html index 73ce233..4ae51dc 100644 --- a/include/about-ardours-interface.html +++ b/include/about-ardours-interface.html @@ -127,3 +127,4 @@

To learn more about the process of mixing, see Mixing.

+ diff --git a/include/adding-pre-existing-material.html b/include/adding-pre-existing-material.html index 5b2f708..63dbf13 100644 --- a/include/adding-pre-existing-material.html +++ b/include/adding-pre-existing-material.html @@ -20,3 +20,4 @@ The file will be imported and copied into the session, and placed at the position where the drag ended.

+ diff --git a/include/adding-tracks-busses-and-vcas.html b/include/adding-tracks-busses-and-vcas.html index 24f4bdc..27cc99b 100644 --- a/include/adding-tracks-busses-and-vcas.html +++ b/include/adding-tracks-busses-and-vcas.html @@ -91,3 +91,4 @@ track) or After selection. from the menu. A warning dialog will pop up, as track removal cannot be undone; this option should be used with care!

+ diff --git a/include/audio-track-controls.html b/include/audio-track-controls.html index 8036567..1d9f763 100644 --- a/include/audio-track-controls.html +++ b/include/audio-track-controls.html @@ -57,3 +57,4 @@ Allows to assign the track to an existing or a new group. For details see Track and bus groups. + diff --git a/include/audiomidi-busses-mixer-strips.html b/include/audiomidi-busses-mixer-strips.html index 2aaff98..226fea8 100644 --- a/include/audiomidi-busses-mixer-strips.html +++ b/include/audiomidi-busses-mixer-strips.html @@ -117,3 +117,4 @@ effects, can both coexist, as e.g. a "grouping" drum bus can have a send to a reverb bus, and be connected to a compressor bus.

+ diff --git a/include/aux-sends.html b/include/aux-sends.html index 5b425d7..a661578 100644 --- a/include/aux-sends.html +++ b/include/aux-sends.html @@ -108,3 +108,4 @@ panner, or to follow it. The latter could be useful for Reverb effects, or for in-ear monitor mixes delivered in stereo.

+ diff --git a/include/behringer-devices-in-mackielogic-control-mode.html b/include/behringer-devices-in-mackielogic-control-mode.html index 2a6b767..551e635 100644 --- a/include/behringer-devices-in-mackielogic-control-mode.html +++ b/include/behringer-devices-in-mackielogic-control-mode.html @@ -332,3 +332,4 @@ The surface can be broken into 8 groups of controls: X-Touch Mini MC mode layout

Missing content

+ diff --git a/include/bus-controls.html b/include/bus-controls.html index c7be8e9..3f50e56 100644 --- a/include/bus-controls.html +++ b/include/bus-controls.html @@ -19,3 +19,4 @@

For more information about the bus concept, see Understanding basic concepts.

+ diff --git a/include/cleaning-up-sessions.html b/include/cleaning-up-sessions.html index af61f2c..25220e3 100644 --- a/include/cleaning-up-sessions.html +++ b/include/cleaning-up-sessions.html @@ -85,3 +85,4 @@ permanently deleted. If a file is mistakenly destroyed this way, the user will have to rely on data recovery techniques to try getting it back.

+ diff --git a/include/common-region-edit-operations.html b/include/common-region-edit-operations.html index 18448ab..fefdc5d 100644 --- a/include/common-region-edit-operations.html +++ b/include/common-region-edit-operations.html @@ -53,3 +53,4 @@ view. Inserts the currently selected regions in the Region List at the edit point. + diff --git a/include/control-masters-mixer-strips.html b/include/control-masters-mixer-strips.html index 70c7dbb..0da1496 100644 --- a/include/control-masters-mixer-strips.html +++ b/include/control-masters-mixer-strips.html @@ -63,3 +63,4 @@ A VCA strip is made of (from top to bottom in the screenshot): multiple buttons. Disconnecting a VCA from a track is done by unchecking this VCA in the list that pops up, or clicking Unassign All to disconnect from all VCAs at once.

+ diff --git a/include/controlling-playback.html b/include/controlling-playback.html index 59123fb..5db534d 100644 --- a/include/controlling-playback.html +++ b/include/controlling-playback.html @@ -58,3 +58,4 @@

By default, looping is bound to the l key.

+ diff --git a/include/controlling-track-ordering.html b/include/controlling-track-ordering.html index e284d22..3adfffd 100644 --- a/include/controlling-track-ordering.html +++ b/include/controlling-track-ordering.html @@ -92,3 +92,4 @@ remote IDs is not possible. The master bus and monitor section can be accessed by name.

+ diff --git a/include/copy-regions.html b/include/copy-regions.html index efb7573..0f707a8 100644 --- a/include/copy-regions.html +++ b/include/copy-regions.html @@ -22,3 +22,4 @@ same exact position on the timeline as the originals is done by simply using a Middle-drag instead.

+ diff --git a/include/copying-versus-linking.html b/include/copying-versus-linking.html index 1682ce7..787bd61 100644 --- a/include/copying-versus-linking.html +++ b/include/copying-versus-linking.html @@ -52,3 +52,4 @@ General > Session > Always copy imported files. If it is enabled, linking a file will not be possible.

+ diff --git a/include/corresponding-regions-selection.html b/include/corresponding-regions-selection.html index b3f0856..f94cb25 100644 --- a/include/corresponding-regions-selection.html +++ b/include/corresponding-regions-selection.html @@ -40,3 +40,4 @@ overlap. This is much more flexible and will cover almost all of the cases that the fixed rules above might make cumbersome.

+ diff --git a/include/create-midi-tracks.html b/include/create-midi-tracks.html index 5d25b9f..dda3062 100644 --- a/include/create-midi-tracks.html +++ b/include/create-midi-tracks.html @@ -16,3 +16,4 @@ creation time the instrument that will be used in the track. The instrument in this context is any plugin that will generate audio in response to receiving MIDI.

+ diff --git a/include/creating-location-markers.html b/include/creating-location-markers.html index ee303cf..c496e80 100644 --- a/include/creating-location-markers.html +++ b/include/creating-location-markers.html @@ -27,3 +27,4 @@ clicking New Marker and using the clock widget to set its position. + diff --git a/include/creating-range-markers.html b/include/creating-range-markers.html index a6fcd27..73a902f 100644 --- a/include/creating-range-markers.html +++ b/include/creating-range-markers.html @@ -29,3 +29,4 @@

See Moving markers for more information.

+ diff --git a/include/default-keyboard-bindings.html b/include/default-keyboard-bindings.html index 52d35f4..040fe44 100644 --- a/include/default-keyboard-bindings.html +++ b/include/default-keyboard-bindings.html @@ -49,3 +49,4 @@ class="mod2n">, , etc.) differ among platforms, so different default bindings for each are provided.

+ diff --git a/include/devices-using-mackielogic-control-protocol.html b/include/devices-using-mackielogic-control-protocol.html index bd7f028..9226c0a 100644 --- a/include/devices-using-mackielogic-control-protocol.html +++ b/include/devices-using-mackielogic-control-protocol.html @@ -76,3 +76,4 @@ world uses Mackie Control Protocol. Ardour does not support HUI at this time.

+ diff --git a/include/edit-point-control.html b/include/edit-point-control.html index 3248d8e..7b2bae5 100644 --- a/include/edit-point-control.html +++ b/include/edit-point-control.html @@ -34,3 +34,4 @@ editing operations take place. It can be set to either of the following: all three choices (including the selected marker). The edit point can also be switched using the combo-selector just right of the snap/grid unit selector.

+ diff --git a/include/editing-clocks.html b/include/editing-clocks.html index 9eb82f9..8ab2158 100644 --- a/include/editing-clocks.html +++ b/include/editing-clocks.html @@ -124,3 +124,4 @@ on the clock, dragging downwards decreases it, again with a step size equal to the unit of the field where the drag began on.

+ diff --git a/include/editor-lists.html b/include/editor-lists.html index 2f91a95..d75f6b4 100644 --- a/include/editor-lists.html +++ b/include/editor-lists.html @@ -8,3 +8,4 @@ choose the list to view. The left-hand border of the list can be dragged to vary the width of the list.

+ diff --git a/include/export-dialog.html b/include/export-dialog.html index 7b2bd0b..4e9337f 100644 --- a/include/export-dialog.html +++ b/include/export-dialog.html @@ -188,3 +188,4 @@ choose to export either the region contents or the track output here in this case.

+ diff --git a/include/generic-midi-binding-maps.html b/include/generic-midi-binding-maps.html index 520c9cc..47758a2 100644 --- a/include/generic-midi-binding-maps.html +++ b/include/generic-midi-binding-maps.html @@ -387,3 +387,4 @@ bindings"> decimal numbers in the ranges 1-16, 0-127 and 0-127 respectively (the channel range may change at some point).

+ diff --git a/include/getting-more-plugins.html b/include/getting-more-plugins.html index 58772a5..688f633 100644 --- a/include/getting-more-plugins.html +++ b/include/getting-more-plugins.html @@ -130,3 +130,4 @@ AudioUnit format. These have their own installation process that tends to just work.

+ diff --git a/include/grid-controls.html b/include/grid-controls.html index e985dd9..663ff5d 100644 --- a/include/grid-controls.html +++ b/include/grid-controls.html @@ -156,3 +156,4 @@ unusable. This option should not be used in conjunction with the use any of the Region grid units.

+ diff --git a/include/import-dialog.html b/include/import-dialog.html index 8f13801..0e1c253 100644 --- a/include/import-dialog.html +++ b/include/import-dialog.html @@ -89,3 +89,4 @@ Copying versus Linking for details.

+ diff --git a/include/interchange-with-other-daws.html b/include/interchange-with-other-daws.html index c0b0c3f..ef9c838 100644 --- a/include/interchange-with-other-daws.html +++ b/include/interchange-with-other-daws.html @@ -71,3 +71,4 @@ the cost is 59 USD for the "Standard" version, and 199 USD for the "Enhanced" version).

+ diff --git a/include/latency-considerations.html b/include/latency-considerations.html index f0ac6bb..655f1b3 100644 --- a/include/latency-considerations.html +++ b/include/latency-considerations.html @@ -34,3 +34,4 @@ the digital case there will still be the A-D-A conversion latency of 1–2 ms.

+ diff --git a/include/layering-display.html b/include/layering-display.html index b90f9c2..b087385 100644 --- a/include/layering-display.html +++ b/include/layering-display.html @@ -53,3 +53,4 @@ it will end up with 10 lanes. Obviously, using a large track height works much better for this than a small one.

+ diff --git a/include/list-of-menu-actions.html b/include/list-of-menu-actions.html index acff690..221b2ae 100644 --- a/include/list-of-menu-actions.html +++ b/include/list-of-menu-actions.html @@ -743,3 +743,4 @@ Mixer/unity-gainSet Gain to 0dB on Mixer-Selected Tracks/Busses + diff --git a/include/marker-context-menu.html b/include/marker-context-menu.html index 4382965..c957f0a 100644 --- a/include/marker-context-menu.html +++ b/include/marker-context-menu.html @@ -35,3 +35,4 @@ and move it to a nearby region boundary, region sync point, or to the playhead or mouse.

+ diff --git a/include/master-bus-strip.html b/include/master-bus-strip.html index cce876f..e1876fd 100644 --- a/include/master-bus-strip.html +++ b/include/master-bus-strip.html @@ -17,3 +17,4 @@

The Master bus strip is always fixed, at the right end of the mixer, regardless of the scrolling position.

+ diff --git a/include/midi-track-controls.html b/include/midi-track-controls.html index 9c6f689..4fe3898 100644 --- a/include/midi-track-controls.html +++ b/include/midi-track-controls.html @@ -45,3 +45,4 @@

To edit the contents of a MIDI track see MIDI Editing.

+ diff --git a/include/mnemonic-bindings-for-linux.html b/include/mnemonic-bindings-for-linux.html index fad33be..6673746 100644 --- a/include/mnemonic-bindings-for-linux.html +++ b/include/mnemonic-bindings-for-linux.html @@ -344,3 +344,4 @@ set tempo (1 bar) from region(s) 9 + diff --git a/include/monitor-section.html b/include/monitor-section.html index 8c60b03..3d34d74 100644 --- a/include/monitor-section.html +++ b/include/monitor-section.html @@ -114,3 +114,4 @@ Clicking on this button shows a menu that allows quick and convenient routing of the Monitor Section's outputs to audio hardware outputs, e.g. to feed control room monitors. It also has an option to open Ardours routing matrix, where more detailed connectivity is available if routing to something other than hardware is required.

+ diff --git a/include/monitor-setup-in-ardour.html b/include/monitor-setup-in-ardour.html index 208a498..97e3385 100644 --- a/include/monitor-setup-in-ardour.html +++ b/include/monitor-setup-in-ardour.html @@ -46,3 +46,4 @@ Unarmed tracks however will always just play back their contents from disk; the live input will never be monitored.

+ diff --git a/include/monitoring.html b/include/monitoring.html index f334017..e1042b0 100644 --- a/include/monitoring.html +++ b/include/monitoring.html @@ -8,3 +8,4 @@ the input signal of all tracks that are armed for recording, and playing back the unarmed tracks.

+ diff --git a/include/mono-panner.html b/include/mono-panner.html index ddc9e31..8d7e950 100644 --- a/include/mono-panner.html +++ b/include/mono-panner.html @@ -83,3 +83,4 @@ wheel may be used as follows: or move position to the right by 5° + diff --git a/include/move-regions-with-the-mouse.html b/include/move-regions-with-the-mouse.html index 08eda36..c8a0116 100644 --- a/include/move-regions-with-the-mouse.html +++ b/include/move-regions-with-the-mouse.html @@ -34,3 +34,4 @@ same exact position on the timeline is done by simply using a Middle-drag instead.

+ diff --git a/include/moving-markers.html b/include/moving-markers.html index 31a87a0..71bd349 100644 --- a/include/moving-markers.html +++ b/include/moving-markers.html @@ -24,3 +24,4 @@ By left-dragging either end of the range marker, the other end will move by the same distance.

+ diff --git a/include/muting-and-soloing.html b/include/muting-and-soloing.html index 86822b3..5b68537 100644 --- a/include/muting-and-soloing.html +++ b/include/muting-and-soloing.html @@ -127,3 +127,4 @@ of the track; through the sends, through the control outputs (to the monitor bus) and to the main outputs.

+ diff --git a/include/navigating-the-editor.html b/include/navigating-the-editor.html index c59d6a2..02a9def 100644 --- a/include/navigating-the-editor.html +++ b/include/navigating-the-editor.html @@ -130,3 +130,4 @@
  • The third one enlarges the tracks, and is the counterpart of the previous one.
  • + diff --git a/include/newopen-session-dialog.html b/include/newopen-session-dialog.html index 515ed7f..15cbeb4 100644 --- a/include/newopen-session-dialog.html +++ b/include/newopen-session-dialog.html @@ -164,3 +164,4 @@ class="menu">CoreMIDI. On Linux, it can be changed between two legacy ALSA drivers or the (preferred) new JACK+ALSA implementation. + diff --git a/include/osc58-automation.html b/include/osc58-automation.html index 2211513..6515f08 100644 --- a/include/osc58-automation.html +++ b/include/osc58-automation.html @@ -49,3 +49,4 @@ The only difference is the last parameter is 1 for touched and 0 for touch released. All of the rest of the explanation above applies.

    + diff --git a/include/osc58-controlling-ardour-with-osc.html b/include/osc58-controlling-ardour-with-osc.html index d9e8aea..bc3d330 100644 --- a/include/osc58-controlling-ardour-with-osc.html +++ b/include/osc58-controlling-ardour-with-osc.html @@ -618,3 +618,4 @@ Any of these actions that can be moved to session->action calls may reapear. Uses edit range as punch range
    /toggle_all_rec_enables (toggles all tracks' recording state) + diff --git a/include/osc58-feedback.html b/include/osc58-feedback.html index 5054717..746344b 100644 --- a/include/osc58-feedback.html +++ b/include/osc58-feedback.html @@ -251,3 +251,4 @@ that OSC does track will show on those OSC controls. Examples of this might be track record enable for tracks 1 to 32, play or stop.

    + diff --git a/include/panning.html b/include/panning.html index deea17a..8a81a8b 100644 --- a/include/panning.html +++ b/include/panning.html @@ -39,3 +39,4 @@ In addition to the panners, Ardour has a balance control for subtle corrections to existing stereo images.

    + diff --git a/include/patch-change.html b/include/patch-change.html index 13242c8..74f648d 100644 --- a/include/patch-change.html +++ b/include/patch-change.html @@ -57,3 +57,4 @@

    Add content

    + diff --git a/include/plugin-manager.html b/include/plugin-manager.html index c6a98af..c4b00b2 100644 --- a/include/plugin-manager.html +++ b/include/plugin-manager.html @@ -56,3 +56,4 @@ Plugins can be removed from the bottom half with a double click, or, if already selected, by clicking Remove.

    + diff --git a/include/quantize-midi.html b/include/quantize-midi.html index faf85b8..f148e3b 100644 --- a/include/quantize-midi.html +++ b/include/quantize-midi.html @@ -50,3 +50,4 @@ type: every note which is considered a second note (i.e. close enough to an odd grid line as per the threshold value) will be delayed by this number of ticks.

    + diff --git a/include/region-context-menu.html b/include/region-context-menu.html index 0b0a284..f355a2b 100644 --- a/include/region-context-menu.html +++ b/include/region-context-menu.html @@ -19,3 +19,4 @@ Below these items is the rest of the Track Context Menu, which provides access to track-level operations.

    + diff --git a/include/region-naming.html b/include/region-naming.html index d51836e..0ba8d37 100644 --- a/include/region-naming.html +++ b/include/region-naming.html @@ -62,3 +62,4 @@ should not). Ardour will add a version number in the future if needed (e.g. if the region is copied or sliced).

    + diff --git a/include/renaming-a-session.html b/include/renaming-a-session.html index 96baa75..f1e8741 100644 --- a/include/renaming-a-session.html +++ b/include/renaming-a-session.html @@ -16,3 +16,4 @@ a new copy of the session folder and its contents. All it does is create a new session file.

    + diff --git a/include/rhythm-ferret.html b/include/rhythm-ferret.html index ebd531c..37365d7 100644 --- a/include/rhythm-ferret.html +++ b/include/rhythm-ferret.html @@ -167,3 +167,4 @@ right click then Selected Regions > Position > Snap position to grid.

    + diff --git a/include/ruler.html b/include/ruler.html index bf7cf02..83c66ba 100644 --- a/include/ruler.html +++ b/include/ruler.html @@ -42,3 +42,4 @@ Tempo, Bars:Beats and Timecode use are described in Tempo and Meter.

    + diff --git a/include/searching-for-files-using-tags.html b/include/searching-for-files-using-tags.html index bfc7586..aa12e26 100644 --- a/include/searching-for-files-using-tags.html +++ b/include/searching-for-files-using-tags.html @@ -39,3 +39,4 @@ will appear in the results window. Selected files can be auditioned and marked with additional tags if required.

    + diff --git a/include/select-regions.html b/include/select-regions.html index d6d2839..5ab34e8 100644 --- a/include/select-regions.html +++ b/include/select-regions.html @@ -74,3 +74,4 @@ selects it. This will do nothing for whole-file regions, since they do not exist anywhere in a playlist or track.

    + diff --git a/include/selection-and-punch-clocks.html b/include/selection-and-punch-clocks.html index 22460bf..0222e3d 100644 --- a/include/selection-and-punch-clocks.html +++ b/include/selection-and-punch-clocks.html @@ -70,3 +70,4 @@

    See Track Modes for more information.

    + diff --git a/include/session-templates.html b/include/session-templates.html index 705558f..c76cba5 100644 --- a/include/session-templates.html +++ b/include/session-templates.html @@ -24,3 +24,4 @@ See also Adding Tracks and Busses for information on templates for individual tracks or busses.

    + diff --git a/include/signal-routing.html b/include/signal-routing.html index 5b7cfb7..3fd2b50 100644 --- a/include/signal-routing.html +++ b/include/signal-routing.html @@ -40,3 +40,4 @@ is required. Ardour offers many possibilties for connecting things in the way you may need or want them.

    + diff --git a/include/snapshots.html b/include/snapshots.html index 7490b0d..3aa4d01 100644 --- a/include/snapshots.html +++ b/include/snapshots.html @@ -60,3 +60,4 @@ present. Clicking on it shows the list, and then clicking on the name of the snapshot loads it.

    + diff --git a/include/stem-exports.html b/include/stem-exports.html index 753a4e4..90ed1b2 100644 --- a/include/stem-exports.html +++ b/include/stem-exports.html @@ -9,3 +9,4 @@ This is one of the most common methods of interchange because it works between all DAWs.

    + diff --git a/include/stereo-panner.html b/include/stereo-panner.html index 784ff4f..0d3addb 100644 --- a/include/stereo-panner.html +++ b/include/stereo-panner.html @@ -247,3 +247,4 @@ some degree of comb filtering may be acceptable. Then again, it may not. Listen carefully for artefacts if you manipulate unknown stereo signals—many orchestra sample libraries for example do contain time-delay components.

    + diff --git a/include/stretching-regions.html b/include/stretching-regions.html index c1a576f..38d2663 100644 --- a/include/stretching-regions.html +++ b/include/stretching-regions.html @@ -105,3 +105,4 @@
  • For multi-tonal material (chords,…), either one of the three first choice, or the default Crisp.
  • + diff --git a/include/tempo-and-meter.html b/include/tempo-and-meter.html index 8278eb2..8205e83 100644 --- a/include/tempo-and-meter.html +++ b/include/tempo-and-meter.html @@ -147,3 +147,4 @@
  • To change a meter, double click it. A dialog will appear.
  • To copy a meter, hold down and drag it.
  • + diff --git a/include/the-edit-menu.html b/include/the-edit-menu.html index 930683f..839f4c1 100644 --- a/include/the-edit-menu.html +++ b/include/the-edit-menu.html @@ -102,3 +102,4 @@ PreferencesDisplays the Preferences panels, allowing to change Ardour's behaviour + diff --git a/include/the-loop-range.html b/include/the-loop-range.html index 1f75788..235fb24 100644 --- a/include/the-loop-range.html +++ b/include/the-loop-range.html @@ -8,3 +8,4 @@ href="@@the-ranges-and-marks-lists">Ranges & Marks list.

    + diff --git a/include/the-ranges-and-marks-lists.html b/include/the-ranges-and-marks-lists.html index 9549b57..83febb2 100644 --- a/include/the-ranges-and-marks-lists.html +++ b/include/the-ranges-and-marks-lists.html @@ -69,3 +69,4 @@ exported TOC or CUE files. This is relevant for Disk-At-Once recordings that may contain audio data between tracks. + diff --git a/include/the-region-menu.html b/include/the-region-menu.html index 430ed27..39c17d3 100644 --- a/include/the-region-menu.html +++ b/include/the-region-menu.html @@ -85,3 +85,4 @@ RemoveDeletes the region from the edit (no file is harmed in the process, and the region stays in the Editor for later use) + diff --git a/include/the-snapshot-list.html b/include/the-snapshot-list.html index 68634ca..c1f647a 100644 --- a/include/the-snapshot-list.html +++ b/include/the-snapshot-list.html @@ -6,3 +6,4 @@

    See Snapshots for more information on snapshots.

    + diff --git a/include/the-tracks-and-busses-list.html b/include/the-tracks-and-busses-list.html index 1e20c1b..52f71b2 100644 --- a/include/the-tracks-and-busses-list.html +++ b/include/the-tracks-and-busses-list.html @@ -39,3 +39,4 @@ As with the region list, hovering the mouse pointer over a column heading shows a tool-tip which can be handy to remember what the columns are for.

    + diff --git a/include/the-view-menu.html b/include/the-view-menu.html index 9d405b1..e146884 100644 --- a/include/the-view-menu.html +++ b/include/the-view-menu.html @@ -78,3 +78,4 @@ [] Show Group TabsIf checked, makes the groups visible as tabs on the left in the Editor, and on the top in the mixer [] Show Marker LinesIf checked, each marker is extended across all the tracks in the editor with a line of the same color + diff --git a/include/toolbox.html b/include/toolbox.html index 30edad0..3bfa4e5 100644 --- a/include/toolbox.html +++ b/include/toolbox.html @@ -103,3 +103,4 @@ cross-hairs. This tool acts on region gain and automation as the Draw tool.
    On a MIDI region, it allows to lasso-select multiple notes at a time. + diff --git a/include/track-and-bus-groups.html b/include/track-and-bus-groups.html index aa83103..b6bb070 100644 --- a/include/track-and-bus-groups.html +++ b/include/track-and-bus-groups.html @@ -151,3 +151,4 @@ Disable All Groups makes all groups inactive, including any hidden groups. + diff --git a/include/track-color.html b/include/track-color.html index 1a509d6..1a5ea0f 100644 --- a/include/track-color.html +++ b/include/track-color.html @@ -35,3 +35,4 @@ Group… and then clicking on the Color selector in the displayed dialog.

    + diff --git a/include/track-context-menu.html b/include/track-context-menu.html index 80c9400..6882896 100644 --- a/include/track-context-menu.html +++ b/include/track-context-menu.html @@ -57,3 +57,4 @@ operations. (un)FreezeConsolidates all the regions in the track into one frozen region which can be handled as a normal, single region. This operation can be undone at any time with the same sub-menu. + diff --git a/include/track-height.html b/include/track-height.html index a54770f..be2f1b6 100644 --- a/include/track-height.html +++ b/include/track-height.html @@ -42,3 +42,4 @@ The Visual Undo (default shortcut: Z) can be used to revert this operation.

    + diff --git a/include/track-types.html b/include/track-types.html index d6d2c59..4868677 100644 --- a/include/track-types.html +++ b/include/track-types.html @@ -127,3 +127,4 @@ preferable to leave Ardour make connections automatically, even if some changes are manually done later.

    + diff --git a/include/transport-bar.html b/include/transport-bar.html index d442818..7918644 100644 --- a/include/transport-bar.html +++ b/include/transport-bar.html @@ -101,3 +101,4 @@ Go to the Transport and Transport > Playhead to find more.

    + diff --git a/include/transport-clocks.html b/include/transport-clocks.html index 5333864..ba44829 100644 --- a/include/transport-clocks.html +++ b/include/transport-clocks.html @@ -79,3 +79,4 @@ an image of the big clock filling a screen an image of the big clock while recording + diff --git a/include/transposing-midi.html b/include/transposing-midi.html index a12d196..1a3e52a 100644 --- a/include/transposing-midi.html +++ b/include/transposing-midi.html @@ -18,3 +18,4 @@ or substract to all the notes inside the region(s), and/or for more significant changes, octaves (12 semitones).

    + diff --git a/include/using-key-bindings.html b/include/using-key-bindings.html index d1460c1..229e9c2 100644 --- a/include/using-key-bindings.html +++ b/include/using-key-bindings.html @@ -28,3 +28,4 @@ space Stop and forget capture + diff --git a/include/using-the-presonus-faderport8.html b/include/using-the-presonus-faderport8.html index fd9c2ff..e53aa54 100644 --- a/include/using-the-presonus-faderport8.html +++ b/include/using-the-presonus-faderport8.html @@ -464,3 +464,4 @@ Link and Link-Lock mode will automatically disengage when entering Sends or Edit Plugins mode.

    + diff --git a/include/vbap-panner.html b/include/vbap-panner.html index 6967d74..909ded5 100644 --- a/include/vbap-panner.html +++ b/include/vbap-panner.html @@ -80,3 +80,4 @@ the panner direction. The width parameter controls the opening angle of the distribution sector.

    + diff --git a/include/waveform-display.html b/include/waveform-display.html index 19a3d87..120a51c 100644 --- a/include/waveform-display.html +++ b/include/waveform-display.html @@ -28,3 +28,4 @@ The zero line appears at the bottom of the display and waveforms appear as absolute peaks above the line only. + diff --git a/include/whats-in-a-session.html b/include/whats-in-a-session.html index 0c02d3d..123f21d 100644 --- a/include/whats-in-a-session.html +++ b/include/whats-in-a-session.html @@ -33,3 +33,4 @@ musical tempo & meter, timecode synchronization, etc.) with one or more Tracks and Buses, and all the Regions and Plug-Ins they contain.

    + diff --git a/include/which-regions-are-affected.html b/include/which-regions-are-affected.html index f1d8b8d..f99fec7 100644 --- a/include/which-regions-are-affected.html +++ b/include/which-regions-are-affected.html @@ -41,3 +41,4 @@ edit points (Playhead,Marker) indicate a time only.

    + diff --git a/include/working-with-ardour-built-plugin-editors.html b/include/working-with-ardour-built-plugin-editors.html index e222cc3..811b627 100644 --- a/include/working-with-ardour-built-plugin-editors.html +++ b/include/working-with-ardour-built-plugin-editors.html @@ -73,3 +73,4 @@ The dB scale selector in the bottom left allows to change the vertical scale of the graphs.

    + diff --git a/include/working-with-regions.html b/include/working-with-regions.html index 17ed01d..ee521cb 100644 --- a/include/working-with-regions.html +++ b/include/working-with-regions.html @@ -51,3 +51,4 @@ class="menu">Export, Bounce and Reverse operations create new audio files).

    + diff --git a/include/zoom-controls.html b/include/zoom-controls.html index beb6114..a408ac9 100644 --- a/include/zoom-controls.html +++ b/include/zoom-controls.html @@ -32,3 +32,4 @@ according to you screen vertical size, some high number can have no effect.

    The rightmost buttons Shrink tracks and Expand tracks reduce or expand the vertical size of the selected tracks. If no track is selected, all the tracks will be shrunk or expanded each time the button is pushed. + diff --git a/master-doc.txt b/master-doc.txt index 006ffaa..b37e46a 100644 --- a/master-doc.txt +++ b/master-doc.txt @@ -238,7 +238,6 @@ uri: recording/monitoring/monitor-setup-in-ardour part: subchapter --- - --- title: Synchronization include: working-with-synchronization.html @@ -2194,7 +2193,6 @@ uri: using-control-surfaces/Presonus_FaderPort part: chapter --- - --- title: Using the PreSonus FaderPort 8 menu_title: PreSonus FaderPort 8