File: describe_plugins.javascript

package info (click to toggle)
k3d 0.4.3.0-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 51,716 kB
  • ctags: 81,610
  • sloc: cpp: 283,698; ansic: 64,095; xml: 61,533; sh: 9,026; makefile: 5,282; python: 431; perl: 308; awk: 130
file content (22 lines) | stat: -rw-r--r-- 469 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//javascript

var file = new ostream("/dev/stdout");

file.write("\nApplication Plugins:\n");
var factories = Application.plugin_factories;
for(factory in factories)
	{
		if(factories[factory].application_plugin)
			file.write("\t" + factories[factory].name + "\n");
	}

file.write("\nDocument Plugins:\n");
for(factory in factories)
	{
		if(factories[factory].document_plugin)
			file.write("\t" + factories[factory].name + "\n");
	}

file.write("\n");
file.flush();