ECMAScript

How does the info like phone number, callerid pass from CCA to Virtual CTI driver and Siebel. Apart from configuring the drivers and profiles, driver parameters and events, commands does this require to write any script to pass the values when the agent accepts the call for screen pop.

First, I would like to point out I am not any kind of programmer. My information and terms may be inaccurate.
If I understand your question correctly, the variables are automatically passed. I wrote a PHP file to parse all the variables and dump them for me. This also helps when testing the use of variables through campaigns or project menus. You can drop this file on any web server and test it out by invoking a URL like:
http://mydomin.com/paratest.php?myvariable=123456
Make note of the *[HTTP_GET_VARS] => Array* section, *?myvariable=123456* pushed a GET Variable to the web service.
OUTPUT:
Array
[_ENV] => Array
[APACHE_PID_FILE] => /var/run/apache2.pid
[PATH] => /usr/local/bin:/usr/bin:/bin
[LANG] => C
[APACHE_RUN_GROUP] => www-data
[APACHE_RUN_USER] => www-data
[PWD] => /home/web-srvc
[HTTP_ENV_VARS] => Array
[APACHE_PID_FILE] => /var/run/apache2.pid
[PATH] => /usr/local/bin:/usr/bin:/bin
[LANG] => C
[APACHE_RUN_GROUP] => www-data
[APACHE_RUN_USER] => www-data
[PWD] => /
[HTTP_POST_VARS] => Array
[HTTP_GET_VARS] => Array
[myvariable] => 123456
CODE:
<?php
function getDefinedVars($varList, $excludeList)
$temp1 = array_values(array_diff(array_keys($varList), $excludeList));
$temp2 = array();
while (list($key, $value) = each($temp1)) {
global $$value;
$temp2[$value] = $$value;
return $temp2;
$excludeList = array('GLOBALS', '_FILES', '_COOKIE', '_POST', '_GET', 'excludeList');
//get all variables defined in current scope
$varList = get_defined_vars();
//Time to call the function
print "<pre>";
print_r(getDefinedVars($varList, $excludeList));
print "</pre>";
?>
-----

Similar Messages

  • How to retrieve the date of the itme's version using Ecmascript

    Hello, all
    I'd like to retrieve the date of minor and major versions using ecmascript. Here is my script so far.
    I am getting ID from query string in URL, then passing it to access file.
    What I don't understand is to how to instantiate Version class and loop through version to retrieve created date.
    Can someone help?
    <Sharepoint:ScriptLink name="SP.js" runat="server" OnDemand="true" localizable="false"/>
    <pre class="brush: javascript;">
    <script language="ecmascript" type="text/ecmascript">
    //Get ID of the document
    function getParameterByName(name) {
        name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
        var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
            results = regex.exec(location.search);
        return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
    var v_id = getParameterByName('ID');
    alert(v_id);
            var item;
            var list;
            var file;
            function fileMajorandMinorVersion() {
                var clientContext = SP.ClientContext.get_current();
                if (clientContext != undefined && clientContext != null) {
                    var webSite = clientContext.get_web();
                    this.list = webSite.get_lists().getByTitle("List Title");
                    this.item = list.getItemById(v_id);
                    this.file = this.item.get_file();
                    clientContext.load(this.file);
                    clientContext.executeQueryAsync(Function.createDelegate(this, this.OnLoadSuccess), Function.createDelegate(this, this.OnLoadFailed));
             function OnLoadSuccess(sender, args) {
                var version = "Major Version: " + this.file.get_majorVersion() + '\n' + "Minor Version: " + this.file.get_minorVersion();
                alert(version)
            function OnLoadFailed(sender, args) {
                alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
            </script>
    <input id="btnFileMajorandMinorVersion" onclick="fileMajorandMinorVersion()" type="button" value="File Major and Minor Version"/>
    vlad

    In order to loop through the version collection and display last version date here is the script that works for me:
    <Sharepoint:ScriptLink name="SP.js" runat="server" OnDemand="true" localizable="false"/>
    <script language="ecmascript" type="text/ecmascript">
    //Get ID of the document
    function getParameterByName(name) {
        name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
        var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
            results = regex.exec(location.search);
        return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
    var v_id = getParameterByName('ID');
    function convertShortDate(par_date) {
       var var_date = new Date(par_date);
       var day = var_date.getDate();
       var month = var_date.getMonth() + 1;
       var year = var_date.getFullYear();
       var result_date = month+'/'+day+'/'+year;
       return result_date;
            var item;
            var list;
            var file;
            var versions;
            var _version;
            function set_LastCertDate() {
                var clientContext = SP.ClientContext.get_current();
                if (clientContext != undefined && clientContext != null) {
                    var webSite = clientContext.get_web();
                    this.list = webSite.get_lists().getByTitle("Archer Pages");
                    this.item = list.getItemById(v_id);
                    this.file = this.item.get_file();
                    this.versions = this.file.get_versions()               
                    clientContext.load(this.file);
                    clientContext.load(this.versions)
                    clientContext.executeQueryAsync(Function.createDelegate(this, this.OnLoadSuccess), Function.createDelegate(this, this.OnLoadFailed));
             function OnLoadSuccess(sender, args) {
             var output = "";
             var certdate = "";
             var listItemEnumerator = this.versions.getEnumerator();
             // loop through the version items
             while (listItemEnumerator.moveNext())
              var oVersionItem = listItemEnumerator.get_current();
              certdate = oVersionItem.get_created();
              $("input[title='CertificateDate']").val(convertShortDate(certdate));
            function OnLoadFailed(sender, args) {
                alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
           document.write("<input name='Button1' type='button' value='Populate Certificate Date' onclick='set_LastCertDate()'/>");
        </script>
    vlad

  • InDesign CS3 Server - Support for Standard ECMA-357, ECMAScript for XML (E4X) Specification

    Does InDesign CS3 Server fully support the XML standards outlined by ECMA in 'Standard ECMA-357 ECMAScript for XML (E4X) Specification'?
    http://www.ecma-international.org/publications/standards/Ecma-357.htm

    Thanks Michael, for your prompt reply.
    I can see that some of the XML library/functions are available in the ExtendScript Editor - but I just wanted to make sure that I'm not missing something.
    Thanks again,
    Carl

  • Getters and Setters in ActionScript and ECMAScript

    Hi ,
    This line is taken from a book , here the Author mentions that
    In ActionScript , getters and setters is not necessary , they are a part of of the core ECMAScript language.
    Can anybody please let me know what is meant by ECMAScript language ??
    Thanks in advance .

    ECMAScript is an ECMA standard.
    Getters and setters are not mandatory (that's what they mean).
    However, they can be useful in many cases.
    - You can check the value in a setter before assigning (e.g checking if it's null)
    - You cannot override properties of a superclass but you can getters/setters just as you can methods
    - You can take some action when the value of the property is changed. There are many examples in UIComponent classes of the Flex framework.
    - You can put a breakpoint in a setter in order to debug data binding (see if it triggers)
    - In order to optimize data binding, you can write [Bindable event="YourCustomEventNameHere")] before the getter/setter and dispatch this event when the value is set so as to enhance performance of data binding (if you just write [Bindable], your properties will be processed by the framework even if their value does not change).
    Also, note how the synthax is different than Java.
    // ActionScript
    private var _myProperty:uint;
    public function get myProperty():uint
      return _myProperty;
    public function set myProperty(value:uint):void
      _myProperty = value;
    // Java
    private Integer myProperty;
    public Integer getMyProperty():
      return myProperty;
    public void setMyProperty(value:Integer):
      myProperty = value;
    Avoid creating getters/setters a la Java in ActionScript (i.e not using the get/set keywords). This is something I have seen in some implementations or auto-generated code from UML.

  • How ECMAScript enabled SVG Documnt be generated dynamically using DOM API.

    <?xml version="1.0" encoding="UTF-8"?>
    <svg height="200cm" width="200cm">
    <script type="text/ecmascript">
    <![CDATA[function rect_click(id){appletHost.getSelectedRectId(id);}]]>
    </script>
    <rect fill="none" height="1.0cm" i="5" id="B7001-09" j="0" stroke="blue" stroke-width="1" width="2.0cm" x="27.0cm" y="0.8cm" onclick="rect_click('B7001')"/>
    <rect fill="none" height="1.0cm" i="5" id="B7001-09" j="0" stroke="blue" stroke-width="1" width="2.0cm" x="27.0cm" y="0.8cm"/>
    <rect fill="none" height="1.0cm" i="5" id="B7001-09" j="0" stroke="blue" stroke-width="1" width="2.0cm" x="27.0cm" y="0.8cm"/>
    </svg>

    Sorry to ask u this question, its ver simple.
    Create CDATA Section through the document and append it to the Script Element..
    Element script = doc.createElement("script");
    script.setAttribute("type","text/ecmascript");
    script.appendChild(doc.createCDATASection("function rect_click(id){appletHost.getSelectedRectId(id);}"));
    doc.getDocumentElement().appendChild(script);
    Output inside <svg> tag::
    <script type="text/ecmascript">
    <![CDATA[function rect_click(id){appletHost.getSelectedRectId(id);}]]>
    </script>
    Rohit Joshi

  • Learning EcmaScript for Sharepoint 2010?

    Hi All,
    Are there any good resources/books to learn Ecmascript in context with Sharepoint 2010?
    Appreciate your suggestions.
    Thanks,
    Rahul Babar
    ASP.NET, C# 4.0, Sharepoint 2007/2010, Infopath 2007/2010 Developer

    Hi
    Check following URLs for SharePoint 2010 Ecmascript,Javascript Client object model Tutorial,Samples
    http://www.learningsharepoint.com/sharepoint-2010-ecmascriptjavascript-client-object-model-tutorialsamples/
    http://msdn.microsoft.com/en-us/sp2010devtrainingcourse_ecmascriptclientobjectmodel.aspx
    Please mark the replies as answers if they help or unmark if not. If you have any feedback about my replies, please contact [email protected]

  • Strange ECMAScript behaviour

    Hi,
    I got this strange exception that occurs when my function exceed certain length,
    and the error description doesn't really tell about anything, since it was referring
    to another script.
    Here's the excerpt of my script in working condition:
    function CPACCustomerFromXML(xml)
    obj = new CPACCustomer();
    if (xml.organizationID != undefined) obj.setOrganizationID(xml.organizationID);
    if (xml.customerID != undefined) obj.setCustomerID(xml.customerID);
    /* 19 similar lines omitted */
    if (xml.availableCredit != undefined) obj.setAvailableCredit(xml.availableCredit);
    if (xml.cashLine != undefined) obj.setCashLine(xml.cashLine);
    return obj;
    and if I added another line to process the new field to make the code like:
    function CPACCustomerFromXML(xml)
    obj = new CPACCustomer();
    if (xml.organizationID != undefined) obj.setOrganizationID(xml.organizationID);
    if (xml.customerID != undefined) obj.setCustomerID(xml.customerID);
    /* 19 similar lines omitted */
    if (xml.availableCredit != undefined) obj.setAvailableCredit(xml.availableCredit);
    if (xml.cashLine != undefined) obj.setCashLine(xml.cashLine);
    if (xml.availableCash != undefined) obj.setAvailableCash(xml.availableCash);
    return obj;
    It will give me the error message :
    SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode> Service Error </faultcode>
    <faultstring> Invalid request </faultstring>
    <detail> Error deserializing arguments. InvocationTargetException on 'scripts.CP0001I01'.
    </detail>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I even tried to use existing working line as the additional line and make the
    code like this:
    function CPACCustomerFromXML(xml)
    obj = new CPACCustomer();
    if (xml.organizationID != undefined) obj.setOrganizationID(xml.organizationID);
    if (xml.customerID != undefined) obj.setCustomerID(xml.customerID);
    /* 19 similar lines omitted */
    if (xml.availableCredit != undefined) obj.setAvailableCredit(xml.availableCredit);
    if (xml.cashLine != undefined) obj.setCashLine(xml.cashLine);
    if (xml.organizationID != undefined) obj.setOrganizationID(xml.organizationID);
    //same as the first line
    return obj;
    and it still give me the same exception.
    I hope someone can tell me or give me some suggestion that I can try out because
    I'm out of ideas right now.
    =yunghans

    Hello Yughans,
    I am currently working on an issue which is very similar to this.
    Can you provide more information on your hardware configuration. What is the
    platform on which you are currently testing ? What is the Service Pack
    version that you are using with WebLogic Platform.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    <Yunghans Irawan yunghans.irawan*****at****firium.com> wrote in message
    news:[email protected]...
    >
    Hi,
    I got this strange exception that occurs when my function exceed certainlength,
    and the error description doesn't really tell about anything, since it wasreferring
    to another script.
    Here's the excerpt of my script in working condition:
    function CPACCustomerFromXML(xml)
    obj = new CPACCustomer();
    if (xml.organizationID != undefined)obj.setOrganizationID(xml.organizationID);
    if (xml.customerID != undefined) obj.setCustomerID(xml.customerID);
    /* 19 similar lines omitted */
    if (xml.availableCredit != undefined)obj.setAvailableCredit(xml.availableCredit);
    if (xml.cashLine != undefined) obj.setCashLine(xml.cashLine);
    return obj;
    and if I added another line to process the new field to make the codelike:
    function CPACCustomerFromXML(xml)
    obj = new CPACCustomer();
    if (xml.organizationID != undefined)obj.setOrganizationID(xml.organizationID);
    if (xml.customerID != undefined) obj.setCustomerID(xml.customerID);
    /* 19 similar lines omitted */
    if (xml.availableCredit != undefined)obj.setAvailableCredit(xml.availableCredit);
    if (xml.cashLine != undefined) obj.setCashLine(xml.cashLine);
    if (xml.availableCash != undefined)obj.setAvailableCash(xml.availableCash);
    >
    return obj;
    It will give me the error message :
    SOAP-ENV:Envelopexmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode> Service Error </faultcode>
    <faultstring> Invalid request </faultstring>
    <detail> Error deserializing arguments. InvocationTargetException on'scripts.CP0001I01'.
    </detail>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I even tried to use existing working line as the additional line and makethe
    code like this:
    function CPACCustomerFromXML(xml)
    obj = new CPACCustomer();
    if (xml.organizationID != undefined)obj.setOrganizationID(xml.organizationID);
    if (xml.customerID != undefined) obj.setCustomerID(xml.customerID);
    /* 19 similar lines omitted */
    if (xml.availableCredit != undefined)obj.setAvailableCredit(xml.availableCredit);
    if (xml.cashLine != undefined) obj.setCashLine(xml.cashLine);
    if (xml.organizationID != undefined)obj.setOrganizationID(xml.organizationID);
    //same as the first line
    return obj;
    and it still give me the same exception.
    I hope someone can tell me or give me some suggestion that I can try outbecause
    I'm out of ideas right now.
    =yunghans

  • Ecmascript script to use bean

    I have a jsp with svg that uses a bean. The jsp need to handle some mouse events. How can my onclick event use a bean.
    I have the business logic (computation from the current mouse location and database access) done in the bean already. Just want the onclick event to display the results from my bean.
    Thanks in advance for any help.

    Hi,
    This forum is exclusively for discussions related to Sun Java Studio Creator.
    Please do post your queries in the appropriate forum. Possibly at:
    http://forum.java.sun.com/forum.jspa?forumID=45
    Since the javascript is on the client side to call the bean you would have to submit the page and handle it in your servlet.
    Hope that helps
    Cheers
    Giri

  • Problem With httpd.conf and mod_rewrite rules Apache 2.2

    I have some RewriteRules that are working on my Leopard Client Apache 2.2 machine - but when I try to implement them on Leopard Server Apache 2.2, they don't work. I don't get any errors, they just won't execute.
    Could somebody with Leopard Server help me out using the below info?
    Here are the rules I am trying to add: (below is the httpd.conf file)
    ======RULES========
    RewriteEngine On
    Options +FollowSymLinks
    RewriteRule ^(.+)/$ http://%{HTTP_HOST}$1 [R=301, L]
    # Remove ".php"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.php(.*)\ HTTP
    RewriteRule (.+)\.php(.*)$ $1$2 [R, L]
    # Remove ".asp"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.asp(.*)\ HTTP
    RewriteRule (.+)\.asp(.*)$ $1$2 [R, L]
    # Remove ".aspx"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.aspx(.*)\ HTTP
    RewriteRule (.+)\.aspx(.*)$ $1$2 [R, L]
    # Remove ".htm" and ".html"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.htm.(.)\ HTTP
    RewriteRule (.+)\.htm.(.)$ $1$2 [R, L]
    # Remove ".cfm"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.cfm(.*)\ HTTP
    RewriteRule (.+)\.cfm(.*)$ $1$2 [R, L]
    # Remove ".bak"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.bak(.*)\ HTTP
    RewriteRule (.+)\.bak(.*)$ $1$2 [R, L]
    # Remove ".inc"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.inc(.*)\ HTTP
    RewriteRule (.+)\.inc(.*)$ $1$2 [R, L]
    # Remove ".*"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\..(.)\ HTTP
    RewriteRule (.+)\..(.)$ $1$2 [R, L]
    =====RULES============
    =========HTTPD.CONF=============
    #### Default httpd.conf for Mac OS X Server, Apache 2.2
    #### This httpd.conf differs from the httpd.conf distributed
    #### with Apache and the httpd.conf present on Mac OS X.
    #### Feel free to edit this; the Server Admin app also edits this file but will
    #### respect your changes unless noted below. See also ReadMe.txt.
    ## ServerRoot: The top of the directory tree under which the server's
    ## configuration, error, and log files are kept.
    ## NOTE! If you intend to place this on an NFS (or otherwise network)
    ## mounted filesystem then please read the LockFile documentation
    ## (available at <URL:<a class="jive-link-external-small" href="http://">http://www.apache.org/docs/mod/core.html#lockfile>);
    ## you will save yourself a lot of trouble.
    ## Do NOT add a slash at the end of the directory path.
    ServerRoot "/usr"
    ## PidFile: The file in which the server should record its process
    ## identification number when it starts.
    PidFile /var/run/httpd.pid
    ## ScoreBoardFile: File used to store internal server process information.
    ## Not all architectures require this. But if yours does (you'll know because
    ## this file will be created when you run Apache) then you must ensure that
    ## no two invocations of Apache share the same scoreboard file.
    #ScoreBoardFile "/var/run/apache2runtimestatus"
    ## Server-pool size regulation. Rather than making you guess how many
    ## server processes you need, Apache dynamically adapts to the load it
    ## sees --- that is, it tries to maintain enough server processes to
    ## handle the current load, plus a few spare servers to handle transient
    ## load spikes (e.g., multiple simultaneous requests from a single
    ## Netscape browser).
    ## It does this by periodically checking how many servers are waiting
    ## for a request. If there are fewer than MinSpareServers, it creates
    ## a new spare. If there are more than MaxSpareServers, some of the
    ## spares die off. The default values are probably OK for most sites.
    MinSpareServers 1
    MaxSpareServers 1
    ## Number of servers to start initially --- should be a reasonable ballpark
    ## figure.
    StartServers 1
    ## MaxRequestsPerChild: the number of requests each child process is
    ## allowed to process before the child dies. The child will exit so
    ## as to avoid problems after prolonged use when Apache (and maybe the
    ## libraries it uses) leak memory or other resources. On most systems, this
    ## isn't really needed, but a few (such as Solaris) do have notable leaks
    ## in the libraries. For these platforms, set to something like 10000
    ## or so; a setting of 0 means unlimited.
    ## NOTE: This value does not include keepalive requests after the initial
    ## request per connection. For example, if a child process handles
    ## an initial request and 10 subsequent "keptalive" requests, it
    ## would only count as 1 request towards this limit.
    MaxRequestsPerChild 100000
    ## Dynamic Shared Object (DSO) Support
    ## To be able to use the functionality of a module which was built as a DSO you
    ## have to place corresponding `LoadModule' lines at this location so the
    ## directives contained in it are actually available before they are used.
    ## Please read the file http://httpd.apache.org/docs/dso.html for more
    ## details about the DSO mechanism and run `httpd -l' for the list of already
    ## built-in (statically linked and thus always available) modules in your httpd
    ## binary.
    ## Note: The order in which modules are loaded is important. Don't change
    ## the order below without expert advice.
    ## Example:
    ## LoadModule foo_module libexec/mod_foo.so
    #### For Mac OS X Server: Note that the Server Admin application
    #### and the apxs utility enable and disable modules
    #### by removing and adding a comment character.
    LoadModule authnfilemodule libexec/apache2/modauthnfile.so
    #LoadModule authndbmmodule libexec/apache2/modauthndbm.so
    #LoadModule authnanonmodule libexec/apache2/modauthnanon.so
    #LoadModule authndbdmodule libexec/apache2/modauthndbd.so
    #LoadModule authndefaultmodule libexec/apache2/modauthndefault.so
    LoadModule authzhostmodule libexec/apache2/modauthzhost.so
    #LoadModule authzgroupfilemodule libexec/apache2/modauthzgroupfile.so
    #LoadModule authzusermodule libexec/apache2/modauthzuser.so
    #LoadModule authzdbmmodule libexec/apache2/modauthzdbm.so
    #LoadModule authzownermodule libexec/apache2/modauthzowner.so
    #LoadModule authzdefaultmodule libexec/apache2/modauthzdefault.so
    #LoadModule authbasicmodule libexec/apache2/modauthbasic.so
    #LoadModule authdigest_applemodule libexec/apache2/modauth_digestapple.so
    LoadModule cache_module libexec/apache2/mod_cache.so
    LoadModule memcachemodule libexec/apache2/modmemcache.so
    LoadModule diskcachemodule libexec/apache2/moddiskcache.so
    #LoadModule dbd_module libexec/apache2/mod_dbd.so
    LoadModule dumpio_module libexec/apache2/mod_dumpio.so
    LoadModule extfiltermodule libexec/apache2/modextfilter.so
    LoadModule include_module libexec/apache2/mod_include.so
    LoadModule filter_module libexec/apache2/mod_filter.so
    LoadModule deflate_module libexec/apache2/mod_deflate.so
    LoadModule logconfigmodule libexec/apache2/modlogconfig.so
    LoadModule logio_module libexec/apache2/mod_logio.so
    LoadModule env_module libexec/apache2/mod_env.so
    LoadModule expires_module libexec/apache2/mod_expires.so
    LoadModule headers_module libexec/apache2/mod_headers.so
    LoadModule ident_module libexec/apache2/mod_ident.so
    LoadModule setenvif_module libexec/apache2/mod_setenvif.so
    LoadModule proxy_module libexec/apache2/mod_proxy.so
    #LoadModule proxyconnectmodule libexec/apache2/modproxyconnect.so
    #LoadModule proxyftpmodule libexec/apache2/modproxyftp.so
    LoadModule proxyhttpmodule libexec/apache2/modproxyhttp.so
    #LoadModule proxyajpmodule libexec/apache2/modproxyajp.so
    LoadModule proxybalancermodule libexec/apache2/modproxybalancer.so
    LoadModule ssl_module libexec/apache2/mod_ssl.so
    LoadModule mime_module libexec/apache2/mod_mime.so
    #LoadModule mimemagicmodule libexec/apache2/modmimemagic.so
    #LoadModule dav_module libexec/apache2/mod_dav.so
    LoadModule status_module libexec/apache2/mod_status.so
    LoadModule autoindex_module libexec/apache2/mod_autoindex.so
    LoadModule asis_module libexec/apache2/mod_asis.so
    LoadModule info_module libexec/apache2/mod_info.so
    LoadModule cgi_module libexec/apache2/mod_cgi.so
    #LoadModule davfsmodule libexec/apache2/moddavfs.so
    LoadModule vhostaliasmodule libexec/apache2/modvhostalias.so
    LoadModule negotiation_module libexec/apache2/mod_negotiation.so
    LoadModule dir_module libexec/apache2/mod_dir.so
    LoadModule imagemap_module libexec/apache2/mod_imagemap.so
    LoadModule actions_module libexec/apache2/mod_actions.so
    LoadModule speling_module libexec/apache2/mod_speling.so
    LoadModule userdir_module libexec/apache2/mod_userdir.so
    LoadModule alias_module libexec/apache2/mod_alias.so
    LoadModule rewrite_module libexec/apache2/mod_rewrite.so
    #LoadModule php5_module libexec/apache2/libphp5.so
    #LoadModule encoding_module libexec/apache2/mod_encoding.so
    #LoadModule jk_module libexec/apache2/mod_jk.so
    #LoadModule applespotlightmodule libexec/apache2/modspotlightapple.so
    #LoadModule bonjour_module libexec/apache2/mod_bonjour.so
    LoadModule appleauthmodule libexec/apache2/modauthapple.so
    LoadModule spnegoauthmodule libexec/apache2/modspnegoapple.so
    LoadModule appledigestmodule libexec/apache2/moddigestapple.so
    LoadModule hfsapplemodule libexec/apache2/modhfsapple.so
    #LoadModule fastcgi_module libexec/apache2/mod_fastcgi.so
    #LoadModule scgipubsubmodule libexec/apache2/modscgipubsub.so
    #LoadModule davsvnmodule libexec/apache2/moddavsvn.so
    #LoadModule authzsvnmodule libexec/apache2/modauthzsvn.so
    ## If you wish httpd to run as a different user or group, you must run
    ## httpd as root initially and it will switch.
    ## User/Group: The name (or #number) of the user/group to run httpd as.
    ## It is usually good practice to create a dedicated user and group for
    ## running httpd, as with most system services.
    User www
    Group www
    ## Each directory to which Apache has access, can be configured with respect
    ## to which services and features are allowed and/or disabled in that
    ## directory (and its subdirectories).
    ## First, we configure the "default" to be a very restrictive set of
    ## features.
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    </Directory>
    ## UserDir: The name of the directory which is appended onto a user's home
    ## directory if a ~user request is received.
    #### For Mac OS X Server: Note that
    #### personal websharing is not supported on Mac OS X Server.
    <IfModule mod_userdir.c>
    UserDir Sites
    </IfModule>
    ## AccessFileName: The name of the file to look for in each directory
    ## for access control information.
    AccessFileName .htaccess
    ## The following lines prevent .htaccess files from being viewed by
    ## Web clients.
    #### For Mac OS X Server: Note the case-insensitive pattern, which protects
    #### .htaccess fils on HFS volumes.
    #### (Note: Denying .DS_S* may interfere with Finder WebDAV operation)
    <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
    Order allow,deny
    Deny from all
    Satisfy All
    </Files>
    #### Block attempts to circumvent access controls by requesting forks.
    <Files "rsrc">
    Order allow,deny
    Deny from all
    Satisfy All
    </Files>
    <DirectoryMatch ".*\.\.namedfork">
    Order allow,deny
    Deny from all
    Satisfy All
    </DirectoryMatch>
    ## DefaultType is the default MIME type the server will use for a document
    ## if it cannot otherwise determine one, such as from filename extensions.
    ## If your server contains mostly text or HTML documents, "text/plain" is
    ## a good value. If most of your content is binary, such as applications
    ## or images, you may want to use "application/octet-stream" instead to
    ## keep browsers from trying to display binary files as though they are
    ## text.
    DefaultType text/plain
    <IfModule mod_mime.c>
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    TypesConfig /dev/null
    #AddType application/x-gzip .tgz
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    # Filters allow you to process content before it is sent to the client.
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #AddOutputFilter INCLUDES .shtml
    ## Although mod_mime may support several extensions following a single
    ## mime type (ex: "AddType video/quicktime qt mov"), the parser used
    ## by the Server Admin application expects only one extension per line.
    AddHandler send-as-is asis
    AddHandler cgi-script cgi
    AddHandler fastcgi-script fcgi
    AddHandler imap-file map
    AddHandler server-parsed shtml
    AddHandler type-map var
    AddHandler spotlight-search spotlight
    AddType application/andrew-inset ez
    AddType application/atom+xml atom
    AddType application/atomcat+xml atomcat
    AddType application/atomsvc+xml atomsvc
    AddType application/ccxml+xml ccxml
    AddType application/davmount+xml davmount
    AddType application/ecmascript ecma
    AddType application/font-tdpfr pfr
    AddType application/hyperstudio stk
    AddType application/javascript js
    AddType application/json json
    AddType application/mac-binhex40 hqx
    AddType application/mac-compactpro cpt
    AddType application/marc mrc
    AddType application/mathematica ma
    AddType application/mathematica mb
    AddType application/mathematica nb
    AddType application/mathml+xml mathml
    AddType application/mbox mbox
    AddType application/mediaservercontrol+xml mscml
    AddType application/mp4 mp4s
    AddType application/msword doc
    AddType application/msword dot
    AddType application/mxf mxf
    AddType application/octet-stream bin
    AddType application/octet-stream bpk
    AddType application/octet-stream class
    AddType application/octet-stream dist
    AddType application/octet-stream distz
    AddType application/octet-stream dmg
    AddType application/octet-stream dms
    AddType application/octet-stream dump
    AddType application/octet-stream elc
    AddType application/octet-stream iso
    AddType application/octet-stream lha
    AddType application/octet-stream lzh
    AddType application/octet-stream scpt
    AddType application/octet-stream so
    AddType application/oda oda
    AddType application/ogg ogg
    AddType application/pdf pdf
    AddType application/pgp-encrypted pgp
    AddType application/pgp-signature asc
    AddType application/pgp-signature sig
    AddType application/pics-rules prf
    AddType application/pkcs10 p10
    AddType application/pkcs7-mime p7c
    AddType application/pkcs7-mime p7m
    AddType application/pkcs7-signature p7s
    AddType application/pkix-cert cer
    AddType application/pkix-crl crl
    AddType application/pkix-pkipath pkipath
    AddType application/pkixcmp pki
    AddType application/pls+xml pls
    AddType application/postscript ai
    AddType application/postscript eps
    AddType application/postscript ps
    AddType application/prs.cww cww
    AddType application/rdf+xml rdf
    AddType application/reginfo+xml rif
    AddType application/relax-ng-compact-syntax rnc
    AddType application/resource-lists+xml rl
    AddType application/rls-services+xml rs
    AddType application/rsd+xml rsd
    AddType application/rss+xml rss
    AddType application/rtf rtf
    AddType application/sbml+xml sbml
    AddType application/sdp sdp
    AddType application/set-payment-initiation setpay
    AddType application/set-registration-initiation setreg
    AddType application/shf+xml shf
    AddType application/smil+xml smi
    AddType application/smil+xml smil
    AddType application/srgs gram
    AddType application/srgs+xml grxml
    AddType application/ssml+xml ssml
    AddType application/vnd.3gpp.pic-bw-large plb
    AddType application/vnd.3gpp.pic-bw-small psb
    AddType application/vnd.3gpp.pic-bw-var pvb
    AddType application/vnd.3m.post-it-notes pwn
    AddType application/vnd.accpac.simply.aso aso
    AddType application/vnd.accpac.simply.imp imp
    AddType application/vnd.acucobol acu
    AddType application/vnd.acucorp acutc
    AddType application/vnd.acucorp atc
    AddType application/vnd.adobe.xdp+xml xdp
    AddType application/vnd.adobe.xfdf xfdf
    AddType application/vnd.amiga.ami ami
    AddType application/vnd.anser-web-certificate-issue-initiation cii
    AddType application/vnd.anser-web-funds-transfer-initiation fti
    AddType application/vnd.antix.game-component atx
    AddType application/vnd.apple.installer+xml mpkg
    AddType application/vnd.apple.installer+xml pkg
    AddType application/vnd.audiograph aep
    AddType application/vnd.blueice.multipass mpm
    AddType application/vnd.bmi bmi
    AddType application/vnd.businessobjects rep
    AddType application/vnd.chemdraw+xml cdxml
    AddType application/vnd.chipnuts.karaoke-mmd mmd
    AddType application/vnd.cinderella cdy
    AddType application/vnd.claymore cla
    AddType application/vnd.clonk.c4group c4d
    AddType application/vnd.clonk.c4group c4f
    AddType application/vnd.clonk.c4group c4g
    AddType application/vnd.clonk.c4group c4p
    AddType application/vnd.clonk.c4group c4u
    AddType application/vnd.commonspace csp
    AddType application/vnd.commonspace cst
    AddType application/vnd.contact.cmsg cdbcmsg
    AddType application/vnd.cosmocaller cmc
    AddType application/vnd.crick.clicker clkx
    AddType application/vnd.crick.clicker.keyboard clkk
    AddType application/vnd.crick.clicker.palette clkp
    AddType application/vnd.crick.clicker.template clkt
    AddType application/vnd.crick.clicker.wordbank clkw
    AddType application/vnd.criticaltools.wbs+xml wbs
    AddType application/vnd.ctc-posml pml
    AddType application/vnd.cups-ppd ppd
    AddType application/vnd.curl curl
    AddType application/vnd.data-vision.rdz rdz
    AddType application/vnd.denovo.fcselayout-link fe_launch
    AddType application/vnd.dna dna
    AddType application/vnd.dolby.mlp mlp
    AddType application/vnd.dpgraph dpg
    AddType application/vnd.dreamfactory dfac
    AddType application/vnd.ecowin.chart mag
    AddType application/vnd.enliven nml
    AddType application/vnd.epson.esf esf
    AddType application/vnd.epson.msf msf
    AddType application/vnd.epson.quickanime qam
    AddType application/vnd.epson.salt slt
    AddType application/vnd.epson.ssf ssf
    AddType application/vnd.eszigno3+xml es3 et3
    AddType application/vnd.ezpix-album ez2
    AddType application/vnd.ezpix-package ez3
    AddType application/vnd.fdf fdf
    AddType application/vnd.flographit gph
    AddType application/vnd.fluxtime.clip ftc
    AddType application/vnd.framemaker fm
    AddType application/vnd.framemaker frame
    AddType application/vnd.framemaker maker
    AddType application/vnd.frogans.fnc fnc
    AddType application/vnd.frogans.ltf ltf
    AddType application/vnd.fsc.weblaunch fsc
    AddType application/vnd.fujitsu.oasys oas
    AddType application/vnd.fujitsu.oasys2 oa2
    AddType application/vnd.fujitsu.oasys3 oa3
    AddType application/vnd.fujitsu.oasysgp fg5
    AddType application/vnd.fujitsu.oasysprs bh2
    AddType application/vnd.fujixerox.ddd ddd
    AddType application/vnd.fujixerox.docuworks xdw
    AddType application/vnd.fujixerox.docuworks.binder xbd
    AddType application/vnd.fuzzysheet fzs
    AddType application/vnd.genomatix.tuxedo txd
    AddType application/vnd.google-earth.kml+xml kml
    AddType application/vnd.google-earth.kmz kmz
    AddType application/vnd.grafeq gqf
    AddType application/vnd.grafeq gqs
    AddType application/vnd.groove-account gac
    AddType application/vnd.groove-help ghf
    AddType application/vnd.groove-identity-message gim
    AddType application/vnd.groove-injector grv
    AddType application/vnd.groove-tool-message gtm
    AddType application/vnd.groove-tool-template tpl
    AddType application/vnd.groove-vcard vcg
    AddType application/vnd.handheld-entertainment+xml zmm
    AddType application/vnd.hbci hbci
    AddType application/vnd.hhe.lesson-player les
    AddType application/vnd.hp-hpgl hpgl
    AddType application/vnd.hp-hpid hpid
    AddType application/vnd.hp-hps hps
    AddType application/vnd.hp-jlyt jlt
    AddType application/vnd.hp-pcl pcl
    AddType application/vnd.hp-pclxl pclxl
    AddType application/vnd.hzn-3d-crossword x3d
    AddType application/vnd.ibm.minipay mpy
    AddType application/vnd.ibm.modcap afp
    AddType application/vnd.ibm.modcap list3820
    AddType application/vnd.ibm.modcap listafp
    AddType application/vnd.ibm.rights-management irm
    AddType application/vnd.ibm.secure-container sc
    AddType application/vnd.igloader igl
    AddType application/vnd.immervision-ivp ivp
    AddType application/vnd.immervision-ivu ivu
    AddType application/vnd.intercon.formnet xpw
    AddType application/vnd.intercon.formnet xpx
    AddType application/vnd.intu.qbo qbo
    AddType application/vnd.intu.qfx qfx
    AddType application/vnd.ipunplugged.rcprofile rcprofile
    AddType application/vnd.irepository.package+xml irp
    AddType application/vnd.is-xpr xpr
    AddType application/vnd.jam jam
    AddType application/vnd.jcp.javame.midlet-rms rms
    AddType application/vnd.jisp jisp
    AddType application/vnd.kahootz ktr
    AddType application/vnd.kahootz ktz
    AddType application/vnd.kde.karbon karbon
    AddType application/vnd.kde.kchart chrt
    AddType application/vnd.kde.kformula kfo
    AddType application/vnd.kde.kivio flw
    AddType application/vnd.kde.kontour kon
    AddType application/vnd.kde.kpresenter kpr
    AddType application/vnd.kde.kpresenter kpt
    AddType application/vnd.kde.kspread ksp
    AddType application/vnd.kde.kword kwd
    AddType application/vnd.kde.kword kwt
    AddType application/vnd.kenameaapp htke
    AddType application/vnd.kidspiration kia
    AddType application/vnd.kinar kne
    AddType application/vnd.kinar knp
    AddType application/vnd.koan skd
    AddType application/vnd.koan skm
    AddType application/vnd.koan skp
    AddType application/vnd.koan skt
    AddType application/vnd.llamagraphics.life-balance.desktop lbd
    AddType application/vnd.llamagraphics.life-balance.exchange+xml lbe
    AddType application/vnd.lotus-1-2-3 123
    AddType application/vnd.lotus-approach apr
    AddType application/vnd.lotus-freelance pre
    AddType application/vnd.lotus-notes nsf
    AddType application/vnd.lotus-organizer org
    AddType application/vnd.lotus-screencam scm
    AddType application/vnd.lotus-wordpro lwp
    AddType application/vnd.macports.portpkg portpkg
    AddType application/vnd.mcd mcd
    AddType application/vnd.medcalcdata mc1
    AddType application/vnd.mediastation.cdkey cdkey
    AddType application/vnd.mfer mwf
    AddType application/vnd.mfmp mfm
    AddType application/vnd.micrografx.flo flo
    AddType application/vnd.micrografx.igx igx
    AddType application/vnd.mif mif
    AddType application/vnd.mobius.daf daf
    AddType application/vnd.mobius.dis dis
    AddType application/vnd.mobius.mbk mbk
    AddType application/vnd.mobius.mqy mqy
    AddType application/vnd.mobius.msl msl
    AddType application/vnd.mobius.plc plc
    AddType application/vnd.mobius.txf txf
    AddType application/vnd.mophun.application mpn
    AddType application/vnd.mophun.certificate mpc
    AddType application/vnd.mozilla.xul+xml xul
    AddType application/vnd.ms-artgalry cil
    AddType application/vnd.ms-asf asf
    AddType application/vnd.ms-cab-compressed cab
    AddType application/vnd.ms-excel xla
    AddType application/vnd.ms-excel xlc
    AddType application/vnd.ms-excel xlm
    AddType application/vnd.ms-excel xls
    AddType application/vnd.ms-excel xlt
    AddType application/vnd.ms-excel xlw
    AddType application/vnd.ms-fontobject eot
    AddType application/vnd.ms-htmlhelp chm
    AddType application/vnd.ms-ims ims
    AddType application/vnd.ms-lrm lrm
    AddType application/vnd.ms-powerpoint pot
    AddType application/vnd.ms-powerpoint pps
    AddType application/vnd.ms-powerpoint ppt
    AddType application/vnd.ms-project mpp
    AddType application/vnd.ms-project mpt
    AddType application/vnd.ms-works wcm
    AddType application/vnd.ms-works wdb
    AddType application/vnd.ms-works wks
    AddType application/vnd.ms-works wps
    AddType application/vnd.ms-wpl wpl
    AddType application/vnd.ms-xpsdocument xps
    AddType application/vnd.mseq mseq
    AddType application/vnd.musician mus
    AddType application/vnd.neurolanguage.nlu nlu
    AddType application/vnd.noblenet-directory nnd
    AddType application/vnd.noblenet-sealer nns
    AddType application/vnd.noblenet-web nnw
    AddType application/vnd.nokia.n-gage.data ngdat
    AddType application/vnd.nokia.n-gage.symbian.install n-gage
    AddType application/vnd.nokia.radio-preset rpst
    AddType application/vnd.nokia.radio-presets rpss
    AddType application/vnd.novadigm.edm edm
    AddType application/vnd.novadigm.edx edx
    AddType application/vnd.novadigm.ext ext
    AddType application/vnd.oasis.opendocument.chart odc
    AddType application/vnd.oasis.opendocument.chart-template otc
    AddType application/vnd.oasis.opendocument.formula odf
    AddType application/vnd.oasis.opendocument.formula-template otf
    AddType application/vnd.oasis.opendocument.graphics odg
    AddType application/vnd.oasis.opendocument.graphics-template otg
    AddType application/vnd.oasis.opendocument.image odi
    AddType application/vnd.oasis.opendocument.image-template oti
    AddType application/vnd.oasis.opendocument.presentation odp
    AddType application/vnd.oasis.opendocument.presentation-template otp
    AddType application/vnd.oasis.opendocument.spreadsheet ods
    AddType application/vnd.oasis.opendocument.spreadsheet-template ots
    AddType application/vnd.oasis.opendocument.text odt
    AddType application/vnd.oasis.opendocument.text-master otm
    AddType application/vnd.oasis.opendocument.text-template ott
    AddType application/vnd.oasis.opendocument.text-web oth
    AddType application/vnd.olpc-sugar xo
    AddType application/vnd.oma.dd2+xml dd2
    AddType application/vnd.openofficeorg.extension oxt
    AddType application/vnd.osgi.dp dp
    AddType application/vnd.palm oprc
    AddType application/vnd.palm pdb
    AddType application/vnd.palm pqa
    AddType application/vnd.palm prc
    AddType application/vnd.pg.format str
    AddType application/vnd.pg.osasli ei6
    AddType application/vnd.picsel efif
    AddType application/vnd.pocketlearn plf
    AddType application/vnd.powerbuilder6 pbd
    AddType application/vnd.previewsystems.box box
    AddType application/vnd.proteus.magazine mgz
    AddType application/vnd.publishare-delta-tree qps
    AddType application/vnd.pvi.ptid1 ptid
    AddType application/vnd.quark.quarkxpress qwd
    AddType application/vnd.quark.quarkxpress qwt
    AddType application/vnd.quark.quarkxpress qxb
    AddType application/vnd.quark.quarkxpress qxd
    AddType application/vnd.quark.quarkxpress qxl
    AddType application/vnd.quark.quarkxpress qxt
    AddType application/vnd.recordare.musicxml mxl
    # AddType application/vnd.rn-realmedia rm
    AddType application/vnd.seemail see
    AddType application/vnd.sema sema
    AddType application/vnd.semd semd
    AddType application/vnd.semf semf
    AddType application/vnd.shana.informed.formdata ifm
    AddType application/vnd.shana.informed.formtemplate itp
    AddType application/vnd.shana.informed.interchange iif
    AddType application/vnd.shana.informed.package ipk
    AddType application/vnd.simtech-mindmapper twd
    AddType application/vnd.simtech-mindmapper twds
    AddType application/vnd.smaf mmf
    AddType application/vnd.solent.sdkm+xml sdkd
    AddType application/vnd.solent.sdkm+xml sdkm
    AddType application/vnd.spotfire.dxp dxp
    AddType application/vnd.spotfire.sfs sfs
    AddType application/vnd.sus-calendar sus
    AddType application/vnd.sus-calendar susp
    AddType application/vnd.svd svd
    AddType application/vnd.syncml+xml xsm
    AddType application/vnd.syncml.dm+wbxml bdm
    AddType application/vnd.syncml.dm+xml xdm
    AddType application/vnd.tao.intent-module-archive tao
    AddType application/vnd.tmobile-livetv tmo
    AddType application/vnd.trid.tpt tpt
    AddType application/vnd.triscape.mxs mxs
    AddType application/vnd.trueapp tra
    AddType application/vnd.ufdl ufd
    AddType application/vnd.ufdl ufdl
    AddType application/vnd.uiq.theme utz
    AddType application/vnd.umajin umj
    AddType application/vnd.unity unityweb
    AddType application/vnd.uoml+xml uoml
    AddType application/vnd.vcx vcx
    AddType application/vnd.visio vsd
    AddType application/vnd.visio vss
    AddType application/vnd.visio vst
    AddType application/vnd.visio vsw
    AddType application/vnd.visionary vis
    AddType application/vnd.vsf vsf
    AddType application/vnd.wap.wbxml wbxml
    AddType application/vnd.wap.wmlc wmlc
    AddType application/vnd.wap.wmlscriptc wmlsc
    AddType application/vnd.webturbo wtb
    AddType application/vnd.wordperfect wpd
    AddType application/vnd.wqd wqd
    AddType application/vnd.wt.stf stf
    AddType application/vnd.xara xar
    AddType application/vnd.xfdl xfdl
    AddType application/vnd.yamaha.hv-dic hvd
    AddType application/vnd.yamaha.hv-script hvs
    AddType application/vnd.yamaha.hv-voice hvp
    AddType application/vnd.yamaha.smaf-audio saf
    AddType application/vnd.yamaha.smaf-phrase spf
    AddType application/vnd.yellowriver-custom-menu cmp
    AddType application/vnd.zzazz.deck+xml zaz
    AddType application/voicexml+xml vxml
    AddType application/winhlp hlp
    AddType application/wsdl+xml wsdl
    AddType application/wspolicy+xml wspolicy
    AddType application/x-ace-compressed ace
    AddType application/x-bcpio bcpio
    AddType application/x-bittorrent torrent
    AddType application/x-bzip bz
    AddType application/x-bzip2 boz
    AddType application/x-bzip2 bz2
    AddType application/x-cdlink vcd
    AddType application/x-chat chat
    AddType application/x-chess-pgn pgn
    AddType application/x-cpio cpio
    AddType application/x-csh csh
    AddType application/x-director dcr
    AddType application/x-director dir
    AddType application/x-director dxr
    AddType application/x-director fgd
    AddType application/x-dvi dvi
    AddType application/x-futuresplash spl
    AddType application/x-gtar gtar
    AddType application/x-hdf hdf
    AddType application/x-httpd-php php
    AddType application/x-httpd-php-source phps
    AddType application/x-httpd-php3 php3
    AddType application/x-java-jnlp-file jnlp
    AddType application/x-latex latex
    AddType application/x-ms-wmd wmd
    AddType application/x-ms-wmz wmz
    AddType application/x-msaccess mdb
    AddType application/x-msbinder obd
    AddType application/x-mscardfile crd
    AddType application/x-msclip clp
    AddType application/x-msdownload bat
    AddType application/x-msdownload com
    AddType application/x-msdownload dll
    AddType application/x-msdownload exe
    AddType application/x-msdownload msi
    AddType application/x-msmediaview m13
    AddType application/x-msmediaview m14
    AddType application/x-msmediaview mvb
    AddType application/x-msmetafile wmf
    AddType application/x-msmoney mny
    AddType application/x-mspublisher pub
    AddType application/x-msschedule scd
    AddType application/x-msterminal trm
    AddType application/x-mswrite wri
    AddType application/x-netcdf cdf
    AddType application/x-netcdf nc
    AddType application/x-pkcs12 p12
    AddType application/x-pkcs12 pfx
    AddType application/x-pkcs7-certificates p7b
    AddType application/x-pkcs7-certificates spc
    AddType application/x-pkcs7-certreqresp p7r
    AddType application/x-quicktimeplayer qtl
    AddType application/x-rar-compressed rar
    AddType application/x-sh sh
    AddType application/x-shar shar
    AddType application/x-shockwave-flash swf
    AddType application/x-stuffit sit
    AddType application/x-stuffitx sitx
    AddType application/x-sv4cpio sv4cpio
    AddType application/x-sv4crc sv4crc
    AddType application/x-tar tar
    AddType application/x-tar tgz
    AddType application/x-tcl tcl
    AddType application/x-tex tex
    AddType application/x-texinfo texi
    AddType application/x-texinfo texinfo
    AddType application/x-ustar ustar
    AddType application/x-wais-source src
    AddType application/x-x509-ca-cert crt
    AddType application/x-x509-ca-cert der
    AddType application/xenc+xml xenc
    AddType application/xhtml+xml xht
    AddType application/xhtml+xml xhtm
    AddType application/xhtml+xml xhtml
    AddType application/xml xml
    AddType application/xml xsl
    AddType application/xml-dtd dtd
    AddType application/xop+xml xop
    AddType application/xslt+xml xslt
    AddType application/xspf+xml xspf
    AddType application/xv+xml mxml
    AddType application/xv+xml xhvml
    AddType application/xv+xml xvm
    AddType application/xv+xml xvml
    AddType application/zip zip
    AddType audio/basic au
    AddType audio/basic snd
    AddType audio/midi kar
    AddType audio/midi mid
    AddType audio/midi midi
    AddType audio/midi rmi
    AddType audio/mp4 mp4a
    AddType audio/mp4a-latm m4a
    AddType audio/mp4a-latm m4p
    AddType audio/mpeg m2a
    AddType audio/mpeg m3a
    AddType audio/mpeg mp2
    AddType audio/mpeg mp2a
    AddType audio/mpeg mp3
    AddType audio/mpeg mpga
    AddType audio/vnd.digital-winds eol
    AddType audio/vnd.lucent.voice lvp
    AddType audio/vnd.nuera.ecelp4800 ecelp4800
    AddType audio/vnd.nuera.ecelp7470 ecelp7470
    AddType audio/vnd.nuera.ecelp9600 ecelp9600
    AddType audio/wav wav
    AddType audio/x-aiff aif
    AddType audio/x-aiff aifc
    AddType audio/x-aiff aiff
    AddType audio/x-m4a m4a
    AddType audio/x-mpegurl m3u
    AddType audio/x-ms-wax wax
    AddType audio/x-ms-wma wma
    AddType audio/x-pn-realaudio ra
    AddType audio/x-pn-realaudio ram
    AddType audio/x-pn-realaudio rm
    AddType audio/x-pn-realaudio-plugin rmp
    AddType audio/x-scpls pls
    AddType audio/x-wav wav
    AddType chemical/x-cdx cdx
    AddType chemical/x-cif cif
    AddType chemical/x-cmdf cmdf
    AddType chemical/x-cml cml
    AddType chemical/x-csml csml
    AddType chemical/x-pdb pdb
    AddType chemical/x-xyz xyz
    AddType image/bmp bmp
    AddType image/cgm cgm
    AddType image/g3fax g3
    AddType image/gif gif
    AddType image/ief ief
    AddType image/jp2 jp2
    AddType image/jpeg jpe
    AddType image/jpeg jpeg
    AddType image/jpeg jpg
    AddType image/pict pct
    AddType image/pict pic
    AddType image/pict pict
    AddType image/png png
    AddType image/prs.btif btif
    AddType image/svg+xml svg
    AddType image/svg+xml svgz
    AddType image/tiff tif
    AddType image/tiff tiff
    AddType image/vnd.adobe.photoshop psd
    AddType image/vnd.djvu djv
    AddType image/vnd.djvu djvu
    AddType image/vnd.dwg dwg
    AddType image/vnd.dxf dxf
    AddType image/vnd.fastbidsheet fbs
    AddType image/vnd.fpx fpx
    AddType image/vnd.fst fst
    AddType image/vnd.fujixerox.edmics-mmr mmr
    AddType image/vnd.fujixerox.edmics-rlc rlc
    AddType image/vnd.microsoft.icon ico
    AddType image/vnd.ms-modi mdi
    AddType image/vnd.net-fpx npx
    AddType image/vnd.wap.wbmp wbmp
    AddType image/vnd.xiff xif
    AddType image/x-cmu-raster ras
    AddType image/x-cmx cmx
    AddType image/x-macpaint mac
    AddType image/x-macpaint pnt
    AddType image/x-macpaint pntg
    AddType image/x-pcx pcx
    AddType image/x-pict pct
    AddType image/x-pict pic
    AddType image/x-portable-anymap pnm
    AddType image/x-portable-bitmap pbm
    AddType image/x-portable-graymap pgm
    AddType image/x-portable-pixmap ppm
    AddType image/x-quicktime qti
    AddType image/x-quicktime qtif
    AddType image/x-rgb rgb
    AddType image/x-xbitmap xbm
    AddType image/x-xpixmap xpm
    AddType image/x-xwindowdump xwd
    AddType message/rfc822 eml
    AddType message/rfc822 mime
    AddType model/iges iges
    AddType model/iges igs
    AddType model/mesh mesh
    AddType model/mesh msh
    AddType model/mesh silo
    AddType model/vnd.dwf dwf
    AddType model/vnd.gdl gdl
    AddType model/vnd.gtw gtw
    AddType model/vnd.mts mts
    AddType model/vnd.vtu vtu
    AddType model/vrml vrml
    AddType model/vrml wrl
    AddType text/calendar ics
    AddType text/calendar ifb
    AddType text/css css
    AddType text/csv csv
    AddType text/html htm
    AddType text/html html
    AddType text/html shtml
    AddType text/plain asc
    AddType text/plain conf
    AddType text/plain def
    AddType text/plain in
    AddType text/plain list
    AddType text/plain log
    AddType text/plain text
    AddType text/plain txt
    AddType text/prs.lines.tag dsc
    AddType text/richtext rtx
    AddType text/rtf rtf
    AddType text/sgml sgm
    AddType text/sgml sgml
    AddType text/tab-separated-values tsv
    AddType text/troff man
    AddType text/troff me
    AddType text/troff ms
    AddType text/troff roff
    AddType text/troff t
    AddType text/troff tr
    AddType text/uri-list uri
    AddType text/uri-list uris
    AddType text/uri-list urls
    AddType text/vnd.fly fly
    AddType text/vnd.fmi.flexstor flx
    AddType text/vnd.in3d.3dml 3dml
    AddType text/vnd.in3d.spot spot
    AddType text/vnd.sun.j2me.app-descriptor jad
    AddType text/vnd.wap.wml wml
    AddType text/vnd.wap.wmlscript wmls
    AddType text/x-asm s
    AddType text/x-asm sm
    AddType text/x-c c
    AddType text/x-c cc
    AddType text/x-c cpp
    AddType text/x-c cxx
    AddType text/x-c dic
    AddType text/x-c h
    AddType text/x-c hh
    AddType text/x-fortran f
    AddType text/x-fortran f77
    AddType text/x-fortran f90
    AddType text/x-fortran for
    AddType text/x-java-source java
    AddType text/x-pascal p
    AddType text/x-pascal pas
    AddType text/x-setext etx
    AddType text/x-uuencode uu
    AddType text/x-vcalendar vcs
    AddType text/x-vcard vcf
    AddType video/3gp2 3gp2
    AddType video/3gpp 3gp
    AddType video/3gpp 3gpp
    AddType video/3gpp2 3g2
    AddType video/h261 h261
    AddType video/h263 h263
    AddType video/h264 h264
    AddType video/jpeg jpgv
    AddType video/jpm jpgm
    AddType video/jpm jpm
    AddType video/mj2 mj2
    AddType video/mj2 mjp2
    AddType video/mp4 m4v
    AddType video/mp4 mp4
    AddType video/mp4 mp4v
    AddType video/mp4 mpg4
    AddType video/mpeg m1v
    AddType video/mpeg m2v
    AddType video/mpeg mpe
    AddType video/mpeg mpeg
    AddType video/mpeg mpg
    AddType video/quicktime mov
    AddType video/quicktime qt
    AddType video/vnd.fvt fvt
    AddType video/vnd.mpegurl m4u
    AddType video/vnd.mpegurl mxu
    AddType video/vnd.vivo viv
    AddType video/x-dv dif
    AddType video/x-dv dv
    AddType video/x-fli fli
    AddType video/x-ms-asf asf
    AddType video/x-ms-asf asx
    AddType video/x-ms-wm wm
    AddType video/x-ms-wmv wmv
    AddType video/x-ms-wmx wmx
    AddType video/x-ms-wvx wvx
    AddType video/x-msvideo avi
    AddType video/x-sgi-movie movie
    AddType x-conference/x-cooltalk ice
    # Settings for hosting different languages.
    # Required modules: mod_mime, mod_negotiation
    # DefaultLanguage and AddLanguage allows you to specify the language of
    # a document. You can then use content negotiation to give a browser a
    # file in a language the user can understand.
    # Specify a default language. This means that all data
    # going out without a specific language tag (see below) will
    # be marked with this one. You probably do NOT want to set
    # this unless you are sure it is correct for all cases.
    # * It is generally better to not mark a page as
    # * being a certain language than marking it with the wrong
    # * language!
    # DefaultLanguage nl
    # Note 1: The suffix does not have to be the same as the language
    # keyword --- those with documents in Polish (whose net-standard
    # language code is pl) may wish to use "AddLanguage pl .po" to
    # avoid the ambiguity with the common suffix for perl scripts.
    # Note 2: The example entries below illustrate that in some cases
    # the two character 'Language' abbreviation is not identical to
    # the two character 'Country' code for its country,
    # E.g. 'Danmark/dk' versus 'Danish/da'.
    # Note 3: In the case of 'ltz' we violate the RFC by using a three char
    # specifier. There is 'work in progress' to fix this and get
    # the reference data for rfc1766 cleaned up.
    # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
    # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
    # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
    # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
    # Norwegian (no) - Polish (pl) - Portugese (pt)
    # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
    # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
    AddLanguage ca .ca
    AddLanguage cs .cz .cs
    AddLanguage da .dk
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage en .en
    AddLanguage eo .eo
    AddLanguage es .es
    AddLanguage et .et
    AddLanguage fr .fr
    AddLanguage he .he
    AddLanguage hr .hr
    AddLanguage it .it
    AddLanguage ja .ja
    AddLanguage ko .ko
    AddLanguage ltz .ltz
    AddLanguage nl .nl
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddLanguage pt .pt
    AddLanguage pt-BR .pt-br
    AddLanguage ru .ru
    AddLanguage sv .sv
    AddLanguage zh-CN .zh-cn
    AddLanguage zh-TW .zh-tw
    # LanguagePriority allows you to give precedence to some languages
    # in case of a tie during content negotiation.
    # Just list the languages in decreasing order of preference. We have
    # more or less alphabetized them here. You probably want to change this.
    LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
    # ForceLanguagePriority allows you to serve a result page rather than
    # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
    # [in case no accepted languages matched the available variants]
    ForceLanguagePriority Prefer Fallback
    # Commonly used filename extensions to character sets. You probably
    # want to avoid clashes with the language extensions, unless you
    # are good at carefully testing your setup after each change.
    # See http://www.iana.org/assignments/character-sets for the
    # official list of charset names and their respective RFCs.
    AddCharset us-ascii.ascii .us-ascii
    AddCharset ISO-8859-1 .iso8859-1 .latin1
    AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
    AddCharset ISO-8859-3 .iso8859-3 .latin3
    AddCharset ISO-8859-4 .iso8859-4 .latin4
    AddCharset ISO-8859-5 .iso8859-5 .cyr .iso-ru
    AddCharset ISO-8859-6 .iso8859-6 .arb .arabic
    AddCharset ISO-8859-7 .iso8859-7 .grk .greek
    AddCharset ISO-8859-8 .iso8859-8 .heb .hebrew
    AddCharset ISO-8859-9 .iso8859-9 .latin5 .trk
    AddCharset ISO-8859-10 .iso8859-10 .latin6
    AddCharset ISO-8859-13 .iso8859-13
    AddCharset ISO-8859-14 .iso8859-14 .latin8
    AddCharset ISO-8859-15 .iso8859-15 .latin9
    AddCharset ISO-8859-16 .iso8859-16 .latin10
    AddCharset ISO-2022-JP .iso2022-jp .jis
    AddCharset ISO-2022-KR .iso2022-kr .kis
    AddCharset ISO-2022-CN .iso2022-cn .cis
    AddCharset Big5.Big5 .big5 .b5
    AddCharset cn-Big5 .cn-big5
    # For russian, more than one charset is used (depends on client, mostly):
    AddCharset WINDOWS-1251 .cp-1251 .win-1251
    AddCharset CP866 .cp866
    AddCharset KOI8 .koi8
    AddCharset KOI8-E .koi8-e
    AddCharset KOI8-r .koi8-r .koi8-ru
    AddCharset KOI8-U .koi8-u
    AddCharset KOI8-ru .koi8-uk .ua
    AddCharset ISO-10646-UCS-2 .ucs2
    AddCharset ISO-10646-UCS-4 .ucs4
    AddCharset UTF-7 .utf7
    AddCharset UTF-8 .utf8
    AddCharset UTF-16 .utf16
    AddCharset UTF-16BE .utf16be
    AddCharset UTF-16LE .utf16le
    AddCharset UTF-32 .utf32
    AddCharset UTF-32BE .utf32be
    AddCharset UTF-32LE .utf32le
    AddCharset euc-cn .euc-cn
    AddCharset euc-gb .euc-gb
    AddCharset euc-jp .euc-jp
    AddCharset euc-kr .euc-kr
    #Not sure how euc-tw got in - IANA doesn't list it???
    AddCharset EUC-TW .euc-tw
    AddCharset gb2312 .gb2312 .gb
    AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2
    AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4
    AddCharset shift_jis .shift_jis .sjis
    </IfModule>
    ## The modmimemagic module allows the server to use various hints from the
    ## contents of the file itself to determine its type. The MIMEMagicFile
    ## directive tells the module where the hint definitions are located.
    <IfModule modmimemagic.c>
    MIMEMagicFile /etc/apache2/magic
    </IfModule>
    ## HostnameLookups: Log the names of clients or just their IP addresses
    ## e.g., www.apache.org (on) or 204.62.129.132 (off).
    ## The default is off because it'd be overall better for the net if people
    ## had to knowingly turn this feature on, since enabling it means that
    ## each client request will result in AT LEAST one lookup request to the
    ## nameserver.
    HostnameLookups Off
    ## LogLevel: Control the number of messages logged to the error_log.
    ## Possible values include: debug, info, notice, warn, error, crit,
    ## alert, emerg.
    LogLevel warn
    <IfModule modlogconfig.c>
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    LogFormat "%{Referer}i -> %U" referer
    LogFormat "%{User-agent}i" agent
    <IfModule mod_logio.c>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you do
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and not in this file.
    #### For Mac OS X Server: Server Admin manages CustomLog directives
    #### on a virtual host basis.
    #CustomLog /var/log/apache2/access_log common
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog /var/log/apache2/access_log combined
    </IfModule>
    ## Optionally add a line containing the server version and virtual host
    ## name to server-generated pages (error documents, FTP directory listings,
    ## mod_status and mod_info output etc., but not CGI generated documents).
    ## Set to "EMail" to also include a mailto: link to the ServerAdmin.
    ## Set to one of: On | Off | EMail
    ServerSignature On
    UseCanonicalName Off
    ## Aliases: Add here as many aliases as you need (with no limit). The format is
    ## Alias fakename realname
    <IfModule mod_alias.c>
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL. You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client. The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    ScriptAliasMatch ^/cgi-bin/((?!(?i:webobjects)).*$) "/Library/WebServer/CGI-Executables/$1"
    #### For Mac OS X Server: Uncomment this line to enable web-based
    #### configuration of mailman:
    #Include /etc/apache2/httpd_mailman.conf
    <IfModule mod_setenvif.c>
    <IfModule mod_negotiation.c>
    # Allow convenient access to Apache manual
    AliasMatch ^/manual(?:/(?:de|en|es|fr|ja|ko|pt-br|ru))?(/.*)?$ "/Library/WebServer/share/httpd/manual$1"
    <Directory "/Library/WebServer/share/httpd/manual">
    Options Indexes
    AllowOverride None
    Order allow,deny
    Allow from all
    <Files *.html>
    SetHandler type-map
    </Files>
    SetEnvIf Request_URI ^/manual/(de|en|es|fr|ja|ko|pt-br|ru)/ prefer-language=$1
    RedirectMatch 301 ^/manual(?:/(de|en|es|fr|ja|ko|pt-br|ru)){2,}(/.*)?$ /manual/$1$2
    LanguagePriority en de es fr ja ko pt-br ru ForceLanguagePriority Prefer Fallback
    </Directory>
    </IfModule>
    </IfModule>
    </IfModule>
    ## Directives controlling the display of server-generated directory listings.
    #### For Mac OS X Server: Note that indexing is further controlled
    #### by the Server Admin application, which adds "Options +/-Indexes
    #### in the virtual host scope.
    <IfModule mod_autoindex.c>
    ## FancyIndexing is whether you want fancy directory indexing or standard
    IndexOptions FancyIndexing
    ## AddIcon* directives tell the server which icon to show for different
    ## files or filename extensions. These are only displayed for
    ## FancyIndexed directories.
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
    ## DefaultIcon is which icon to show for files which do not have an icon
    ## explicitly set.
    DefaultIcon /icons/unknown.gif
    ## AddDescription allows you to place a short description after a file in
    ## server-generated indexes. These are only displayed for FancyIndexed
    ## directories.
    ## Format: AddDescription "description" filename
    #AddDescription "GZIP compressed document" .gz
    #AddDescription "tar archive" .tar
    #AddDescription "GZIP compressed tar archive" .tgz
    #AddDescription "Mac OS Disk Image file" .dmg
    ## ReadmeName is the name of the README file the server will look for by
    ## default, and append to directory listings.
    ## HeaderName is the name of a file which should be prepended to
    ## directory indexes.
    ## If MultiViews are amongst the Options in effect, the server will
    ## first look for name.html and include it if found. If name.html
    ## doesn't exist, the server will then look for name.txt and include
    ## it as plaintext if found.
    ReadmeName README
    HeaderName HEADER
    ## IndexIgnore is a set of filenames which directory indexing should ignore
    ## and not include in the listing. Shell-style wildcarding is permitted.
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    </IfModule>
    ## MetaDir: specifies the name of the directory in which Apache can find
    ## meta information files. These files contain additional HTTP headers
    ## to include when sending the document
    #MetaDir .web
    ## MetaSuffix: specifies the file name suffix for the file containing the
    ## meta information.
    #MetaSuffix .meta
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://www.example.com/subscription_info.html
    # The configuration below implements multi-language error documents through
    # content-negotiation, and via the default Alias for /error in the vhost config file.
    <Directory "/usr/share/httpd/error">
    AllowOverride None
    Options IncludesNoExec
    AddOutputFilter Includes html
    AddHandler type-map var
    Order allow,deny
    Allow from all
    LanguagePriority en cs de es fr it ja ko nl pl pt-br ro sv tr
    ForceLanguagePriority Prefer Fallback
    </Directory>
    ErrorDocument 400 /error/HTTPBADREQUEST.html.var
    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
    ErrorDocument 404 /error/HTTPNOTFOUND.html.var
    ErrorDocument 405 /error/HTTPMETHOD_NOTALLOWED.html.var
    ErrorDocument 408 /error/HTTPREQUEST_TIMEOUT.html.var
    ErrorDocument 410 /error/HTTP_GONE.html.var
    ErrorDocument 411 /error/HTTPLENGTHREQUIRED.html.var
    ErrorDocument 412 /error/HTTPPRECONDITIONFAILED.html.var
    ErrorDocument 413 /error/HTTPREQUEST_ENTITY_TOOLARGE.html.var
    ErrorDocument 414 /error/HTTPREQUEST_URI_TOOLARGE.html.var
    ErrorDocument 415 /error/HTTPUNSUPPORTED_MEDIATYPE.html.var
    ErrorDocument 500 /error/HTTPINTERNAL_SERVERERROR.html.var
    ErrorDocument 501 /error/HTTPNOTIMPLEMENTED.html.var
    ErrorDocument 502 /error/HTTPBADGATEWAY.html.var
    ErrorDocument 503 /error/HTTPSERVICEUNAVAILABLE.html.var
    ErrorDocument 506 /error/HTTPVARIANT_ALSOVARIES.html.var
    # Allow server status reports generated by mod_status,
    # with the URL of http://servername/server-status
    <IfModule mod_status.c>
    <Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from 127.0.0.1
    </Location>
    # ExtendedStatus controls whether Apache will generate "full" status
    # information (ExtendedStatus On) or just basic information (ExtendedStatus
    # Off) when the "server-status" handler is called. The default is Off.
    ExtendedStatus On
    </IfModule>
    # Allow remote server configuration reports, with the URL of
    # http://servername/server-info (requires that mod_info.c be loaded).
    #<IfModule mod_info.c>
    # <Location /server-info>
    # SetHandler server-info
    # Order deny,allow
    # Deny from all
    # Allow from .your-domain.com
    # </Location>
    #</IfModule>
    ## Proxy Server directives.
    <IfModule mod_proxy.c>
    ProxyRequests Off
    <IfModule moddiskcache.c>
    CacheEnable disk /
    CacheRoot "/var/run/proxy"
    </IfModule>
    </IfModule>
    ## SSL stuff
    <IfModule mod_ssl.c>
    SetEnvIf User-Agent ".MSIE." nokeepalive ssl-unclean-shutdown
    SSLPassPhraseDialog exec:/etc/apache2/getsslpassphrase
    SSLSessionCache shmcb:/var/run/ssl_scache(512000)
    SSLSessionCacheTimeout 300
    SSLMutex file:/var/log/apache2/ssl_mutex
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    AddType application/x-x509-ca-cert crt
    AddType application/x-pkcs7-crl crl
    </IfModule>
    <IfModule mod_jk.c>
    JkWorkersFile /etc/apache2/workers.properties
    JkLogFile /var/log/apache2/mod_jk.log
    JkLogLevel error
    JkMount /*.jsp JBoss1
    JkMount /servlet/* JBoss1
    JkMount /examples/* JBoss1
    </IfModule>
    ## The default server is used for status on a special port
    #ServerName www.example.com
    Listen 127.0.0.1:9010
    DocumentRoot "/var/empty"
    ErrorLog "/var/log/apache2/error_log"
    <Directory /var/empty>
    Order Deny,Allow
    Deny from All
    </Directory>
    <IfModule modspotlightapple2.c>
    Spotlight On
    </IfModule>
    <IfModule modauth_digestapple.c>
    BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
    </IfModule>
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_METHOD} ^TRACE
    RewriteRule .* - [F]
    </IfModule>
    <IfModule mod_headers.c>
    Header add MS-Author-Via "DAV"
    RequestHeader set XFORWARDEDPROTO 'https' env=https
    </IfModule>
    <IfModule mod_encoding.c>
    EncodingEngine on
    NormalizeUsername on
    DefaultClientEncoding UTF-8
    # Windows XP?
    AddClientEncoding "Microsoft-WebDAV-MiniRedir/" MSUTF-8
    # Windows 2K SP2 with .NET
    AddClientEncoding "(Microsoft .* DAV\$)" MSUTF-8
    # Windows 2K SP2/Windows XP
    AddClientEncoding "(Microsoft .* DAV 1.1)" CP932
    # Windows XP?
    AddClientEncoding "Microsoft-WebDAV*" CP932
    # RealPlayer
    AddClientEncoding "RMA/*" CP932
    # MacOS X webdavfs
    AddClientEncoding "WebDAVFS" UTF-8
    # cadaver
    AddClientEncoding "cadaver/" EUC-JP
    </IfModule>
    RLimitNPROC max max
    ExtendedStatus On
    Timeout 300
    KeepAlive On
    MaxKeepAliveRequests 500
    KeepAliveTimeout 15
    # As of Mac OS X Server 10.5, the compiled-in server limit is 2048
    ServerLimit 2048
    # Server Admin manages ListenBackLog as a function of MaxClients: min(511, MaxClients/2)
    MaxClients 1024
    ListenBackLog 512
    # Including WebObjects Configs
    Include /System/Library/WebObjects/Adaptors/Apache2.2/apache.conf
    #### The following Include directive is essential for the virtual hosts to be usable.
    Include "/etc/apache2/sites/*.conf"
    ========HTTPD.CONF==========

    I am modifying the correct httpd.conf file on the server, it just doesn't seem to work. - If I put the rewrite rules in the <Directory /> the rewrite works but it adds /Library/WebServer/Documents to the URL.
    I also tried putting the rewrite rules in <IfModule mod_rewrite.c> but that did not work either.
    mod_rewrite is enabled and running on the server.
    I will post the rewrite rules again in the code brackets. Sorry for the long post. - If some one can try them out on their Leopard Server to see if they can get them to work, it would be much appreciated. Again, these work on my Leopard Client but I can't get them to work on Server.
    -- The httpd.conf file posted above is just the default conf file found in /private/etc/apache2/
    <code>
    RewriteEngine On
    Options +FollowSymLinks
    RewriteRule ^(.+)/$ http://%{HTTP_HOST}$1 [R=301, L]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.php(.*)\ HTTP
    RewriteRule (.+)\.php(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.asp(.*)\ HTTP
    RewriteRule (.+)\.asp(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.aspx(.*)\ HTTP
    RewriteRule (.+)\.aspx(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.htm.(.)\ HTTP
    RewriteRule (.+)\.htm.(.)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.cfm(.*)\ HTTP
    RewriteRule (.+)\.cfm(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.bak(.*)\ HTTP
    RewriteRule (.+)\.bak(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.inc(.*)\ HTTP
    RewriteRule (.+)\.inc(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\..(.)\ HTTP
    RewriteRule (.+)\..(.)$ $1$2 [R, L]]
    <code>

  • Vocabulary for web design and beyond

    Anyone tackling web design will encounter dozens of unfamiliar terms. I have compiled together this glossary to help them. I may update and expand in the future. Until then, feel free to use or pass along.
    Some of these terms don’t relate strictly to web design, but also to computer graphics and computer programming generally, as I’ve found that such terms are also important to reading and understanding any tutorials or other materials on web design.
    Asynchronous (1) General use. Not synchronous; not occurring or existing at the same time or having the same period or phase. (2) Digital communication. Pertaining to a transmission technique that does not require a common clock between the communicating devices; timing signals are instead derived from special characters in the data stream.
    Bitmap image Image that uses geometrical primitives such as points, lines, curves, and shapes, which are all based on mathematical equations. In a bitmap image, each pixel on a display screen is assigned at least one bit to indicate whether the pixel should reflect the background color, the foreground color, or some other color. each pixel in the bitmap might have 16, 24, or 48 bits of information associated with it. The more bits, the greater the resolution of the bitmap – and the larger the file. Compare Vector image.
    C (programming language) General-purpose computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system. It was designed for implementing system software and is also widely used for developing portable application software. C has greatly influenced many other popular programming languages, most notably C++, which began as an extension to C.
    C++ Statically typed, free-form, multi-paradigm, compiled, general-purpose programming language. It was developed by Bjarne Stroustrup starting in 1979 at Bell Labs as an enhancement to the C language and originally named C with Classes. It was renamed C++ in 1983.
    Cache Component that transparently stores data so that future requests for that data can be served faster. The data that is stored within a cache might be values that have been computed earlier or duplicates of original values that are stored elsewhere. If requested data is contained in the cache (cache hit), this request can be served by simply reading the cache, which is comparatively faster. Otherwise (cache miss), the data has to be recomputed or fetched from its original storage location, which is comparatively slower.
    Cascading Style Sheet (CSS) Style sheet language used to describe the presentation semantics (the look and formatting) of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can also be applied to any kind of XML document, including SVG and XUL.
    ColdFusion Programming language based on standard HTML that is used to write dynamic webpages. It allows for the creation of pages that differ depending on user input, database lookups, time of day, or other criteria. ColdFusion pages consist of standard HTML tags together with CFML (ColdFusion Markup Language) tags such as <CFQUERY>, <CFIF> and <CFLOOP>. ColdFusion was introduced by Allaire in 1996, acquired by Macromedia in a merger in April 2001, and acquired by Adobe in December 2005.
    Compound selector Can be used to combine two or more style rules to create a style definition that displays only when one style is contained within another. Compound styles are useful when you want to do something like use the Heading 1 tag multiple times to format headlines in different ways on the same web page. For example, you could create one style for headlines that appear in the main story area of a page and then create another style for headlines that appear in the sidebar on the page and still use the Heading 1 tag to format both. Compound styles are created by combining ID, class, or tag styles and look like this: #sidebar h1.
    Contextual selector A type of Style Sheet Selector that
    CRE Loaded Open source online store management and shopping cart system for e-commerce from Chain Reaction eCommerce. It is based on osCommerce, runs on any LAMP (Linux, Apache, MySQL, PHP) web server, and is supported by an active international community of users and developers. For a monthly subscription ($10/mo. as of 2011), CRE Loaded allows small and medium-sized merchants to accept credit card payments in a web site that mirrors their own online stores.
    CSS See Cascading Style Sheet.
    Dynamic HTML (DHTML) Umbrella term for a collection of technologies used together to create interactive and animated web sites by using a combination of a static markup language (such as HTML), a client-side scripting language (such as JavaScript), a presentation definition language (such as CSS), and the Document Object Model. DHTML allows scripting languages to change variables in a web page's definition language, which in turn affects the look and function of otherwise “static” HTML page content, after the page has been fully loaded and during the viewing process.
    ECMA International International membership-based non-profit standards organization for information and communication systems.
    ECMAScript Scripting language standardized by Ecma International in the ECMA-262 specification and ISO/IEC 16262. The language is widely used for client-side scripting on the web, in the form of several well-known dialects such as JavaScript, JScript, and ActionScript.
    Extensible HyperText Markup Language (XHTML) Family of XML markup languages that mirror or extend versions of the widely used HTML, the language in which web pages are written. While HTML (prior to HTML5) was defined as an application of Standard Generalized Markup Language (SGML), a very flexible markup language framework, XHTML is an application of XML, a more restrictive subset of SGML. Because XHTML documents need to be well-formed, they can be parsed using standard XML parsers—unlike HTML, which requires a lenient HTML-specific parser.
    Extensible Markup Language Set of rules for encoding documents in machine-readable form. It is defined in the XML 1.0 Specification produced by the W3C, and several other related specifications, all gratis open standards. Its design goals emphasize simplicity, generality, and usability over the Internet. It is a textual data format with strong support via Unicode for the languages of the world. Known by its acronym XML.
    HTML See HyperText Markup Language.
    Hypermedia Graphics, audio, video, plain text and hyperlinks that intertwine to create a generally non-linear medium of information. This contrasts with the broader term multimedia, which may be used to describe non-interactive linear presentations as well as hypermedia. The World Wide Web is a classic example of hypermedia, whereas a non-interactive cinema presentation is an example of standard multimedia due to the absence of hyperlinks.
    Hypertext Text displayed on a computer or other electronic device with references (hyperlinks) to other text that the reader can immediately access, usually by a mouse click or keypress sequence.
    Hypertext Markup Language (HTML) Predominant markup language and basic building-block of webpages. It is written in the form of HTML elements consisting of tags, enclosed in angle brackets (like <html>), within the web page content. HTML tags normally come in pairs like <h1> and </h1>. The first tag in a pair is the start tag, the second tag is the end tag (they are also called opening tags and closing tags). Known by its acronym HTML.
    Hypertext preprocessor (PHP) Widely used, general-purpose scripting language that was originally designed for web development to produce dynamic web pages. It brings life to websites by communicating with external data sources, such as databases, news feeds, and XML documents. PHP code is embedded into the HTML source document and interpreted by a web server with a PHP processor module, which generates the web page document. PHP 3 was launched in 1998; PHP 4 was released in 2000; and PHP 5 was released in 2005.
    Java Programming language released in 1995 as a core component of Sun Microsystems' Java platform. The language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities. Java applications are typically compiled to bytecode (class file) that can run on any Java Virtual Machine (JVM) regardless of computer architecture. Java is a general-purpose, concurrent, class-based, object-oriented language that is specifically designed to have as few implementation dependencies as possible. It is intended to let application developers "write once, run anywhere". Java is currently one of the most popular programming languages in use, and is widely used from application software to web applications.[
    JavaScript Implementation of the ECMAScript language standard and is typically used to enable programmatic access to computational objects within a host environment. It can be characterized as a prototype-based object-oriented scripting language that is dynamic, weakly typed and has first-class functions.
    JPEG Commonly used method of Lossy compression for digital photography that was named after the Joint Photographic Experts Group, which created the standard. The degree of compression can be adjusted, allowing a selectable tradeoff between storage size and image quality. JPEG typically achieves 10:1 compression with little perceptible loss in image quality.
    Linux Family of Unix-like computer operating systems using the Linux kernel (central OS component). Linux can be installed on a wide variety of computer hardware, ranging from mobile phones, tablet computers and video game consoles, to mainframes and supercomputers. The development of Linux is one of the most prominent examples of free and open source software collaboration; typically all the underlying source code can be used, freely modified, and redistributed, both commercially and non-commercially, by anyone under licenses such as the GNU General Public License.
    Lossy compression Data encoding method which discards (loses) some of the data, in order to achieve its goal, with the result that decompressing the data yields content that is different from the original, though similar enough to be useful in some way. Lossy compression is most commonly used to compress multimedia data (audio, video, still images), especially in applications such as streaming media and internet telephony. By contrast, lossless compression is required for text and data files, such as bank records, text articles, etc.
    MySQL Relational database management system that runs as a server providing multi-user access to a number of databases. The MySQL development project has made its source code available under the terms of the GNU General Public License, as well as under a variety of proprietary agreements. Acronym for “My Structured Query Language.”
    Open source Describes practices in production and development that promote access to the end product's source materials. Before the term open source became widely adopted, developers and producers used a variety of phrases to describe the concept; open source gained hold with the rise of the Internet, and the attendant need for massive retooling of the computing source code.
    osCommerce Open source Commerce. It allows store owners to setup, run, and maintain their online stores with minimum effort and with no costs involved. Combines open source solutions to provide a free and open development platform, which includes the PHP web scripting language, the Apache web server, and the MySQL database server. With no restrictions or special requirements, osCommerce can be installed on any PHP3 or PHP4 enabled web server, on any environment that PHP and MySQL supports, which includes Linux, Solaris, BSD, and Microsoft Windows environments.
    PHP See Hypertext preprocessor.
    Rasterization The process of converting a Vector image into a Bitmap image.
    Rasterize See Rasterization.
    Shopping cart software Software used in e-commerce to assist people making purchases online. The software allows online shopping customers to accumulate a list of items for purchase. Upon checkout, the software typically calculates a total for the order, including shipping and handling (i.e. postage and packing) charges and the associated taxes.
    Style sheet selector One of the two parts of a CSS rule (the other being the properties, or declaration block) that declares which of the markup elements a style applies to. Selectors may apply to all elements of a specific type, or only those elements that match a certain attribute (e.g., how they are placed relative to each other in the markup code, or on how they are nested within the document object model). There are many types of style sheet selectors: element selectors, which select by element name; class selectors, which select by class name; contextual selectors, which select by context based on parent elements (what the element is nested within or what precedes it in the document), etc..
    Supercomputer Computer that is at the frontline of current processing capacity, particularly speed of calculation. Supercomputers are typically one-of-a-kind custom designs produced by companies such as Cray, IBM and Hewlett-Packard, who had purchased many of the 1980s companies to gain their experience. Since October 2010, the Tianhe-1A supercomputer, located in China, has been the fastest in the world.
    Tag Non-hierarchical keyword or term assigned to a piece of information (such as an Internet bookmark, digital image, or computer file). This kind of metadata helps describe an item and allows it to be found again by browsing or searching. Tags are generally chosen informally and personally by the item's creator or by its viewer, depending on the system. HTML tags include paragraph, heading 1, heading 2, etc.
    Unix Computer operating system originally developed in 1969 by a group of AT&T employees at Bell Labs. The Unix operating system was first developed in assembly, which is machine-dependent and a low-level programming language. Ken Thompson created the B language in 1969 and Unix was written in the B language, a high-level programming language. The first Unix system written in C was released in November 1973.
    Vector image Image made up of numerous individual, scalable objects. These objects are defined by mathematical equations rather than pixels, so they always render at the highest quality. Objects may consist of lines, curves, and shapes with editable attributes such as color, fill, and outline. Changing the attributes of a vector object does not effect the object itself. Compare Bitmap image.
    Vector processor Central processing unit (CPU) that implements an instruction set containing instructions that operate on one-dimensional arrays of data called vectors. This is in contrast to a scalar processor, whose instructions operate on single data items. Also known as array processor.
    Web analytics Measurement, collection, analysis and reporting of internet data, including the number of visitors and page views, for understanding and optimizing web usage. It can be used as a tool for measuring website traffic and for business and market research. Web analytics applications can also help companies measure the results of traditional print advertising campaigns. It helps one to estimate how the traffic to the website changed after the launch of a new advertising campaign.
    Web design Design of the way that content is delivered to an end-user through the World Wide Web, using a web browser or other web-enabled software.
    Web development Refers to the work involved in developing a web site for the Internet (World Wide Web) or an intranet (a private network). This can include Web design, web content development, client liaison, client-side/server-side scripting, web server and network security configuration, and e-commerce development. However, among web professionals, "web development" usually refers to the main non-design aspects of building web sites: writing markup and coding. Web development can range from developing the simplest static single page of plain text to the most complex web-based internet applications, electronic businesses, or social network services.
    World Wide Web Consortium Main international standards organization for the World Wide Web. It is made up of member organizations which maintain full-time staff for the purpose of working together in the development of standards for the World Wide Web. Known by its acronym W3C.
    XHTML See Extensible HyperText Markup Language.
    XML See Extensible Markup Language.
    Zend Engine Open source scripting engine (a Virtual Machine) commonly known for the important role it plays in the web automation language PHP.

    Thanks for posting this!
    I would only mention that your definition is incomplete for this -
    Contextual selector A type of Style Sheet Selector that
    and that it's most often referred to now as a Descendent selector, not a contextual selector.  It's basically the same as the Compound selector that you have already defined....

  • [solved] Which disowned files are safe to be removed?

    Hello,
    I wanted to clean up my system and used the script from here [1] to search for all disowned files. Obviously not all of them are safe to be removed.
    Which of the following files can be safely removed?
    /etc/adjtime
    /etc/fonts/conf.d/37-repl-global-free.conf
    /etc/fonts/conf.d/60-latin-free.conf
    /etc/fonts/conf.d/65-non-latin-free.conf
    /etc/fonts/conf.d/66-aliases-wine-free.conf
    /etc/fonts/conf.d/93-final-lang-spec-free.conf
    /etc/group-
    /etc/gshadow-
    /etc/hostname
    /etc/ld.so.cache
    /etc/locale.conf
    /etc/localtime
    /etc/machine-id
    /etc/pacman.d/gnupg/
    /etc/pacman.d/gnupg/gpg.conf
    /etc/pacman.d/gnupg/pubring.gpg
    /etc/pacman.d/gnupg/pubring.gpg~
    /etc/pacman.d/gnupg/random_seed
    /etc/pacman.d/gnupg/secring.gpg
    /etc/pacman.d/gnupg/trustdb.gpg
    /etc/pango/pango.modules
    /etc/pango/pango.modules-32
    /etc/passwd-
    /etc/.pwd.lock
    /etc/shadow-
    /etc/skel/.cache/
    /etc/skel/.cache/chromium/
    /etc/skel/.cache/dconf/
    /etc/skel/.cache/dconf/user
    /etc/skel/.cache/event-sound-cache.tdb.Cinnarch.i686-pc-linux-gnu
    /etc/skel/.cache/gnome-control-center/
    /etc/skel/.cache/gnome-control-center/backgrounds/
    /etc/skel/.cache/gnome-control-center/backgrounds/e4f6ef8a8d8207a9ee614d1a47ed0aa1fbb370977a8f0c16ae57ad053cf3259f
    /etc/skel/.cache/gvfs-burn/
    /etc/skel/.cache/wallpaper/
    /etc/skel/.cache/wallpaper/0_5_1440_900_32bd62800dca3da9b2b33f3d2c8168e1
    /etc/skel/.config/
    /etc/skel/.config/chromium/
    /etc/skel/.config/chromium/chrome_shutdown_ms.txt
    /etc/skel/.config/chromium/Default/
    /etc/skel/.config/chromium/Default/Archived History
    /etc/skel/.config/chromium/Default/Archived History-journal
    /etc/skel/.config/chromium/Default/Bookmarks
    /etc/skel/.config/chromium/Default/Cookies
    /etc/skel/.config/chromium/Default/Cookies-journal
    /etc/skel/.config/chromium/Default/Current Session
    /etc/skel/.config/chromium/Default/Current Tabs
    /etc/skel/.config/chromium/Default/Extensions/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/Cached Theme.pak
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/back.png
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/Frame.png
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/theme_button_background.png
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/theme_tab_background.png
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/theme_toolbar.png
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ar/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ar/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/bg/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/bg/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/bn/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/bn/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ca/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ca/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/cs/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/cs/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/da/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/da/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/de/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/de/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/el/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/el/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/en/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/en_GB/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/en_GB/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/en/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/es/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/es_419/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/es_419/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/es/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/et/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/et/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fi/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fil/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fil/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fi/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fr/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fr/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/gu/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/gu/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hi/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hi/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hr/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hr/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hu/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hu/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/id/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/id/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/it/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/it/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/iw/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/iw/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ja/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ja/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/kn/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/kn/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ko/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ko/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/lt/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/lt/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/lv/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/lv/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ml/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ml/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/mr/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/mr/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/nl/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/nl/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/no/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/no/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/or/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/or/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pl/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pl/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pt_BR/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pt_BR/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pt_PT/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pt_PT/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ro/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ro/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ru/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ru/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sk/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sk/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sl/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sl/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sr/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sr/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sv/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sv/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ta/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ta/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/te/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/te/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/th/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/th/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/tr/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/tr/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/uk/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/uk/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/vi/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/vi/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_CN/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_CN/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_HK/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_HK/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_TW/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_TW/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/manifest.json
    /etc/skel/.config/chromium/Default/Favicons
    /etc/skel/.config/chromium/Default/Favicons-journal
    /etc/skel/.config/chromium/Default/History-journal
    /etc/skel/.config/chromium/Default/History Provider Cache
    /etc/skel/.config/chromium/Default/Local Storage/
    /etc/skel/.config/chromium/Default/Local Storage/https_chrome.google.com_0.localstorage
    /etc/skel/.config/chromium/Default/Local Storage/https_chrome.google.com_0.localstorage-journal
    /etc/skel/.config/chromium/Default/Login Data
    /etc/skel/.config/chromium/Default/Login Data-journal
    /etc/skel/.config/chromium/Default/Network Action Predictor
    /etc/skel/.config/chromium/Default/Network Action Predictor-journal
    /etc/skel/.config/chromium/Default/Preferences
    /etc/skel/.config/chromium/Default/README
    /etc/skel/.config/chromium/Default/Shortcuts
    /etc/skel/.config/chromium/Default/Shortcuts-journal
    /etc/skel/.config/chromium/Default/Top Sites
    /etc/skel/.config/chromium/Default/Top Sites-journal
    /etc/skel/.config/chromium/Default/User StyleSheets/
    /etc/skel/.config/chromium/Default/User StyleSheets/Custom.css
    /etc/skel/.config/chromium/Default/Web Data
    /etc/skel/.config/chromium/Default/Web Data-journal
    /etc/skel/.config/chromium/Dictionaries/
    /etc/skel/.config/chromium/First Run
    /etc/skel/.config/chromium/Local State
    /etc/skel/.config/chromium/Safe Browsing Bloom_new
    /etc/skel/.config/chromium/Safe Browsing Cookies
    /etc/skel/.config/chromium/Safe Browsing Cookies-journal
    /etc/skel/.config/chromium/Safe Browsing Csd Whitelist_new
    /etc/skel/.config/chromium/Safe Browsing Download_new
    /etc/skel/.config/chromium/Safe Browsing Download Whitelist_new
    /etc/skel/.config/chromium/Service State
    /etc/skel/.config/chromium/Temp/
    /etc/skel/.config/dconf/
    /etc/skel/.config/dconf/user
    /etc/skel/.config/eog/
    /etc/skel/.config/eog/accels
    /etc/skel/.config/gnome-control-center/
    /etc/skel/.config/gnome-control-center/backgrounds/
    /etc/skel/.config/gnome-control-center/backgrounds/last-edited.xml
    /etc/skel/.config/gnome-session/
    /etc/skel/.config/gnome-session/saved-session/
    /etc/skel/.config/gtk-2.0/
    /etc/skel/.config/gtk-2.0/gtkfilechooser.ini
    /etc/skel/.config/marlin/
    /etc/skel/.config/marlin/marlin.db
    /etc/skel/.config/nautilus/
    /etc/skel/.config/yad.conf
    /etc/skel/.gconf/
    /etc/skel/.gconf/apps/
    /etc/skel/.gconf/apps/%gconf.xml
    /etc/skel/.gconf/apps/gnome-terminal/
    /etc/skel/.gconf/apps/gnome-terminal/%gconf.xml
    /etc/skel/.gconf/apps/gnome-terminal/profiles/
    /etc/skel/.gconf/apps/gnome-terminal/profiles/Default/
    /etc/skel/.gconf/apps/gnome-terminal/profiles/Default/%gconf.xml
    /etc/skel/.gconf/apps/gnome-terminal/profiles/%gconf.xml
    /etc/skel/.gconf/apps/nm-applet/
    /etc/skel/.gconf/apps/nm-applet/%gconf.xml
    /etc/skel/.gconf/desktop/
    /etc/skel/.gconf/desktop/gnome/
    /etc/skel/.gconf/desktop/gnome/background/
    /etc/skel/.gnome2/
    /etc/skel/.gnome2/keyrings/
    /etc/skel/.gnome2/nautilus-scripts/
    /etc/skel/.local/
    /etc/skel/.local/share/
    /etc/skel/.local/share/applications/
    /etc/skel/.local/share/applications/mimeapps.list
    /etc/skel/.local/share/cinnamon/
    /etc/skel/.local/share/cinnamon/applets/
    /etc/skel/.local/share/cinnamon/application_state
    /etc/skel/.local/share/cinnamon/extensions/
    /etc/skel/.local/share/.converted-launchers
    /etc/skel/.local/share/gsettings-data-convert
    /etc/skel/.local/share/gvfs-metadata/
    /etc/skel/.local/share/gvfs-metadata/home
    /etc/skel/.local/share/gvfs-metadata/home-dde772a5.log
    /etc/skel/.local/share/icc/
    /etc/skel/.local/share/icc/edid-4c41850672de5b0d465aaecce47e1ff0.icc
    /etc/skel/.local/share/icc/edid-5329f3f05df0972eed9378954fd31ae2.icc
    /etc/skel/.local/share/icc/edid-88edfa5ccddfd398ceb0472aad4890d9.icc
    /etc/skel/.local/share/Trash/
    /etc/skel/.local/share/Trash/expunged/
    /etc/skel/.local/share/Trash/files/
    /etc/skel/.local/share/Trash/info/
    /etc/sysctl.d/99-sysctl.conf
    /etc/systemd/system/auditd.service
    /etc/systemd/system/dbus-org.freedesktop.ModemManager1.service
    /etc/systemd/system/dbus-org.freedesktop.NetworkManager.service
    /etc/systemd/system/dbus-org.freedesktop.thermald.service
    /etc/systemd/system/default.target.wants/
    /etc/systemd/system/default.target.wants/asd-resync.service
    /etc/systemd/system/default.target.wants/psd-resync.service
    /etc/systemd/system/display-manager.service
    /etc/systemd/system/[email protected]
    /etc/systemd/system/getty.target.wants/
    /etc/systemd/system/getty.target.wants/[email protected]
    /etc/systemd/system/graphical.target.wants/
    /etc/systemd/system/graphical.target.wants/tlp.service
    /etc/systemd/system/local-fs.target.wants/
    /etc/systemd/system/local-fs.target.wants/tlp.service
    /etc/systemd/system/multi-user.target.wants/asd.service
    /etc/systemd/system/multi-user.target.wants/crashplan.service
    /etc/systemd/system/multi-user.target.wants/hdapsd.service
    /etc/systemd/system/multi-user.target.wants/NetworkManager.service
    /etc/systemd/system/multi-user.target.wants/ntpd.service
    /etc/systemd/system/multi-user.target.wants/psd.service
    /etc/systemd/system/multi-user.target.wants/setkeycodes.service
    /etc/systemd/system/multi-user.target.wants/thermald.service
    /etc/systemd/system/plymouth-quit-wait.service
    /etc/systemd/system/plymouth-start.service
    /etc/systemd/system/powersaving.service
    /etc/systemd/system/setkeycodes.service
    /etc/systemd/system/sleep.target.wants/
    /etc/systemd/system/sleep.target.wants/tlp-sleep.service
    /etc/systemd/system/syslog.service
    /etc/systemd/system/syslog.target
    /etc/texmf/ls-R
    /etc/udev/hwdb.bin
    /etc/X11/xorg.conf.d/00-keyboard.conf
    /etc/X11/xorg.conf.d/20-intel.conf
    /etc/X11/xorg.conf.d/99-calibration.conf
    /etc/xdg/gtk-2.0/
    /etc/xml/catalog
    /usr/bin/pacman-boot
    /usr/bin/populate
    /usr/bin/rdmsr
    /usr/bin/update_rubygems
    /usr/bin/wrmsr
    /usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders.cache
    /usr/lib32/gtk-2.0/2.10.0/immodules.cache
    /usr/lib32/libffi-3.0.12/
    /usr/lib32/libffi-3.0.12/include/
    /usr/lib32/libffi-3.0.12/include/ffi.h
    /usr/lib32/libffi-3.0.12/include/ffitarget.h
    /usr/lib/avahi/service-types.db.pacsave
    /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
    /usr/lib/gio/modules/giomodule.cache
    /usr/lib/gtk-2.0/2.10.0/immodules.cache
    /usr/lib/gtk-3.0/3.0.0/immodules.cache
    /usr/lib/locale/locale-archive
    /usr/lib/modules/3.7.10-1-ARCH/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/arch/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/arch/x86
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/acpi
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/base
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/block
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/bus
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/char
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/dca
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/dma/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/dma/ioat
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/md/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/pcmcia
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/staging/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/target
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/affs
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/jbd2
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/jffs2
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/lockd
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/logfs
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/ufs
    /usr/lib/modules/3.7.10-1-ARCH/kernel/kernel/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/sound/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/sound/drivers
    /usr/lib/modules/extramodules-3.11-ARCH/phc-intel.ko
    /usr/lib/systemd/system/first-boot.service
    /usr/lib/systemd/system/pacman-init.service
    /usr/lib/systemd/system-sleep/00powersave
    /usr/lib/systemd/system-sleep/tpm.sh
    /usr/lib/tmpfiles.d/transmission.conf.backup
    /usr/share/applications/mimeinfo.cache
    /usr/share/fonts/local/
    /usr/share/fonts/local/fonts.dir
    /usr/share/fonts/local/fonts.scale
    /usr/share/fonts/misc/fonts.dir
    /usr/share/fonts/misc/fonts.scale
    /usr/share/fonts/OTF/fonts.dir
    /usr/share/fonts/OTF/fonts.scale
    /usr/share/fonts/TTF/fonts.dir
    /usr/share/fonts/TTF/fonts.scale
    /usr/share/fonts/Type1/fonts.dir
    /usr/share/fonts/Type1/fonts.scale
    /usr/share/gdb/python/gdb/command/explore.pyc
    /usr/share/gdb/python/gdb/command/__init__.pyc
    /usr/share/gdb/python/gdb/command/pretty_printers.pyc
    /usr/share/gdb/python/gdb/command/prompt.pyc
    /usr/share/gdb/python/gdb/prompt.pyc
    /usr/share/glib-2.0/gdb/glib.pyc
    /usr/share/glib-2.0/gdb/gobject.pyc
    /usr/share/glib-2.0/schemas/gschemas.compiled
    /usr/share/gtk-doc/html/gtk2/AbstractObje....html
    /usr/share/icons/gnome/icon-theme.cache
    /usr/share/icons/hicolor/icon-theme.cache
    /usr/share/info/dir
    /usr/share/libgphoto2/
    /usr/share/libgphoto2/asus_oled.ko.gz
    /usr/share/locale/en@cyrillic/
    /usr/share/locale/en@cyrillic/LC_MESSAGE?
    /usr/share/mime/aliases
    /usr/share/mime/application/
    /usr/share/mime/application/andrew-inset.xml
    /usr/share/mime/application/annodex.xml
    /usr/share/mime/application/atom+xml.xml
    /usr/share/mime/application/dicom.xml
    /usr/share/mime/application/ecmascript.xml
    /usr/share/mime/application/epub+zip.xml
    /usr/share/mime/application/font-woff.xml
    /usr/share/mime/application/gml+xml.xml
    /usr/share/mime/application/gnunet-directory.xml
    /usr/share/mime/application/gzip.xml
    /usr/share/mime/application/illustrator.xml
    /usr/share/mime/application/javascript.xml
    /usr/share/mime/application/mac-binhex40.xml
    /usr/share/mime/application/mathematica.xml
    /usr/share/mime/application/mathml+xml.xml
    /usr/share/mime/application/mbox.xml
    /usr/share/mime/application/metalink4+xml.xml
    /usr/share/mime/application/metalink+xml.xml
    /usr/share/mime/application/msword-template.xml
    /usr/share/mime/application/msword.xml
    /usr/share/mime/application/mxf.xml
    /usr/share/mime/application/nemo-action.xml
    /usr/share/mime/application/octet-stream.xml
    /usr/share/mime/application/oda.xml
    /usr/share/mime/application/ogg.xml
    /usr/share/mime/application/oxps.xml
    /usr/share/mime/application/pdf.xml
    /usr/share/mime/application/pgp-encrypted.xml
    /usr/share/mime/application/pgp-keys.xml
    /usr/share/mime/application/pgp-signature.xml
    /usr/share/mime/application/pkcs10.xml
    /usr/share/mime/application/pkcs7-mime.xml
    /usr/share/mime/application/pkcs7-signature.xml
    /usr/share/mime/application/pkcs8.xml
    /usr/share/mime/application/pkix-cert.xml
    /usr/share/mime/application/pkix-crl.xml
    /usr/share/mime/application/pkix-pkipath.xml
    /usr/share/mime/application/postscript.xml
    /usr/share/mime/application/prs.plucker.xml
    /usr/share/mime/application/ram.xml
    /usr/share/mime/application/rdf+xml.xml
    /usr/share/mime/application/relax-ng-compact-syntax.xml
    /usr/share/mime/application/rss+xml.xml
    /usr/share/mime/application/rtf.xml
    /usr/share/mime/application/sdp.xml
    /usr/share/mime/application/sieve.xml
    /usr/share/mime/application/smil.xml
    /usr/share/mime/application/vnd.android.package-archive.xml
    /usr/share/mime/application/vnd.apple.mpegurl.xml
    /usr/share/mime/application/vnd.corel-draw.xml
    /usr/share/mime/application/vnd.emusic-emusic_package.xml
    /usr/share/mime/application/vnd.google-earth.kml+xml.xml
    /usr/share/mime/application/vnd.google-earth.kmz.xml
    /usr/share/mime/application/vnd.hp-hpgl.xml
    /usr/share/mime/application/vnd.hp-pcl.xml
    /usr/share/mime/application/vnd.iccprofile.xml
    /usr/share/mime/application/vnd.insync.link.drive.doc.xml
    /usr/share/mime/application/vnd.insync.link.drive.draw.xml
    /usr/share/mime/application/vnd.insync.link.drive.form.xml
    /usr/share/mime/application/vnd.insync.link.drive.link.xml
    /usr/share/mime/application/vnd.insync.link.drive.note.xml
    /usr/share/mime/application/vnd.insync.link.drive.script.xml
    /usr/share/mime/application/vnd.insync.link.drive.sheet.xml
    /usr/share/mime/application/vnd.insync.link.drive.slides.xml
    /usr/share/mime/application/vnd.insync.link.drive.table.xml
    /usr/share/mime/application/vnd.lotus-1-2-3.xml
    /usr/share/mime/application/vnd.lotus-wordpro.xml
    /usr/share/mime/application/vnd.mozilla.xul+xml.xml
    /usr/share/mime/application/vnd.ms-access.xml
    /usr/share/mime/application/vnd.ms-cab-compressed.xml
    /usr/share/mime/application/vnd.ms-excel.addin.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.sheet.binary.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.sheet.binary.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.sheet.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.sheet.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.template.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.template.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.xml
    /usr/share/mime/application/vnd.ms-htmlhelp.xml
    /usr/share/mime/application/vnd.ms-powerpoint.addin.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.presentation.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.presentation.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.slide.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.slideshow.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.template.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.template.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.xml
    /usr/share/mime/application/vnd.ms-tnef.xml
    /usr/share/mime/application/vnd.ms-word.document.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-word.document.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-word.template.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-word.template.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-word.xml
    /usr/share/mime/application/vnd.ms-works.xml
    /usr/share/mime/application/vnd.ms-wpl.xml
    /usr/share/mime/application/vnd.oasis.opendocument.chart-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.chart.xml
    /usr/share/mime/application/vnd.oasis.opendocument.database.xml
    /usr/share/mime/application/vnd.oasis.opendocument.formula-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.formula.xml
    /usr/share/mime/application/vnd.oasis.opendocument.graphics-flat-xml.xml
    /usr/share/mime/application/vnd.oasis.opendocument.graphics-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.graphics.xml
    /usr/share/mime/application/vnd.oasis.opendocument.image.xml
    /usr/share/mime/application/vnd.oasis.opendocument.presentation-flat-xml.xml
    /usr/share/mime/application/vnd.oasis.opendocument.presentation-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.presentation.xml
    /usr/share/mime/application/vnd.oasis.opendocument.spreadsheet-flat-xml.xml
    /usr/share/mime/application/vnd.oasis.opendocument.spreadsheet-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.spreadsheet.xml
    /usr/share/mime/application/vnd.oasis.opendocument.text-flat-xml.xml
    /usr/share/mime/application/vnd.oasis.opendocument.text-master.xml
    /usr/share/mime/application/vnd.oasis.opendocument.text-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.text-web.xml
    /usr/share/mime/application/vnd.oasis.opendocument.text.xml
    /usr/share/mime/application/vnd.openofficeorg.extension.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.presentation.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slideshow.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slide.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.template.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.template.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.document.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.template.xml
    /usr/share/mime/application/vnd.palm.xml
    /usr/share/mime/application/vnd.rn-realmedia.xml
    /usr/share/mime/application/vnd.stardivision.calc.xml
    /usr/share/mime/application/vnd.stardivision.chart.xml
    /usr/share/mime/application/vnd.stardivision.draw.xml
    /usr/share/mime/application/vnd.stardivision.impress.xml
    /usr/share/mime/application/vnd.stardivision.mail.xml
    /usr/share/mime/application/vnd.stardivision.math.xml
    /usr/share/mime/application/vnd.stardivision.writer.xml
    /usr/share/mime/application/vnd.sun.xml.base.xml
    /usr/share/mime/application/vnd.sun.xml.calc.template.xml
    /usr/share/mime/application/vnd.sun.xml.calc.xml
    /usr/share/mime/application/vnd.sun.xml.draw.template.xml
    /usr/share/mime/application/vnd.sun.xml.draw.xml
    /usr/share/mime/application/vnd.sun.xml.impress.template.xml
    /usr/share/mime/application/vnd.sun.xml.impress.xml
    /usr/share/mime/application/vnd.sun.xml.math.xml
    /usr/share/mime/application/vnd.sun.xml.writer.global.xml
    /usr/share/mime/application/vnd.sun.xml.writer.template.xml
    /usr/share/mime/application/vnd.sun.xml.writer.xml
    /usr/share/mime/application/vnd.symbian.install.xml
    /usr/share/mime/application/vnd.tcpdump.pcap.xml
    /usr/share/mime/application/vnd.visio.xml
    /usr/share/mime/application/vnd.wordperfect.xml
    /usr/share/mime/application/winhlp.xml
    /usr/share/mime/application/x-7z-compressed.xml
    /usr/share/mime/application/x-abiword.xml
    /usr/share/mime/application/x-ace.xml
    /usr/share/mime/application/x-alz.xml
    /usr/share/mime/application/x-amipro.xml
    /usr/share/mime/application/x-aportisdoc.xml
    /usr/share/mime/application/x-apple-diskimage.xml
    /usr/share/mime/application/x-applix-spreadsheet.xml
    /usr/share/mime/application/x-applix-word.xml
    /usr/share/mime/application/x-archive.xml
    /usr/share/mime/application/x-arc.xml
    /usr/share/mime/application/x-arj.xml
    /usr/share/mime/application/x-asp.xml
    /usr/share/mime/application/x-audacity-project.xml
    /usr/share/mime/application/x-awk.xml
    /usr/share/mime/application/x-bcpio.xml
    /usr/share/mime/application/x-bittorrent.xml
    /usr/share/mime/application/x-blender.xml
    /usr/share/mime/application/x-bzdvi.xml
    /usr/share/mime/application/x-bzip-compressed-tar.xml
    /usr/share/mime/application/x-bzip.xml
    /usr/share/mime/application/x-bzpdf.xml
    /usr/share/mime/application/x-bzpostscript.xml
    /usr/share/mime/application/x-cb7.xml
    /usr/share/mime/application/x-cbr.xml
    /usr/share/mime/application/x-cbt.xml
    /usr/share/mime/application/x-cbz.xml
    /usr/share/mime/application/x-ccmx.xml
    /usr/share/mime/application/x-cd-image.xml
    /usr/share/mime/application/x-cdrdao-toc.xml
    /usr/share/mime/application/x-chess-pgn.xml
    /usr/share/mime/application/x-cisco-vpn-settings.xml
    /usr/share/mime/application/x-class-file.xml
    /usr/share/mime/application/x-compressed-tar.xml
    /usr/share/mime/application/x-compress.xml
    /usr/share/mime/application/x-core.xml
    /usr/share/mime/application/x-cpio-compressed.xml
    /usr/share/mime/application/x-cpio.xml
    /usr/share/mime/application/x-csh.xml
    /usr/share/mime/application/x-cue.xml
    /usr/share/mime/application/x-dar.xml
    /usr/share/mime/application/x-dbf.xml
    /usr/share/mime/application/x-dc-rom.xml
    /usr/share/mime/application/x-deb.xml
    /usr/share/mime/application/x-designer.xml
    /usr/share/mime/application/x-desktop.xml
    /usr/share/mime/application/x-dia-diagram.xml
    /usr/share/mime/application/x-dia-shape.xml
    /usr/share/mime/application/x-docbook+xml.xml
    /usr/share/mime/application/x-dvi.xml
    /usr/share/mime/application/x-egon.xml
    /usr/share/mime/application/x-e-theme.xml
    /usr/share/mime/application/x-executable.xml
    /usr/share/mime/application/x-fictionbook+xml.xml
    /usr/share/mime/application/x-fluid.xml
    /usr/share/mime/application/x-font-afm.xml
    /usr/share/mime/application/x-font-bdf.xml
    /usr/share/mime/application/x-font-dos.xml
    /usr/share/mime/application/x-font-framemaker.xml
    /usr/share/mime/application/x-font-libgrx.xml
    /usr/share/mime/application/x-font-linux-psf.xml
    /usr/share/mime/application/x-font-otf.xml
    /usr/share/mime/application/x-font-pcf.xml
    /usr/share/mime/application/x-font-speedo.xml
    /usr/share/mime/application/x-font-sunos-news.xml
    /usr/share/mime/application/x-font-tex-tfm.xml
    /usr/share/mime/application/x-font-tex.xml
    /usr/share/mime/application/x-font-ttf.xml
    /usr/share/mime/application/x-font-ttx.xml
    /usr/share/mime/application/x-font-type1.xml
    /usr/share/mime/application/x-font-vfont.xml
    /usr/share/mime/application/x-frame.xml
    /usr/share/mime/application/x-gameboy-rom.xml
    /usr/share/mime/application/x-gba-rom.xml
    /usr/share/mime/application/x-gdbm.xml
    /usr/share/mime/application/x-gedcom.xml
    /usr/share/mime/application/x-genesis-rom.xml
    /usr/share/mime/application/x-gettext-translation.xml
    /usr/share/mime/application/x-glade.xml
    /usr/share/mime/application/x-gmc-link.xml
    /usr/share/mime/application/x-gnome-saved-search.xml
    /usr/share/mime/application/x-gnucash.xml
    /usr/share/mime/application/x-gnumeric.xml
    /usr/share/mime/application/x-gnuplot.xml
    /usr/share/mime/application/x-go-sgf.xml
    /usr/share/mime/application/x-graphite.xml
    /usr/share/mime/application/x-gtk-builder.xml
    /usr/share/mime/application/x-gtktalog.xml
    /usr/share/mime/application/x-gzdvi.xml
    /usr/share/mime/application/x-gz-font-linux-psf.xml
    /usr/share/mime/application/x-gzpdf.xml
    /usr/share/mime/application/x-gzpostscript.xml
    /usr/share/mime/application/x-hdf.xml
    /usr/share/mime/application/xhtml+xml.xml
    /usr/share/mime/application/x-hwp.xml
    /usr/share/mime/application/x-hwt.xml
    /usr/share/mime/application/x-ica.xml
    /usr/share/mime/application/x-iff.xml
    /usr/share/mime/application/x-ipod-firmware.xml
    /usr/share/mime/application/x-it87.xml
    /usr/share/mime/application/x-java-archive.xml
    /usr/share/mime/application/x-java-jce-keystore.xml
    /usr/share/mime/application/x-java-jnlp-file.xml
    /usr/share/mime/application/x-java-keystore.xml
    /usr/share/mime/application/x-java-pack200.xml
    /usr/share/mime/application/x-java.xml
    /usr/share/mime/application/x-jbuilder-project.xml
    /usr/share/mime/application/x-karbon.xml
    /usr/share/mime/application/x-kchart.xml
    /usr/share/mime/application/x-kexi-connectiondata.xml
    /usr/share/mime/application/x-kexiproject-shortcut.xml
    /usr/share/mime/application/x-kexiproject-sqlite2.xml
    /usr/share/mime/application/x-kexiproject-sqlite3.xml
    /usr/share/mime/application/x-kformula.xml
    /usr/share/mime/application/x-killustrator.xml
    /usr/share/mime/application/x-kivio.xml
    /usr/share/mime/application/x-kontour.xml
    /usr/share/mime/application/x-kpovmodeler.xml
    /usr/share/mime/application/x-kpresenter.xml
    /usr/share/mime/application/x-krita.xml
    /usr/share/mime/application/x-kspread-crypt.xml
    /usr/share/mime/application/x-kspread.xml
    /usr/share/mime/application/x-ksysv-package.xml
    /usr/share/mime/application/x-kugar.xml
    /usr/share/mime/application/x-kword-crypt.xml
    /usr/share/mime/application/x-kword.xml
    /usr/share/mime/application/x-lha.xml
    /usr/share/mime/application/x-lhz.xml
    /usr/share/mime/application/x-lrzip-compressed-tar.xml
    /usr/share/mime/application/x-lrzip.xml
    /usr/share/mime/application/x-lyx.xml
    /usr/share/mime/application/x-lzip.xml
    /usr/share/mime/application/x-lzma-compressed-tar.xml
    /usr/share/mime/application/x-lzma.xml
    /usr/share/mime/application/x-lzop.xml
    /usr/share/mime/application/x-m4.xml
    /usr/share/mime/application/x-macbinary.xml
    /usr/share/mime/application/x-magicpoint.xml
    /usr/share/mime/application/x-markaby.xml
    /usr/share/mime/application/x-matroska.xml
    /usr/share/mime/application/x-meld-comparison.xml
    /usr/share/mime/application/x-mif.xml
    /usr/share/mime/application/x-mimearchive.xml
    /usr/share/mime/application/xml-dtd.xml
    /usr/share/mime/application/xml-external-parsed-entity.xml
    /usr/share/mime/application/xml.xml
    /usr/share/mime/application/x-mobipocket-ebook.xml
    /usr/share/mime/application/x-mozilla-bookmarks.xml
    /usr/share/mime/application/x-ms-dos-executable.xml
    /usr/share/mime/application/x-msi.xml
    /usr/share/mime/application/x-ms-wim.xml
    /usr/share/mime/application/x-mswinurl.xml
    /usr/share/mime/application/x-mswrite.xml
    /usr/share/mime/application/x-msx-rom.xml
    /usr/share/mime/application/x-n64-rom.xml
    /usr/share/mime/application/x-nautilus-link.xml
    /usr/share/mime/application/x-navi-animation.xml
    /usr/share/mime/application/x-nes-rom.xml
    /usr/share/mime/application/x-netcdf.xml
    /usr/share/mime/application/x-netshow-channel.xml
    /usr/share/mime/application/x-nintendo-ds-rom.xml
    /usr/share/mime/application/x-nzb.xml
    /usr/share/mime/application/x-object.xml
    /usr/share/mime/application/x-oleo.xml
    /usr/share/mime/application/x-ole-storage.xml
    /usr/share/mime/application/x-pak.xml
    /usr/share/mime/application/x-par2.xml
    /usr/share/mime/application/x-pef-executable.xml
    /usr/share/mime/application/x-perl.xml
    /usr/share/mime/application/x-php.xml
    /usr/share/mime/application/x-pkcs12.xml
    /usr/share/mime/application/x-pkcs7-certificates.xml
    /usr/share/mime/application/x-planperfect.xml
    /usr/share/mime/application/x-pocket-word.xml
    /usr/share/mime/application/x-profile.xml
    /usr/share/mime/application/x-pw.xml
    /usr/share/mime/application/x-python-bytecode.xml
    /usr/share/mime/application/x-qtiplot.xml
    /usr/share/mime/application/x-quattropro.xml
    /usr/share/mime/application/x-quicktime-media-link.xml
    /usr/share/mime/application/x-qw.xml
    /usr/share/mime/application/x-rar.xml
    /usr/share/mime/application/x-rpm.xml
    /usr/share/mime/application/x-ruby.xml
    /usr/share/mime/application/x-sami.xml
    /usr/share/mime/application/x-sc.xml
    /usr/share/mime/application/x-shared-library-la.xml
    /usr/share/mime/application/x-sharedlib.xml
    /usr/share/mime/application/x-shar.xml
    /usr/share/mime/application/x-shellscript.xml
    /usr/share/mime/application/x-shockwave-flash.xml
    /usr/share/mime/application/x-shorten.xml
    /usr/share/mime/application/x-siag.xml
    /usr/share/mime/application/x-slp.xml
    /usr/share/mime/application/xslt+xml.xml
    /usr/share/mime/application/x-smaf.xml
    /usr/share/mime/application/x-sms-rom.xml
    /usr/share/mime/application/x-snes-rom.xml
    /usr/share/mime/application/x-source-rpm.xml
    /usr/share/mime/application/xspf+xml.xml
    /usr/share/mime/application/x-spss-por.xml
    /usr/share/mime/application/x-spss-sav.xml
    /usr/share/mime/application/x-sqlite2.xml
    /usr/share/mime/application/x-sqlite3.xml
    /usr/share/mime/application/x-stuffit.xml
    /usr/share/mime/application/x-subrip.xml
    /usr/share/mime/application/x-sv4cpio.xml
    /usr/share/mime/application/x-sv4crc.xml
    /usr/share/mime/application/x-t602.xml
    /usr/share/mime/application/x-tar.xml
    /usr/share/mime/application/x-tarz.xml
    /usr/share/mime/application/x-tex-gf.xml
    /usr/share/mime/application/x-tex-pk.xml
    /usr/share/mime/application/x-tgif.xml
    /usr/share/mime/application/x-theme.xml
    /usr/share/mime/application/x-toutdoux.xml
    /usr/share/mime/application/x-trash.xml
    /usr/share/mime/application/x-trig.xml
    /usr/share/mime/application/x-troff-man-compressed.xml
    /usr/share/mime/application/x-troff-man.xml
    /usr/share/mime/application/x-tzo.xml
    /usr/share/mime/application/x-ufraw.xml
    /usr/share/mime/application/x-ustar.xml
    /usr/share/mime/application/x-virtualbox-hdd.xml
    /usr/share/mime/application/x-virtualbox-ova.xml
    /usr/share/mime/application/x-virtualbox-ovf.xml
    /usr/share/mime/application/x-virtualbox-vbox-extpack.xml
    /usr/share/mime/application/x-virtualbox-vbox.xml
    /usr/share/mime/application/x-virtualbox-vdi.xml
    /usr/share/mime/application/x-virtualbox-vhd.xml
    /usr/share/mime/application/x-virtualbox-vmdk.xml
    /usr/share/mime/application/x-wais-source.xml
    /usr/share/mime/application/x-windows-themepack.xml
    /usr/share/mime/application/x-wpg.xml
    /usr/share/mime/application/x-wwf.xml
    /usr/share/mime/application/x-x509-ca-cert.xml
    /usr/share/mime/application/x-xbel.xml
    /usr/share/mime/application/x-xliff.xml
    /usr/share/mime/application/x-xoj.xml
    /usr/share/mime/application/x-xpinstall.xml
    /usr/share/mime/application/x-xz-compressed-tar.xml
    /usr/share/mime/application/x-xzpdf.xml
    /usr/share/mime/application/x-xz.xml
    /usr/share/mime/application/x-yaml.xml
    /usr/share/mime/application/x-zerosize.xml
    /usr/share/mime/application/x-zoo.xml
    /usr/share/mime/application/zip.xml
    /usr/share/mime/audio/
    /usr/share/mime/audio/aac.xml
    /usr/share/mime/audio/ac3.xml
    /usr/share/mime/audio/AMR-WB.xml
    /usr/share/mime/audio/AMR.xml
    /usr/share/mime/audio/annodex.xml
    /usr/share/mime/audio/basic.xml
    /usr/share/mime/audio/flac.xml
    /usr/share/mime/audio/midi.xml
    /usr/share/mime/audio/mp2.xml
    /usr/share/mime/audio/mp4.xml
    /usr/share/mime/audio/mpeg.xml
    /usr/share/mime/audio/ogg.xml
    /usr/share/mime/audio/prs.sid.xml
    /usr/share/mime/audio/vnd.dts.hd.xml
    /usr/share/mime/audio/vnd.dts.xml
    /usr/share/mime/audio/vnd.rn-realaudio.xml
    /usr/share/mime/audio/webm.xml
    /usr/share/mime/audio/x-adpcm.xml
    /usr/share/mime/audio/x-aifc.xml
    /usr/share/mime/audio/x-aiff.xml
    /usr/share/mime/audio/x-amzxml.xml
    /usr/share/mime/audio/x-ape.xml
    /usr/share/mime/audio/x-flac+ogg.xml
    /usr/share/mime/audio/x-gsm.xml
    /usr/share/mime/audio/x-iriver-pla.xml
    /usr/share/mime/audio/x-it.xml
    /usr/share/mime/audio/x-m4b.xml
    /usr/share/mime/audio/x-matroska.xml
    /usr/share/mime/audio/x-minipsf.xml
    /usr/share/mime/audio/x-mo3.xml
    /usr/share/mime/audio/x-mod.xml
    /usr/share/mime/audio/x-mpegurl.xml
    /usr/share/mime/audio/x-ms-asx.xml
    /usr/share/mime/audio/x-ms-wma.xml
    /usr/share/mime/audio/x-musepack.xml
    /usr/share/mime/audio/x-psflib.xml
    /usr/share/mime/audio/x-psf.xml
    /usr/share/mime/audio/x-riff.xml
    /usr/share/mime/audio/x-s3m.xml
    /usr/share/mime/audio/x-scpls.xml
    /usr/share/mime/audio/x-speex+ogg.xml
    /usr/share/mime/audio/x-speex.xml
    /usr/share/mime/audio/x-stm.xml
    /usr/share/mime/audio/x-tta.xml
    /usr/share/mime/audio/x-voc.xml
    /usr/share/mime/audio/x-vorbis+ogg.xml
    /usr/share/mime/audio/x-wavpack-correction.xml
    /usr/share/mime/audio/x-wavpack.xml
    /usr/share/mime/audio/x-wav.xml
    /usr/share/mime/audio/x-xi.xml
    /usr/share/mime/audio/x-xmf.xml
    /usr/share/mime/audio/x-xm.xml
    /usr/share/mime/generic-icons
    /usr/share/mime/globs
    /usr/share/mime/globs2
    /usr/share/mime/icons
    /usr/share/mime/image/
    /usr/share/mime/image/bmp.xml
    /usr/share/mime/image/cgm.xml
    /usr/share/mime/image/dpx.xml
    /usr/share/mime/image/fax-g3.xml
    /usr/share/mime/image/fits.xml
    /usr/share/mime/image/g3fax.xml
    /usr/share/mime/image/gif.xml
    /usr/share/mime/image/ief.xml
    /usr/share/mime/image/jp2.xml
    /usr/share/mime/image/jpeg.xml
    /usr/share/mime/image/openraster.xml
    /usr/share/mime/image/png.xml
    /usr/share/mime/image/rle.xml
    /usr/share/mime/image/svg+xml-compressed.xml
    /usr/share/mime/image/svg+xml.xml
    /usr/share/mime/image/tiff.xml
    /usr/share/mime/image/vnd.adobe.photoshop.xml
    /usr/share/mime/image/vnd.djvu.xml
    /usr/share/mime/image/vnd.dwg.xml
    /usr/share/mime/image/vnd.dxf.xml
    /usr/share/mime/image/vnd.microsoft.icon.xml
    /usr/share/mime/image/vnd.ms-modi.xml
    /usr/share/mime/image/vnd.rn-realpix.xml
    /usr/share/mime/image/vnd.wap.wbmp.xml
    /usr/share/mime/image/x-3ds.xml
    /usr/share/mime/image/x-adobe-dng.xml
    /usr/share/mime/image/x-apple-ios-png.xml
    /usr/share/mime/image/x-applix-graphics.xml
    /usr/share/mime/image/x-bzeps.xml
    /usr/share/mime/image/x-canon-cr2.xml
    /usr/share/mime/image/x-canon-crw.xml
    /usr/share/mime/image/x-cmu-raster.xml
    /usr/share/mime/image/x-compressed-xcf.xml
    /usr/share/mime/image/x-dcraw.xml
    /usr/share/mime/image/x-dds.xml
    /usr/share/mime/image/x-dib.xml
    /usr/share/mime/image/x-emf.xml
    /usr/share/mime/image/x-eps.xml
    /usr/share/mime/image/x-exr.xml
    /usr/share/mime/image/x-fpx.xml
    /usr/share/mime/image/x-fuji-raf.xml
    /usr/share/mime/image/x-gzeps.xml
    /usr/share/mime/image/x-icns.xml
    /usr/share/mime/image/x-ilbm.xml
    /usr/share/mime/image/x-jng.xml
    /usr/share/mime/image/x-kodak-dcr.xml
    /usr/share/mime/image/x-kodak-k25.xml
    /usr/share/mime/image/x-kodak-kdc.xml
    /usr/share/mime/image/x-lwo.xml
    /usr/share/mime/image/x-lws.xml
    /usr/share/mime/image/x-macpaint.xml
    /usr/share/mime/image/x-minolta-mrw.xml
    /usr/share/mime/image/x-msod.xml
    /usr/share/mime/image/x-niff.xml
    /usr/share/mime/image/x-nikon-nef.xml
    /usr/share/mime/image/x-olympus-orf.xml
    /usr/share/mime/image/x-panasonic-raw2.xml
    /usr/share/mime/image/x-panasonic-raw.xml
    /usr/share/mime/image/x-pcx.xml
    /usr/share/mime/image/x-pentax-pef.xml
    /usr/share/mime/image/x-photo-cd.xml
    /usr/share/mime/image/x-pict.xml
    /usr/share/mime/image/x-portable-anymap.xml
    /usr/share/mime/image/x-portable-bitmap.xml
    /usr/share/mime/image/x-portable-graymap.xml
    /usr/share/mime/image/x-portable-pixmap.xml
    /usr/share/mime/image/x-quicktime.xml
    /usr/share/mime/image/x-rgb.xml
    /usr/share/mime/image/x-sgi.xml
    /usr/share/mime/image/x-sigma-x3f.xml
    /usr/share/mime/image/x-skencil.xml
    /usr/share/mime/image/x-sony-arw.xml
    /usr/share/mime/image/x-sony-sr2.xml
    /usr/share/mime/image/x-sony-srf.xml
    /usr/share/mime/image/x-sun-raster.xml
    /usr/share/mime/image/x-tga.xml
    /usr/share/mime/image/x-win-bitmap.xml
    /usr/share/mime/image/x-wmf.xml
    /usr/share/mime/image/x-xbitmap.xml
    /usr/share/mime/image/x-xcf.xml
    /usr/share/mime/image/x-xcursor.xml
    /usr/share/mime/image/x-xfig.xml
    /usr/share/mime/image/x-xpixmap.xml
    /usr/share/mime/image/x-xwindowdump.xml
    /usr/share/mime/inode/
    /usr/share/mime/inode/blockdevice.xml
    /usr/share/mime/inode/chardevice.xml
    /usr/share/mime/inode/directory.xml
    /usr/share/mime/inode/fifo.xml
    /usr/share/mime/inode/mount-point.xml
    /usr/share/mime/inode/socket.xml
    /usr/share/mime/inode/symlink.xml
    /usr/share/mime/magic
    /usr/share/mime/message/
    /usr/share/mime/message/delivery-status.xml
    /usr/share/mime/message/disposition-notification.xml
    /usr/share/mime/message/external-body.xml
    /usr/share/mime/message/news.xml
    /usr/share/mime/message/partial.xml
    /usr/share/mime/message/rfc822.xml
    /usr/share/mime/message/x-gnu-rmail.xml
    /usr/share/mime/mime.cache
    /usr/share/mime/model/
    /usr/share/mime/model/vrml.xml
    /usr/share/mime/multipart/
    /usr/share/mime/multipart/alternative.xml
    /usr/share/mime/multipart/appledouble.xml
    /usr/share/mime/multipart/digest.xml
    /usr/share/mime/multipart/encrypted.xml
    /usr/share/mime/multipart/mixed.xml
    /usr/share/mime/multipart/related.xml
    /usr/share/mime/multipart/report.xml
    /usr/share/mime/multipart/signed.xml
    /usr/share/mime/multipart/x-mixed-replace.xml
    /usr/share/mime/subclasses
    /usr/share/mime/text/
    /usr/share/mime/text/cache-manifest.xml
    /usr/share/mime/text/calendar.xml
    /usr/share/mime/text/css.xml
    /usr/share/mime/text/csv.xml
    /usr/share/mime/text/enriched.xml
    /usr/share/mime/text/htmlh.xml
    /usr/share/mime/text/html.xml
    /usr/share/mime/text/plain.xml
    /usr/share/mime/text/rfc822-headers.xml
    /usr/share/mime/text/richtext.xml
    /usr/share/mime/text/sgml.xml
    /usr/share/mime/text/spreadsheet.xml
    /usr/share/mime/text/tab-separated-values.xml
    /usr/share/mime/text/troff.xml
    /usr/share/mime/text/vcard.xml
    /usr/share/mime/text/vnd.graphviz.xml
    /usr/share/mime/text/vnd.rn-realtext.xml
    /usr/share/mime/text/vnd.sun.j2me.app-descriptor.xml
    /usr/share/mime/text/vnd.trolltech.linguist.xml
    /usr/share/mime/text/vnd.wap.wmlscript.xml
    /usr/share/mime/text/vnd.wap.wml.xml
    /usr/share/mime/text/vtt.xml
    /usr/share/mime/text/x-adasrc.xml
    /usr/share/mime/text/x-authors.xml
    /usr/share/mime/text/x-bibtex.xml
    /usr/share/mime/text/x-changelog.xml
    /usr/share/mime/text/x-c++hdr.xml
    /usr/share/mime/text/x-chdr.xml
    /usr/share/mime/text/x-cmake.xml
    /usr/share/mime/text/x-cobol.xml
    /usr/share/mime/text/x-copying.xml
    /usr/share/mime/text/x-credits.xml
    /usr/share/mime/text/x-csharp.xml
    /usr/share/mime/text/x-c++src.xml
    /usr/share/mime/text/x-csrc.xml
    /usr/share/mime/text/x-dcl.xml
    /usr/share/mime/text/x-dsl.xml
    /usr/share/mime/text/x-dsrc.xml
    /usr/share/mime/text/x-eiffel.xml
    /usr/share/mime/text/x-emacs-lisp.xml
    /usr/share/mime/text/x-erlang.xml
    /usr/share/mime/text/x-fortran.xml
    /usr/share/mime/text/x-gettext-translation-template.xml
    /usr/share/mime/text/x-gettext-translation.xml
    /usr/share/mime/text/x-google-video-pointer.xml
    /usr/share/mime/text/x-go.xml
    /usr/share/mime/text/x-haskell.xml
    /usr/share/mime/text/x-idl.xml
    /usr/share/mime/text/x-iMelody.xml
    /usr/share/mime/text/x-install.xml
    /usr/share/mime/text/x-iptables.xml
    /usr/share/mime/text/x-java.xml
    /usr/share/mime/text/x-ldif.xml
    /usr/share/mime/text/x-lilypond.xml
    /usr/share/mime/text/x-literate-haskell.xml
    /usr/share/mime/text/x-log.xml
    /usr/share/mime/text/x-lua.xml
    /usr/share/mime/text/x-makefile.xml
    /usr/share/mime/text/x-markdown.xml
    /usr/share/mime/text/x-matlab.xml
    /usr/share/mime/text/xmcd.xml
    /usr/share/mime/text/x-microdvd.xml
    /usr/share/mime/text/x-moc.xml
    /usr/share/mime/text/x-modelica.xml
    /usr/share/mime/text/x-mof.xml
    /usr/share/mime/text/x-mpsub.xml
    /usr/share/mime/text/x-mrml.xml
    /usr/share/mime/text/x-ms-regedit.xml
    /usr/share/mime/text/x-mup.xml
    /usr/share/mime/text/x-nfo.xml
    /usr/share/mime/text/x-objcsrc.xml
    /usr/share/mime/text/x-ocaml.xml
    /usr/share/mime/text/x-ocl.xml
    /usr/share/mime/text/x-ooc.xml
    /usr/share/mime/text/x-opml+xml.xml
    /usr/share/mime/text/x-pascal.xml
    /usr/share/mime/text/x-patch.xml
    /usr/share/mime/text/x-python.xml
    /usr/share/mime/text/x-qml.xml
    /usr/share/mime/text/x-readme.xml
    /usr/share/mime/text/x-reject.xml
    /usr/share/mime/text/x-rpm-spec.xml
    /usr/share/mime/text/x-scala.xml
    /usr/share/mime/text/x-scheme.xml
    /usr/share/mime/text/x-setext.xml
    /usr/share/mime/text/x-sql.xml
    /usr/share/mime/text/x-ssa.xml
    /usr/share/mime/text/x-subviewer.xml
    /usr/share/mime/text/x-svhdr.xml
    /usr/share/mime/text/x-svsrc.xml
    /usr/share/mime/text/x-tcl.xml
    /usr/share/mime/text/x-texinfo.xml
    /usr/share/mime/text/x-tex.xml
    /usr/share/mime/text/x-troff-me.xml
    /usr/share/mime/text/x-troff-mm.xml
    /usr/share/mime/text/x-troff-ms.xml
    /usr/share/mime/text/x-txt2tags.xml
    /usr/share/mime/text/x-uil.xml
    /usr/share/mime/text/x-uri.xml
    /usr/share/mime/text/x-uuencode.xml
    /usr/share/mime/text/x-vala.xml
    /usr/share/mime/text/x-verilog.xml
    /usr/share/mime/text/x-vhdl.xml
    /usr/share/mime/text/x-xmi.xml
    /usr/share/mime/text/x-xslfo.xml
    /usr/share/mime/treemagic
    /usr/share/mime/types
    /usr/share/mime/version
    /usr/share/mime/video/
    /usr/share/mime/video/3gpp2.xml
    /usr/share/mime/video/3gpp.xml
    /usr/share/mime/video/annodex.xml
    /usr/share/mime/video/dv.xml
    /usr/share/mime/video/isivideo.xml
    /usr/share/mime/video/mp2t.xml
    /usr/share/mime/video/mp4.xml
    /usr/share/mime/video/mpeg.xml
    /usr/share/mime/video/ogg.xml
    /usr/share/mime/video/quicktime.xml
    /usr/share/mime/video/vivo.xml
    /usr/share/mime/video/vnd.mpegurl.xml
    /usr/share/mime/video/vnd.rn-realvideo.xml
    /usr/share/mime/video/wavelet.xml
    /usr/share/mime/video/webm.xml
    /usr/share/mime/video/x-anim.xml
    /usr/share/mime/video/x-flic.xml
    /usr/share/mime/video/x-flv.xml
    /usr/share/mime/video/x-javafx.xml
    /usr/share/mime/video/x-matroska.xml
    /usr/share/mime/video/x-mng.xml
    /usr/share/mime/video/x-ms-asf.xml
    /usr/share/mime/video/x-msvideo.xml
    /usr/share/mime/video/x-ms-wmv.xml
    /usr/share/mime/video/x-nsv.xml
    /usr/share/mime/video/x-ogm+ogg.xml
    /usr/share/mime/video/x-sgi-movie.xml
    /usr/share/mime/video/x-theora+ogg.xml
    /usr/share/mime/x-content/
    /usr/share/mime/x-content/audio-cdda.xml
    /usr/share/mime/x-content/audio-dvd.xml
    /usr/share/mime/x-content/audio-player.xml
    /usr/share/mime/x-content/blank-bd.xml
    /usr/share/mime/x-content/blank-cd.xml
    /usr/share/mime/x-content/blank-dvd.xml
    /usr/share/mime/x-content/blank-hddvd.xml
    /usr/share/mime/x-content/ebook-reader.xml
    /usr/share/mime/x-content/image-dcf.xml
    /usr/share/mime/x-content/image-picturecd.xml
    /usr/share/mime/x-content/software.xml
    /usr/share/mime/x-content/unix-software.xml
    /usr/share/mime/x-content/video-bluray.xml
    /usr/share/mime/x-content/video-dvd.xml
    /usr/share/mime/x-content/video-hddvd.xml
    /usr/share/mime/x-content/video-svcd.xml
    /usr/share/mime/x-content/video-vcd.xml
    /usr/share/mime/x-content/win32-software.xml
    /usr/share/mime/x-epoc/
    /usr/share/mime/x-epoc/x-sisx-app.xml
    /usr/share/mime/XMLnamespaces
    /usr/share/texmf/
    /usr/share/texmf-dist/ls-R
    /usr/share/texmf/ls-R
    /usr/var/
    /usr/var/run/
    /usr/var/run/thermald/
    [1] https://wiki.archlinux.org/index.php/Pa … ny_package
    Last edited by orschiro (2013-12-25 13:23:40)

    The /etc/skel folder is (optionally) used when creating a new user as a template for their home directory. By default it usually only has shell config files and X initialisation files, but you (as a system administrator) can add files to it that you want new users to have in their home folders.
    The following is a list of official packages that install files to /etc/skel:
    $ foreach package in $(pkgfile -qg "/etc/skel/*"); do echo "$package:"; pkgfile -lq $package | grep "/etc/skel/."; echo; done
    bash:
    /etc/skel/.bash_logout
    /etc/skel/.bash_profile
    /etc/skel/.bashrc
    grml-zsh-config:
    /etc/skel/.zshrc
    screen:
    /etc/skel/.screenrc
    xorg-xinit:
    /etc/skel/.xinitrc
    /etc/skel/.xsession
    mksh:
    /etc/skel/.mkshrc
    If you didn't copy these files yourself, perhaps they were added by an AUR package (or more likely, several), check with 'pacman -Qo /path/to/file' for several of the files to see if any are owned by unofficial packages. If they are, I would check with the maintainer to see if this is intended (it seems highly irregular in my opinion, and I'd avoid using any packages that polluted my filesystem in such a manner). If they are not owned by a package, then you (or someone else with root access on your installaion) must have created them manually. If it wasn't you, and you don't think you created them manually, check your logs for suspicious activity, and make sure you haven't been compromised. You can remove the files if you don't need them.

  • Adding a ECB item menu action to a declarative Visual Studio 2013 Workflow

    Hi
    I have build a Sandbox 2013  workflow in Visual Studio which I can attach to my desired list.  I want my users to be able to trigger this workflow via the item ECB menu as your can in an App Client Control. Is this easy to do say with a feature
    - assuming you specify the list on workflow initiation.   
    Do I need to import my workflow into SPD 2013 and play around with Actions but that sounds a bit dodgy!
    Regards
    Daniel
    Freelance consultant

    Hi Daniel,
    According to your post, my understanding is that you want to add ECB menu and start a
    special workflow.
    The following materials would be helpful:
    Start a workflow with SharePoint (JavaScript)
    https://gist.github.com/Aymkdn/3873181
    Using ECMAScript Client Object Model from ECB Custom Actions
    http://pholpar.wordpress.com/2011/04/08/using-ecmascript-client-object-model-from-ecb-custom-actions/
    If I misunderstand what you mean, please provide more information about your requirement for further research.
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • How to create new subsite while adding new item to the list by using javascript?

    hi,
    I hav a task ie, when I add item to the list then subsite will create with that list item title and description . So By using javascript, I have to create subsite while adding new item to the list.
    Help me to solve this.
    Thank you, 

    Is your item getting added through Javascript client object model ? If yes, you can write in the success delegate of your list creation method the logic to create the subsite.
    function CreateListItem()
    var clientContext = new SP.ClientContext.get_current();
    var oList = clientContext.get_web().get_lists().getByTitle('List Name');
    var itemCreateInfo = new SP.ListItemCreationInformation();
    this.oListItem = oList.addItem(itemCreateInfo);
    oListItem.set_item('Title', 'My New Item!');
    oListItem.set_item('Body', 'Hello World!');
    oListItem.update();
    clientContext.load(oListItem);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.CreateListItemOnSuccess), Function.createDelegate(this, this.onQueryFailed));
    function CreateListItemOnSuccess() {
    var subsiteTitle = oListItem.get_item('Title');
    //Logic to create a subsite
    function onQueryFailed(sender, args) {
    I have added a sample flow for the above scenario. Have a look at the following lnk for how you can craete a subsite using ecmascript.
    http://ravisoftltd.wordpress.com/2013/03/06/sharepoint-2010-create-site-with-ecma-script-with/
    Geetanjali Arora | My blogs |

  • Opening file present in treeview by clicking on it within a table? I had created a table with a row and two columns. in one column i had dislayed treeview and want that if i click on the file in treeview it gets opened in other column. Can this happen?

    I also got a code in some website related to my problem but there are errors in this code that i am not able to understand can you correct those errors:
    using System;
    using System.IO;
    using System.Collections;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Web;
    using System.Web.SessionState;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.HtmlControls;
    using Microsoft.Web.UI.WebControls;
    namespace shark.TreeView
    /// <summary>
    /// Summary description for DocTree.
    /// </summary>
    public class DocTree : System.Web.UI.Page
    protected Microsoft.Web.UI.WebControls.TreeView TreeCtrl;
    public DocTree()
    Page.Init += new System.EventHandler(Page_Init);
    private void Page_Load(object sender, System.EventArgs e)
    if ( ! this.IsPostBack )
    // add tree node "type" for folders and files
    string imgurl = "/shark/webctrl_client/1_0/Images/";
    TreeNodeType type;
    type = new TreeNodeType();
    type.Type = "folder";
    type.ImageUrl = imgurl + "folder.gif";
    type.ExpandedImageUrl = imgurl + "folderopen.gif";
    TreeCtrl.TreeNodeTypes.Add( type );
    type = new TreeNodeType();
    type.Type = "file";
    type.ImageUrl = imgurl + "html.gif";
    TreeCtrl.TreeNodeTypes.Add( type );
    // start the recursively load from our application root path
    // (we add the trailing "/" for a little substring trimming below)
    GetFolders( MapPath( "~/./" ), TreeCtrl.Nodes );
    // expand 3 levels of the tree
    TreeCtrl.ExpandLevel = 3;
    private void Page_Init(object sender, EventArgs e)
    InitializeComponent();
    // recursive method to load all folders and files into tree
    private void GetFolders( string path, TreeNodeCollection nodes )
    // add nodes for all directories (folders)
    string[] dirs = Directory.GetDirectories( path );
    foreach( string p in dirs )
    string dp = p.Substring( path.Length );
    if ( dp.StartsWith( "_v" ) )
    continue; // ignore frontpage (Vermeer Technology) folders
    nodes.Add( Node( "", p.Substring( path.Length ), "folder" ) );
    // add nodes for all files in this directory (folder)
    string[] files = Directory.GetFiles( path, "*.aspx" );
    foreach( string p in files )
    nodes.Add( Node( p, p.Substring( path.Length ), "file" ) );
    // add all subdirectories for each directory (recursive)
    for( int i = 0; i < nodes.Count; i++ )
    if ( nodes[ i ].Type == "folder" )
    GetFolders( dirs[ i ] + "\\", nodes[i ].Nodes );
    // create a TreeNode from the specified path, text and type
    private TreeNode Node( string path, string text, string type )
    TreeNode n = new TreeNode();
    n.Type = type;
    n.Text = text;
    if ( type == "file" )
    // strip off the physical application root portion of path
    string nav = "/" + path.Substring( MapPath( "/" ).Length );
    nav.Replace( '\\', '/' );
    n.NavigateUrl = nav;
    // set target if using FRAME/IFRAME
    n.Target="doc";
    return n;
    #region Web Form Designer generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    this.Load += new System.EventHandler(this.Page_Load);
    #endregion
    and the design that i got on website for the code that i displayed just above it is
    <%@ Register TagPrefix="iewc" Namespace="Microsoft.Web.UI.WebControls" Assembly="Microsoft.Web.UI.WebControls" %>
    <%@ Page language="c#" Codebehind="DocTree.aspx.cs" AutoEventWireup="false" Inherits="shark.TreeView.DocTree" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
    <HTML>
    <HEAD>
    <meta content="Microsoft Visual Studio 7.0" name="GENERATOR">
    <meta content="C#" name="CODE_LANGUAGE">
    <meta content="JavaScript (ECMAScript)" name="vs_defaultClientScript">
    <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
    </HEAD>
    <body>
    <form id="DocTree" method="post" runat="server">
    <table height="100%" cellSpacing="0" cellPadding="8" border="0">
    <tr height="100%">
    <td vAlign="top">
    <iewc:treeview id="TreeCtrl" runat="server" SystemImagesPath="/shark/webctrl_client/1_0/treeimages/">
    </iewc:treeview>
    </td>
    <td vAlign="top" width="100%" height="100%">
    Click on any *.aspx page in the tree and it should load here <iframe id="doc" name="doc" frameBorder="yes" width="100%" scrolling="auto" height="100%">
    </iframe>
    </td>
    </tr>
    </table>
    </form>
    </body>
    </HTML>
    This is my code for viewing treeview but it is not expanding plz help me in this also
    using System;
    using System.Collections.Generic;
    using System.Configuration;
    using System.Data;
    using System.IO;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.HtmlControls;
    using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;
    using System.Media;
    using System.Drawing;
    using System.Drawing.Imaging;
    public partial class _Default : System.Web.UI.Page
    protected void Page_Load(object sender, EventArgs e)
    if (Page.IsPostBack == false)
    System.IO.DirectoryInfo RootDir = new System.IO.DirectoryInfo(Server.MapPath("~/Files"));
    // output the directory into a node
    TreeNode RootNode = OutputDirectory(RootDir, null);
    // add the output to the tree
    MyTree.Nodes.Add(RootNode);
    TreeNode OutputDirectory(System.IO.DirectoryInfo directory, TreeNode parentNode)
    // validate param
    if (directory == null) return null;
    // create a node for this directory
    TreeNode DirNode = new TreeNode(directory.Name);
    // get subdirectories of the current directory
    System.IO.DirectoryInfo[] SubDirectories = directory.GetDirectories();
    // OutputDirectory(SubDirectories[0], "Directories");
    // output each subdirectory
    for (int DirectoryCount = 0; DirectoryCount < SubDirectories.Length; DirectoryCount++)
    OutputDirectory(SubDirectories[DirectoryCount], DirNode);
    // output the current directories file
    System.IO.FileInfo[] Files = directory.GetFiles();
    for (int FileCount = 0; FileCount < Files.Length; FileCount++)
    DirNode.ChildNodes.Add(new TreeNode(Files[FileCount].Name));
    } // if the parent node is null, return this node
    // otherwise add this node to the parent and return the parent
    if (parentNode == null)
    return DirNode;
    else
    parentNode.ChildNodes.Add(DirNode);
    return parentNode;
    This is my design
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <title></title>
    <style type="text/css">
    .auto-style2
    width: 412px;
    .auto-style3
    width: 174px;
    .auto-style4
    width: 743px;
    .auto-style5
    width: 506px;
    height: 226px;
    </style>
    </head>
    <body>
    <form id="form1" method="post" runat="server">
    <table align:"center" class="auto-style4" border="1" style="table-layout: fixed; border-spacing: 1px">
    <tr>
    <td class="auto-style3">
    <br />
    <br />
    <br />
    <br />
    </td>
    <td class="auto-style2">
    <br />
    <br />
    <br />
    <br />
    </td>
    </tr>
    <tr>
    <td class="auto-style3" valign="top">
    <asp:TreeView Id="MyTree" PathSeparator = "|" ExpandDepth="0" runat="server" ImageSet="Arrows" AutoGenerateDataBindings="False">
    <SelectedNodeStyle Font-Underline="True" HorizontalPadding="0px" VerticalPadding="0px" ForeColor="#5555DD"></SelectedNodeStyle>
    <NodeStyle VerticalPadding="0px" Font-Names="Tahoma" Font-Size="10pt" HorizontalPadding="5px" ForeColor="#000000" NodeSpacing="0px"></NodeStyle>
    <ParentNodeStyle Font-Bold="False" />
    <HoverNodeStyle Font-Underline="True" ForeColor="#5555DD"></HoverNodeStyle>
    </asp:TreeView>
    </td>
    <td class="auto-style2">
    <base target="_blank" /> <iframe frameborder="0" scrolling="yes" marginheight="0" marginwidth="0"
    src="" class="auto-style5"></iframe>
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>

    Hi meghage,
    From your code, it is a WebForm project.
    This forum is to discuss problems of Windows Forms. Your question is not related to the topic of this forum.
    You can consider posting it in asp.net forum for supports . Thanks.
    ASP.NET: http://forums.asp.net
    Regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Flex sdk incremental build will lose swc information

    I have a mxmlc ant task job like this
            <mxmlc 
            file="${trunk_dir}/main/src/main.mxml"
            output="${local_tmp}/app/bin/main.swf"
                      >    
                <load-config filename="${basedir}/flex-config-sea.xml"/>
                <source-path path-element="${FLEX_HOME}/frameworks"/>
            </mxmlc>
    in flex-config-sea.xml I put this in for incremental compile and swc build
          <include-libraries>
             <library>/opt/cruisecontrol-bin-2.8.4/projects/sea_client/trunk/main/libs/Mate_08_9.swc</library>
             <library>/opt/cruisecontrol-bin-2.8.4/projects/sea_client/trunk/main/libs/xprogress.swc</library>
             <library>/opt/cruisecontrol-bin-2.8.4/projects/sea_client/trunk/main/libs/component.swc</library>
          </include-libraries>
          <incremental>true</incremental>
    the first time build is ok, but the second time after I changed one single file, the output is
    [mxmlc] Loading configuration file /opt/cruisecontrol-bin-2.8.4/projects/cc/flex-config-sea.xml
        [mxmlc] Recompile: /opt/cruisecontrol-bin-2.8.4/projects/sea_client/trunk/main/src/C.as
        [mxmlc] Reason: The source file or one of the included files has been updated.
        [mxmlc] Files changed: 1 Files affected: 0
        [mxmlc] Required RSLs:
        [mxmlc]     textLayout_2.0.0.232.swz with 1 failover.
        [mxmlc]     framework_4.6.0.23201.swz with 1 failover.
        [mxmlc]     rpc_4.6.0.23201.swz with 1 failover.
        [mxmlc]     mx_4.6.0.23201.swz with 1 failover.
        [mxmlc]     spark_4.6.0.23201.swz with 1 failover.
        [mxmlc]     sparkskins_4.6.0.23201.swz with 1 failover.
        [mxmlc] /tmp/sea_local/app/bin/main.swf (426617 bytes)
    but the output swf is complaining lack of some swc when running, which didn't show up in the first time
    ReferenceError: Error #1065: Variable _shared_maps_GlobalMapWatcherSetupUtil is not defined.
              at global/flash.utils::getDefinitionByName()
              at shared.maps::GlobalMap()
              at main/_main_GlobalMap1_i()
              at main()
              at _main_mx_managers_SystemManager/create()
              at mx.managers.systemClasses::ChildManager/initializeTopLevelWindow()
              at mx.managers::SystemManager/initializeTopLevelWindow()
              at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::kickOff()
              at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::preloader_completeHandler()
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at mx.preloaders::Preloader/timerHandler()
              at flash.utils::Timer/_timerDispatch()
              at flash.utils::Timer/tick()
    this message normally shows up when there's no Mate_08_9.swc found at runtime. but this shouldn't happen.
    is there anyway to work around this? thanks a lot
    here is the full flex-config-sea.xml:
    <flex-config>
       <!-- benchmark: output performance benchmark-->
       <!-- benchmark usage:
       <benchmark>boolean</benchmark>
       -->
       <compiler>
          <!-- compiler.accessible: generate an accessible SWF-->
          <accessible>true</accessible>
          <!-- compiler.actionscript-file-encoding: specifies actionscript file encoding. If there is no BOM in the AS3 source files, the compiler will use this file encoding.-->
          <!-- compiler.actionscript-file-encoding usage:
          <actionscript-file-encoding>string</actionscript-file-encoding>
          -->
          <!-- compiler.allow-source-path-overlap: checks if a source-path entry is a subdirectory of another source-path entry. It helps make the package names of MXML components unambiguous.-->
          <allow-source-path-overlap>false</allow-source-path-overlap>
          <!-- compiler.as3: use the ActionScript 3 class based object model for greater performance and better error reporting. In the class based object model most built-in functions are implemented as fixed methods of classes.-->
          <as3>true</as3>
          <!-- compiler.compress usage:
          <compress>boolean</compress>
          -->
          <!-- compiler.context-root: path to replace {context.root} tokens for service channel endpoints-->
          <!-- compiler.context-root usage:
          <context-root>context-path</context-root>
          -->
          <!-- compiler.debug: generates a movie that is suitable for debugging-->
          <debug>false</debug>
          <!-- compiler.defaults-css-files usage:
          <defaults-css-files>
             <filename>string</filename>
             <filename>string</filename>
          </defaults-css-files>
          -->
          <!-- compiler.defaults-css-url: defines the location of the default style sheet. Setting this option overrides the implicit use of the defaults.css style sheet in the framework.swc file.-->
          <!-- compiler.defaults-css-url usage:
          <defaults-css-url>string</defaults-css-url>
          -->
          <!-- compiler.define: define a global AS3 conditional compilation definition, e.g. -define=CONFIG::debugging,true or -define+=CONFIG::debugging,true (to append to existing definitions in flex-config.xml) -->
          <!-- compiler.define usage:
          <define>
             <name>string</name>
             <value>string</value>
             <value>string</value>
          </define>
          -->
          <!-- compiler.enable-runtime-design-layers usage:
          <enable-runtime-design-layers>boolean</enable-runtime-design-layers>
          -->
          <!-- compiler.es: use the ECMAScript edition 3 prototype based object model to allow dynamic overriding of prototype properties. In the prototype based object model built-in functions are implemented as dynamic properties of prototype objects.-->
          <es>false</es>
          <extensions>
             <!-- compiler.extensions.extension usage:
             <extension>
                <extension>string</extension>
                <parameters>string</parameters>
             </extension>
             -->
          </extensions>
          <!-- compiler.external-library-path: list of SWC files or directories to compile against but to omit from linking-->
          <external-library-path>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/player/11.1/playerglobal.swc</path-element>
          </external-library-path>
          <fonts>
             <!-- compiler.fonts.advanced-anti-aliasing: enables advanced anti-aliasing for embedded fonts, which provides greater clarity for small fonts.-->
             <advanced-anti-aliasing>true</advanced-anti-aliasing>
             <!-- compiler.fonts.flash-type: enables FlashType for embedded fonts, which provides greater clarity for small fonts.-->
             <!-- compiler.fonts.flash-type usage:
             <flash-type>boolean</flash-type>
             -->
             <languages>
                <!-- compiler.fonts.languages.language-range: a range to restrict the number of font glyphs embedded into the SWF-->
                <!-- compiler.fonts.languages.language-range usage:
                <language-range>
                   <lang>string</lang>
                   <range>string</range>
                   <range>string</range>
                </language-range>
                -->
             </languages>
             <!-- compiler.fonts.local-font-paths usage:
             <local-font-paths>
                <path-element>string</path-element>
                <path-element>string</path-element>
             </local-font-paths>
             -->
             <!-- compiler.fonts.local-fonts-snapshot: File containing system font data produced by flex2.tools.FontSnapshot.-->
             <!-- compiler.fonts.managers: Compiler font manager classes, in policy resolution order-->
             <managers>
                <manager-class>flash.fonts.JREFontManager</manager-class>
                <manager-class>flash.fonts.BatikFontManager</manager-class>
                <manager-class>flash.fonts.AFEFontManager</manager-class>
                <manager-class>flash.fonts.CFFFontManager</manager-class>
             </managers>
             <!-- compiler.fonts.max-cached-fonts: sets the maximum number of fonts to keep in the server cache.  The default value is 20.-->
             <max-cached-fonts>20</max-cached-fonts>
             <!-- compiler.fonts.max-glyphs-per-face: sets the maximum number of character glyph-outlines to keep in the server cache for each font face. The default value is 1000.-->
             <max-glyphs-per-face>1000</max-glyphs-per-face>
          </fonts>
          <!-- compiler.headless-server: a flag to set when Flex is running on a server without a display-->
          <!-- compiler.headless-server usage:
          <headless-server>boolean</headless-server>
          -->
          <!-- compiler.include-libraries: a list of libraries (SWCs) to completely include in the SWF-->
          <!-- compiler.include-libraries usage:
          <include-libraries>
             <library>string</library>
             <library>string</library>
          </include-libraries>
          -->
          <include-libraries>
             <library>/opt/cruisecontrol-bin-2.8.4/projects/sea_client/trunk/main/libs/Mate_08_9.swc</library>
             <library>/opt/cruisecontrol-bin-2.8.4/projects/sea_client/trunk/main/libs/xprogress.swc</library>
             <library>/opt/cruisecontrol-bin-2.8.4/projects/sea_client/trunk/main/libs/component.swc</library>
          </include-libraries>
          <!-- compiler.incremental: enables incremental compilation-->
          <!-- compiler.incremental usage:
          <incremental>boolean</incremental>
          -->
          <incremental>true</incremental>
          <!-- compiler.isolate-styles: enables the compiled application or module to set styles that only affect itself and its children-->
          <!-- compiler.isolate-styles usage:
          <isolate-styles>boolean</isolate-styles>
          -->
          <!-- compiler.keep-all-type-selectors: disables the pruning of unused CSS type selectors-->
          <!-- compiler.keep-all-type-selectors usage:
          <keep-all-type-selectors>boolean</keep-all-type-selectors>
          -->
          <!-- compiler.keep-as3-metadata: keep the specified metadata in the SWF-->
          <!-- compiler.keep-as3-metadata usage:
          <keep-as3-metadata>
             <name>string</name>
             <name>string</name>
          </keep-as3-metadata>
          -->
          <!-- compiler.keep-generated-actionscript: save temporary source files generated during MXML compilation-->
          <keep-generated-actionscript>false</keep-generated-actionscript>
          <!-- compiler.library-path: list of SWC files or directories that contain SWC files-->
          <library-path>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/flash-integration.swc</path-element>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/authoringsupport.swc</path-element>
             <path-element>/opt/flexsdk/4.6.0/frameworks/locale/{locale}</path-element>
          </library-path>
          <!-- compiler.locale: specifies the locale for internationalization-->
          <locale>
             <locale-element>en_US</locale-element>
          </locale>
          <!-- compiler.minimum-supported-version usage:
          <minimum-supported-version>string</minimum-supported-version>
          -->
          <!-- compiler.mobile: specifies the target runtime is a mobile device-->
          <mobile>false</mobile>
          <mxml>
             <!-- compiler.mxml.compatibility-version: specifies a compatibility version. e.g. -compatibility-version=2.0.1-->
             <!-- compiler.mxml.compatibility-version usage:
             <compatibility-version>version</compatibility-version>
             -->
             <!-- compiler.mxml.minimum-supported-version usage:
             <minimum-supported-version>string</minimum-supported-version>
             -->
             <!-- compiler.mxml.qualified-type-selectors usage:
             <qualified-type-selectors>boolean</qualified-type-selectors>
             -->
          </mxml>
          <namespaces>
             <!-- compiler.namespaces.namespace: Specify a URI to associate with a manifest of components for use as MXML elements-->
             <namespace>
                <uri>http://ns.adobe.com/mxml/2009</uri>
                <manifest>/opt/flexsdk/4.6.0/frameworks/mxml-2009-manifest.xml</manifest>
             </namespace>
             <namespace>
                <uri>library://ns.adobe.com/flex/spark</uri>
                <manifest>/opt/flexsdk/4.6.0/frameworks/spark-manifest.xml</manifest>
             </namespace>
             <namespace>
                <uri>library://ns.adobe.com/flex/mx</uri>
                <manifest>/opt/flexsdk/4.6.0/frameworks/mx-manifest.xml</manifest>
             </namespace>
             <namespace>
                <uri>http://www.adobe.com/2006/mxml</uri>
                <manifest>/opt/flexsdk/4.6.0/frameworks/mxml-manifest.xml</manifest>
             </namespace>
          </namespaces>
          <!-- compiler.omit-trace-statements: toggle whether trace statements are omitted-->
          <omit-trace-statements>true</omit-trace-statements>
          <!-- compiler.optimize: Enable post-link SWF optimization-->
          <optimize>true</optimize>
          <!-- compiler.preloader: Specifies the default value for the Application's preloader attribute. If not specified, the default preloader value is mx.preloaders.SparkDownloadProgressBar when -compatibility-version >= 4.0 and mx.preloaders.DownloadProgressBar when -compatibility-version < 4.0.-->
          <!-- compiler.preloader usage:
          <preloader>string</preloader>
          -->
          <!-- compiler.report-invalid-styles-as-warnings: enables reporting of invalid styles as warnings-->
          <!-- compiler.report-invalid-styles-as-warnings usage:
          <report-invalid-styles-as-warnings>boolean</report-invalid-styles-as-warnings>
          -->
          <!-- compiler.report-missing-required-skin-parts-as-warnings: Use this option to generate a warning instead of an error when a missing required skin part is detected.-->
          <!-- compiler.report-missing-required-skin-parts-as-warnings usage:
          <report-missing-required-skin-parts-as-warnings>boolean</report-missing-required-skin-parts-as-warnings>
          -->
          <!-- compiler.services: path to Flex Data Services configuration file-->
          <!-- compiler.services usage:
          <services>filename</services>
          -->
          <!-- compiler.show-actionscript-warnings: runs the AS3 compiler in a mode that detects legal but potentially incorrect code-->
          <show-actionscript-warnings>true</show-actionscript-warnings>
          <!-- compiler.show-binding-warnings: toggle whether warnings generated from data binding code are displayed-->
          <show-binding-warnings>true</show-binding-warnings>
          <!-- compiler.show-invalid-css-property-warnings: toggle whether invalid css property warnings are reported-->
          <!-- compiler.show-invalid-css-property-warnings usage:
          <show-invalid-css-property-warnings>boolean</show-invalid-css-property-warnings>
          -->
          <!-- compiler.show-shadowed-device-font-warnings: toggles whether warnings are displayed when an embedded font name shadows a device font name-->
          <show-shadowed-device-font-warnings>false</show-shadowed-device-font-warnings>
          <!-- compiler.show-unused-type-selector-warnings: toggle whether warnings generated from unused CSS type selectors are displayed-->
          <show-unused-type-selector-warnings>true</show-unused-type-selector-warnings>
          <!-- compiler.source-path: list of path elements that form the roots of ActionScript class hierarchies-->
          <source-path>
          </source-path>
          <!-- compiler.strict: runs the AS3 compiler in strict error checking mode.-->
          <strict>true</strict>
          <!-- compiler.theme: list of CSS or SWC files to apply as a theme-->
          <!-- compiler.use-resource-bundle-metadata: determines whether resources bundles are included in the application.-->
          <use-resource-bundle-metadata>true</use-resource-bundle-metadata>
          <!-- compiler.verbose-stacktraces: save callstack information to the SWF for debugging-->
          <verbose-stacktraces>false</verbose-stacktraces>
          <!-- compiler.warn-array-tostring-changes: Array.toString() format has changed.-->
          <warn-array-tostring-changes>false</warn-array-tostring-changes>
          <!-- compiler.warn-assignment-within-conditional: Assignment within conditional.-->
          <warn-assignment-within-conditional>true</warn-assignment-within-conditional>
          <!-- compiler.warn-bad-array-cast: Possibly invalid Array cast operation.-->
          <warn-bad-array-cast>true</warn-bad-array-cast>
          <!-- compiler.warn-bad-bool-assignment: Non-Boolean value used where a Boolean value was expected.-->
          <warn-bad-bool-assignment>true</warn-bad-bool-assignment>
          <!-- compiler.warn-bad-date-cast: Invalid Date cast operation.-->
          <warn-bad-date-cast>true</warn-bad-date-cast>
          <!-- compiler.warn-bad-es3-type-method: Unknown method.-->
          <warn-bad-es3-type-method>true</warn-bad-es3-type-method>
          <!-- compiler.warn-bad-es3-type-prop: Unknown property.-->
          <warn-bad-es3-type-prop>true</warn-bad-es3-type-prop>
          <!-- compiler.warn-bad-nan-comparison: Illogical comparison with NaN. Any comparison operation involving NaN will evaluate to false because NaN != NaN.-->
          <warn-bad-nan-comparison>true</warn-bad-nan-comparison>
          <!-- compiler.warn-bad-null-assignment: Impossible assignment to null.-->
          <warn-bad-null-assignment>true</warn-bad-null-assignment>
          <!-- compiler.warn-bad-null-comparison: Illogical comparison with null.-->
          <warn-bad-null-comparison>true</warn-bad-null-comparison>
          <!-- compiler.warn-bad-undefined-comparison: Illogical comparison with undefined.  Only untyped variables (or variables of type *) can be undefined.-->
          <warn-bad-undefined-comparison>true</warn-bad-undefined-comparison>
          <!-- compiler.warn-boolean-constructor-with-no-args: Boolean() with no arguments returns false in ActionScript 3.0.  Boolean() returned undefined in ActionScript 2.0.-->
          <warn-boolean-constructor-with-no-args>false</warn-boolean-constructor-with-no-args>
          <!-- compiler.warn-changes-in-resolve: __resolve is no longer supported.-->
          <warn-changes-in-resolve>false</warn-changes-in-resolve>
          <!-- compiler.warn-class-is-sealed: Class is sealed.  It cannot have members added to it dynamically.-->
          <warn-class-is-sealed>true</warn-class-is-sealed>
          <!-- compiler.warn-const-not-initialized: Constant not initialized.-->
          <warn-const-not-initialized>true</warn-const-not-initialized>
          <!-- compiler.warn-constructor-returns-value: Function used in new expression returns a value.  Result will be what the function returns, rather than a new instance of that function.-->
          <warn-constructor-returns-value>false</warn-constructor-returns-value>
          <!-- compiler.warn-deprecated-event-handler-error: EventHandler was not added as a listener.-->
          <warn-deprecated-event-handler-error>false</warn-deprecated-event-handler-error>
          <!-- compiler.warn-deprecated-function-error: Unsupported ActionScript 2.0 function.-->
          <warn-deprecated-function-error>true</warn-deprecated-function-error>
          <!-- compiler.warn-deprecated-property-error: Unsupported ActionScript 2.0 property.-->
          <warn-deprecated-property-error>true</warn-deprecated-property-error>
          <!-- compiler.warn-duplicate-argument-names: More than one argument by the same name.-->
          <warn-duplicate-argument-names>true</warn-duplicate-argument-names>
          <!-- compiler.warn-duplicate-variable-def: Duplicate variable definition -->
          <warn-duplicate-variable-def>true</warn-duplicate-variable-def>
          <!-- compiler.warn-for-var-in-changes: ActionScript 3.0 iterates over an object's properties within a "for x in target" statement in random order.-->
          <warn-for-var-in-changes>false</warn-for-var-in-changes>
          <!-- compiler.warn-import-hides-class: Importing a package by the same name as the current class will hide that class identifier in this scope.-->
          <warn-import-hides-class>true</warn-import-hides-class>
          <!-- compiler.warn-instance-of-changes: Use of the instanceof operator.-->
          <warn-instance-of-changes>true</warn-instance-of-changes>
          <!-- compiler.warn-internal-error: Internal error in compiler.-->
          <warn-internal-error>true</warn-internal-error>
          <!-- compiler.warn-level-not-supported: _level is no longer supported. For more information, see the flash.display package.-->
          <warn-level-not-supported>true</warn-level-not-supported>
          <!-- compiler.warn-missing-namespace-decl: Missing namespace declaration (e.g. variable is not defined to be public, private, etc.).-->
          <warn-missing-namespace-decl>true</warn-missing-namespace-decl>
          <!-- compiler.warn-negative-uint-literal: Negative value will become a large positive value when assigned to a uint data type.-->
          <warn-negative-uint-literal>true</warn-negative-uint-literal>
          <!-- compiler.warn-no-constructor: Missing constructor.-->
          <warn-no-constructor>false</warn-no-constructor>
          <!-- compiler.warn-no-explicit-super-call-in-constructor: The super() statement was not called within the constructor.-->
          <warn-no-explicit-super-call-in-constructor>false</warn-no-explicit-super-call-in-constructor>
          <!-- compiler.warn-no-type-decl: Missing type declaration.-->
          <warn-no-type-decl>true</warn-no-type-decl>
          <!-- compiler.warn-number-from-string-changes: In ActionScript 3.0, white space is ignored and '' returns 0. Number() returns NaN in ActionScript 2.0 when the parameter is '' or contains white space.-->
          <warn-number-from-string-changes>false</warn-number-from-string-changes>
          <!-- compiler.warn-scoping-change-in-this: Change in scoping for the this keyword.  Class methods extracted from an instance of a class will always resolve this back to that instance.  In ActionScript 2.0 this is looked up dynamically based on where the method is invoked from.-->
          <warn-scoping-change-in-this>false</warn-scoping-change-in-this>
          <!-- compiler.warn-slow-text-field-addition: Inefficient use of += on a TextField.-->
          <warn-slow-text-field-addition>true</warn-slow-text-field-addition>
          <!-- compiler.warn-unlikely-function-value: Possible missing parentheses.-->
          <warn-unlikely-function-value>true</warn-unlikely-function-value>
          <!-- compiler.warn-xml-class-has-changed: Possible usage of the ActionScript 2.0 XML class.-->
          <warn-xml-class-has-changed>false</warn-xml-class-has-changed>
       </compiler>
       <!-- debug-password: the password to include in debuggable SWFs-->
       <!-- debug-password usage:
       <debug-password>string</debug-password>
       -->
       <!-- default-background-color: default background color (may be overridden by the application code)-->
       <default-background-color>0xFFFFFF</default-background-color>
       <!-- default-frame-rate: default frame rate to be used in the SWF.-->
       <default-frame-rate>24</default-frame-rate>
       <!-- default-script-limits: default script execution limits (may be overridden by root attributes)-->
       <default-script-limits>
          <max-recursion-depth>1000</max-recursion-depth>
          <max-execution-time>60</max-execution-time>
       </default-script-limits>
       <!-- default-size: default application size (may be overridden by root attributes in the application)-->
       <default-size>
          <width>500</width>
          <height>375</height>
       </default-size>
       <!-- externs: a list of symbols to omit from linking when building a SWF-->
       <!-- externs usage:
       <externs>
          <symbol>string</symbol>
          <symbol>string</symbol>
       </externs>
       -->
       <frames>
          <!-- frames.frame: A SWF frame label with a sequence of classnames that will be linked onto the frame.-->
          <!-- frames.frame usage:
          <frame>
             <label>string</label>
             <classname>string</classname>
          </frame>
          -->
       </frames>
       <framework>halo</framework>
       <!-- include-inheritance-dependencies-only: only include inheritance dependencies of classes specified with include-classes -->
       <!-- include-inheritance-dependencies-only usage:
       <include-inheritance-dependencies-only>boolean</include-inheritance-dependencies-only>
       -->
       <!-- include-resource-bundles: a list of resource bundles to include in the output SWC-->
       <!-- include-resource-bundles usage:
       <include-resource-bundles>
          <bundle>string</bundle>
          <bundle>string</bundle>
       </include-resource-bundles>
       -->
       <!-- includes: a list of symbols to always link in when building a SWF-->
       <!-- includes usage:
       <includes>
          <symbol>string</symbol>
          <symbol>string</symbol>
       </includes>
       -->
       <!-- link-report: Output a XML-formatted report of all definitions linked into the application.-->
       <!-- link-report usage:
       <link-report>filename</link-report>
       -->
       <!-- load-config: load a file containing configuration options-->
       <!-- load-externs: an XML file containing <def>, <pre>, and <ext> symbols to omit from linking when building a SWF-->
       <!-- load-externs usage:
       <load-externs>filename</load-externs>
       -->
       <metadata>
          <!-- metadata.contributor: A contributor's name to store in the SWF metadata-->
          <!-- metadata.contributor usage:
          <contributor>name</contributor>
          -->
          <!-- metadata.creator: A creator's name to store in the SWF metadata-->
          <creator>darkhutgme</creator>
          <!-- metadata.date: The creation date to store in the SWF metadata-->
          <!-- metadata.date usage:
          <date>text</date>
          -->
          <!-- metadata.description: The default description to store in the SWF metadata-->
          <description></description>
          <!-- metadata.language: The language to store in the SWF metadata (i.e. EN, FR)-->
          <language>EN</language>
          <!-- metadata.localized-description: A localized RDF/XMP description to store in the SWF metadata-->
          <!-- metadata.localized-description usage:
          <localized-description>
             <text>string</text>
             <lang>string</lang>
             <lang>string</lang>
          </localized-description>
          -->
          <!-- metadata.localized-title: A localized RDF/XMP title to store in the SWF metadata-->
          <!-- metadata.localized-title usage:
          <localized-title>
             <title>string</title>
             <lang>string</lang>
             <lang>string</lang>
          </localized-title>
          -->
          <!-- metadata.publisher: A publisher's name to store in the SWF metadata-->
          <publisher>darkhutgame</publisher>
          <!-- metadata.title: The default title to store in the SWF metadata-->
          <title>GAME</title>
       </metadata>
       <!-- raw-metadata: XML text to store in the SWF metadata (overrides metadata.* configuration)-->
       <!-- raw-metadata usage:
       <raw-metadata>text</raw-metadata>
       -->
       <!-- remove-unused-rsls: remove RSLs that are not being used by the application-->
       <remove-unused-rsls>true</remove-unused-rsls>
       <!-- resource-bundle-list: prints a list of resource bundles to a file for input to the compc compiler to create a resource bundle SWC file. -->
       <!-- resource-bundle-list usage:
       <resource-bundle-list>filename</resource-bundle-list>
       -->
       <!-- runtime-shared-libraries: a list of runtime shared library URLs to be loaded before the application starts-->
       <!-- runtime-shared-libraries usage:
       <runtime-shared-libraries>
          <url>string</url>
          <url>string</url>
       </runtime-shared-libraries>
       -->
       <!-- runtime-shared-library-path: specifies a SWC to link against, an RSL URL to load, with an optional policy file URL and optional failover URLs -->
       <runtime-shared-library-path>
          <path-element>/opt/flexsdk/4.6.0/frameworks/libs/textLayout.swc</path-element>
          <rsl-url>textLayout_2.0.0.232.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
       </runtime-shared-library-path>
       <runtime-shared-library-path>
          <path-element>/opt/flexsdk/4.6.0/frameworks/libs/osmf.swc</path-element>
          <rsl-url>osmf_1.0.0.16316.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/osmf_1.0.0.16316.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
       </runtime-shared-library-path>
       <runtime-shared-library-path>
          <path-element>/opt/flexsdk/4.6.0/frameworks/libs/framework.swc</path-element>
          <rsl-url>framework_4.6.0.23201.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/framework_4.6.0.23201.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
       </runtime-shared-library-path>
       <runtime-shared-library-path>
          <path-element>/opt/flexsdk/4.6.0/frameworks/libs/charts.swc</path-element>
          <rsl-url>charts_4.6.0.23201.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/charts_4.6.0.23201.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
       </runtime-shared-library-path>
       <runtime-shared-library-path>
          <path-element>/opt/flexsdk/4.6.0/frameworks/libs/rpc.swc</path-element>
          <rsl-url>rpc_4.6.0.23201.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/rpc_4.6.0.23201.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
       </runtime-shared-library-path>
       <runtime-shared-library-path>
          <path-element>/opt/flexsdk/4.6.0/frameworks/libs/mx/mx.swc</path-element>
          <rsl-url>mx_4.6.0.23201.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/mx_4.6.0.23201.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
       </runtime-shared-library-path>
       <runtime-shared-library-path>
          <path-element>/opt/flexsdk/4.6.0/frameworks/libs/advancedgrids.swc</path-element>
          <rsl-url>advancedgrids_4.6.0.23201.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/advancedgrids_4.6.0.23201.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
       </runtime-shared-library-path>
       <runtime-shared-library-path>
          <path-element>/opt/flexsdk/4.6.0/frameworks/libs/spark.swc</path-element>
          <rsl-url>spark_4.6.0.23201.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/spark_4.6.0.23201.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
       </runtime-shared-library-path>
       <runtime-shared-library-path>
          <path-element>/opt/flexsdk/4.6.0/frameworks/libs/spark_dmv.swc</path-element>
          <rsl-url>spark_dmv_4.6.0.23201.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/spark_dmv_4.6.0.23201.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
       </runtime-shared-library-path>
       <runtime-shared-library-path>
          <path-element>/opt/flexsdk/4.6.0/frameworks/libs/sparkskins.swc</path-element>
          <rsl-url>sparkskins_4.6.0.23201.swz</rsl-url>
          <policy-file-url></policy-file-url>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/sparkskins_4.6.0.23201.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
       </runtime-shared-library-path>
       <runtime-shared-library-settings>
          <!-- runtime-shared-library-settings.application-domain: override the application domain an RSL is loaded into. The supported values are 'current', 'default', 'parent', or 'top-level'.-->
          <application-domain>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/textLayout.swc</path-element>
             <application-domain-target>default</application-domain-target>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/osmf.swc</path-element>
             <application-domain-target>default</application-domain-target>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/framework.swc</path-element>
             <application-domain-target>default</application-domain-target>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/charts.swc</path-element>
             <application-domain-target>default</application-domain-target>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/rpc.swc</path-element>
             <application-domain-target>default</application-domain-target>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/mx/mx.swc</path-element>
             <application-domain-target>default</application-domain-target>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/advancedgrids.swc</path-element>
             <application-domain-target>default</application-domain-target>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/spark.swc</path-element>
             <application-domain-target>default</application-domain-target>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/spark_dmv.swc</path-element>
             <application-domain-target>default</application-domain-target>
             <path-element>/opt/flexsdk/4.6.0/frameworks/libs/sparkskins.swc</path-element>
             <application-domain-target>default</application-domain-target>
          </application-domain>
          <!-- runtime-shared-library-settings.force-rsls: force an RSL to be loaded, overriding the removal caused by using the remove-unused-rsls option-->
          <!-- runtime-shared-library-settings.force-rsls usage:
          <force-rsls>
             <path-element>string</path-element>
             <path-element>string</path-element>
          </force-rsls>
          -->
       </runtime-shared-library-settings>
       <!-- size-report: Output an XML-formatted report detailing the size of all code and data linked into the application.-->
       <!-- size-report usage:
       <size-report>filename</size-report>
       -->
       <!-- static-link-runtime-shared-libraries: statically link the libraries specified by the -runtime-shared-libraries-path option.-->
       <static-link-runtime-shared-libraries>false</static-link-runtime-shared-libraries>
       <!-- swf-version: specifies the version of the compiled SWF file.-->
       <swf-version>14</swf-version>
       <!-- target-player: specifies the version of the player the application is targeting. Features requiring a later version will not be compiled into the application. The minimum value supported is "9.0.0".-->
       <target-player>11.1.0</target-player>
       <!-- tools-locale: specifies the locale used by the compiler when reporting errors and warnings.-->
       <!-- tools-locale usage:
       <tools-locale>string</tools-locale>
       -->
       <!-- use-direct-blit: Use hardware acceleration to blit graphics to the screen, where such acceleration is available.-->
       <!-- use-direct-blit usage:
       <use-direct-blit>boolean</use-direct-blit>
       -->
       <!-- use-gpu: Use GPU compositing features when drawing graphics, where such acceleration is available.-->
       <!-- use-gpu usage:
       <use-gpu>boolean</use-gpu>
       -->
       <!-- use-network: toggle whether the SWF is flagged for access to network resources-->
       <use-network>true</use-network>
       <!-- verify-digests: verifies the libraries loaded at runtime are the correct ones.-->
       <verify-digests>true</verify-digests>
       <!-- warnings: toggle the display of warnings-->
       <!-- warnings usage:
       <warnings>boolean</warnings>
       -->
    </flex-config>

    Somewhere in your pom.xml where you are configuring your build dependancies there will be a line <scope>caching</scope> this line is configuring the build to use a flex runtime shared library. This line is generating the error because caching is not a valid dependancy scope in maven 3 however mojos uses it anyway. There was a defect opened against flexmojos; I've linked it below. Froeder's response to the issue was that it was not fixable, that the warning is expected and that we'll have to live with it for now.
    https://issues.sonatype.org/browse/FLEXMOJOS-363?page=com.atlassian.jira.plugin.system.iss uetabpanels%3Achangehistory-tabpanel

Maybe you are looking for

  • How to check sale order stock

    Hi, Which T-code used for view the  sales order stock thanks.

  • How to remove haze from a photo?

    I have a number of pictures which were taken when the air was hazy. Is there a way to remove the haze from the photo, or have it miniminzed to emphasize the images in the photo? I have tried the Edit sliders, but it either makes it darker or lighter

  • Cannot export video clips.  Get message: "unable to create video for export"

    Cannot export video clips from iPhoto to Finder folder.  Export fails with message "unable to create video for export: " The video clips play correctly within iPhoto.  Software: iPhoto version 9.5 on OSX 10.9 Hardware: Retina Macbook Pro 2.3 i7 8GB

  • HTTP Error 404

    Hi, I'm getting the Page Not Found error with Plumtree 504. I had it working for the last month or so, but I did something in IIS and lost it. I do have the portals virtual directory set to :\plumtree\ptportal\5.0\webapp\portal Also I have the aspnet

  • Podcast keeps crashing after about 15 seconds. iPod Touch

    On my iPod Touch, a new problem. Tonight, the application Podcast started crashing every time I selected it. It runs for about 15 seconds and stops and I go back to the home screen. I tried a Restore.  I've turned the Touch completely off two times a