Nerede / Eclipse PDT'de Paket Explorer nedir

2 Cevap php

Ben gizli dosyalar Eclipse (yani, bir. Htaccess dosyası) göstermek almak için çalışıyorum, ve cevaplar 'Paket Explorer'da' şey yapıyor işaret. Ben Eclipse PDT 2.1 kullanıyorum ve bunun ne / nerede olduğunu bana belli değil. Nasıl bu efsanevi 'Paket Explorer' alabilirim??

2 Cevap

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.

alt text

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:

  1. Düzenleme için kullanılan Eclipse eklenti dizini bulun. Bu genellikle eclipse/plugins/[plugin name]_[version] gibi bir şeydir.
  2. Bir metin editörü plugin.xml dosyasını açın.
  3. Olan nokta öznitelik değerine sahip uzatma eleman bulmak org.eclipse.ui.ide.resourceFilters.
  4. Zaten mevcut herhangi diğerleri gibi yeni bir filtre elemanını oluşturmak, ancak gerekli dosya deseni içeren.
  5. -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>

The Package Explorer can be displayed in your workspace by going to the Window>Show View>Other... menu,

then unfold the Java Folder,click Package Explorer and OK. It should show up as a tab in your "Perspective".

You probably found out what to do next, but just in case: View Menu(little arrow on the right) -> Filters -> uncheck .* resources.

Edit: Paket Explorer Java Perspektifinde kullanıldığı gibi Şimdi tekrar sorunuzu okudum ki, bu, sizin için geçerli değildir.

You are probably using the "PHP Explorer" View (Tab) to browse your files, which hides system files. To view all files from your project, use the Navigator view: Window>Show View>Other...>Basic>Navigator .