Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Broad changes #281

Merged
merged 12 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,6 @@ if (PARASOL_INSTALL)
if (NOT DISABLE_SSL)
install (DIRECTORY "${PROJECT_SOURCE_DIR}/data/ssl/" DESTINATION "config/ssl")
endif ()
install (DIRECTORY "${PROJECT_SOURCE_DIR}/data/users/" DESTINATION "config/users")
if (NOT DISABLE_FONT)
install (DIRECTORY "${PROJECT_SOURCE_DIR}/data/fonts/" DESTINATION "config/fonts")
endif ()
Expand All @@ -571,7 +570,6 @@ if (PARASOL_INSTALL)
if (NOT DISABLE_SSL)
install (DIRECTORY "${PROJECT_SOURCE_DIR}/data/ssl" DESTINATION "${SHARE_TARGET}/config")
endif ()
install (DIRECTORY "${PROJECT_SOURCE_DIR}/data/users" DESTINATION "${SHARE_TARGET}/config")
if (NOT DISABLE_FONT)
install (DIRECTORY "${PROJECT_SOURCE_DIR}/data/fonts" DESTINATION "${SHARE_TARGET}/config")
endif ()
Expand Down
195 changes: 0 additions & 195 deletions data/users/associations.cfg

This file was deleted.

8 changes: 0 additions & 8 deletions data/users/filesystem.cfg

This file was deleted.

12 changes: 0 additions & 12 deletions data/users/locale.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion docs/html/modules/classes/file.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

<span class="glyphicon glyphicon-minus text-muted" data-toggle="tooltip" title="Not writeable"></span></td><th class="col-md-1">Icon</th><td class="col-md-1"><span class="text-nowrap">STRING</span></td><td>Returns an icon reference that is suitable for this file in the UI.</td></tr><tr class="no-hover"><td colspan="4" class="hiddenRow"><div id="fl-Icon" class="accordion-body collapse"><div class="doc-content" style="margin:20px">
<p>This field returns the name of the best icon to use when representing the file to the user, for instance in a file list. The icon style is determined by analysing the File's <a data-toggle="tooltip" title="Specifies the location of a file or folder." href="#tf-Path">Path</a>.</p>
<p>The resulting string is returned in the format <code>icons:category/name</code> and can be opened with the <a href="picture.html">Picture</a> class.</p>
<p>The resulting string is returned in the format <code>icons:category/name</code> and will refer to an SVG file.</p>
</div></div></td></tr><tr id="_" data-toggle="collapse" data-target="#fl-Link" class="clickable"><td class="col-md-1"><a id="tf-Link"></a><span class="glyphicon glyphicon-ok text-danger" data-toggle="tooltip" title="Functional read access"></span>

<span class="glyphicon glyphicon-ok text-danger" data-toggle="tooltip" title="Functional write access"></span></td><th class="col-md-1">Link</th><td class="col-md-1"><span class="text-nowrap">STRING</span></td><td>Returns the link path for symbolically linked files.</td></tr><tr class="no-hover"><td colspan="4" class="hiddenRow"><div id="fl-Link" class="accordion-body collapse"><div class="doc-content" style="margin:20px">
Expand Down
4 changes: 4 additions & 0 deletions docs/html/modules/classes/metaclass.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@

<span class="glyphicon glyphicon-cog text-danger" data-toggle="tooltip" title="Immutable"></span></td><th class="col-md-1">Flags</th><td class="col-md-1"><span class="text-nowrap">CLF</span></td><td>Optional flag settings.</td></tr><tr class="no-hover"><td colspan="4" class="hiddenRow"><div id="fl-Flags" class="accordion-body collapse"><div class="doc-content" style="margin:20px">
<table class="table"><thead><tr><th class="col-md-1">Name</th><th>Description</th></tr></thead><tbody><tr><th class="col-md-1">CLF::INHERIT_LOCAL</th><td>Inherit the functionality of local objects defined in the class spec.</td></tr><tr><th class="col-md-1">CLF::NO_OWNERSHIP</th><td>Objects created will not be tracked to the creating process, nor any parent object (<a href="core.html?page=SetOwner">SetOwner()</a> will not work either).</td></tr></tbody></table>
</div></div></td></tr><tr id="_" data-toggle="collapse" data-target="#fl-Icon" class="clickable"><td class="col-md-1"><a id="tf-Icon"></a><span class="glyphicon glyphicon-minus text-muted" data-toggle="tooltip" title="Not readable"></span>

<span class="glyphicon glyphicon-minus text-muted" data-toggle="tooltip" title="Not writeable"></span></td><th class="col-md-1">Icon</th><td class="col-md-1"><span class="text-nowrap">CSTRING</span></td><td>Associates an icon with the file data for this class.</td></tr><tr class="no-hover"><td colspan="4" class="hiddenRow"><div id="fl-Icon" class="accordion-body collapse"><div class="doc-content" style="margin:20px">
<p>Files that belong to a class can be associated with an icon that is declared in this field. The icon string format is <code>folder/icon</code>. Valid icons are available in the icon database.</p>
</div></div></td></tr><tr id="_" data-toggle="collapse" data-target="#fl-Location" class="clickable"><td class="col-md-1"><a id="tf-Location"></a><span class="glyphicon glyphicon-ok text-success" data-toggle="tooltip" title="Direct read access"></span>

<span class="glyphicon glyphicon-minus text-muted" data-toggle="tooltip" title="Not writeable"></span></td><th class="col-md-1">Location</th><td class="col-md-1"><span class="text-nowrap">STRING</span></td><td>Returns the path from which the class binary is loaded.</td></tr><tr class="no-hover"><td colspan="4" class="hiddenRow"><div id="fl-Location" class="accordion-body collapse"><div class="doc-content" style="margin:20px">
Expand Down
Loading
Loading