├── .gitattributes
├── .gitignore
├── LICENSE
├── NOTICE
├── README.md
├── convert
├── build.xml
├── manifest.mf
├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── project.properties
│ └── project.xml
├── src
│ └── convert
│ │ ├── AddFormLicense.java
│ │ ├── CategorizeLicenses.java
│ │ ├── Convert.java
│ │ └── ConvertAndCopy.java
└── test
│ └── convert
│ └── CategorizeLicensesTest.java
├── html-convert
├── README.md
├── nbactions.xml
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── org
│ │ └── netbeans
│ │ └── tools
│ │ └── tutorials
│ │ ├── AsciidocPostProcessor.java
│ │ ├── CustomAsciiDocDocumentBuilder.java
│ │ ├── CustomAsciiDocDocumentBuilderWithoutTables.java
│ │ ├── ExternalLinksMap.java
│ │ ├── HTMLConverter.java
│ │ ├── Language.java
│ │ └── LocalizedTutorialSection.java
│ └── resources
│ └── org
│ └── netbeans
│ └── tools
│ └── tutorials
│ ├── TutorialsBundle.properties
│ ├── TutorialsBundle_es_CA.properties
│ ├── TutorialsBundle_ja.properties
│ ├── TutorialsBundle_pt_BR.properties
│ ├── TutorialsBundle_ru.properties
│ ├── TutorialsBundle_zh_CN.properties
│ ├── index-template.mustache
│ └── section-template.mustache
├── icon-scripts
├── .gitignore
├── README.txt
├── hidpi-icons
│ ├── nb-configuration.xml
│ ├── nbactions.xml
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ ├── java
│ │ └── org
│ │ │ └── netbeans
│ │ │ └── build
│ │ │ └── icons
│ │ │ ├── IconTasks.java
│ │ │ ├── ImageUtil.java
│ │ │ ├── TypeTaggedString.java
│ │ │ └── Util.java
│ │ └── resources
│ │ └── org
│ │ └── netbeans
│ │ └── build
│ │ └── icons
│ │ └── license_xml_header.txt
├── illustrator_exports
│ └── .gitignore
├── nb_vector_icons.ai
└── tables
│ ├── icon-hashes.txt
│ ├── mappings.tsv
│ └── ready-artboards.txt
├── jsstub-generator
├── generate.ts
├── package-lock.json
└── package.json
├── licencereviewsite
├── nb-configuration.xml
├── nbactions.xml
├── pom.xml
└── src
│ ├── main
│ └── java
│ │ └── org
│ │ └── apache
│ │ └── netbeans
│ │ └── generatestatus
│ │ └── GenerateLicencePage.java
│ └── site
│ └── site.xml
├── nbpackage
└── README.md
├── pp3
├── .gitignore
├── README.txt
├── au
│ ├── Db.php
│ ├── Importer.php
│ ├── Logger.php
│ ├── Runner.php
│ ├── build-dashboard_v2.php
│ ├── config.php
│ ├── db_connect.php.inc
│ ├── jchalupa.sql.gz
│ ├── last-date-dlc
│ ├── lib
│ │ ├── GeoIP.dat
│ │ ├── Getopt.php
│ │ ├── Getopt
│ │ │ └── Exception.php
│ │ └── geoip.inc
│ └── run-au-import.php
├── composer.json
├── config
│ ├── application.config.php
│ ├── autoload
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── global.php
│ │ └── local.php.dist
│ ├── erd.png
│ └── pp3.sql
├── init_autoloader.php
├── module
│ └── Application
│ │ ├── Module.php
│ │ ├── config
│ │ ├── .gitignore
│ │ ├── cron-rebuild-catalog-crond.dist
│ │ └── module.config.php.dist
│ │ ├── external
│ │ ├── osgi-jar-parser.jar
│ │ └── osgi-jar-parser
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ └── main
│ │ │ └── java
│ │ │ └── org
│ │ │ └── apache
│ │ │ └── netbeans
│ │ │ └── website
│ │ │ └── helper
│ │ │ └── osgi
│ │ │ └── jar
│ │ │ └── parser
│ │ │ └── MakeUpdateDesc.java
│ │ ├── language
│ │ ├── cs_CZ.mo
│ │ ├── cs_CZ.po
│ │ ├── en_US.mo
│ │ └── en_US.po
│ │ ├── src
│ │ └── Application
│ │ │ ├── Controller
│ │ │ ├── AdminController.php
│ │ │ ├── AuthenticatedController.php
│ │ │ ├── BaseController.php
│ │ │ ├── CliController.php
│ │ │ ├── IndexController.php
│ │ │ ├── LoginController.php
│ │ │ ├── PluginController.php
│ │ │ ├── PluginVersionController.php
│ │ │ └── VerificationController.php
│ │ │ ├── Entity
│ │ │ ├── Base
│ │ │ │ ├── Category.php
│ │ │ │ ├── NbVersion.php
│ │ │ │ ├── NbVersionPluginVersion.php
│ │ │ │ ├── Plugin.php
│ │ │ │ ├── PluginVersion.php
│ │ │ │ ├── PluginVersionDigest.php
│ │ │ │ ├── User.php
│ │ │ │ ├── Verification.php
│ │ │ │ └── VerificationRequest.php
│ │ │ ├── Category.php
│ │ │ ├── NbVersion.php
│ │ │ ├── NbVersionPluginVersion.php
│ │ │ ├── Plugin.php
│ │ │ ├── PluginVersion.php
│ │ │ ├── PluginVersionDigest.php
│ │ │ ├── User.php
│ │ │ ├── Verification.php
│ │ │ └── VerificationRequest.php
│ │ │ ├── Factory
│ │ │ ├── AdminControllerFactory.php
│ │ │ ├── CliControllerFactory.php
│ │ │ ├── IndexControllerFactory.php
│ │ │ ├── LoginControllerFactory.php
│ │ │ ├── PluginControllerFactory.php
│ │ │ ├── PluginVersionControllerFactory.php
│ │ │ └── VerificationControllerFactory.php
│ │ │ ├── Pp
│ │ │ ├── Catalog.php
│ │ │ └── MavenDataLoader.php
│ │ │ └── Repository
│ │ │ ├── CategoryRepository.php
│ │ │ ├── DoctrineEntityRepository.php
│ │ │ ├── NbVersionPluginVersionRepository.php
│ │ │ ├── NbVersionRepository.php
│ │ │ ├── PluginRepository.php
│ │ │ ├── PluginVersionRepository.php
│ │ │ ├── UserRepository.php
│ │ │ ├── VerificationRepository.php
│ │ │ └── VerificationRequestRepository.php
│ │ └── view
│ │ ├── application
│ │ ├── admin
│ │ │ ├── _nav.phtml
│ │ │ ├── _plugin-listrow.phtml
│ │ │ ├── _pluginRowItem.phtml
│ │ │ ├── approve.phtml
│ │ │ ├── catalog.phtml
│ │ │ ├── categories.phtml
│ │ │ ├── edit.phtml
│ │ │ ├── email-sending.phtml
│ │ │ ├── index.phtml
│ │ │ ├── nb-versions.phtml
│ │ │ └── verifiers.phtml
│ │ ├── index
│ │ │ ├── catalogue.phtml
│ │ │ ├── index.phtml
│ │ │ └── verification-log.phtml
│ │ ├── login
│ │ │ └── index.phtml
│ │ ├── plugin-version
│ │ │ ├── _pluginVersion-error-report.phtml
│ │ │ ├── _pluginVersion-form.phtml
│ │ │ └── edit.phtml
│ │ ├── plugin
│ │ │ ├── _plugin-form.phtml
│ │ │ ├── _plugin-listrow.phtml
│ │ │ ├── confirm.phtml
│ │ │ ├── edit.phtml
│ │ │ ├── index.phtml
│ │ │ └── list.phtml
│ │ └── verification
│ │ │ └── list.phtml
│ │ ├── error
│ │ ├── 404.phtml
│ │ └── index.phtml
│ │ ├── layout
│ │ ├── flash.phtml
│ │ └── layout.phtml
│ │ └── partials
│ │ ├── _categories-select.phtml
│ │ ├── _nbVersion-select.phtml
│ │ └── _paginator.phtml
└── public
│ ├── .htaccess
│ ├── android-chrome-192x192.png
│ ├── android-chrome-512x512.png
│ ├── apple-touch-icon.png
│ ├── browserconfig.xml
│ ├── css
│ ├── bootstrap-theme.css
│ ├── bootstrap-theme.min.css
│ ├── bootstrap.css
│ ├── bootstrap.min.css
│ ├── font-awesome.min.css
│ └── jquery-ui-1.12.1.css
│ ├── dtd
│ ├── autoupdate-catalog-2_8.dtd
│ ├── autoupdate-info-2_0.dtd
│ ├── autoupdate-info-2_2.dtd
│ ├── autoupdate-info-2_3.dtd
│ ├── autoupdate-info-2_4.dtd
│ ├── autoupdate-info-2_5.dtd
│ └── autoupdate-info-2_7.dtd
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── favicon.ico
│ ├── fontawesome
│ ├── LICENSE.txt
│ ├── css
│ │ ├── all.css
│ │ ├── all.min.css
│ │ ├── brands.css
│ │ ├── brands.min.css
│ │ ├── fontawesome.css
│ │ ├── fontawesome.min.css
│ │ ├── regular.css
│ │ ├── regular.min.css
│ │ ├── solid.css
│ │ ├── solid.min.css
│ │ ├── svg-with-js.css
│ │ ├── svg-with-js.min.css
│ │ ├── v4-shims.css
│ │ └── v4-shims.min.css
│ ├── scss
│ │ ├── _animated.scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _core.scss
│ │ ├── _fixed-width.scss
│ │ ├── _icons.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _mixins.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _screen-reader.scss
│ │ ├── _shims.scss
│ │ ├── _stacked.scss
│ │ ├── _variables.scss
│ │ ├── brands.scss
│ │ ├── fontawesome.scss
│ │ ├── regular.scss
│ │ ├── solid.scss
│ │ └── v4-shims.scss
│ └── webfonts
│ │ ├── fa-brands-400.eot
│ │ ├── fa-brands-400.svg
│ │ ├── fa-brands-400.ttf
│ │ ├── fa-brands-400.woff
│ │ ├── fa-brands-400.woff2
│ │ ├── fa-regular-400.eot
│ │ ├── fa-regular-400.svg
│ │ ├── fa-regular-400.ttf
│ │ ├── fa-regular-400.woff
│ │ ├── fa-regular-400.woff2
│ │ ├── fa-solid-900.eot
│ │ ├── fa-solid-900.svg
│ │ ├── fa-solid-900.ttf
│ │ ├── fa-solid-900.woff
│ │ └── fa-solid-900.woff2
│ ├── img
│ ├── apache-netbeans.svg
│ └── login
│ │ ├── amazon.svg
│ │ ├── apache.svg
│ │ ├── github.svg
│ │ └── google.svg
│ ├── index.php
│ ├── js
│ ├── bootstrap.js
│ ├── bootstrap.min.js
│ ├── ckeditor
│ │ ├── CHANGES.md
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── SECURITY.md
│ │ ├── adapters
│ │ │ └── jquery.js
│ │ ├── bender-runner.config.json
│ │ ├── build-config.js
│ │ ├── ckeditor.js
│ │ ├── config.js
│ │ ├── contents.css
│ │ ├── lang
│ │ │ ├── af.js
│ │ │ ├── ar.js
│ │ │ ├── az.js
│ │ │ ├── bg.js
│ │ │ ├── bn.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── cy.js
│ │ │ ├── da.js
│ │ │ ├── de-ch.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── en.js
│ │ │ ├── eo.js
│ │ │ ├── es-mx.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fo.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr.js
│ │ │ ├── gl.js
│ │ │ ├── gu.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── ka.js
│ │ │ ├── km.js
│ │ │ ├── ko.js
│ │ │ ├── ku.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── mk.js
│ │ │ ├── mn.js
│ │ │ ├── ms.js
│ │ │ ├── nb.js
│ │ │ ├── nl.js
│ │ │ ├── no.js
│ │ │ ├── oc.js
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── si.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sq.js
│ │ │ ├── sr-latn.js
│ │ │ ├── sr.js
│ │ │ ├── sv.js
│ │ │ ├── th.js
│ │ │ ├── tr.js
│ │ │ ├── tt.js
│ │ │ ├── ug.js
│ │ │ ├── uk.js
│ │ │ ├── vi.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh.js
│ │ ├── plugins
│ │ │ ├── a11yhelp
│ │ │ │ └── dialogs
│ │ │ │ │ ├── a11yhelp.js
│ │ │ │ │ └── lang
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── az.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de-ch.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en-au.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es-mx.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fo.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── gu.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hi.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── mk.js
│ │ │ │ │ ├── mn.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── oc.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ ├── sr.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh.js
│ │ │ ├── about
│ │ │ │ └── dialogs
│ │ │ │ │ ├── about.js
│ │ │ │ │ ├── hidpi
│ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ └── logo_ckeditor.png
│ │ │ ├── clipboard
│ │ │ │ └── dialogs
│ │ │ │ │ └── paste.js
│ │ │ ├── dialog
│ │ │ │ ├── dialogDefinition.js
│ │ │ │ └── styles
│ │ │ │ │ └── dialog.css
│ │ │ ├── icons.png
│ │ │ ├── icons_hidpi.png
│ │ │ ├── image
│ │ │ │ ├── dialogs
│ │ │ │ │ └── image.js
│ │ │ │ └── images
│ │ │ │ │ └── noimage.png
│ │ │ ├── link
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor.js
│ │ │ │ │ └── link.js
│ │ │ │ └── images
│ │ │ │ │ ├── anchor.png
│ │ │ │ │ └── hidpi
│ │ │ │ │ └── anchor.png
│ │ │ ├── magicline
│ │ │ │ └── images
│ │ │ │ │ ├── hidpi
│ │ │ │ │ ├── icon-rtl.png
│ │ │ │ │ └── icon.png
│ │ │ │ │ ├── icon-rtl.png
│ │ │ │ │ └── icon.png
│ │ │ ├── pastefromgdocs
│ │ │ │ └── filter
│ │ │ │ │ └── default.js
│ │ │ ├── pastefromlibreoffice
│ │ │ │ └── filter
│ │ │ │ │ └── default.js
│ │ │ ├── pastefromword
│ │ │ │ └── filter
│ │ │ │ │ └── default.js
│ │ │ ├── pastetools
│ │ │ │ └── filter
│ │ │ │ │ ├── common.js
│ │ │ │ │ └── image.js
│ │ │ ├── scayt
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── options.js
│ │ │ │ │ └── toolbar.css
│ │ │ │ └── skins
│ │ │ │ │ └── moono-lisa
│ │ │ │ │ └── scayt.css
│ │ │ ├── specialchar
│ │ │ │ └── dialogs
│ │ │ │ │ ├── lang
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── az.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de-ch.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en-au.js
│ │ │ │ │ ├── en-ca.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es-mx.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── oc.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ ├── sr.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh.js
│ │ │ │ │ └── specialchar.js
│ │ │ ├── table
│ │ │ │ └── dialogs
│ │ │ │ │ └── table.js
│ │ │ ├── tableselection
│ │ │ │ └── styles
│ │ │ │ │ └── tableselection.css
│ │ │ ├── tabletools
│ │ │ │ └── dialogs
│ │ │ │ │ └── tableCell.js
│ │ │ └── widget
│ │ │ │ └── images
│ │ │ │ └── handle.png
│ │ ├── samples
│ │ │ ├── css
│ │ │ │ └── samples.css
│ │ │ ├── img
│ │ │ │ ├── github-top.png
│ │ │ │ ├── header-bg.png
│ │ │ │ ├── header-separator.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── logo.svg
│ │ │ │ └── navigation-tip.png
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── sample.js
│ │ │ │ └── sf.js
│ │ │ ├── old
│ │ │ │ ├── ajax.html
│ │ │ │ ├── api.html
│ │ │ │ ├── appendto.html
│ │ │ │ ├── assets
│ │ │ │ │ ├── inlineall
│ │ │ │ │ │ └── logo.png
│ │ │ │ │ ├── outputxhtml
│ │ │ │ │ │ └── outputxhtml.css
│ │ │ │ │ ├── posteddata.php
│ │ │ │ │ ├── sample.jpg
│ │ │ │ │ └── uilanguages
│ │ │ │ │ │ └── languages.js
│ │ │ │ ├── datafiltering.html
│ │ │ │ ├── dialog
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── my_dialog.js
│ │ │ │ │ └── dialog.html
│ │ │ │ ├── divreplace.html
│ │ │ │ ├── enterkey
│ │ │ │ │ └── enterkey.html
│ │ │ │ ├── htmlwriter
│ │ │ │ │ └── outputhtml.html
│ │ │ │ ├── index.html
│ │ │ │ ├── inlineall.html
│ │ │ │ ├── inlinebycode.html
│ │ │ │ ├── inlinetextarea.html
│ │ │ │ ├── jquery.html
│ │ │ │ ├── magicline
│ │ │ │ │ └── magicline.html
│ │ │ │ ├── readonly.html
│ │ │ │ ├── replacebyclass.html
│ │ │ │ ├── replacebycode.html
│ │ │ │ ├── sample.css
│ │ │ │ ├── sample.js
│ │ │ │ ├── sample_posteddata.php
│ │ │ │ ├── tabindex.html
│ │ │ │ ├── toolbar
│ │ │ │ │ └── toolbar.html
│ │ │ │ ├── uicolor.html
│ │ │ │ ├── uilanguages.html
│ │ │ │ ├── wysiwygarea
│ │ │ │ │ └── fullpage.html
│ │ │ │ └── xhtmlstyle.html
│ │ │ └── toolbarconfigurator
│ │ │ │ ├── css
│ │ │ │ └── fontello.css
│ │ │ │ ├── font
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── config.json
│ │ │ │ ├── fontello.eot
│ │ │ │ ├── fontello.svg
│ │ │ │ ├── fontello.ttf
│ │ │ │ └── fontello.woff
│ │ │ │ ├── index.html
│ │ │ │ ├── js
│ │ │ │ ├── abstracttoolbarmodifier.js
│ │ │ │ ├── fulltoolbareditor.js
│ │ │ │ ├── toolbarmodifier.js
│ │ │ │ └── toolbartextmodifier.js
│ │ │ │ └── lib
│ │ │ │ └── codemirror
│ │ │ │ ├── LICENSE
│ │ │ │ ├── codemirror.css
│ │ │ │ ├── codemirror.js
│ │ │ │ ├── javascript.js
│ │ │ │ ├── neo.css
│ │ │ │ ├── show-hint.css
│ │ │ │ └── show-hint.js
│ │ ├── skins
│ │ │ └── moono-lisa
│ │ │ │ ├── dialog.css
│ │ │ │ ├── dialog_ie.css
│ │ │ │ ├── dialog_ie8.css
│ │ │ │ ├── dialog_iequirks.css
│ │ │ │ ├── editor.css
│ │ │ │ ├── editor_gecko.css
│ │ │ │ ├── editor_ie.css
│ │ │ │ ├── editor_ie8.css
│ │ │ │ ├── editor_iequirks.css
│ │ │ │ ├── icons.png
│ │ │ │ ├── icons_hidpi.png
│ │ │ │ ├── images
│ │ │ │ ├── arrow.png
│ │ │ │ ├── close.png
│ │ │ │ ├── hidpi
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── lock-open.png
│ │ │ │ │ ├── lock.png
│ │ │ │ │ └── refresh.png
│ │ │ │ ├── lock-open.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── refresh.png
│ │ │ │ └── spinner.gif
│ │ │ │ └── readme.md
│ │ ├── styles.js
│ │ └── vendor
│ │ │ └── promise.js
│ ├── html5shiv.js
│ ├── html5shiv.min.js
│ ├── jquery-ui-1.12.1.min.js
│ ├── jquery.ba-throttle-debounce.min.js
│ ├── jquery.min.js
│ ├── respond.min.js
│ ├── script.js
│ └── validator.min.js
│ ├── mstile-150x150.png
│ ├── safari-pinned-tab.svg
│ ├── scss
│ ├── style.css
│ ├── style.css.map
│ └── style.scss
│ └── site.webmanifest
├── proxy-chooser
├── .gitignore
├── .htaccess
├── README.md
├── classes
│ ├── .htaccess
│ ├── ApacheMirrors.php
│ ├── CountryCodes.php
│ ├── IP2Location.php
│ ├── apache_proxy_countries.csv
│ └── config.php
├── data
│ └── .htaccess
├── mirror-list.php
├── nbproject
│ ├── project.properties
│ └── project.xml
├── tools
│ ├── .htaccess
│ └── download-ip2location.sh
└── updates.php
├── snap-packages
├── frame512.png
├── from-source
│ ├── build.xml
│ ├── netbeans-template.desktop
│ └── snapcraft-template.yaml
├── from-zip
│ ├── build.xml
│ ├── netbeans-template.desktop
│ └── snapcraft-template.yaml
└── launchers
│ ├── patch-netbeans-conf
│ └── userdir-cleanup
├── synergy
├── Gruntfile.js
├── README.md
├── build.xml
├── client
│ ├── app
│ │ ├── admin.html
│ │ ├── css
│ │ │ ├── custom.css
│ │ │ ├── docs.css
│ │ │ └── min
│ │ │ │ ├── custom.css
│ │ │ │ └── docs.css
│ │ ├── favicon.ico
│ │ ├── img
│ │ │ ├── ajax-loader.gif
│ │ │ ├── blue.png
│ │ │ ├── bs-docs-bootstrap-features.png
│ │ │ ├── bs-docs-masthead-pattern.png
│ │ │ ├── clock.png
│ │ │ ├── glyphicons-halflings-white.png
│ │ │ ├── glyphicons-halflings.png
│ │ │ ├── grey.png
│ │ │ ├── grid-baseline-20px.png
│ │ │ ├── nb.gif
│ │ │ ├── red.png
│ │ │ ├── user.png
│ │ │ └── yellow.png
│ │ ├── index.html
│ │ ├── index2.html
│ │ ├── index_dev.html
│ │ ├── js
│ │ │ ├── app.js
│ │ │ ├── configuration.js
│ │ │ ├── controllers.js
│ │ │ ├── excl
│ │ │ │ ├── inspect.js
│ │ │ │ ├── inspectx.js
│ │ │ │ └── wgxpath.install.js
│ │ │ ├── exts.js
│ │ │ ├── factories.js
│ │ │ ├── filters.js
│ │ │ ├── handlers.js
│ │ │ ├── legacy
│ │ │ │ └── polyfills.js
│ │ │ ├── login
│ │ │ │ └── app.js
│ │ │ ├── min
│ │ │ │ └── synergy.js
│ │ │ ├── models.js
│ │ │ └── utils.js
│ │ ├── login.html
│ │ ├── opensearch.xml
│ │ └── partials
│ │ │ ├── admin
│ │ │ ├── create
│ │ │ │ ├── assignment.html
│ │ │ │ ├── matrix_assignment.html
│ │ │ │ ├── run.html
│ │ │ │ ├── tribe.html
│ │ │ │ └── user.html
│ │ │ ├── edit
│ │ │ │ ├── project.html
│ │ │ │ ├── run.html
│ │ │ │ └── user.html
│ │ │ └── view
│ │ │ │ ├── database.html
│ │ │ │ ├── home.html
│ │ │ │ ├── log.html
│ │ │ │ ├── platforms.html
│ │ │ │ ├── projects.html
│ │ │ │ ├── reviews.html
│ │ │ │ ├── runs.html
│ │ │ │ ├── settings.html
│ │ │ │ ├── tribes.html
│ │ │ │ ├── users.html
│ │ │ │ └── versions.html
│ │ │ ├── directives
│ │ │ └── loginBt.html
│ │ │ └── public
│ │ │ ├── create
│ │ │ ├── assignment.html
│ │ │ ├── assignment_tribe.html
│ │ │ ├── case.html
│ │ │ ├── specification.html
│ │ │ └── suite.html
│ │ │ ├── edit
│ │ │ ├── case.html
│ │ │ ├── review.html
│ │ │ ├── specification.html
│ │ │ ├── suite.html
│ │ │ └── tribe.html
│ │ │ ├── login
│ │ │ └── home.html
│ │ │ └── view
│ │ │ ├── about.html
│ │ │ ├── assignment.html
│ │ │ ├── assignment_comments.html
│ │ │ ├── calendar.html
│ │ │ ├── case.html
│ │ │ ├── favorites.html
│ │ │ ├── home.html
│ │ │ ├── label.html
│ │ │ ├── login.html
│ │ │ ├── profile.html
│ │ │ ├── recover.html
│ │ │ ├── register.html
│ │ │ ├── review.html
│ │ │ ├── revisions.html
│ │ │ ├── run_coverage.html
│ │ │ ├── run_view_1.html
│ │ │ ├── run_view_2.html
│ │ │ ├── run_view_3.html
│ │ │ ├── runs.html
│ │ │ ├── search.html
│ │ │ ├── specification_view_1.html
│ │ │ ├── specification_view_2.html
│ │ │ ├── specpool.html
│ │ │ ├── statistics.html
│ │ │ ├── suite.html
│ │ │ ├── tribe.html
│ │ │ └── tribes.html
│ ├── config
│ │ ├── testacular-e2e.conf.js
│ │ └── testacular.conf.js
│ ├── scripts
│ │ ├── e2e-test.bat
│ │ ├── e2e-test.sh
│ │ ├── test-server.bat
│ │ ├── test-server.sh
│ │ ├── test.bat
│ │ ├── test.sh
│ │ ├── watchr.rb
│ │ └── web-server.js
│ └── test
│ │ ├── app
│ │ ├── synergy.js
│ │ └── test.html
│ │ └── e2e
│ │ ├── config.js
│ │ ├── homeSpec.js
│ │ ├── runsSpec.js
│ │ └── specificationsSpec.js
├── manual
│ └── .htaccess
├── misc
│ ├── database_schema
│ │ └── schema_inserts.sql
│ └── migration
├── nbproject
│ ├── customs.json
│ ├── project.properties
│ └── project.xml
├── package.json
├── server
│ ├── api
│ │ ├── .htaccess
│ │ ├── _dummy2.php
│ │ ├── about.php
│ │ ├── assignment.php
│ │ ├── assignment_bugs.php
│ │ ├── assignment_comments.php
│ │ ├── assignment_exists.php
│ │ ├── assignments.php
│ │ ├── attachment.php
│ │ ├── attachments.php
│ │ ├── case.php
│ │ ├── cases.php
│ │ ├── comments.php
│ │ ├── configuration.php
│ │ ├── db.php
│ │ ├── events.php
│ │ ├── favorite.php
│ │ ├── favorites.php
│ │ ├── image.php
│ │ ├── images.php
│ │ ├── import.php
│ │ ├── issue.php
│ │ ├── job.php
│ │ ├── label.php
│ │ ├── labels.php
│ │ ├── log.php
│ │ ├── login.php
│ │ ├── platform.php
│ │ ├── platforms.php
│ │ ├── products.php
│ │ ├── profile_img.php
│ │ ├── project.php
│ │ ├── projects.php
│ │ ├── proxy.php
│ │ ├── refresh.php
│ │ ├── register.php
│ │ ├── review.php
│ │ ├── review_assignment.php
│ │ ├── reviews.php
│ │ ├── revisions.php
│ │ ├── revison.php
│ │ ├── run.php
│ │ ├── run_attachment.php
│ │ ├── run_notifications.php
│ │ ├── run_notifications_auto.php
│ │ ├── run_notifications_auto_test.php
│ │ ├── run_specifications.php
│ │ ├── run_tribes.php
│ │ ├── runs.php
│ │ ├── sanitizer.php
│ │ ├── search.php
│ │ ├── specification.php
│ │ ├── specification_length.php
│ │ ├── specification_request.php
│ │ ├── specifications.php
│ │ ├── statistics.php
│ │ ├── statistics_filter.php
│ │ ├── suite.php
│ │ ├── test.php
│ │ ├── tribe.php
│ │ ├── tribe_assignments.php
│ │ ├── tribe_specification.php
│ │ ├── tribes.php
│ │ ├── user.php
│ │ ├── users.php
│ │ ├── version.php
│ │ ├── versions.json
│ │ ├── versions.php
│ │ ├── versions_dev.php
│ │ └── versions_dev_1.php
│ ├── app
│ │ └── Synergy.php
│ ├── cache
│ │ └── ical.ics
│ ├── controller
│ │ ├── AssignmentCommentsCtrl.php
│ │ ├── AssignmentCtrl.php
│ │ ├── AttachmentCtrl.php
│ │ ├── CalendarCtrl.php
│ │ ├── CaseCtrl.php
│ │ ├── CommentsCtrl.php
│ │ ├── ConfigurationCtrl.php
│ │ ├── DatabaseCtrl.php
│ │ ├── ExtensionCtrl.php
│ │ ├── LabelCtrl.php
│ │ ├── Mediator.php
│ │ ├── NotificationCtrl.php
│ │ ├── PlatformCtrl.php
│ │ ├── ProjectCtrl.php
│ │ ├── RegistrationCtrl.php
│ │ ├── ReviewCtrl.php
│ │ ├── ReviewsCtrl.php
│ │ ├── RevisionCtrl.php
│ │ ├── RunCtrl.php
│ │ ├── RunNotificationCtrl.php
│ │ ├── SearchCtrl.php
│ │ ├── SessionRefreshCtrl.php
│ │ ├── SpecRelationCtrl.php
│ │ ├── SpecificationCtrl.php
│ │ ├── SpecificationLockCtrl.php
│ │ ├── StatisticsCtrl.php
│ │ ├── SuiteCtrl.php
│ │ ├── TribeCtrl.php
│ │ ├── UserCtrl.php
│ │ └── VersionCtrl.php
│ ├── data
│ │ └── sample.json
│ ├── db
│ │ ├── AssignmentCommentsDAO.php
│ │ ├── AssignmentDAO.php
│ │ ├── AttachmentDAO.php
│ │ ├── Bugzilla_DAO.php
│ │ ├── CaseDAO.php
│ │ ├── CiDAO.php
│ │ ├── CommentsDAO.php
│ │ ├── ConfigurationDAO.php
│ │ ├── DB_DAO.php
│ │ ├── IssueDAO.php
│ │ ├── LabelDAO.php
│ │ ├── LockDAO.php
│ │ ├── PlatformDAO.php
│ │ ├── ProductDAO.php
│ │ ├── ProjectDAO.php
│ │ ├── RegistrationDAO.php
│ │ ├── RemovalDAO.php
│ │ ├── ReviewDAO.php
│ │ ├── ReviewsDAO.php
│ │ ├── RevisionDAO.php
│ │ ├── RunDAO.php
│ │ ├── RunNotificationDAO.php
│ │ ├── SessionDAO.php
│ │ ├── SessionRefreshDAO.php
│ │ ├── SpecificationDAO.php
│ │ ├── SpecificationRelationDAO.php
│ │ ├── StructureDAO.php
│ │ ├── SuiteDAO.php
│ │ ├── TribeDAO.php
│ │ ├── TribeExtensionDAO.php
│ │ ├── UserDAO.php
│ │ ├── VersionDAO.php
│ │ └── structure.sql
│ ├── errors
│ │ ├── .htaccess
│ │ └── errors.log
│ ├── extensions
│ │ ├── specification
│ │ │ ├── ContinuousIntegrationExtension.php
│ │ │ ├── ProjectExtension.php
│ │ │ ├── RemovalRequestExtension.php
│ │ │ └── TestExtension.php
│ │ ├── suite
│ │ │ └── ProjectExtension.php
│ │ ├── testcase
│ │ │ └── ProjectExtension.php
│ │ └── tribe
│ │ │ └── TribeSpecificationExtension.php
│ ├── interfaces
│ │ ├── EmailProvider.php
│ │ ├── ExtensionInterface.php
│ │ ├── IssueProvider.php
│ │ ├── LoggerProvider.php
│ │ ├── Observer.php
│ │ ├── ReviewImporter.php
│ │ ├── SessionProvider.php
│ │ └── TutorialProvider.php
│ ├── misc
│ │ ├── HTTP.php
│ │ └── Util.php
│ ├── model
│ │ ├── Action.php
│ │ ├── AssignmentComment.php
│ │ ├── AssignmentComments.php
│ │ ├── AssignmentDuration.php
│ │ ├── AssignmentProgress.php
│ │ ├── BlobSpecification.php
│ │ ├── BlobTestCase.php
│ │ ├── BlobTestSuite.php
│ │ ├── Bug.php
│ │ ├── CachedSession.php
│ │ ├── CommentType.php
│ │ ├── CurlRequestResult.php
│ │ ├── Email.php
│ │ ├── Job.php
│ │ ├── Label.php
│ │ ├── LabelResult.php
│ │ ├── Membership.php
│ │ ├── Platform.php
│ │ ├── Product.php
│ │ ├── Revision.php
│ │ ├── RunAttachment.php
│ │ ├── SearchResult.php
│ │ ├── Session.php
│ │ ├── Setting.php
│ │ ├── Specification.php
│ │ ├── SpecificationAttachment.php
│ │ ├── SpecificationListItem.php
│ │ ├── SpecificationSkeleton.php
│ │ ├── SpecificationsSimpleNameList.php
│ │ ├── StatRecord.php
│ │ ├── Suite.php
│ │ ├── SuiteSkeleton.php
│ │ ├── TestAssignment.php
│ │ ├── TestCase.php
│ │ ├── TestCaseImage.php
│ │ ├── TestCaseSkeleton.php
│ │ ├── TestRun.php
│ │ ├── TestRunList.php
│ │ ├── TestRunStatistics.php
│ │ ├── Tribe.php
│ │ ├── User.php
│ │ ├── UserStatistics.php
│ │ ├── UsersResult.php
│ │ ├── Version.php
│ │ ├── assignment
│ │ │ └── rest
│ │ │ │ ├── AssignmentLineResource.php
│ │ │ │ ├── AssignmentListItemResource.php
│ │ │ │ ├── AssignmentStatisticsResource.php
│ │ │ │ └── RichAssignmentListItemResource.php
│ │ ├── bug
│ │ │ └── rest
│ │ │ │ └── BugResource.php
│ │ ├── comment
│ │ │ └── rest
│ │ │ │ ├── CommentResource.php
│ │ │ │ ├── CommentTypeResource.php
│ │ │ │ └── CommentsListResource.php
│ │ ├── exception
│ │ │ ├── AssignmentCommentException.php
│ │ │ ├── AssignmentConflictException.php
│ │ │ ├── AssignmentException.php
│ │ │ ├── AssignmentSecurityException.php
│ │ │ ├── CorruptedAssignmentException.php
│ │ │ ├── CurlRequestException.php
│ │ │ ├── GeneralException.php
│ │ │ ├── SpecificationDuplicateException.php
│ │ │ └── UserException.php
│ │ ├── image
│ │ │ └── rest
│ │ │ │ └── ImageResource.php
│ │ ├── label
│ │ │ └── rest
│ │ │ │ ├── LabelResource.php
│ │ │ │ └── LabelSearchResource.php
│ │ ├── platform
│ │ │ └── rest
│ │ │ │ └── PlatformResource.php
│ │ ├── product
│ │ │ └── rest
│ │ │ │ └── ProductResource.php
│ │ ├── project
│ │ │ ├── Project.php
│ │ │ ├── ProjectListItem.php
│ │ │ └── rest
│ │ │ │ └── ProjectResource.php
│ │ ├── registration
│ │ │ └── Registration.php
│ │ ├── review
│ │ │ ├── ReviewAssignment.php
│ │ │ ├── ReviewComment.php
│ │ │ ├── ReviewPage.php
│ │ │ └── rest
│ │ │ │ └── ReviewStatisticsResource.php
│ │ ├── revision
│ │ │ └── rest
│ │ │ │ ├── RevisionListItemResource.php
│ │ │ │ └── RevisionResource.php
│ │ ├── run
│ │ │ ├── RunNotification.php
│ │ │ └── rest
│ │ │ │ ├── RunAttachmentResource.php
│ │ │ │ ├── RunBlobsResource.php
│ │ │ │ ├── RunListItemResource.php
│ │ │ │ ├── RunResource.php
│ │ │ │ ├── RunSpecificationsListResource.php
│ │ │ │ └── RunStatisticsResource.php
│ │ ├── search
│ │ │ └── rest
│ │ │ │ └── SearchResultResource.php
│ │ ├── session
│ │ │ └── RefreshSession.php
│ │ ├── setting
│ │ │ └── rest
│ │ │ │ └── SettingResource.php
│ │ ├── specification
│ │ │ ├── ext
│ │ │ │ └── RemovalRequest.php
│ │ │ └── rest
│ │ │ │ ├── SpecificationAttachmentResource.php
│ │ │ │ ├── SpecificationListItemResource.php
│ │ │ │ └── SpecificationResource.php
│ │ ├── statistics
│ │ │ └── rest
│ │ │ │ └── StatisticsLineResource.php
│ │ ├── suite
│ │ │ └── rest
│ │ │ │ ├── SuiteResource.php
│ │ │ │ └── SuiteSnippetResource.php
│ │ ├── testcase
│ │ │ └── rest
│ │ │ │ ├── CaseListItemResource.php
│ │ │ │ ├── CaseResource.php
│ │ │ │ └── CaseSnippetResource.php
│ │ ├── tribe
│ │ │ └── rest
│ │ │ │ ├── TribeListItemResource.php
│ │ │ │ └── TribeResource.php
│ │ ├── user
│ │ │ └── rest
│ │ │ │ ├── MembershipResource.php
│ │ │ │ ├── UserListItemResource.php
│ │ │ │ └── UserResource.php
│ │ └── version
│ │ │ └── rest
│ │ │ └── VersionResource.php
│ ├── observer
│ │ └── SpecificationObserver.php
│ ├── providers
│ │ ├── EmailCtrl.php
│ │ ├── IssueCtrl.php
│ │ ├── IssueOtherCtrl.php
│ │ ├── LoggerCtrl.php
│ │ ├── ProductCtrl.php
│ │ ├── ReviewImporterCtrl.php
│ │ ├── SessionCtrl.php
│ │ ├── SessionCtrl_Production.php
│ │ ├── SessionCtrl_SSO.php
│ │ └── TutorialFormatter.php
│ └── setup
│ │ └── conf.php
├── server_tests
│ ├── bootstrap.php
│ ├── configuration.xml
│ └── server
│ │ ├── DatabaseSetup.php
│ │ ├── controller
│ │ ├── AttachmentCtrlTest.php
│ │ ├── CaseCtrlTest.php
│ │ ├── CaseExtensionCtrlTest.php
│ │ ├── LabelCtrlTest.php
│ │ ├── PlatformCtrlTest.php
│ │ ├── RunCtrlTest.php
│ │ ├── SearchCtrlTest.php
│ │ ├── SpecificationCtrlTest.php
│ │ ├── SpecificationExtensionCtrlTest.php
│ │ ├── StatisticsCtrlTest.php
│ │ ├── SuiteCtrlTest.php
│ │ ├── SuiteExtensionCtrlTest.php
│ │ ├── TribeCtrlTest.php
│ │ ├── TribeExtensionCtrlTest.php
│ │ ├── UserCtrlTest.php
│ │ └── VersionCtrlTest.php
│ │ └── db
│ │ ├── FixtureTestCase.php
│ │ ├── SpecificationDAOTest.php
│ │ └── fixtures
│ │ ├── dump.xml
│ │ └── specification.xml
└── synergy.wiki
│ └── .htaccess
├── translations
└── locale_de
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── platform.properties
│ ├── project.properties
│ └── project.xml
│ └── src
│ └── org
│ └── apache
│ └── netbeans
│ └── localize
│ └── de
│ └── Bundle.properties
├── tutorials-convert
├── README.md
├── nbactions-dismissed.xml
├── nbactions.xml
├── pom.xml
├── src
│ └── main
│ │ ├── java
│ │ └── org
│ │ │ └── netbeans
│ │ │ └── tools
│ │ │ └── tutorials
│ │ │ ├── AsciidocPostProcessor.java
│ │ │ ├── CustomAsciiDocDocumentBuilder.java
│ │ │ ├── CustomAsciiDocDocumentBuilderWithoutTables.java
│ │ │ ├── ExternalLinksMap.java
│ │ │ ├── HTMLConverter.java
│ │ │ ├── Language.java
│ │ │ ├── LocalizedTutorialSection.java
│ │ │ └── NetBeansTutorialsLinkReviewer.java
│ │ └── resources
│ │ └── org
│ │ └── netbeans
│ │ └── tools
│ │ └── tutorials
│ │ ├── TutorialsBundle.properties
│ │ ├── TutorialsBundle_es_CA.properties
│ │ ├── TutorialsBundle_ja.properties
│ │ ├── TutorialsBundle_pt_BR.properties
│ │ ├── TutorialsBundle_ru.properties
│ │ ├── TutorialsBundle_zh_CN.properties
│ │ ├── index-template.mustache
│ │ └── section-template.mustache
└── web-archive.yml
├── wiki-convert
├── nb-configuration.xml
├── nbactions.xml
├── pom.xml
├── src
│ └── main
│ │ └── java
│ │ └── wikimedia
│ │ └── html
│ │ └── conversion
│ │ ├── Converter.java
│ │ ├── CustomAsciiDocDocumentBuilder.java
│ │ └── GithubMarkdownDocumentBuilder.java
└── wiki-asciidoc
│ ├── Autoload.asciidoc
│ ├── BrandingAboutDialog.asciidoc
│ ├── BrandingUpdaterSplash.asciidoc
│ ├── CustomPanelDialog.png
│ ├── DefFaqMapApisToTasks.asciidoc
│ ├── DevFaq2SrcPaths.asciidoc
│ ├── DevFaqAccessSourcesUsingMercurial.asciidoc
│ ├── DevFaqAccessSourcesWeb.asciidoc
│ ├── DevFaqActionAddAnyFolder.asciidoc
│ ├── DevFaqActionAddDataObject.asciidoc
│ ├── DevFaqActionAddEditorPopup.asciidoc
│ ├── DevFaqActionAddFileMime.asciidoc
│ ├── DevFaqActionAddFolder.asciidoc
│ ├── DevFaqActionAddJavaPackage.asciidoc
│ ├── DevFaqActionAddMenuBar.asciidoc
│ ├── DevFaqActionAddProjectCustomizer.asciidoc
│ ├── DevFaqActionAddProjectCustomizerToMultipleTypes.asciidoc
│ ├── DevFaqActionAddProjectOwnTypePopUp.asciidoc
│ ├── DevFaqActionAddProjectPopUp.asciidoc
│ ├── DevFaqActionAddProjectTypePopUp.asciidoc
│ ├── DevFaqActionAddTabPopup.asciidoc
│ ├── DevFaqActionAddToContextMenuOfAllEditors.asciidoc
│ ├── DevFaqActionAddToEditorToolbar.asciidoc
│ ├── DevFaqActionAddToolBar.asciidoc
│ ├── DevFaqActionAddTools.asciidoc
│ ├── DevFaqActionAllAvailableProjectTypes.asciidoc
│ ├── DevFaqActionContextSensitive.asciidoc
│ ├── DevFaqActionNodePopupSubmenu.asciidoc
│ ├── DevFaqActionsAddAtRuntime.asciidoc
│ ├── DevFaqActionsFolder.asciidoc
│ ├── DevFaqAddActionToMembersOrHierarchyView.asciidoc
│ ├── DevFaqAddDefaultActionShortcuts.asciidoc
│ ├── DevFaqAddDoingEvilThingsToForeignNodes.asciidoc
│ ├── DevFaqAddFileTemplateToNewFileContentMenu.asciidoc
│ ├── DevFaqAddGlobalContext.asciidoc
│ ├── DevFaqAddIconToContextMenu.asciidoc
│ ├── DevFaqAddMacroableAction.asciidoc
│ ├── DevFaqAddShortCutForAction.asciidoc
│ ├── DevFaqAddTimestampToLogs.asciidoc
│ ├── DevFaqAddingRemovingChildrenDynamically.asciidoc
│ ├── DevFaqAnnotationDevelopDebug.asciidoc
│ ├── DevFaqAnnotationList.asciidoc
│ ├── DevFaqApiSpi.asciidoc
│ ├── DevFaqApisBasics.asciidoc
│ ├── DevFaqAppClientOnNbPlatformTut.asciidoc
│ ├── DevFaqAppLifecycleHooks.asciidoc
│ ├── DevFaqAutoUpdateAPIJavadoc.asciidoc
│ ├── DevFaqAutoUpdateBranding.asciidoc
│ ├── DevFaqAutoUpdateCheckEveryStartup.asciidoc
│ ├── DevFaqAutomaticPlatformDownload.asciidoc
│ ├── DevFaqBackgroundThread.asciidoc
│ ├── DevFaqBecomingProficient.asciidoc
│ ├── DevFaqCallEjbFromNbm.asciidoc
│ ├── DevFaqChangeLookAndFeel.asciidoc
│ ├── DevFaqChangeMenuItemToolbarAppearanceForAction.asciidoc
│ ├── DevFaqChangeNodeAppearance.asciidoc
│ ├── DevFaqChangeRestartSplash.asciidoc
│ ├── DevFaqCheckableActionPreferenceOption.asciidoc
│ ├── DevFaqClassLoaders.asciidoc
│ ├── DevFaqCreateExplorerPanel.asciidoc
│ ├── DevFaqCustomDebugger.asciidoc
│ ├── DevFaqCustomFontSize.asciidoc
│ ├── DevFaqCustomIOProvider.asciidoc
│ ├── DevFaqCustomUpdateCenter.asciidoc
│ ├── DevFaqCustomWindowMode.asciidoc
│ ├── DevFaqCustomizeBuild.asciidoc
│ ├── DevFaqCustomizeWindowSystem.asciidoc
│ ├── DevFaqCustomizingUnexpectedExceptionDialog.asciidoc
│ ├── DevFaqCutCopyPaste.asciidoc
│ ├── DevFaqDataLoader.asciidoc
│ ├── DevFaqDataObject.asciidoc
│ ├── DevFaqDataObjectFileObject.asciidoc
│ ├── DevFaqDataObjectInItsCookieSet.asciidoc
│ ├── DevFaqDataObjectNode.asciidoc
│ ├── DevFaqDataSystemsAddPopupToAllFolders.asciidoc
│ ├── DevFaqDependOnCore.asciidoc
│ ├── DevFaqDialogControlOKButton.asciidoc
│ ├── DevFaqDialogsApiIntro.asciidoc
│ ├── DevFaqDisableAutoupdate.asciidoc
│ ├── DevFaqDotSettingsFiles.asciidoc
│ ├── DevFaqDotShadowFiles.asciidoc
│ ├── DevFaqDropdownMenuAddToolbar.asciidoc
│ ├── DevFaqDropdownMenuAddToolbarEnabled.asciidoc
│ ├── DevFaqDynamicSystemFilesystem.asciidoc
│ ├── DevFaqEditorCodeCompletionAnyJEditorPane.asciidoc
│ ├── DevFaqEditorGetCurrentDocument.asciidoc
│ ├── DevFaqEditorHowIsMimeLookupComposed.asciidoc
│ ├── DevFaqEditorHowToAddCodeTemplates.asciidoc
│ ├── DevFaqEditorHowToAddDiffView.asciidoc
│ ├── DevFaqEditorHowToGetMimeTypeFromDocumentOrJTextComponent.asciidoc
│ ├── DevFaqEditorHowToReuseEditorHighlighting.asciidoc
│ ├── DevFaqEditorJEPForMimeType.asciidoc
│ ├── DevFaqEditorTopComponent.asciidoc
│ ├── DevFaqEditorWhatIsMimeLookup.asciidoc
│ ├── DevFaqEditorWhatIsMimePath.asciidoc
│ ├── DevFaqEpl3rdPartySources.asciidoc
│ ├── DevFaqExecutableIcon.asciidoc
│ ├── DevFaqExpandAndSelectSpecificNode.asciidoc
│ ├── DevFaqExplorer.asciidoc
│ ├── DevFaqExplorerConnectNode.asciidoc
│ ├── DevFaqExplorerManager.asciidoc
│ ├── DevFaqExplorerViews.asciidoc
│ ├── DevFaqExplorerViewsInMantisse.asciidoc
│ ├── DevFaqExportImport.asciidoc
│ ├── DevFaqExtendOptionsSearch.asciidoc
│ ├── DevFaqExtendOptionsWindow.asciidoc
│ ├── DevFaqExternalExecution.asciidoc
│ ├── DevFaqExternalLibraries.asciidoc
│ ├── DevFaqFileAttributes.asciidoc
│ ├── DevFaqFileBug.asciidoc
│ ├── DevFaqFileChoosers.asciidoc
│ ├── DevFaqFileContextMenuAddition.asciidoc
│ ├── DevFaqFileEditorContextMenuAddition.asciidoc
│ ├── DevFaqFileFileObject.asciidoc
│ ├── DevFaqFileObject.asciidoc
│ ├── DevFaqFileObjectDataObject.asciidoc
│ ├── DevFaqFileObjectFile.asciidoc
│ ├── DevFaqFileObjectInMemory.asciidoc
│ ├── DevFaqFileOpenAction.asciidoc
│ ├── DevFaqFileRecognition.asciidoc
│ ├── DevFaqFileSystem.asciidoc
│ ├── DevFaqFileVsFileObject.asciidoc
│ ├── DevFaqFilesFromNodes.asciidoc
│ ├── DevFaqFilesystemSee.asciidoc
│ ├── DevFaqFindCaretPositionInEditor.asciidoc
│ ├── DevFaqFindInstance.asciidoc
│ ├── DevFaqFindLocationInSourcesFromUi.asciidoc
│ ├── DevFaqFindSfs.asciidoc
│ ├── DevFaqFixDependencies.asciidoc
│ ├── DevFaqFolderOfInstances.asciidoc
│ ├── DevFaqGeneralPackageNamingConventions.asciidoc
│ ├── DevFaqGeneralWhatIsNetBeansExe.asciidoc
│ ├── DevFaqGeneralWhereIsJavadoc.asciidoc
│ ├── DevFaqGeneralWhereIsPlatformHowToBuild.asciidoc
│ ├── DevFaqGetNameOfProjectGroup.asciidoc
│ ├── DevFaqGetNameOrIconForProject.asciidoc
│ ├── DevFaqGetOpenEditorWindows.asciidoc
│ ├── DevFaqGetProjectForFileInEditor.asciidoc
│ ├── DevFaqGetShortCutForAction.asciidoc
│ ├── DevFaqGlobalVsEditorKeybindings.asciidoc
│ ├── DevFaqGraphicalChoiceView.asciidoc
│ ├── DevFaqHelpGuidelines.asciidoc
│ ├── DevFaqHideRemoveToolbarMenu.asciidoc
│ ├── DevFaqHideShowToolbar.asciidoc
│ ├── DevFaqHowCreateAnActionObject.asciidoc
│ ├── DevFaqHowOrganizeOrReuseExistingActionsWithAnnotations.asciidoc
│ ├── DevFaqHowPackageLibraries.asciidoc
│ ├── DevFaqHowToChangeSettingsFromAnExternalModules.asciidoc
│ ├── DevFaqHowToChangeUpdateCenterURL.asciidoc
│ ├── DevFaqHowToDefineTheKeyMapCategoryForAnAction.asciidoc
│ ├── DevFaqHowToFixDependencies.asciidoc
│ ├── DevFaqHowToOpenURL.asciidoc
│ ├── DevFaqHowToPrint.asciidoc
│ ├── DevFaqHowToReuseModules.asciidoc
│ ├── DevFaqI18nFileEncodingQueryObject.asciidoc
│ ├── DevFaqIdeWelcome.asciidoc
│ ├── DevFaqIdentifyMain.asciidoc
│ ├── DevFaqImagesForDarkLaf.asciidoc
│ ├── DevFaqImplementFilesystem.asciidoc
│ ├── DevFaqImplementationDependency.asciidoc
│ ├── DevFaqInitialMainWindowSize.asciidoc
│ ├── DevFaqInput.asciidoc
│ ├── DevFaqInstalledFileLocator.asciidoc
│ ├── DevFaqInstanceDataObject.asciidoc
│ ├── DevFaqInvokeActionProgrammatically.asciidoc
│ ├── DevFaqJSeparatorInMainToolbar.asciidoc
│ ├── DevFaqJavaHelp.asciidoc
│ ├── DevFaqJavaHelpForNodeProperties.asciidoc
│ ├── DevFaqJavaHelpNotDisplayed.asciidoc
│ ├── DevFaqJavaHelpOverrideCustom.asciidoc
│ ├── DevFaqJavaStartParms.asciidoc
│ ├── DevFaqKeybindings.asciidoc
│ ├── DevFaqKeybindingsInUse.asciidoc
│ ├── DevFaqLgpl3rdPartySources.asciidoc
│ ├── DevFaqLibrariesModuleDescriptions.asciidoc
│ ├── DevFaqLic3rdPartyComponents.asciidoc
│ ├── DevFaqListenEditorChanges.asciidoc
│ ├── DevFaqListenForChangesInNonExistentFile.asciidoc
│ ├── DevFaqListenForOpenEvents.asciidoc
│ ├── DevFaqListenForOpeningClosingProject.asciidoc
│ ├── DevFaqListenForSaveEvents.asciidoc
│ ├── DevFaqListeningForFileChanges.asciidoc
│ ├── DevFaqLogActionStartup.asciidoc
│ ├── DevFaqLogging.asciidoc
│ ├── DevFaqLogicalKeybindings.asciidoc
│ ├── DevFaqLookup.asciidoc
│ ├── DevFaqLookupContents.asciidoc
│ ├── DevFaqLookupCookie.asciidoc
│ ├── DevFaqLookupDefault.asciidoc
│ ├── DevFaqLookupEventBus.asciidoc
│ ├── DevFaqLookupForDataNode.asciidoc
│ ├── DevFaqLookupGenerics.asciidoc
│ ├── DevFaqLookupHowToOverride.asciidoc
│ ├── DevFaqLookupImplement.asciidoc
│ ├── DevFaqLookupLazyLoad.asciidoc
│ ├── DevFaqLookupNonSingleton.asciidoc
│ ├── DevFaqLookupPackageNamingAndLookup.asciidoc
│ ├── DevFaqLookupVsHashmap.asciidoc
│ ├── DevFaqLookupWhere.asciidoc
│ ├── DevFaqMIMEResolver.asciidoc
│ ├── DevFaqMainTitle.asciidoc
│ ├── DevFaqMainwindowClosingAction.asciidoc
│ ├── DevFaqMakeGroupTemplate.asciidoc
│ ├── DevFaqMakeItTalk.asciidoc
│ ├── DevFaqMavenHowToMigrateFromANT.asciidoc
│ ├── DevFaqMavenL10N.asciidoc
│ ├── DevFaqMavenPlatformRebel.asciidoc
│ ├── DevFaqMavenSystemScope.asciidoc
│ ├── DevFaqMemoryLeaks.asciidoc
│ ├── DevFaqMigratingToNewerPlatform.asciidoc
│ ├── DevFaqMixingLightweightHeavyweight.asciidoc
│ ├── DevFaqModifyOpenFile.asciidoc
│ ├── DevFaqModuleCCE.asciidoc
│ ├── DevFaqModuleDependencies.asciidoc
│ ├── DevFaqModuleDupePackages.asciidoc
│ ├── DevFaqModuleLoadUnloadNotification.asciidoc
│ ├── DevFaqModuleObfuscation.asciidoc
│ ├── DevFaqModulePatching.asciidoc
│ ├── DevFaqModuleReload.asciidoc
│ ├── DevFaqModulesDeclarativeVsProgrammatic.asciidoc
│ ├── DevFaqModulesGeneral.asciidoc
│ ├── DevFaqModulesLayerFile.asciidoc
│ ├── DevFaqModulesStartupActions.asciidoc
│ ├── DevFaqMoreDocsOnCertainAPIs.asciidoc
│ ├── DevFaqMpl3rdPartySources.asciidoc
│ ├── DevFaqMultiViewChangeTabInCode.asciidoc
│ ├── DevFaqMultipleProgrammaticEdits.asciidoc
│ ├── DevFaqMultipleTopComponentAction.asciidoc
│ ├── DevFaqNBMPack200.asciidoc
│ ├── DevFaqNativeLibraries.asciidoc
│ ├── DevFaqNbIdiosyncracies.asciidoc
│ ├── DevFaqNbPlatformAndHarnessMixAndMatch.asciidoc
│ ├── DevFaqNbmPostInstall.asciidoc
│ ├── DevFaqNetBeansClasspath.asciidoc
│ ├── DevFaqNetBeansFullHack.asciidoc
│ ├── DevFaqNetBeansPlatformManager.asciidoc
│ ├── DevFaqNetBeansProjectsDirectory.asciidoc
│ ├── DevFaqNewXMLFileType.asciidoc
│ ├── DevFaqNoClassDefFound.asciidoc
│ ├── DevFaqNodeChildrenDotLeaf.asciidoc
│ ├── DevFaqNodeDataObject.asciidoc
│ ├── DevFaqNodeDeletionDialog.asciidoc
│ ├── DevFaqNodeInjectingLookupContents.asciidoc
│ ├── DevFaqNodePropertyForFiles.asciidoc
│ ├── DevFaqNodeSelectAll.asciidoc
│ ├── DevFaqNodeSerialize.asciidoc
│ ├── DevFaqNodeSubclass.asciidoc
│ ├── DevFaqNodeViewCapability.asciidoc
│ ├── DevFaqNodesChildFactory.asciidoc
│ ├── DevFaqNodesCustomLookup.asciidoc
│ ├── DevFaqNodesDecorating.asciidoc
│ ├── DevFaqNonGuiPlatformApp.asciidoc
│ ├── DevFaqNonSingletonTopComponents.asciidoc
│ ├── DevFaqOWColorText.asciidoc
│ ├── DevFaqOWTabEmbedding.asciidoc
│ ├── DevFaqObtainSourcesOfAJavaClass.asciidoc
│ ├── DevFaqOpenFile.asciidoc
│ ├── DevFaqOpenFileAtLine.asciidoc
│ ├── DevFaqOpenFilesAfterProjectCreation.asciidoc
│ ├── DevFaqOpenOptionsAtCategory.asciidoc
│ ├── DevFaqOpenProjectProgramatically.asciidoc
│ ├── DevFaqOpenReadOnly.asciidoc
│ ├── DevFaqOrderActions.asciidoc
│ ├── DevFaqOrderAttributes.asciidoc
│ ├── DevFaqOrphanedNetBeansOrgModules.asciidoc
│ ├── DevFaqOutlineViewHorizontalScrolling.asciidoc
│ ├── DevFaqOutputWindow.asciidoc
│ ├── DevFaqOutputWindowExternalProcess.asciidoc
│ ├── DevFaqOverrideDefaultWindowSize.asciidoc
│ ├── DevFaqPlatformAppAuthStrategies.asciidoc
│ ├── DevFaqPlatformRuntimeProperties.asciidoc
│ ├── DevFaqPossibleToExtend.asciidoc
│ ├── DevFaqProfiling.asciidoc
│ ├── DevFaqPropertyEditorHints.asciidoc
│ ├── DevFaqPropertySheetEditors.asciidoc
│ ├── DevFaqPropertySheetHideDescription.asciidoc
│ ├── DevFaqPropertySheetNodes.asciidoc
│ ├── DevFaqPropertySheetReadonlyProperty.asciidoc
│ ├── DevFaqPropertySheetTabs.asciidoc
│ ├── DevFaqRebindingKeys.asciidoc
│ ├── DevFaqRegisterObjectsViaInstanceOrSettingsFiles.asciidoc
│ ├── DevFaqRemoveStatusBar.asciidoc
│ ├── DevFaqRenamingMenuItem.asciidoc
│ ├── DevFaqReplaceWindowSystem.asciidoc
│ ├── DevFaqRequestProcessor.asciidoc
│ ├── DevFaqRequestProcessorTask.asciidoc
│ ├── DevFaqRuntimeMemory.asciidoc
│ ├── DevFaqSampleCode.asciidoc
│ ├── DevFaqScanForClasses.asciidoc
│ ├── DevFaqSellingModules.asciidoc
│ ├── DevFaqSetPrefs.asciidoc
│ ├── DevFaqSignNbm.asciidoc
│ ├── DevFaqSortableTTVColumns.asciidoc
│ ├── DevFaqSourceTreeModuleDescriptions.asciidoc
│ ├── DevFaqSpecifyJdkVersion.asciidoc
│ ├── DevFaqSuitesVsClusters.asciidoc
│ ├── DevFaqSuppressEditTTVColumns.asciidoc
│ ├── DevFaqSuppressExistingModule.asciidoc
│ ├── DevFaqSwitchingMenusByContext.asciidoc
│ ├── DevFaqSyntaxColoring.asciidoc
│ ├── DevFaqSyntaxHighlight.asciidoc
│ ├── DevFaqSysFsLookupRegistration.asciidoc
│ ├── DevFaqSystemFilesystem.asciidoc
│ ├── DevFaqTaskLongRunningAsyncTask.asciidoc
│ ├── DevFaqTemplatesInNonIdeApp.asciidoc
│ ├── DevFaqTestDataObject.asciidoc
│ ├── DevFaqTestUsingSystemFileSystem.asciidoc
│ ├── DevFaqThreading.asciidoc
│ ├── DevFaqThreadingBuiltIn.asciidoc
│ ├── DevFaqToggleActionAddToEditorToolbar.asciidoc
│ ├── DevFaqTopManager.asciidoc
│ ├── DevFaqTrackGlobalSelection.asciidoc
│ ├── DevFaqTrackingExplorerSelections.asciidoc
│ ├── DevFaqTroubleshootClassNotFound.asciidoc
│ ├── DevFaqTroubleshootMissingItemsInZippedSources.asciidoc
│ ├── DevFaqTutorialsAPI.asciidoc
│ ├── DevFaqTutorialsDebugging.asciidoc
│ ├── DevFaqTutorialsIndex.asciidoc
│ ├── DevFaqTweakRegistryByCodeDeduction.asciidoc
│ ├── DevFaqTweakRegistryByCodeReplacement.asciidoc
│ ├── DevFaqUIGestures.asciidoc
│ ├── DevFaqUIResponsiveness.asciidoc
│ ├── DevFaqUiDefaultsPropsNotFound.asciidoc
│ ├── DevFaqUnexpectedExceptionDialog.asciidoc
│ ├── DevFaqUriVsUrl.asciidoc
│ ├── DevFaqUseNativeInstaller.asciidoc
│ ├── DevFaqUseSounds.asciidoc
│ ├── DevFaqUserDir.asciidoc
│ ├── DevFaqUsingSimpletests.asciidoc
│ ├── DevFaqUsingSubmenus.asciidoc
│ ├── DevFaqVersionNumber.asciidoc
│ ├── DevFaqViewSaveTTVColumns.asciidoc
│ ├── DevFaqWaysToRegisterInDefaultLookup.asciidoc
│ ├── DevFaqWeakListener.asciidoc
│ ├── DevFaqWeakListenerWhen.asciidoc
│ ├── DevFaqWhatIsACluster.asciidoc
│ ├── DevFaqWhatIsAModule.asciidoc
│ ├── DevFaqWhatIsANode.asciidoc
│ ├── DevFaqWhatIsNbm.asciidoc
│ ├── DevFaqWhenLookup.asciidoc
│ ├── DevFaqWhenToUseWhatRegistrationMethod.asciidoc
│ ├── DevFaqWhenUseWrapperModule.asciidoc
│ ├── DevFaqWindowsAndDialogs.asciidoc
│ ├── DevFaqWindowsComponentHowTo.asciidoc
│ ├── DevFaqWindowsGeneral.asciidoc
│ ├── DevFaqWindowsInternals.asciidoc
│ ├── DevFaqWindowsMatisse.asciidoc
│ ├── DevFaqWindowsMaximizeViaCode.asciidoc
│ ├── DevFaqWindowsMode.asciidoc
│ ├── DevFaqWindowsNoActionsOnToolbars.asciidoc
│ ├── DevFaqWindowsOpenInMode.asciidoc
│ ├── DevFaqWindowsOpenTopComponents.asciidoc
│ ├── DevFaqWindowsTopComponent.asciidoc
│ ├── DevFaqWindowsTopComponentLookup.asciidoc
│ ├── DevFaqWindowsWstcrefAndFriends.asciidoc
│ ├── DevFaqWindowsXmlApi.asciidoc
│ ├── DevFaqWizardChangeLabelsOfDefaultButtons.asciidoc
│ ├── DevFaqWizardPanelError.asciidoc
│ ├── DevFaqWrapperModules.asciidoc
│ ├── DevInstallerAddVersioningInfo.asciidoc
│ ├── DevRunningTestsPlatformApp.asciidoc
│ ├── FaqBlanketJCAForEmployees.asciidoc
│ ├── FaqCAAndRejectedContribution.asciidoc
│ ├── FaqCAForEveryContribution.asciidoc
│ ├── FaqCanICancelCA.asciidoc
│ ├── FaqCanIFileByEmail.asciidoc
│ ├── FaqCompanyOrIndividualCA.asciidoc
│ ├── FaqDoINeedACA.asciidoc
│ ├── FaqHowDoIFileACA.asciidoc
│ ├── FaqIndex.asciidoc
│ ├── FaqJCAAndCA.asciidoc
│ ├── FaqListedOnCopyright.asciidoc
│ ├── FaqOtherSunCA.asciidoc
│ ├── FaqPluginManagerCustomization.asciidoc
│ ├── FaqRunSameTargetOnAllModules.asciidoc
│ ├── FaqWhatIsCA.asciidoc
│ ├── FaqWhichVersionCA.asciidoc
│ ├── FaqWhyTheCA.asciidoc
│ ├── HowToAddFAQEntries.asciidoc
│ ├── HowToEnableDisableMenusFromCommandLine.asciidoc
│ ├── HowToEnableDisableModulesFromCommandLine.asciidoc
│ ├── HowToParseTheCommandLine.asciidoc
│ ├── HowToPassCommandLineArgumentsToANetBeansPlatformApplicationWhenRunInsideTheIDE.asciidoc
│ ├── InputDialog.png
│ ├── JavaHT_GetAllMembers.asciidoc
│ ├── JavaHT_Modification.asciidoc
│ ├── Java_DevelopersGuide.asciidoc
│ ├── NetBeansCertifiedEngineerCourse.asciidoc
│ ├── NetBeansDeveloperTestFAQ.asciidoc
│ ├── OkDialog.png
│ ├── ProjectVersioning.asciidoc
│ ├── TestingThingsThatUseFileObjectDataObjectDataFolder.asciidoc
│ ├── TranslateNetbeansModule.asciidoc
│ ├── YesNoDialog.png
│ ├── addplatform_DevFaqAppClientOnNbPlatformTut.png
│ ├── addserver_DevFaqAppClientOnNbPlatformTut.png
│ ├── apidesign.asciidoc
│ ├── createear1_DevFaqAppClientOnNbPlatformTut.png
│ ├── createear2_DevFaqAppClientOnNbPlatformTut.png
│ ├── createmodule_DevFaqAppClientOnNbPlatformTut.png
│ ├── createsession1_DevFaqAppClientOnNbPlatformTut.png
│ ├── createsession2_DevFaqAppClientOnNbPlatformTut.png
│ ├── createsession3_DevFaqAppClientOnNbPlatformTut.png
│ ├── createsuite1_DevFaqAppClientOnNbPlatformTut.png
│ ├── createsuite2_DevFaqAppClientOnNbPlatformTut.png
│ ├── createwindow1_DevFaqAppClientOnNbPlatformTut.png
│ ├── createwindow2_DevFaqAppClientOnNbPlatformTut.png
│ ├── createwindow3_DevFaqAppClientOnNbPlatformTut.png
│ ├── editearbuild1_DevFaqAppClientOnNbPlatformTut.png
│ ├── editearbuild2_DevFaqAppClientOnNbPlatformTut.png
│ ├── generateentity1_DevFaqAppClientOnNbPlatformTut.png
│ ├── generateentity2_DevFaqAppClientOnNbPlatformTut.png
│ ├── generateentity3_DevFaqAppClientOnNbPlatformTut.png
│ ├── index.asciidoc
│ ├── modifyappclient1_DevFaqAppClientOnNbPlatformTut.png
│ ├── modifyappclient2_DevFaqAppClientOnNbPlatformTut.png
│ ├── modifyappclient3_DevFaqAppClientOnNbPlatformTut.png
│ ├── modifyappclient4_DevFaqAppClientOnNbPlatformTut.png
│ ├── projects_DevFaqAppClientOnNbPlatformTut.png
│ ├── reuse-modules-1_DevFaqHowToReuseModules.png
│ ├── reuse-modules-2_DevFaqHowToReuseModules.png
│ ├── runapp_DevFaqAppClientOnNbPlatformTut.png
│ ├── setupmodule1_DevFaqAppClientOnNbPlatformTut.png
│ ├── setupmodule2_DevFaqAppClientOnNbPlatformTut.png
│ ├── setupmodule3_DevFaqAppClientOnNbPlatformTut.png
│ ├── setupsuite1_DevFaqAppClientOnNbPlatformTut.png
│ ├── setupsuite2_DevFaqAppClientOnNbPlatformTut.png
│ ├── writelogic1_DevFaqAppClientOnNbPlatformTut.png
│ └── writelogic2_DevFaqAppClientOnNbPlatformTut.png
└── wiki-export
├── NOTICE
├── apache-license.asciidoc
├── build.xml
├── manifest.mf
├── nbproject
├── build-impl.xml
├── genfiles.properties
├── licenseheader.txt
├── project.properties
└── project.xml
├── pandoc.sh
├── src
└── wiki
│ └── export
│ ├── WikiEntries2MediaWiki.java
│ ├── WikiEntriesDownloader.java
│ ├── WikiIndexScanner.java
│ └── xml2wikimedia.xsl
├── wiki-content
├── .BrandingAboutDialog.xml.swp
├── Autoload.xml
├── BrandingAboutDialog.xml
├── BrandingUpdaterSplash.xml
├── CustomPanelDialog.png
├── DefFaqMapApisToTasks.xml
├── DevFaq2SrcPaths.xml
├── DevFaqAccessSourcesUsingMercurial.xml
├── DevFaqAccessSourcesWeb.xml
├── DevFaqActionAddAnyFolder.xml
├── DevFaqActionAddDataObject.xml
├── DevFaqActionAddEditorPopup.xml
├── DevFaqActionAddFileMime.xml
├── DevFaqActionAddFolder.xml
├── DevFaqActionAddJavaPackage.xml
├── DevFaqActionAddMenuBar.xml
├── DevFaqActionAddProjectCustomizer.xml
├── DevFaqActionAddProjectCustomizerToMultipleTypes.xml
├── DevFaqActionAddProjectOwnTypePopUp.xml
├── DevFaqActionAddProjectPopUp.xml
├── DevFaqActionAddProjectTypePopUp.xml
├── DevFaqActionAddTabPopup.xml
├── DevFaqActionAddToContextMenuOfAllEditors.xml
├── DevFaqActionAddToEditorToolbar.xml
├── DevFaqActionAddToolBar.xml
├── DevFaqActionAddTools.xml
├── DevFaqActionAllAvailableProjectTypes.xml
├── DevFaqActionContextSensitive.xml
├── DevFaqActionNodePopupSubmenu.xml
├── DevFaqActionsAddAtRuntime.xml
├── DevFaqActionsFolder.xml
├── DevFaqAddActionToMembersOrHierarchyView.xml
├── DevFaqAddDefaultActionShortcuts.xml
├── DevFaqAddDoingEvilThingsToForeignNodes.xml
├── DevFaqAddFileTemplateToNewFileContentMenu.xml
├── DevFaqAddGlobalContext.xml
├── DevFaqAddIconToContextMenu.xml
├── DevFaqAddMacroableAction.xml
├── DevFaqAddShortCutForAction.xml
├── DevFaqAddTimestampToLogs.xml
├── DevFaqAddingRemovingChildrenDynamically.xml
├── DevFaqAnnotationDevelopDebug.xml
├── DevFaqAnnotationList.xml
├── DevFaqApiSpi.xml
├── DevFaqApisBasics.xml
├── DevFaqAppClientOnNbPlatformTut.xml
├── DevFaqAppLifecycleHooks.xml
├── DevFaqAutoUpdateAPIJavadoc.xml
├── DevFaqAutoUpdateBranding.xml
├── DevFaqAutoUpdateCheckEveryStartup.xml
├── DevFaqAutomaticPlatformDownload.xml
├── DevFaqBackgroundThread.xml
├── DevFaqBecomingProficient.xml
├── DevFaqCallEjbFromNbm.xml
├── DevFaqChangeLookAndFeel.xml
├── DevFaqChangeMenuItemToolbarAppearanceForAction.xml
├── DevFaqChangeNodeAppearance.xml
├── DevFaqChangeRestartSplash.xml
├── DevFaqCheckableActionPreferenceOption.xml
├── DevFaqClassLoaders.xml
├── DevFaqCreateExplorerPanel.xml
├── DevFaqCustomDebugger.xml
├── DevFaqCustomFontSize.xml
├── DevFaqCustomIOProvider.xml
├── DevFaqCustomUpdateCenter.xml
├── DevFaqCustomWindowMode.xml
├── DevFaqCustomizeBuild.xml
├── DevFaqCustomizeWindowSystem.xml
├── DevFaqCustomizingUnexpectedExceptionDialog.xml
├── DevFaqCutCopyPaste.xml
├── DevFaqDataLoader.xml
├── DevFaqDataObject.xml
├── DevFaqDataObjectFileObject.xml
├── DevFaqDataObjectInItsCookieSet.xml
├── DevFaqDataObjectNode.xml
├── DevFaqDataSystemsAddPopupToAllFolders.xml
├── DevFaqDependOnCore.xml
├── DevFaqDialogControlOKButton.xml
├── DevFaqDialogsApiIntro.xml
├── DevFaqDisableAutoupdate.xml
├── DevFaqDotSettingsFiles.xml
├── DevFaqDotShadowFiles.xml
├── DevFaqDropdownMenuAddToolbar.xml
├── DevFaqDropdownMenuAddToolbarEnabled.xml
├── DevFaqDynamicSystemFilesystem.xml
├── DevFaqEditorCodeCompletionAnyJEditorPane.xml
├── DevFaqEditorGetCurrentDocument.xml
├── DevFaqEditorHowIsMimeLookupComposed.xml
├── DevFaqEditorHowToAddCodeTemplates.xml
├── DevFaqEditorHowToAddDiffView.xml
├── DevFaqEditorHowToGetMimeTypeFromDocumentOrJTextComponent.xml
├── DevFaqEditorHowToReuseEditorHighlighting.xml
├── DevFaqEditorJEPForMimeType.xml
├── DevFaqEditorTopComponent.xml
├── DevFaqEditorWhatIsMimeLookup.xml
├── DevFaqEditorWhatIsMimePath.xml
├── DevFaqEpl3rdPartySources.xml
├── DevFaqExecutableIcon.xml
├── DevFaqExpandAndSelectSpecificNode.xml
├── DevFaqExplorer.xml
├── DevFaqExplorerConnectNode.xml
├── DevFaqExplorerManager.xml
├── DevFaqExplorerViews.xml
├── DevFaqExplorerViewsInMantisse.xml
├── DevFaqExportImport.xml
├── DevFaqExtendOptionsSearch.xml
├── DevFaqExtendOptionsWindow.xml
├── DevFaqExternalExecution.xml
├── DevFaqExternalLibraries.xml
├── DevFaqFileAttributes.xml
├── DevFaqFileBug.xml
├── DevFaqFileChoosers.xml
├── DevFaqFileContextMenuAddition.xml
├── DevFaqFileEditorContextMenuAddition.xml
├── DevFaqFileFileObject.xml
├── DevFaqFileObject.xml
├── DevFaqFileObjectDataObject.xml
├── DevFaqFileObjectFile.xml
├── DevFaqFileObjectInMemory.xml
├── DevFaqFileOpenAction.xml
├── DevFaqFileRecognition.xml
├── DevFaqFileSystem.xml
├── DevFaqFileVsFileObject.xml
├── DevFaqFilesFromNodes.xml
├── DevFaqFilesystemSee.xml
├── DevFaqFindCaretPositionInEditor.xml
├── DevFaqFindInstance.xml
├── DevFaqFindLocationInSourcesFromUi.xml
├── DevFaqFindSfs.xml
├── DevFaqFixDependencies.xml
├── DevFaqFolderOfInstances.xml
├── DevFaqGeneralPackageNamingConventions.xml
├── DevFaqGeneralWhatIsNetBeansExe.xml
├── DevFaqGeneralWhereIsJavadoc.xml
├── DevFaqGeneralWhereIsPlatformHowToBuild.xml
├── DevFaqGetNameOfProjectGroup.xml
├── DevFaqGetNameOrIconForProject.xml
├── DevFaqGetOpenEditorWindows.xml
├── DevFaqGetProjectForFileInEditor.xml
├── DevFaqGetShortCutForAction.xml
├── DevFaqGlobalVsEditorKeybindings.xml
├── DevFaqGraphicalChoiceView.xml
├── DevFaqHelpGuidelines.xml
├── DevFaqHideRemoveToolbarMenu.xml
├── DevFaqHideShowToolbar.xml
├── DevFaqHowCreateAnActionObject.xml
├── DevFaqHowOrganizeOrReuseExistingActionsWithAnnotations.xml
├── DevFaqHowPackageLibraries.xml
├── DevFaqHowToChangeSettingsFromAnExternalModules.xml
├── DevFaqHowToChangeUpdateCenterURL.xml
├── DevFaqHowToDefineTheKeyMapCategoryForAnAction.xml
├── DevFaqHowToFixDependencies.xml
├── DevFaqHowToOpenURL.xml
├── DevFaqHowToPrint.xml
├── DevFaqHowToReuseModules.xml
├── DevFaqI18nFileEncodingQueryObject.xml
├── DevFaqIdeWelcome.xml
├── DevFaqIdentifyMain.xml
├── DevFaqImagesForDarkLaf.xml
├── DevFaqImplementFilesystem.xml
├── DevFaqImplementationDependency.xml
├── DevFaqInitialMainWindowSize.xml
├── DevFaqInput.xml
├── DevFaqInstalledFileLocator.xml
├── DevFaqInstanceDataObject.xml
├── DevFaqInvokeActionProgrammatically.xml
├── DevFaqJSeparatorInMainToolbar.xml
├── DevFaqJavaHelp.xml
├── DevFaqJavaHelpForNodeProperties.xml
├── DevFaqJavaHelpNotDisplayed.xml
├── DevFaqJavaHelpOverrideCustom.xml
├── DevFaqJavaStartParms.xml
├── DevFaqKeybindings.xml
├── DevFaqKeybindingsInUse.xml
├── DevFaqLgpl3rdPartySources.xml
├── DevFaqLibrariesModuleDescriptions.xml
├── DevFaqLic3rdPartyComponents.xml
├── DevFaqListenEditorChanges.xml
├── DevFaqListenForChangesInNonExistentFile.xml
├── DevFaqListenForOpenEvents.xml
├── DevFaqListenForOpeningClosingProject.xml
├── DevFaqListenForSaveEvents.xml
├── DevFaqListeningForFileChanges.xml
├── DevFaqLogActionStartup.xml
├── DevFaqLogging.xml
├── DevFaqLogicalKeybindings.xml
├── DevFaqLookup.xml
├── DevFaqLookupContents.xml
├── DevFaqLookupCookie.xml
├── DevFaqLookupDefault.xml
├── DevFaqLookupEventBus.xml
├── DevFaqLookupForDataNode.xml
├── DevFaqLookupGenerics.xml
├── DevFaqLookupHowToOverride.xml
├── DevFaqLookupImplement.xml
├── DevFaqLookupLazyLoad.xml
├── DevFaqLookupNonSingleton.xml
├── DevFaqLookupPackageNamingAndLookup.xml
├── DevFaqLookupVsHashmap.xml
├── DevFaqLookupWhere.xml
├── DevFaqMIMEResolver.xml
├── DevFaqMainTitle.xml
├── DevFaqMainwindowClosingAction.xml
├── DevFaqMakeGroupTemplate.xml
├── DevFaqMakeItTalk.xml
├── DevFaqMavenHowToMigrateFromANT.xml
├── DevFaqMavenL10N.xml
├── DevFaqMavenPlatformRebel.xml
├── DevFaqMavenSystemScope.xml
├── DevFaqMemoryLeaks.xml
├── DevFaqMigratingToNewerPlatform.xml
├── DevFaqMixingLightweightHeavyweight.xml
├── DevFaqModifyOpenFile.xml
├── DevFaqModuleCCE.xml
├── DevFaqModuleDependencies.xml
├── DevFaqModuleDupePackages.xml
├── DevFaqModuleLoadUnloadNotification.xml
├── DevFaqModuleObfuscation.xml
├── DevFaqModulePatching.xml
├── DevFaqModuleReload.xml
├── DevFaqModulesDeclarativeVsProgrammatic.xml
├── DevFaqModulesGeneral.xml
├── DevFaqModulesLayerFile.xml
├── DevFaqModulesStartupActions.xml
├── DevFaqMoreDocsOnCertainAPIs.xml
├── DevFaqMpl3rdPartySources.xml
├── DevFaqMultiViewChangeTabInCode.xml
├── DevFaqMultipleProgrammaticEdits.xml
├── DevFaqMultipleTopComponentAction.xml
├── DevFaqNBMPack200.xml
├── DevFaqNativeLibraries.xml
├── DevFaqNbIdiosyncracies.xml
├── DevFaqNbPlatformAndHarnessMixAndMatch.xml
├── DevFaqNbmPostInstall.xml
├── DevFaqNetBeansClasspath.xml
├── DevFaqNetBeansFullHack.xml
├── DevFaqNetBeansPlatformManager.xml
├── DevFaqNetBeansProjectsDirectory.xml
├── DevFaqNewXMLFileType.xml
├── DevFaqNoClassDefFound.xml
├── DevFaqNodeChildrenDotLeaf.xml
├── DevFaqNodeDataObject.xml
├── DevFaqNodeDeletionDialog.xml
├── DevFaqNodeInjectingLookupContents.xml
├── DevFaqNodePropertyForFiles.xml
├── DevFaqNodeSelectAll.xml
├── DevFaqNodeSerialize.xml
├── DevFaqNodeSubclass.xml
├── DevFaqNodeViewCapability.xml
├── DevFaqNodesChildFactory.xml
├── DevFaqNodesCustomLookup.xml
├── DevFaqNodesDecorating.xml
├── DevFaqNonGuiPlatformApp.xml
├── DevFaqNonSingletonTopComponents.xml
├── DevFaqOWColorText.xml
├── DevFaqOWTabEmbedding.xml
├── DevFaqObtainSourcesOfAJavaClass.xml
├── DevFaqOpenFile.xml
├── DevFaqOpenFileAtLine.xml
├── DevFaqOpenFilesAfterProjectCreation.xml
├── DevFaqOpenOptionsAtCategory.xml
├── DevFaqOpenProjectProgramatically.xml
├── DevFaqOpenReadOnly.xml
├── DevFaqOrderActions.xml
├── DevFaqOrderAttributes.xml
├── DevFaqOrphanedNetBeansOrgModules.xml
├── DevFaqOutlineViewHorizontalScrolling.xml
├── DevFaqOutputWindow.xml
├── DevFaqOutputWindowExternalProcess.xml
├── DevFaqOverrideDefaultWindowSize.xml
├── DevFaqPlatformAppAuthStrategies.xml
├── DevFaqPlatformRuntimeProperties.xml
├── DevFaqPossibleToExtend.xml
├── DevFaqProfiling.xml
├── DevFaqPropertyEditorHints.xml
├── DevFaqPropertySheetEditors.xml
├── DevFaqPropertySheetHideDescription.xml
├── DevFaqPropertySheetNodes.xml
├── DevFaqPropertySheetReadonlyProperty.xml
├── DevFaqPropertySheetTabs.xml
├── DevFaqRebindingKeys.xml
├── DevFaqRegisterObjectsViaInstanceOrSettingsFiles.xml
├── DevFaqRemoveStatusBar.xml
├── DevFaqRenamingMenuItem.xml
├── DevFaqReplaceWindowSystem.xml
├── DevFaqRequestProcessor.xml
├── DevFaqRequestProcessorTask.xml
├── DevFaqRuntimeMemory.xml
├── DevFaqSampleCode.xml
├── DevFaqScanForClasses.xml
├── DevFaqSellingModules.xml
├── DevFaqSetPrefs.xml
├── DevFaqSignNbm.xml
├── DevFaqSortableTTVColumns.xml
├── DevFaqSourceTreeModuleDescriptions.xml
├── DevFaqSpecifyJdkVersion.xml
├── DevFaqSuitesVsClusters.xml
├── DevFaqSuppressEditTTVColumns.xml
├── DevFaqSuppressExistingModule.xml
├── DevFaqSwitchingMenusByContext.xml
├── DevFaqSyntaxColoring.xml
├── DevFaqSyntaxHighlight.xml
├── DevFaqSysFsLookupRegistration.xml
├── DevFaqSystemFilesystem.xml
├── DevFaqTaskLongRunningAsyncTask.xml
├── DevFaqTemplatesInNonIdeApp.xml
├── DevFaqTestDataObject.xml
├── DevFaqTestUsingSystemFileSystem.xml
├── DevFaqThreading.xml
├── DevFaqThreadingBuiltIn.xml
├── DevFaqToggleActionAddToEditorToolbar.xml
├── DevFaqTopManager.xml
├── DevFaqTrackGlobalSelection.xml
├── DevFaqTrackingExplorerSelections.xml
├── DevFaqTroubleshootClassNotFound.xml
├── DevFaqTroubleshootMissingItemsInZippedSources.xml
├── DevFaqTutorialsAPI.xml
├── DevFaqTutorialsDebugging.xml
├── DevFaqTutorialsIndex.xml
├── DevFaqTweakRegistryByCodeDeduction.xml
├── DevFaqTweakRegistryByCodeReplacement.xml
├── DevFaqUIGestures.xml
├── DevFaqUIResponsiveness.xml
├── DevFaqUiDefaultsPropsNotFound.xml
├── DevFaqUnexpectedExceptionDialog.xml
├── DevFaqUriVsUrl.xml
├── DevFaqUseNativeInstaller.xml
├── DevFaqUseSounds.xml
├── DevFaqUserDir.xml
├── DevFaqUsingSimpletests.xml
├── DevFaqUsingSubmenus.xml
├── DevFaqVersionNumber.xml
├── DevFaqViewSaveTTVColumns.xml
├── DevFaqWaysToRegisterInDefaultLookup.xml
├── DevFaqWeakListener.xml
├── DevFaqWeakListenerWhen.xml
├── DevFaqWhatIsACluster.xml
├── DevFaqWhatIsAModule.xml
├── DevFaqWhatIsANode.xml
├── DevFaqWhatIsNbm.xml
├── DevFaqWhenLookup.xml
├── DevFaqWhenToUseWhatRegistrationMethod.xml
├── DevFaqWhenUseWrapperModule.xml
├── DevFaqWindowsAndDialogs.xml
├── DevFaqWindowsComponentHowTo.xml
├── DevFaqWindowsGeneral.xml
├── DevFaqWindowsInternals.xml
├── DevFaqWindowsMatisse.xml
├── DevFaqWindowsMaximizeViaCode.xml
├── DevFaqWindowsMode.xml
├── DevFaqWindowsNoActionsOnToolbars.xml
├── DevFaqWindowsOpenInMode.xml
├── DevFaqWindowsOpenTopComponents.xml
├── DevFaqWindowsTopComponent.xml
├── DevFaqWindowsTopComponentLookup.xml
├── DevFaqWindowsWstcrefAndFriends.xml
├── DevFaqWindowsXmlApi.xml
├── DevFaqWizardChangeLabelsOfDefaultButtons.xml
├── DevFaqWizardPanelError.xml
├── DevFaqWrapperModules.xml
├── DevInstallerAddVersioningInfo.xml
├── DevRunningTestsPlatformApp.xml
├── FaqBlanketJCAForEmployees.xml
├── FaqCAAndRejectedContribution.xml
├── FaqCAForEveryContribution.xml
├── FaqCanICancelCA.xml
├── FaqCanIFileByEmail.xml
├── FaqCompanyOrIndividualCA.xml
├── FaqDoINeedACA.xml
├── FaqHowDoIFileACA.xml
├── FaqIndex.xml
├── FaqJCAAndCA.xml
├── FaqListedOnCopyright.xml
├── FaqOtherSunCA.xml
├── FaqPluginManagerCustomization.xml
├── FaqRunSameTargetOnAllModules.xml
├── FaqWhatIsCA.xml
├── FaqWhichVersionCA.xml
├── FaqWhyTheCA.xml
├── HowToAddFAQEntries.xml
├── HowToEnableDisableMenusFromCommandLine.xml
├── HowToEnableDisableModulesFromCommandLine.xml
├── HowToParseTheCommandLine.xml
├── HowToPassCommandLineArgumentsToANetBeansPlatformApplicationWhenRunInsideTheIDE.xml
├── InputDialog.png
├── JavaHT_GetAllMembers.xml
├── JavaHT_Modification.xml
├── Java_DevelopersGuide.xml
├── NetBeansCertifiedEngineerCourse.xml
├── NetBeansDeveloperTestFAQ.xml
├── OkDialog.png
├── ProjectVersioning.xml
├── TestingThingsThatUseFileObjectDataObjectDataFolder.xml
├── TranslateNetbeansModule.xml
├── YesNoDialog.png
├── addplatform_DevFaqAppClientOnNbPlatformTut.png
├── addserver_DevFaqAppClientOnNbPlatformTut.png
├── apidesign.xml
├── createear1_DevFaqAppClientOnNbPlatformTut.png
├── createear2_DevFaqAppClientOnNbPlatformTut.png
├── createmodule_DevFaqAppClientOnNbPlatformTut.png
├── createsession1_DevFaqAppClientOnNbPlatformTut.png
├── createsession2_DevFaqAppClientOnNbPlatformTut.png
├── createsession3_DevFaqAppClientOnNbPlatformTut.png
├── createsuite1_DevFaqAppClientOnNbPlatformTut.png
├── createsuite2_DevFaqAppClientOnNbPlatformTut.png
├── createwindow1_DevFaqAppClientOnNbPlatformTut.png
├── createwindow2_DevFaqAppClientOnNbPlatformTut.png
├── createwindow3_DevFaqAppClientOnNbPlatformTut.png
├── editearbuild1_DevFaqAppClientOnNbPlatformTut.png
├── editearbuild2_DevFaqAppClientOnNbPlatformTut.png
├── generateentity1_DevFaqAppClientOnNbPlatformTut.png
├── generateentity2_DevFaqAppClientOnNbPlatformTut.png
├── generateentity3_DevFaqAppClientOnNbPlatformTut.png
├── index.properties
├── index.wikitext
├── modifyappclient1_DevFaqAppClientOnNbPlatformTut.png
├── modifyappclient2_DevFaqAppClientOnNbPlatformTut.png
├── modifyappclient3_DevFaqAppClientOnNbPlatformTut.png
├── modifyappclient4_DevFaqAppClientOnNbPlatformTut.png
├── project-struct-i18n_TranslateNetbeansModule.gif
├── project-struct_TranslateNetbeansModule.gif
├── projects_DevFaqAppClientOnNbPlatformTut.png
├── reuse-modules-1_DevFaqHowToReuseModules.png
├── reuse-modules-2_DevFaqHowToReuseModules.png
├── runapp_DevFaqAppClientOnNbPlatformTut.png
├── setupmodule1_DevFaqAppClientOnNbPlatformTut.png
├── setupmodule2_DevFaqAppClientOnNbPlatformTut.png
├── setupmodule3_DevFaqAppClientOnNbPlatformTut.png
├── setupsuite1_DevFaqAppClientOnNbPlatformTut.png
├── setupsuite2_DevFaqAppClientOnNbPlatformTut.png
├── writelogic1_DevFaqAppClientOnNbPlatformTut.png
└── writelogic2_DevFaqAppClientOnNbPlatformTut.png
└── wiki-wikimedia
├── Autoload.mediawiki
├── BrandingAboutDialog.mediawiki
├── BrandingUpdaterSplash.mediawiki
├── CustomPanelDialog.png
├── DefFaqMapApisToTasks.mediawiki
├── DevFaq2SrcPaths.mediawiki
├── DevFaqAccessSourcesUsingMercurial.mediawiki
├── DevFaqAccessSourcesWeb.mediawiki
├── DevFaqActionAddAnyFolder.mediawiki
├── DevFaqActionAddDataObject.mediawiki
├── DevFaqActionAddEditorPopup.mediawiki
├── DevFaqActionAddFileMime.mediawiki
├── DevFaqActionAddFolder.mediawiki
├── DevFaqActionAddJavaPackage.mediawiki
├── DevFaqActionAddMenuBar.mediawiki
├── DevFaqActionAddProjectCustomizer.mediawiki
├── DevFaqActionAddProjectCustomizerToMultipleTypes.mediawiki
├── DevFaqActionAddProjectOwnTypePopUp.mediawiki
├── DevFaqActionAddProjectPopUp.mediawiki
├── DevFaqActionAddProjectTypePopUp.mediawiki
├── DevFaqActionAddTabPopup.mediawiki
├── DevFaqActionAddToContextMenuOfAllEditors.mediawiki
├── DevFaqActionAddToEditorToolbar.mediawiki
├── DevFaqActionAddToolBar.mediawiki
├── DevFaqActionAddTools.mediawiki
├── DevFaqActionAllAvailableProjectTypes.mediawiki
├── DevFaqActionContextSensitive.mediawiki
├── DevFaqActionNodePopupSubmenu.mediawiki
├── DevFaqActionsAddAtRuntime.mediawiki
├── DevFaqActionsFolder.mediawiki
├── DevFaqAddActionToMembersOrHierarchyView.mediawiki
├── DevFaqAddDefaultActionShortcuts.mediawiki
├── DevFaqAddDoingEvilThingsToForeignNodes.mediawiki
├── DevFaqAddFileTemplateToNewFileContentMenu.mediawiki
├── DevFaqAddGlobalContext.mediawiki
├── DevFaqAddIconToContextMenu.mediawiki
├── DevFaqAddMacroableAction.mediawiki
├── DevFaqAddShortCutForAction.mediawiki
├── DevFaqAddTimestampToLogs.mediawiki
├── DevFaqAddingRemovingChildrenDynamically.mediawiki
├── DevFaqAnnotationDevelopDebug.mediawiki
├── DevFaqAnnotationList.mediawiki
├── DevFaqApiSpi.mediawiki
├── DevFaqApisBasics.mediawiki
├── DevFaqAppClientOnNbPlatformTut.mediawiki
├── DevFaqAppLifecycleHooks.mediawiki
├── DevFaqAutoUpdateAPIJavadoc.mediawiki
├── DevFaqAutoUpdateBranding.mediawiki
├── DevFaqAutoUpdateCheckEveryStartup.mediawiki
├── DevFaqAutomaticPlatformDownload.mediawiki
├── DevFaqBackgroundThread.mediawiki
├── DevFaqBecomingProficient.mediawiki
├── DevFaqCallEjbFromNbm.mediawiki
├── DevFaqChangeLookAndFeel.mediawiki
├── DevFaqChangeMenuItemToolbarAppearanceForAction.mediawiki
├── DevFaqChangeNodeAppearance.mediawiki
├── DevFaqChangeRestartSplash.mediawiki
├── DevFaqCheckableActionPreferenceOption.mediawiki
├── DevFaqClassLoaders.mediawiki
├── DevFaqCreateExplorerPanel.mediawiki
├── DevFaqCustomDebugger.mediawiki
├── DevFaqCustomFontSize.mediawiki
├── DevFaqCustomIOProvider.mediawiki
├── DevFaqCustomUpdateCenter.mediawiki
├── DevFaqCustomWindowMode.mediawiki
├── DevFaqCustomizeBuild.mediawiki
├── DevFaqCustomizeWindowSystem.mediawiki
├── DevFaqCustomizingUnexpectedExceptionDialog.mediawiki
├── DevFaqCutCopyPaste.mediawiki
├── DevFaqDataLoader.mediawiki
├── DevFaqDataObject.mediawiki
├── DevFaqDataObjectFileObject.mediawiki
├── DevFaqDataObjectInItsCookieSet.mediawiki
├── DevFaqDataObjectNode.mediawiki
├── DevFaqDataSystemsAddPopupToAllFolders.mediawiki
├── DevFaqDependOnCore.mediawiki
├── DevFaqDialogControlOKButton.mediawiki
├── DevFaqDialogsApiIntro.mediawiki
├── DevFaqDisableAutoupdate.mediawiki
├── DevFaqDotSettingsFiles.mediawiki
├── DevFaqDotShadowFiles.mediawiki
├── DevFaqDropdownMenuAddToolbar.mediawiki
├── DevFaqDropdownMenuAddToolbarEnabled.mediawiki
├── DevFaqDynamicSystemFilesystem.mediawiki
├── DevFaqEditorCodeCompletionAnyJEditorPane.mediawiki
├── DevFaqEditorGetCurrentDocument.mediawiki
├── DevFaqEditorHowIsMimeLookupComposed.mediawiki
├── DevFaqEditorHowToAddCodeTemplates.mediawiki
├── DevFaqEditorHowToAddDiffView.mediawiki
├── DevFaqEditorHowToGetMimeTypeFromDocumentOrJTextComponent.mediawiki
├── DevFaqEditorHowToReuseEditorHighlighting.mediawiki
├── DevFaqEditorJEPForMimeType.mediawiki
├── DevFaqEditorTopComponent.mediawiki
├── DevFaqEditorWhatIsMimeLookup.mediawiki
├── DevFaqEditorWhatIsMimePath.mediawiki
├── DevFaqEpl3rdPartySources.mediawiki
├── DevFaqExecutableIcon.mediawiki
├── DevFaqExpandAndSelectSpecificNode.mediawiki
├── DevFaqExplorer.mediawiki
├── DevFaqExplorerConnectNode.mediawiki
├── DevFaqExplorerManager.mediawiki
├── DevFaqExplorerViews.mediawiki
├── DevFaqExplorerViewsInMantisse.mediawiki
├── DevFaqExportImport.mediawiki
├── DevFaqExtendOptionsSearch.mediawiki
├── DevFaqExtendOptionsWindow.mediawiki
├── DevFaqExternalExecution.mediawiki
├── DevFaqExternalLibraries.mediawiki
├── DevFaqFileAttributes.mediawiki
├── DevFaqFileBug.mediawiki
├── DevFaqFileChoosers.mediawiki
├── DevFaqFileContextMenuAddition.mediawiki
├── DevFaqFileEditorContextMenuAddition.mediawiki
├── DevFaqFileFileObject.mediawiki
├── DevFaqFileObject.mediawiki
├── DevFaqFileObjectDataObject.mediawiki
├── DevFaqFileObjectFile.mediawiki
├── DevFaqFileObjectInMemory.mediawiki
├── DevFaqFileOpenAction.mediawiki
├── DevFaqFileRecognition.mediawiki
├── DevFaqFileSystem.mediawiki
├── DevFaqFileVsFileObject.mediawiki
├── DevFaqFilesFromNodes.mediawiki
├── DevFaqFilesystemSee.mediawiki
├── DevFaqFindCaretPositionInEditor.mediawiki
├── DevFaqFindInstance.mediawiki
├── DevFaqFindLocationInSourcesFromUi.mediawiki
├── DevFaqFindSfs.mediawiki
├── DevFaqFixDependencies.mediawiki
├── DevFaqFolderOfInstances.mediawiki
├── DevFaqGeneralPackageNamingConventions.mediawiki
├── DevFaqGeneralWhatIsNetBeansExe.mediawiki
├── DevFaqGeneralWhereIsJavadoc.mediawiki
├── DevFaqGeneralWhereIsPlatformHowToBuild.mediawiki
├── DevFaqGetNameOfProjectGroup.mediawiki
├── DevFaqGetNameOrIconForProject.mediawiki
├── DevFaqGetOpenEditorWindows.mediawiki
├── DevFaqGetProjectForFileInEditor.mediawiki
├── DevFaqGetShortCutForAction.mediawiki
├── DevFaqGlobalVsEditorKeybindings.mediawiki
├── DevFaqGraphicalChoiceView.mediawiki
├── DevFaqHelpGuidelines.mediawiki
├── DevFaqHideRemoveToolbarMenu.mediawiki
├── DevFaqHideShowToolbar.mediawiki
├── DevFaqHowCreateAnActionObject.mediawiki
├── DevFaqHowOrganizeOrReuseExistingActionsWithAnnotations.mediawiki
├── DevFaqHowPackageLibraries.mediawiki
├── DevFaqHowToChangeSettingsFromAnExternalModules.mediawiki
├── DevFaqHowToChangeUpdateCenterURL.mediawiki
├── DevFaqHowToDefineTheKeyMapCategoryForAnAction.mediawiki
├── DevFaqHowToFixDependencies.mediawiki
├── DevFaqHowToOpenURL.mediawiki
├── DevFaqHowToPrint.mediawiki
├── DevFaqHowToReuseModules.mediawiki
├── DevFaqI18nFileEncodingQueryObject.mediawiki
├── DevFaqIdeWelcome.mediawiki
├── DevFaqIdentifyMain.mediawiki
├── DevFaqImagesForDarkLaf.mediawiki
├── DevFaqImplementFilesystem.mediawiki
├── DevFaqImplementationDependency.mediawiki
├── DevFaqInitialMainWindowSize.mediawiki
├── DevFaqInput.mediawiki
├── DevFaqInstalledFileLocator.mediawiki
├── DevFaqInstanceDataObject.mediawiki
├── DevFaqInvokeActionProgrammatically.mediawiki
├── DevFaqJSeparatorInMainToolbar.mediawiki
├── DevFaqJavaHelp.mediawiki
├── DevFaqJavaHelpForNodeProperties.mediawiki
├── DevFaqJavaHelpNotDisplayed.mediawiki
├── DevFaqJavaHelpOverrideCustom.mediawiki
├── DevFaqJavaStartParms.mediawiki
├── DevFaqKeybindings.mediawiki
├── DevFaqKeybindingsInUse.mediawiki
├── DevFaqLgpl3rdPartySources.mediawiki
├── DevFaqLibrariesModuleDescriptions.mediawiki
├── DevFaqLic3rdPartyComponents.mediawiki
├── DevFaqListenEditorChanges.mediawiki
├── DevFaqListenForChangesInNonExistentFile.mediawiki
├── DevFaqListenForOpenEvents.mediawiki
├── DevFaqListenForOpeningClosingProject.mediawiki
├── DevFaqListenForSaveEvents.mediawiki
├── DevFaqListeningForFileChanges.mediawiki
├── DevFaqLogActionStartup.mediawiki
├── DevFaqLogging.mediawiki
├── DevFaqLogicalKeybindings.mediawiki
├── DevFaqLookup.mediawiki
├── DevFaqLookupContents.mediawiki
├── DevFaqLookupCookie.mediawiki
├── DevFaqLookupDefault.mediawiki
├── DevFaqLookupEventBus.mediawiki
├── DevFaqLookupForDataNode.mediawiki
├── DevFaqLookupGenerics.mediawiki
├── DevFaqLookupHowToOverride.mediawiki
├── DevFaqLookupImplement.mediawiki
├── DevFaqLookupLazyLoad.mediawiki
├── DevFaqLookupNonSingleton.mediawiki
├── DevFaqLookupPackageNamingAndLookup.mediawiki
├── DevFaqLookupVsHashmap.mediawiki
├── DevFaqLookupWhere.mediawiki
├── DevFaqMIMEResolver.mediawiki
├── DevFaqMainTitle.mediawiki
├── DevFaqMainwindowClosingAction.mediawiki
├── DevFaqMakeGroupTemplate.mediawiki
├── DevFaqMakeItTalk.mediawiki
├── DevFaqMavenHowToMigrateFromANT.mediawiki
├── DevFaqMavenL10N.mediawiki
├── DevFaqMavenPlatformRebel.mediawiki
├── DevFaqMavenSystemScope.mediawiki
├── DevFaqMemoryLeaks.mediawiki
├── DevFaqMigratingToNewerPlatform.mediawiki
├── DevFaqMixingLightweightHeavyweight.mediawiki
├── DevFaqModifyOpenFile.mediawiki
├── DevFaqModuleCCE.mediawiki
├── DevFaqModuleDependencies.mediawiki
├── DevFaqModuleDupePackages.mediawiki
├── DevFaqModuleLoadUnloadNotification.mediawiki
├── DevFaqModuleObfuscation.mediawiki
├── DevFaqModulePatching.mediawiki
├── DevFaqModuleReload.mediawiki
├── DevFaqModulesDeclarativeVsProgrammatic.mediawiki
├── DevFaqModulesGeneral.mediawiki
├── DevFaqModulesLayerFile.mediawiki
├── DevFaqModulesStartupActions.mediawiki
├── DevFaqMoreDocsOnCertainAPIs.mediawiki
├── DevFaqMpl3rdPartySources.mediawiki
├── DevFaqMultiViewChangeTabInCode.mediawiki
├── DevFaqMultipleProgrammaticEdits.mediawiki
├── DevFaqMultipleTopComponentAction.mediawiki
├── DevFaqNBMPack200.mediawiki
├── DevFaqNativeLibraries.mediawiki
├── DevFaqNbIdiosyncracies.mediawiki
├── DevFaqNbPlatformAndHarnessMixAndMatch.mediawiki
├── DevFaqNbmPostInstall.mediawiki
├── DevFaqNetBeansClasspath.mediawiki
├── DevFaqNetBeansFullHack.mediawiki
├── DevFaqNetBeansPlatformManager.mediawiki
├── DevFaqNetBeansProjectsDirectory.mediawiki
├── DevFaqNewXMLFileType.mediawiki
├── DevFaqNoClassDefFound.mediawiki
├── DevFaqNodeChildrenDotLeaf.mediawiki
├── DevFaqNodeDataObject.mediawiki
├── DevFaqNodeDeletionDialog.mediawiki
├── DevFaqNodeInjectingLookupContents.mediawiki
├── DevFaqNodePropertyForFiles.mediawiki
├── DevFaqNodeSelectAll.mediawiki
├── DevFaqNodeSerialize.mediawiki
├── DevFaqNodeSubclass.mediawiki
├── DevFaqNodeViewCapability.mediawiki
├── DevFaqNodesChildFactory.mediawiki
├── DevFaqNodesCustomLookup.mediawiki
├── DevFaqNodesDecorating.mediawiki
├── DevFaqNonGuiPlatformApp.mediawiki
├── DevFaqNonSingletonTopComponents.mediawiki
├── DevFaqOWColorText.mediawiki
├── DevFaqOWTabEmbedding.mediawiki
├── DevFaqObtainSourcesOfAJavaClass.mediawiki
├── DevFaqOpenFile.mediawiki
├── DevFaqOpenFileAtLine.mediawiki
├── DevFaqOpenFilesAfterProjectCreation.mediawiki
├── DevFaqOpenOptionsAtCategory.mediawiki
├── DevFaqOpenProjectProgramatically.mediawiki
├── DevFaqOpenReadOnly.mediawiki
├── DevFaqOrderActions.mediawiki
├── DevFaqOrderAttributes.mediawiki
├── DevFaqOrphanedNetBeansOrgModules.mediawiki
├── DevFaqOutlineViewHorizontalScrolling.mediawiki
├── DevFaqOutputWindow.mediawiki
├── DevFaqOutputWindowExternalProcess.mediawiki
├── DevFaqOverrideDefaultWindowSize.mediawiki
├── DevFaqPlatformAppAuthStrategies.mediawiki
├── DevFaqPlatformRuntimeProperties.mediawiki
├── DevFaqPossibleToExtend.mediawiki
├── DevFaqProfiling.mediawiki
├── DevFaqPropertyEditorHints.mediawiki
├── DevFaqPropertySheetEditors.mediawiki
├── DevFaqPropertySheetHideDescription.mediawiki
├── DevFaqPropertySheetNodes.mediawiki
├── DevFaqPropertySheetReadonlyProperty.mediawiki
├── DevFaqPropertySheetTabs.mediawiki
├── DevFaqRebindingKeys.mediawiki
├── DevFaqRegisterObjectsViaInstanceOrSettingsFiles.mediawiki
├── DevFaqRemoveStatusBar.mediawiki
├── DevFaqRenamingMenuItem.mediawiki
├── DevFaqReplaceWindowSystem.mediawiki
├── DevFaqRequestProcessor.mediawiki
├── DevFaqRequestProcessorTask.mediawiki
├── DevFaqRuntimeMemory.mediawiki
├── DevFaqSampleCode.mediawiki
├── DevFaqScanForClasses.mediawiki
├── DevFaqSellingModules.mediawiki
├── DevFaqSetPrefs.mediawiki
├── DevFaqSignNbm.mediawiki
├── DevFaqSortableTTVColumns.mediawiki
├── DevFaqSourceTreeModuleDescriptions.mediawiki
├── DevFaqSpecifyJdkVersion.mediawiki
├── DevFaqSuitesVsClusters.mediawiki
├── DevFaqSuppressEditTTVColumns.mediawiki
├── DevFaqSuppressExistingModule.mediawiki
├── DevFaqSwitchingMenusByContext.mediawiki
├── DevFaqSyntaxColoring.mediawiki
├── DevFaqSyntaxHighlight.mediawiki
├── DevFaqSysFsLookupRegistration.mediawiki
├── DevFaqSystemFilesystem.mediawiki
├── DevFaqTaskLongRunningAsyncTask.mediawiki
├── DevFaqTemplatesInNonIdeApp.mediawiki
├── DevFaqTestDataObject.mediawiki
├── DevFaqTestUsingSystemFileSystem.mediawiki
├── DevFaqThreading.mediawiki
├── DevFaqThreadingBuiltIn.mediawiki
├── DevFaqToggleActionAddToEditorToolbar.mediawiki
├── DevFaqTopManager.mediawiki
├── DevFaqTrackGlobalSelection.mediawiki
├── DevFaqTrackingExplorerSelections.mediawiki
├── DevFaqTroubleshootClassNotFound.mediawiki
├── DevFaqTroubleshootMissingItemsInZippedSources.mediawiki
├── DevFaqTutorialsAPI.mediawiki
├── DevFaqTutorialsDebugging.mediawiki
├── DevFaqTutorialsIndex.mediawiki
├── DevFaqTweakRegistryByCodeDeduction.mediawiki
├── DevFaqTweakRegistryByCodeReplacement.mediawiki
├── DevFaqUIGestures.mediawiki
├── DevFaqUIResponsiveness.mediawiki
├── DevFaqUiDefaultsPropsNotFound.mediawiki
├── DevFaqUnexpectedExceptionDialog.mediawiki
├── DevFaqUriVsUrl.mediawiki
├── DevFaqUseNativeInstaller.mediawiki
├── DevFaqUseSounds.mediawiki
├── DevFaqUserDir.mediawiki
├── DevFaqUsingSimpletests.mediawiki
├── DevFaqUsingSubmenus.mediawiki
├── DevFaqVersionNumber.mediawiki
├── DevFaqViewSaveTTVColumns.mediawiki
├── DevFaqWaysToRegisterInDefaultLookup.mediawiki
├── DevFaqWeakListener.mediawiki
├── DevFaqWeakListenerWhen.mediawiki
├── DevFaqWhatIsACluster.mediawiki
├── DevFaqWhatIsAModule.mediawiki
├── DevFaqWhatIsANode.mediawiki
├── DevFaqWhatIsNbm.mediawiki
├── DevFaqWhenLookup.mediawiki
├── DevFaqWhenToUseWhatRegistrationMethod.mediawiki
├── DevFaqWhenUseWrapperModule.mediawiki
├── DevFaqWindowsAndDialogs.mediawiki
├── DevFaqWindowsComponentHowTo.mediawiki
├── DevFaqWindowsGeneral.mediawiki
├── DevFaqWindowsInternals.mediawiki
├── DevFaqWindowsMatisse.mediawiki
├── DevFaqWindowsMaximizeViaCode.mediawiki
├── DevFaqWindowsMode.mediawiki
├── DevFaqWindowsNoActionsOnToolbars.mediawiki
├── DevFaqWindowsOpenInMode.mediawiki
├── DevFaqWindowsOpenTopComponents.mediawiki
├── DevFaqWindowsTopComponent.mediawiki
├── DevFaqWindowsTopComponentLookup.mediawiki
├── DevFaqWindowsWstcrefAndFriends.mediawiki
├── DevFaqWindowsXmlApi.mediawiki
├── DevFaqWizardChangeLabelsOfDefaultButtons.mediawiki
├── DevFaqWizardPanelError.mediawiki
├── DevFaqWrapperModules.mediawiki
├── DevInstallerAddVersioningInfo.mediawiki
├── DevRunningTestsPlatformApp.mediawiki
├── FaqBlanketJCAForEmployees.mediawiki
├── FaqCAAndRejectedContribution.mediawiki
├── FaqCAForEveryContribution.mediawiki
├── FaqCanICancelCA.mediawiki
├── FaqCanIFileByEmail.mediawiki
├── FaqCompanyOrIndividualCA.mediawiki
├── FaqDoINeedACA.mediawiki
├── FaqHowDoIFileACA.mediawiki
├── FaqIndex.mediawiki
├── FaqJCAAndCA.mediawiki
├── FaqListedOnCopyright.mediawiki
├── FaqOtherSunCA.mediawiki
├── FaqPluginManagerCustomization.mediawiki
├── FaqRunSameTargetOnAllModules.mediawiki
├── FaqWhatIsCA.mediawiki
├── FaqWhichVersionCA.mediawiki
├── FaqWhyTheCA.mediawiki
├── HowToAddFAQEntries.mediawiki
├── HowToEnableDisableMenusFromCommandLine.mediawiki
├── HowToEnableDisableModulesFromCommandLine.mediawiki
├── HowToParseTheCommandLine.mediawiki
├── HowToPassCommandLineArgumentsToANetBeansPlatformApplicationWhenRunInsideTheIDE.mediawiki
├── InputDialog.png
├── JavaHT_GetAllMembers.mediawiki
├── JavaHT_Modification.mediawiki
├── Java_DevelopersGuide.mediawiki
├── NetBeansCertifiedEngineerCourse.mediawiki
├── NetBeansDeveloperTestFAQ.mediawiki
├── OkDialog.png
├── ProjectVersioning.mediawiki
├── TestingThingsThatUseFileObjectDataObjectDataFolder.mediawiki
├── TranslateNetbeansModule.mediawiki
├── YesNoDialog.png
├── addplatform_DevFaqAppClientOnNbPlatformTut.png
├── addserver_DevFaqAppClientOnNbPlatformTut.png
├── apidesign.mediawiki
├── createear1_DevFaqAppClientOnNbPlatformTut.png
├── createear2_DevFaqAppClientOnNbPlatformTut.png
├── createmodule_DevFaqAppClientOnNbPlatformTut.png
├── createsession1_DevFaqAppClientOnNbPlatformTut.png
├── createsession2_DevFaqAppClientOnNbPlatformTut.png
├── createsession3_DevFaqAppClientOnNbPlatformTut.png
├── createsuite1_DevFaqAppClientOnNbPlatformTut.png
├── createsuite2_DevFaqAppClientOnNbPlatformTut.png
├── createwindow1_DevFaqAppClientOnNbPlatformTut.png
├── createwindow2_DevFaqAppClientOnNbPlatformTut.png
├── createwindow3_DevFaqAppClientOnNbPlatformTut.png
├── editearbuild1_DevFaqAppClientOnNbPlatformTut.png
├── editearbuild2_DevFaqAppClientOnNbPlatformTut.png
├── generateentity1_DevFaqAppClientOnNbPlatformTut.png
├── generateentity2_DevFaqAppClientOnNbPlatformTut.png
├── generateentity3_DevFaqAppClientOnNbPlatformTut.png
├── index.mediawiki
├── modifyappclient1_DevFaqAppClientOnNbPlatformTut.png
├── modifyappclient2_DevFaqAppClientOnNbPlatformTut.png
├── modifyappclient3_DevFaqAppClientOnNbPlatformTut.png
├── modifyappclient4_DevFaqAppClientOnNbPlatformTut.png
├── projects_DevFaqAppClientOnNbPlatformTut.png
├── reuse-modules-1_DevFaqHowToReuseModules.png
├── reuse-modules-2_DevFaqHowToReuseModules.png
├── runapp_DevFaqAppClientOnNbPlatformTut.png
├── setupmodule1_DevFaqAppClientOnNbPlatformTut.png
├── setupmodule2_DevFaqAppClientOnNbPlatformTut.png
├── setupmodule3_DevFaqAppClientOnNbPlatformTut.png
├── setupsuite1_DevFaqAppClientOnNbPlatformTut.png
├── setupsuite2_DevFaqAppClientOnNbPlatformTut.png
├── writelogic1_DevFaqAppClientOnNbPlatformTut.png
└── writelogic2_DevFaqAppClientOnNbPlatformTut.png
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Define some file types explicitly as being binary.
2 | *.ai binary
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /convert/nbproject/private/
2 | /convert/build/
3 | /convert/dist/
4 | /wiki-export/nbproject/private/
5 | /wiki-export/dist/
6 | /wiki-export/build/
7 | /target/**
8 | /wiki-convert/target/
9 | *.swp
10 | *.swo
11 | /html-convert/target/**
12 | /html-convert/tutorials-asciidoc/**
13 | /html-convert/external-links.txt
14 | /tutorials-convert/tutorials-asciidoc/**
15 | /tutorials-convert/target**
16 | /tutorials-convert/external-links.txt
17 | /translations/*/release/
18 | /translations/*/build/
19 | /translations/*/dist/
20 | /translations/*/nbproject/private/
21 | /translations/*/nbproject/genfiles.properties
22 | /pp3/module/Application/external/osgi-jar-parser/target
23 | /jsstub-generator/out/
24 | /jsstub-generator/node_modules/
25 | /jsstub-generator/nbproject/
26 | /jsstub-generator/out.old/
27 | .DS_Store
28 |
--------------------------------------------------------------------------------
/NOTICE:
--------------------------------------------------------------------------------
1 | Apache NetBeans
2 | Copyright 2017-2017 The Apache Software Foundation
3 |
4 | This product includes software developed at
5 | The Apache Software Foundation (http://www.apache.org/).
6 |
--------------------------------------------------------------------------------
/convert/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | X-COMMENT: Main-Class will be added automatically by build
3 |
4 |
--------------------------------------------------------------------------------
/convert/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=9755aca8
2 | build.xml.script.CRC32=816a776e
3 | build.xml.stylesheet.CRC32=8064a381@1.88.0.48
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=9755aca8
7 | nbproject/build-impl.xml.script.CRC32=e25a02d7
8 | nbproject/build-impl.xml.stylesheet.CRC32=bade6ae5@1.88.0.48
9 |
--------------------------------------------------------------------------------
/convert/nbproject/project.xml:
--------------------------------------------------------------------------------
1 |
2 |
['.date_format($this->verification->getCreatedAt(), 'Y-m-d H:i').'] | 6 |Verification request created | 7 |8 | |
['.date_format($vRq->getVotedAt(), 'Y-m-d H:i').'] | 14 |'.$txt.' | 15 |'.$this->escapeHtml($vRq->getComment()).($vRq->isCopy() ? ' (Verification was done for a different NetBeans version)' : '').' | 16 |
2 | 3 | ------------------------------------------------------------------------------------------- 4 | CKEditor - Posted Data 5 | 6 | We are sorry, but your Web server does not support the PHP language used in this script. 7 | 8 | Please note that CKEditor can be used with any other server-side language than just PHP. 9 | To save the content created with CKEditor you need to read the POST data on the server 10 | side and write it to a file or the database. 11 | 12 | Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. 13 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 14 | ------------------------------------------------------------------------------------------- 15 | 16 |'.$text."