Gibi, bu bahsedilen 102degrees blog entry,
After I installed Eclipse PDT, I had two project navigators.
I closed the native one and kept open the PHP Explorer.
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.
The only issue was that, by default, I couldn’t see my .htaccess
and .htpasswd
files.
On the bright side, using SVN, I couldn’t see my .svn
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.
At the top of the PHP Explorer, there are a few toolbar buttons.
Clicking the down arrow brings up a context menu.
I choose the filters…
menu item. By default, ‘name filter patterns
’ was not checked.
.* files and server projects were selected in the second box. This makes sense why I was not seeing my .htaccess file.
Birincisi, benim seçeneği işaretlenmemiş. * Dosyaları. Bu sorunu Sabit - Ben .htaccess
dosyalarını görmek mümkün oldu - ama aynı zamanda benim .svn
yanı sıra ek meta dosyaları klasörleri gördüm.
Ben "name filter patterns
" diyerek kutusunu kontrol ve aşağıdaki dize koymak:
.cache, .settings, .svn, .project, .projectOptions
Ayrıntılı olarak xcc:
Bir name filter pattern
GUI aracılığıyla, bir can sunmuyoruz eklentileri için:
- Düzenleme için kullanılan Eclipse eklenti dizini bulun. Bu genellikle
eclipse/plugins/[plugin name]_[version]
gibi bir şeydir.
- Bir metin editörü plugin.xml dosyasını açın.
- Olan nokta öznitelik değerine sahip uzatma eleman bulmak
org.eclipse.ui.ide.resourceFilters
.
- Zaten mevcut herhangi diğerleri gibi yeni bir filtre elemanını oluşturmak, ancak gerekli dosya deseni içeren.
- -Temiz anahtarını kullanarak Yeniden Eclipse.
Plugin.xml dosyası herhangi bir kaynak filtresi içermiyorsa, plugin.xml altına aşağıdaki kodu ekleyerek bir tane oluşturun:
<extension point="org.eclipse.ui.ide.resourceFilters">
<filter selected="false" pattern=".svn"></filter>
<filter selected="false" pattern=".project"></filter>
</extension>