Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>As said in this <a href="http://www.102degrees.com/blog/2007/07/11/show-the-right-files-in-php-explorer/" rel="nofollow noreferrer">102degrees blog entry</a>:</p> <blockquote> <p>After I installed Eclipse PDT, I had two project navigators.<br> I closed the native one and kept open the PHP Explorer.<br> PHP Explorer showed my php, css, js, etc, files. It also puts a plus sign to the left of the filenames. Using this view, we can expand the file to see the classes and functions inside of the file without opening it.</p> <p>The only issue was that, by default, I couldn’t see my <code>.htaccess</code> and <code>.htpasswd</code> files.<br> On the bright side, using SVN, I couldn’t see my <code>.svn</code> folders - which is exactly what I wanted. Put, this put the issue into a different light - there must be some sort of filter that is restricting files that begin with a dot.</p> <p>At the top of the PHP Explorer, there are a few toolbar buttons.<br> Clicking the down arrow brings up a context menu.<br> I choose the <code>filters…</code> menu item. By default, ‘<code>name filter patterns</code>’ was not checked.<br> .* files and server projects were selected in the second box. This makes sense why I was not seeing my .htaccess file.</p> </blockquote> <p><a href="http://opensource.kruxgames.com/torquedit/torqueditDocs/torquedit_html_m6c4621c0.jpg" rel="nofollow noreferrer">alt text http://opensource.kruxgames.com/torquedit/torqueditDocs/torquedit_html_m6c4621c0.jpg</a></p> <blockquote> <p>First, I unchecked my option .* files. This fixed the issue - I was able to see the <code>.htaccess</code> files - but I also saw my <code>.svn</code> folders as well as additional meta files.</p> <p>I checked the box saying “<code>name filter patterns</code>” and put in the following string:</p> </blockquote> <pre><code>.cache, .settings, .svn, .project, .projectOptions </code></pre> <hr> <p>As detailed in <a href="http://musetracks.instantspot.com/blog/2007/09/13/Add-Custom-File-Filters-to-the-Eclipse-Explorer" rel="nofollow noreferrer">xcc</a>:</p> <p>For plugins which do not offer a <code>name filter pattern</code> through GUI, one can:</p> <blockquote> <ol> <li>Locate the directory of the Eclipse plugin being used for editing. This is usually something like <code>eclipse/plugins/[plugin name]_[version]</code>. </li> <li>Open the plugin.xml file in a text editor. </li> <li>Find the extension element whose point attribute has a value of <code>org.eclipse.ui.ide.resourceFilters</code>. </li> <li>Create a new filter element like any others that already exist, but containing the needed file pattern. </li> <li>Restart Eclipse using the -clean switch.</li> </ol> <p>If the plugin.xml file didn't contain any resource filters, create one by adding the following code to the bottom of plugin.xml:</p> </blockquote> <pre><code>&lt;extension point="org.eclipse.ui.ide.resourceFilters"&gt; &lt;filter selected="false" pattern=".svn"&gt;&lt;/filter&gt; &lt;filter selected="false" pattern=".project"&gt;&lt;/filter&gt; &lt;/extension&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload