mirror of
https://github.com/dyne/frei0r.git
synced 2025-12-05 22:29:59 +01:00
89 lines
4.0 KiB
HTML
89 lines
4.0 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
|
<title>frei0r: Plugin Locations</title>
|
|
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
|
<link href="tabs.css" rel="stylesheet" type="text/css">
|
|
</head><body>
|
|
<!-- Generated by Doxygen 1.5.6 -->
|
|
<script type="text/javascript">
|
|
<!--
|
|
function changeDisplayState (e){
|
|
var num=this.id.replace(/[^[0-9]/g,'');
|
|
var button=this.firstChild;
|
|
var sectionDiv=document.getElementById('dynsection'+num);
|
|
if (sectionDiv.style.display=='none'||sectionDiv.style.display==''){
|
|
sectionDiv.style.display='block';
|
|
button.src='open.gif';
|
|
}else{
|
|
sectionDiv.style.display='none';
|
|
button.src='closed.gif';
|
|
}
|
|
}
|
|
function initDynSections(){
|
|
var divs=document.getElementsByTagName('div');
|
|
var sectionCounter=1;
|
|
for(var i=0;i<divs.length-1;i++){
|
|
if(divs[i].className=='dynheader'&&divs[i+1].className=='dynsection'){
|
|
var header=divs[i];
|
|
var section=divs[i+1];
|
|
var button=header.firstChild;
|
|
if (button!='IMG'){
|
|
divs[i].insertBefore(document.createTextNode(' '),divs[i].firstChild);
|
|
button=document.createElement('img');
|
|
divs[i].insertBefore(button,divs[i].firstChild);
|
|
}
|
|
header.style.cursor='pointer';
|
|
header.onclick=changeDisplayState;
|
|
header.id='dynheader'+sectionCounter;
|
|
button.src='closed.gif';
|
|
section.id='dynsection'+sectionCounter;
|
|
section.style.display='none';
|
|
section.style.marginLeft='14px';
|
|
sectionCounter++;
|
|
}
|
|
}
|
|
}
|
|
window.onload = initDynSections;
|
|
-->
|
|
</script>
|
|
<div class="navigation" id="top">
|
|
<div class="tabs">
|
|
<ul>
|
|
<li><a href="index.html"><span>Main Page</span></a></li>
|
|
<li><a href="modules.html"><span>Modules</span></a></li>
|
|
<li><a href="classes.html"><span>Data Structures</span></a></li>
|
|
<li><a href="files.html"><span>Files</span></a></li>
|
|
<li><a href="dirs.html"><span>Directories</span></a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="contents">
|
|
<h1>Plugin Locations</h1><table border="0" cellpadding="0" cellspacing="0">
|
|
<tr><td></td></tr>
|
|
</table>
|
|
<h2><a class="anchor" name="sec_pluglocations">
|
|
Plugin Locations</a></h2>
|
|
For Unix platforms there are rules for the location of frei0r plugins.<p>
|
|
frei0r 1.x plugin files should be located in<p>
|
|
<ul>
|
|
<li>(1) /usr/lib/frei0r-1/<vendor></li><li>(2) /usr/local/lib/frei0r-1/<vendor></li><li>(3) $HOME/.frei0r-1/lib/<vendor></li></ul>
|
|
<p>
|
|
Examples:<p>
|
|
<ul>
|
|
<li>/usr/lib/frei0r-1/mob/flippo.so</li><li>/usr/lib/frei0r-1/drone/flippo.so</li><li>/usr/local/lib/frei0r-1/gephex/coma/invert0r.so</li><li>/home/martin/.frei0r-1/lib/martin/test.so</li></ul>
|
|
<p>
|
|
Like in these examples plugins should be placed in "vendor" subdirs to reduce name clashes. However, <vendor> is optional and may be left blank.<h3><a class="anchor" name="sec_order">
|
|
Plugin Loading Order</a></h3>
|
|
The application shall load plugins in the following order: 3, 2, 1. If a name clash occurs (two or more frei0r plugins with identical effect name), the plugins in directory 3 have precedence over plugins in directory 2, and those in directory 2 have precedence over plugins in directory 1.<p>
|
|
This makes it possible for users to "override" effects that are installed in system wide directories by placing plugins in their home directory.<p>
|
|
The order of loading plugins inside each of the directories 1, 2, and 3 is not defined.<h3><a class="anchor" name="sec_path">
|
|
FREI0R_PATH Environment Variable</a></h3>
|
|
If the environment variable FREI0R_PATH is defined, then it shall be considered a colon separated list of directories which replaces the default list.<p>
|
|
For example:<p>
|
|
FREI0R_PATH=/home/foo/frei0r-plugins:/usr/lib/frei0r-1:/etc/frei0r </div>
|
|
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jul 19 21:20:58 2010 for frei0r by
|
|
<a href="http://www.doxygen.org/index.html">
|
|
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
|
|
</body>
|
|
</html>
|