You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(97) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(127) |
Feb
(34) |
Mar
(16) |
Apr
(26) |
May
(55) |
Jun
(107) |
Jul
(36) |
Aug
(72) |
Sep
(90) |
Oct
(41) |
Nov
(27) |
Dec
(13) |
| 2008 |
Jan
(37) |
Feb
(39) |
Mar
(98) |
Apr
(115) |
May
(134) |
Jun
(120) |
Jul
(86) |
Aug
(149) |
Sep
(68) |
Oct
(66) |
Nov
(104) |
Dec
(49) |
| 2009 |
Jan
(131) |
Feb
(132) |
Mar
(125) |
Apr
(172) |
May
(161) |
Jun
(43) |
Jul
(47) |
Aug
(38) |
Sep
(18) |
Oct
(6) |
Nov
(1) |
Dec
(15) |
| 2010 |
Jan
(21) |
Feb
(8) |
Mar
(10) |
Apr
(4) |
May
(9) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(4) |
| 2011 |
Jan
(23) |
Feb
(10) |
Mar
(13) |
Apr
(3) |
May
|
Jun
(19) |
Jul
(11) |
Aug
(22) |
Sep
|
Oct
(4) |
Nov
(2) |
Dec
(12) |
| 2012 |
Jan
(3) |
Feb
(4) |
Mar
(7) |
Apr
(3) |
May
|
Jun
(1) |
Jul
(1) |
Aug
(30) |
Sep
(3) |
Oct
(2) |
Nov
|
Dec
(8) |
| 2013 |
Jan
(3) |
Feb
(40) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(12) |
Dec
|
| 2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
|
From: Hassan S. <has...@gm...> - 2021-09-27 18:58:30
|
Please Jnode support help with the instructions on how to install jnode32 Java OS on my Android phone. |
|
From: Hassan S. <has...@gm...> - 2021-09-17 13:56:38
|
Please I need help from you, how can I install Jnode32 on my Android phone, the major issue is instructions on how to install jnode32 on Android phone, please request me the instructions thanks. |
|
From: <ep...@us...> - 2013-11-13 09:15:31
|
Revision: 5999
http://sourceforge.net/p/jnode/svn/5999
Author: epr
Date: 2013-11-13 09:15:27 +0000 (Wed, 13 Nov 2013)
Log Message:
-----------
Improving HyperV support.
Modified Paths:
--------------
trunk/core/src/core/org/jnode/vm/x86/UnsafeX86.java
trunk/core/src/core/org/jnode/vm/x86/VmX86Architecture.java
trunk/core/src/core/org/jnode/vm/x86/X86CpuID.java
trunk/core/src/native/x86/syscall.asm
trunk/core/src/native/x86/syscall.h
trunk/core/src/native/x86/unsafex86.asm
Added Paths:
-----------
trunk/core/src/core/org/jnode/vm/x86/HyperV.java
Added: trunk/core/src/core/org/jnode/vm/x86/HyperV.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/x86/HyperV.java (rev 0)
+++ trunk/core/src/core/org/jnode/vm/x86/HyperV.java 2013-11-13 09:15:27 UTC (rev 5999)
@@ -0,0 +1,12 @@
+package org.jnode.vm.x86;
+
+/**
+ * Hyper-V constants
+ * @author ep...@jn...
+ */
+class HyperV {
+ /**
+ * MSR index for identifying the guest OS
+ */
+ static final int HV_X64_MSR_GUEST_OS_ID = 0x40000000;
+}
Modified: trunk/core/src/core/org/jnode/vm/x86/UnsafeX86.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/x86/UnsafeX86.java 2013-11-12 15:21:28 UTC (rev 5998)
+++ trunk/core/src/core/org/jnode/vm/x86/UnsafeX86.java 2013-11-13 09:15:27 UTC (rev 5999)
@@ -21,6 +21,7 @@
package org.jnode.vm.x86;
import org.jnode.annotation.Internal;
+import org.jnode.annotation.KernelSpace;
import org.vmmagic.unboxed.Address;
import org.vmmagic.unboxed.Word;
@@ -78,7 +79,19 @@
* @return 1 on success, 0 otherwise (result == null or result.length less than 4).
*/
@Internal
- public static native int getCPUID(Word input, int[] result);
+ static native int getCPUID(Word input, int[] result);
+
+ /**
+ * Read a model specific register
+ */
+ @KernelSpace
+ static native long readMSR(Word index);
+
+ /**
+ * Write a model specific register
+ */
+ @KernelSpace
+ static native void writeMSR(Word index, long value);
/**
* Gets the address of first entry in the multiboot mmap table.
Modified: trunk/core/src/core/org/jnode/vm/x86/VmX86Architecture.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/x86/VmX86Architecture.java 2013-11-12 15:21:28 UTC (rev 5998)
+++ trunk/core/src/core/org/jnode/vm/x86/VmX86Architecture.java 2013-11-13 09:15:27 UTC (rev 5999)
@@ -22,6 +22,7 @@
import java.nio.ByteOrder;
import java.util.HashMap;
+
import org.jnode.annotation.Internal;
import org.jnode.annotation.MagicPermission;
import org.jnode.assembler.x86.X86Constants;
@@ -48,6 +49,7 @@
import org.vmmagic.unboxed.Address;
import org.vmmagic.unboxed.Extent;
import org.vmmagic.unboxed.Offset;
+import org.vmmagic.unboxed.Word;
/**
* Architecture descriptor for the Intel X86 architecture.
@@ -245,6 +247,9 @@
this.bootProcessor = bootCpu;
bootCpu.setBootProcessor(true);
+ // Initialize HyperV
+ initializeHyperV();
+
final String cmdLine = VmSystem.getCmdLine();
if (cmdLine.contains("mp=no")) {
return;
@@ -466,4 +471,17 @@
return super.createMultiMediaSupport();
}
}
+
+ /**
+ * Identify ourselves in HyperV (when that is detected)
+ */
+ void initializeHyperV() {
+ final X86CpuID id = (X86CpuID) VmProcessor.current().getCPUID();
+ if (!id.detectHyperV())
+ return;
+ Unsafe.debug("Initializing HyperV");
+ long guestOsId = (0x29L << 48);
+ UnsafeX86.writeMSR(Word.fromIntZeroExtend(HyperV.HV_X64_MSR_GUEST_OS_ID), guestOsId);
+ Unsafe.debug("Initialized Hyper-V guest OS ID");
+ }
}
Modified: trunk/core/src/core/org/jnode/vm/x86/X86CpuID.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/x86/X86CpuID.java 2013-11-12 15:21:28 UTC (rev 5998)
+++ trunk/core/src/core/org/jnode/vm/x86/X86CpuID.java 2013-11-13 09:15:27 UTC (rev 5999)
@@ -194,23 +194,31 @@
}
X86CpuID id = new X86CpuID(data, brand);
-
- // Load hypervisor data
- if (id.hasHYPERVISOR()) {
- UnsafeX86.getCPUID(Word.fromIntZeroExtend(0x40000001), regs);
- if (regs[0] == 0x31237648) {
- // Found 'Hv#1' Hypervisor vendor neutral identification
- UnsafeX86.getCPUID(Word.fromIntZeroExtend(0x40000000), regs);
- final StringBuilder buf = new StringBuilder();
- intToString(buf, regs[1]); // ebx
- intToString(buf, regs[2]); // ecx
- intToString(buf, regs[3]); // edx
- id.hypervisorVendor = buf.toString().trim();
- }
- }
-
+ id.detectHyperV();
return id;
}
+
+ /**
+ * Try to detect if we're running in HyperV.
+ * @return true if we're running in HyperV, false otherwise.
+ */
+ public boolean detectHyperV() {
+ if (!hasHYPERVISOR())
+ return false;
+
+ int[] regs = new int[4];
+ UnsafeX86.getCPUID(Word.fromIntZeroExtend(0x40000001), regs);
+ if (regs[0] != 0x31237648)
+ return false;
+ // Found 'Hv#1' Hypervisor vendor neutral identification
+ UnsafeX86.getCPUID(Word.fromIntZeroExtend(0x40000000), regs);
+ final StringBuilder buf = new StringBuilder();
+ intToString(buf, regs[1]); // ebx
+ intToString(buf, regs[2]); // ecx
+ intToString(buf, regs[3]); // edx
+ hypervisorVendor = buf.toString().trim();
+ return true;
+ }
/**
* Processor vendor string
Modified: trunk/core/src/native/x86/syscall.asm
===================================================================
--- trunk/core/src/native/x86/syscall.asm 2013-11-12 15:21:28 UTC (rev 5998)
+++ trunk/core/src/native/x86/syscall.asm 2013-11-13 09:15:27 UTC (rev 5999)
@@ -25,6 +25,7 @@
DA sc_SyncMSRs
DA sc_SaveMSRs
DA sc_RestoreMSRs
+ DA sc_WriteMSR
sc_SyncMSRs:
mov ADI,CURRENTTHREAD
@@ -43,4 +44,11 @@
RESTORE_MSR_ARRAY [ADI+VmX86Thread_READWRITEMSRS_OFS]
RESTORE_MSR_ARRAY [ADI+VmX86Thread_WRITEONLYMSRS_OFS]
ret
+
+sc_WriteMSR:
+ mov ACX,GET_OLD_ECX
+ mov AAX,GET_OLD_EBX
+ mov ADX,GET_OLD_EDX
+ wrmsr
+ ret
\ No newline at end of file
Modified: trunk/core/src/native/x86/syscall.h
===================================================================
(Binary files differ)
Modified: trunk/core/src/native/x86/unsafex86.asm
===================================================================
--- trunk/core/src/native/x86/unsafex86.asm 2013-11-12 15:21:28 UTC (rev 5998)
+++ trunk/core/src/native/x86/unsafex86.asm 2013-11-13 09:15:27 UTC (rev 5999)
@@ -164,4 +164,33 @@
GLABEL Q53org5jnode2vm3x869UnsafeX8623restoreMSRs2e2829V
SYSCALL SC_RESTORE_MSRS
ret
-
\ No newline at end of file
+
+; /**
+; * Read a model specific register
+; */
+; @KernelSpace
+; static native long readMSR(Word index);
+GLABEL Q53org5jnode2vm3x869UnsafeX8623readMSR2e28Lorg2fvmmagic2funboxed2fWord3b29J
+ push ACX
+ mov ecx,[ASP+(2*SLOT_SIZE)] ; index
+ rdmsr
+ pop ACX
+ ret
+
+; /**
+; * Write a model specific register
+; */
+; @KernelSpace
+; static native void writeMSR(Word index, long value);
+GLABEL Q53org5jnode2vm3x869UnsafeX8623writeMSR2e28Lorg2fvmmagic2funboxed2fWord3bJ29V
+ push ACX
+ mov ecx,[ASP+(2*SLOT_SIZE)+8] ; index
+ mov edx,[ASP+(2*SLOT_SIZE)+4] ; value MSB
+ mov eax,[ASP+(2*SLOT_SIZE)+0] ; value LSB
+ push ABX
+ mov ABX,AAX
+ SYSCALL SC_WRITE_MSR
+ pop ABX
+ pop ACX
+ ret
+
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ep...@us...> - 2013-11-12 15:21:31
|
Revision: 5998
http://sourceforge.net/p/jnode/svn/5998
Author: epr
Date: 2013-11-12 15:21:28 +0000 (Tue, 12 Nov 2013)
Log Message:
-----------
Added named pipe viewer, for viewing COM1 output of JNode in Hyper-V
Added Paths:
-----------
trunk/core/src/test/org/jnode/test/core/NamedPipeViewer.java
Added: trunk/core/src/test/org/jnode/test/core/NamedPipeViewer.java
===================================================================
--- trunk/core/src/test/org/jnode/test/core/NamedPipeViewer.java (rev 0)
+++ trunk/core/src/test/org/jnode/test/core/NamedPipeViewer.java 2013-11-12 15:21:28 UTC (rev 5998)
@@ -0,0 +1,45 @@
+package org.jnode.test.core;
+
+import java.io.Console;
+import java.io.File;
+import java.io.IOException;
+import java.io.RandomAccessFile;
+
+public class NamedPipeViewer {
+
+ public static void main(String[] args) throws IOException {
+ File pipeFile = new File("\\\\.\\pipe\\jnode-com1");
+ final RandomAccessFile raf = new RandomAccessFile(pipeFile, "rw");
+
+ Thread readThread = new Thread(new Runnable() {
+ @Override
+ public void run() {
+ int ch;
+ try {
+ while ((ch = raf.read()) >= 0) {
+ System.out.print((char)ch);
+ }
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+ });
+ readThread.start();
+
+ // Write to kdb
+ int ch;
+ System.out.println("Started. Press q to exit");
+ while ((ch = System.in.read()) >= 0) {
+ System.out.println("read " + (char)ch);
+ if (ch == 'q') {
+ break;
+ }
+ raf.write(ch);
+ }
+
+ System.out.println("Closing...");
+ readThread.interrupt();
+ raf.close();
+ }
+
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ep...@us...> - 2013-11-12 15:20:57
|
Revision: 5997
http://sourceforge.net/p/jnode/svn/5997
Author: epr
Date: 2013-11-12 15:20:54 +0000 (Tue, 12 Nov 2013)
Log Message:
-----------
Avoid nullpointer exception.
Modified Paths:
--------------
trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i82371AB_ACPI_SMBusControler.java
Modified: trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i82371AB_ACPI_SMBusControler.java
===================================================================
--- trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i82371AB_ACPI_SMBusControler.java 2013-11-12 15:20:24 UTC (rev 5996)
+++ trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i82371AB_ACPI_SMBusControler.java 2013-11-12 15:20:54 UTC (rev 5997)
@@ -20,8 +20,11 @@
package org.jnode.driver.chipset.i440BX;
+import java.io.IOException;
import java.security.PrivilegedExceptionAction;
+
import javax.naming.NameNotFoundException;
+
import org.apache.log4j.Logger;
import org.jnode.driver.DeviceUtils;
import org.jnode.driver.DriverException;
@@ -129,12 +132,20 @@
public boolean sendByte(byte address, byte value)
throws java.security.InvalidParameterException, java.lang.UnsupportedOperationException {
+ if (ioRes == null) {
+ throw new UnsupportedOperationException("IO resource not available");
+ }
ioRes.outPortByte(hostAddressIORegister, address | ADDRESS_WRITE_TAG);
ioRes.outPortByte(hostData0IORegister, value);
ioRes.outPortByte(hostCommandIORegister, value);
ioRes.outPortByte(hostControlIORegister,
CONTROL_START | CONTROL_PROTOCOL_READWRITE_BYTE | CONTROL_INTERUPT_DISABLED);
- byte status = statusWait();
+ byte status;
+ try {
+ status = statusWait();
+ } catch (IOException e) {
+ throw new UnsupportedOperationException(e);
+ }
return status == 0;
}
@@ -317,12 +328,15 @@
}
- private void reset() {
+ private void reset() throws IOException {
statusWait(); // just make sure it is available (may be errors due to last conditions so...
ioRes.outPortByte(hostStatusIORegister, 0x1e); // ...clears the error bits
}
- private byte statusWait() {
+ private byte statusWait() throws IOException {
+ if (ioRes == null) {
+ throw new IOException("IO resource not available");
+ }
byte status = 0;
for (int i = 0; i < 500; i++) ; // dumb delay : see specification update
status = (byte) ioRes.inPortByte(hostStatusIORegister);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ep...@us...> - 2013-11-12 15:20:27
|
Revision: 5996
http://sourceforge.net/p/jnode/svn/5996
Author: epr
Date: 2013-11-12 15:20:24 +0000 (Tue, 12 Nov 2013)
Log Message:
-----------
Fixed eclipse compiler errors.
Modified Paths:
--------------
trunk/core/src/core/org/jnode/vm/compiler/ir/IRTest.java
trunk/core/src/core/org/jnode/vm/compiler/ir/quad/Quad.java
Modified: trunk/core/src/core/org/jnode/vm/compiler/ir/IRTest.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/compiler/ir/IRTest.java 2013-11-12 15:19:59 UTC (rev 5995)
+++ trunk/core/src/core/org/jnode/vm/compiler/ir/IRTest.java 2013-11-12 15:20:24 UTC (rev 5996)
@@ -154,7 +154,7 @@
cfg.deconstrucSSA();
cfg.fixupAddresses();
- final Map<Variable, Variable<T>> liveVariables = new BootableHashMap<Variable, Variable<T>>();
+ final Map<Variable<?>, Variable<T>> liveVariables = new BootableHashMap<Variable<?>, Variable<T>>();
for (IRBasicBlock<T> b : cfg) {
System.out.println();
Modified: trunk/core/src/core/org/jnode/vm/compiler/ir/quad/Quad.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/compiler/ir/quad/Quad.java 2013-11-12 15:19:59 UTC (rev 5995)
+++ trunk/core/src/core/org/jnode/vm/compiler/ir/quad/Quad.java 2013-11-12 15:20:24 UTC (rev 5996)
@@ -109,7 +109,7 @@
return basicBlock;
}
- public void computeLiveness(Map<Variable, Variable<T>> liveVariables) {
+ public void computeLiveness(Map<Variable<?>, Variable<T>> liveVariables) {
Operand<T>[] refs = getReferencedOps();
if (refs != null) {
int n = refs.length;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ep...@us...> - 2013-11-12 15:20:02
|
Revision: 5995
http://sourceforge.net/p/jnode/svn/5995
Author: epr
Date: 2013-11-12 15:19:59 +0000 (Tue, 12 Nov 2013)
Log Message:
-----------
Improved CPUID.
Modified Paths:
--------------
trunk/core/src/core/org/jnode/vm/Unsafe.java
trunk/core/src/core/org/jnode/vm/scheduler/VmProcessor.java
trunk/core/src/core/org/jnode/vm/x86/UnsafeX86.java
trunk/core/src/core/org/jnode/vm/x86/VmX86Processor.java
trunk/core/src/core/org/jnode/vm/x86/X86CpuID.java
trunk/core/src/native/x86/jnode.asm
trunk/core/src/test/org/jnode/test/IRTest.java
Added Paths:
-----------
trunk/core/src/native/x86/unsafex86-cpuid.asm
Removed Paths:
-------------
trunk/core/src/native/x86/unsafe-cpuid.asm
Modified: trunk/core/src/core/org/jnode/vm/Unsafe.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/Unsafe.java 2013-11-12 08:49:28 UTC (rev 5994)
+++ trunk/core/src/core/org/jnode/vm/Unsafe.java 2013-11-12 15:19:59 UTC (rev 5995)
@@ -699,19 +699,6 @@
}
/**
- * Read CPU identification data.
- * <p/>
- * If id is null, this method will return the length of the id array that is
- * required to fit all data. If id is not null and long enough, it is filled
- * with all identification data.
- *
- * @param id
- * @return The required length of id.
- */
- @Internal
- public static native int getCPUID(int[] id);
-
- /**
* List the current stacktrace on the kernel debug output.
*
* @throws UninterruptiblePragma
Modified: trunk/core/src/core/org/jnode/vm/scheduler/VmProcessor.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/scheduler/VmProcessor.java 2013-11-12 08:49:28 UTC (rev 5994)
+++ trunk/core/src/core/org/jnode/vm/scheduler/VmProcessor.java 2013-11-12 15:19:59 UTC (rev 5995)
@@ -43,6 +43,7 @@
import org.jnode.vm.facade.VmUtils;
import org.jnode.vm.objects.VmSystemObject;
import org.jnode.vm.performance.PerformanceCounters;
+import org.jnode.vm.x86.UnsafeX86;
import org.vmmagic.unboxed.Address;
import org.vmmagic.unboxed.ObjectReference;
import org.vmmagic.unboxed.Word;
@@ -574,10 +575,7 @@
*/
public final CpuID getCPUID() {
if (cpuId == null) {
- final int length = Unsafe.getCPUID(null);
- final int[] id = new int[length];
- Unsafe.getCPUID(id);
- cpuId = loadCPUID(id);
+ cpuId = loadCPUID();
}
return cpuId;
}
@@ -588,7 +586,7 @@
* @param id The identification returned by Unsafe.getCpuID
* @return CpuID
*/
- protected abstract CpuID loadCPUID(int[] id);
+ protected abstract CpuID loadCPUID();
/**
* Set the CPU id.
Modified: trunk/core/src/core/org/jnode/vm/x86/UnsafeX86.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/x86/UnsafeX86.java 2013-11-12 08:49:28 UTC (rev 5994)
+++ trunk/core/src/core/org/jnode/vm/x86/UnsafeX86.java 2013-11-12 15:19:59 UTC (rev 5995)
@@ -20,7 +20,9 @@
package org.jnode.vm.x86;
+import org.jnode.annotation.Internal;
import org.vmmagic.unboxed.Address;
+import org.vmmagic.unboxed.Word;
/**
@@ -69,6 +71,16 @@
static final native Address getCR3();
/**
+ * Read CPU identification data.
+ * <p/>
+ * @param input The number to put in EAX
+ * @param result An array of length 4 (or longer) where eax, ebx, ecx, edx is stored into.
+ * @return 1 on success, 0 otherwise (result == null or result.length less than 4).
+ */
+ @Internal
+ public static native int getCPUID(Word input, int[] result);
+
+ /**
* Gets the address of first entry in the multiboot mmap table.
*
* @return
Modified: trunk/core/src/core/org/jnode/vm/x86/VmX86Processor.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/x86/VmX86Processor.java 2013-11-12 08:49:28 UTC (rev 5994)
+++ trunk/core/src/core/org/jnode/vm/x86/VmX86Processor.java 2013-11-12 15:19:59 UTC (rev 5995)
@@ -174,8 +174,8 @@
*
* @return CpuID
*/
- protected CpuID loadCPUID(int[] id) {
- return new X86CpuID(id);
+ protected CpuID loadCPUID() {
+ return X86CpuID.loadFromCurrentCpu();
}
/**
Modified: trunk/core/src/core/org/jnode/vm/x86/X86CpuID.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/x86/X86CpuID.java 2013-11-12 08:49:28 UTC (rev 5994)
+++ trunk/core/src/core/org/jnode/vm/x86/X86CpuID.java 2013-11-12 15:19:59 UTC (rev 5995)
@@ -22,6 +22,8 @@
import org.jnode.util.NumberUtils;
import org.jnode.vm.CpuID;
+import org.jnode.vm.Unsafe;
+import org.vmmagic.unboxed.Word;
/**
* Class used to identify the current processor.
@@ -60,9 +62,18 @@
public static final int FEAT_TM = (1 << 29);
public static final int FEAT_PBE = (1 << 31);
// Extended features
- public static final long FEAT_EST = (1L << 39);
- public static final long FEAT_TM2 = (1L << 40);
- public static final long FEAT_CNXTID = (1L << 42);
+ public static final long FEAT_PNI = (1L << 32); // Prescott New Instructions (SSE3)
+ public static final long FEAT_PCLMULQDQ = (1L << 33); // PCLMULQDQ support
+ public static final long FEAT_DTES64 = (1L << 34); // 64-bit debug store (edx bit 21)
+ public static final long FEAT_MONITOR = (1L << 35); // MONITOR and MWAIT instructions (SSE3)
+ public static final long FEAT_DS_CPL = (1L << 36); // CPL qualified debug store
+ public static final long FEAT_VMX = (1L << 37); // Virtual Machine eXtensions
+ public static final long FEAT_SMX = (1L << 38); // Safer Mode Extensions (LaGrande)
+ public static final long FEAT_EST = (1L << 39); // Enhanced SpeedStep
+ public static final long FEAT_TM2 = (1L << 40); // Thermal Monitor 2
+ public static final long FEAT_SSSE3 = (1L << 41); // Supplemental SSE3 instructions
+ public static final long FEAT_CNXTID = (1L << 42); // Context ID
+ public static final long FEAT_HYPERVISOR = (1L << 63); // Running on a hypervisor (always 0 on a real CPU, but also with some hypervisors)
// Family codes
public static final int FAM_486 = 0x04;
@@ -83,6 +94,8 @@
private final int family;
private final int features;
private final long exFeatures;
+ private final String brand;
+ private String hypervisorVendor;
/**
* Create a cpu id that contains the data of a processor identified by the given processor id.
@@ -123,14 +136,15 @@
id[1] = 0x756e6547;
id[2] = 0x6c65746e;
id[3] = 0x49656e69;
- return new X86CpuID(id);
+ return new X86CpuID(id, "?");
}
/**
* Initialize this instance
*/
- X86CpuID(int[] data) {
+ X86CpuID(int[] data, String brand) {
this.data = data;
+ this.brand = brand;
final int eax = data[4];
this.steppingID = eax & 0xF;
this.model = (eax >> 4) & 0xF;
@@ -138,10 +152,79 @@
this.features = data[7];
this.exFeatures = features | (((long) data[6]) << 32);
}
+
+ /**
+ * Load a new CpuID from the current CPU.
+ * @return
+ */
+ static X86CpuID loadFromCurrentCpu() {
+
+ // Load low values (eax=0)
+ int[] regs = new int[4];
+ UnsafeX86.getCPUID(Word.zero(), regs);
+
+ final int count = regs[0] + 1;
+ int[] data = new int[count * 4];
+
+ int index = 0;
+ for (int i = 0; i < count; i++) {
+ UnsafeX86.getCPUID(Word.fromIntZeroExtend(i), regs);
+ data[index++] = regs[0];
+ data[index++] = regs[1];
+ data[index++] = regs[2];
+ data[index++] = regs[3];
+ }
+
+ // Load extended functions (0x80000000)
+ String brand = "?";
+ final Word extendedBase = Word.fromIntZeroExtend(0x80000000);
+ UnsafeX86.getCPUID(extendedBase, regs);
+ Word max = Word.fromIntZeroExtend(regs[0]);
+ if (max.GE(extendedBase.add(4))) {
+ // Load brand 0x80000002..0x80000004
+ final StringBuilder buf = new StringBuilder();
+ for (int i = 0; i < 3; i++) {
+ UnsafeX86.getCPUID(extendedBase.add(2 + i), regs);
+ intToString(buf, regs[0]);
+ intToString(buf, regs[1]);
+ intToString(buf, regs[2]);
+ intToString(buf, regs[3]);
+ }
+ brand = buf.toString().trim();
+ }
+
+ X86CpuID id = new X86CpuID(data, brand);
+
+ // Load hypervisor data
+ if (id.hasHYPERVISOR()) {
+ UnsafeX86.getCPUID(Word.fromIntZeroExtend(0x40000001), regs);
+ if (regs[0] == 0x31237648) {
+ // Found 'Hv#1' Hypervisor vendor neutral identification
+ UnsafeX86.getCPUID(Word.fromIntZeroExtend(0x40000000), regs);
+ final StringBuilder buf = new StringBuilder();
+ intToString(buf, regs[1]); // ebx
+ intToString(buf, regs[2]); // ecx
+ intToString(buf, regs[3]); // edx
+ id.hypervisorVendor = buf.toString().trim();
+ }
+ }
+
+ return id;
+ }
+ /**
+ * Processor vendor string
+ */
public String getName() {
return getVendor();
}
+
+ /**
+ * Processor brand string
+ */
+ public String getBrand() {
+ return brand;
+ }
/**
* Gets the processor name.
@@ -177,7 +260,7 @@
return getVendor().equals(X86Vendor.AMD.getId());
}
- private final void intToString(StringBuilder buf, int value) {
+ private static final void intToString(StringBuilder buf, int value) {
buf.append((char) (value & 0xFF));
buf.append((char) ((value >> 8) & 0xFF));
buf.append((char) ((value >> 16) & 0xFF));
@@ -404,6 +487,10 @@
public final boolean hasCNXTID() {
return hasFeature(FEAT_CNXTID);
}
+
+ public final boolean hasHYPERVISOR() {
+ return hasFeature(FEAT_HYPERVISOR);
+ }
/**
* Convert all features to a human readable string.
@@ -442,9 +529,18 @@
getFeatureString(buf, FEAT_TM, "TM");
getFeatureString(buf, FEAT_PBE, "PBE");
// Extended features
+ getFeatureString(buf, FEAT_PNI, "PNI");
+ getFeatureString(buf, FEAT_PCLMULQDQ, "PCLMULQDQ");
+ getFeatureString(buf, FEAT_DTES64, "DTES64");
+ getFeatureString(buf, FEAT_MONITOR, "MONITOR");
+ getFeatureString(buf, FEAT_DS_CPL, "DS_CPL");
+ getFeatureString(buf, FEAT_VMX, "VMX");
+ getFeatureString(buf, FEAT_SMX, "SMX");
getFeatureString(buf, FEAT_EST, "EST");
getFeatureString(buf, FEAT_TM2, "TM2");
+ getFeatureString(buf, FEAT_SSSE3, "SSSE3");
getFeatureString(buf, FEAT_CNXTID, "CNXTID");
+ getFeatureString(buf, FEAT_HYPERVISOR, "HYPERVISOR");
return buf.toString();
}
@@ -473,23 +569,47 @@
*/
public String toString() {
final StringBuilder sb = new StringBuilder();
- sb.append("CPU:");
- sb.append(" name:");
+ sb.append("CPUID");
+ sb.append('\n');
+
+ sb.append(" name : ");
sb.append(getName());
- sb.append(" family:");
+ sb.append('\n');
+
+ sb.append(" brand : ");
+ sb.append(getBrand());
+ sb.append('\n');
+
+ sb.append(" family : ");
sb.append(getFamily());
- sb.append(" model:");
+ sb.append('\n');
+
+ sb.append(" model : ");
sb.append(getModel());
- sb.append(" step:");
+ sb.append('\n');
+
+ sb.append(" step : ");
sb.append(getSteppingID());
+ sb.append('\n');
+
if (hasFeature(FEAT_HTT)) {
- sb.append(" #log.proc:");
- sb.append(getLogicalProcessors());
+ sb.append(" #log.proc: ");
+ sb.append(getLogicalProcessors());
+ sb.append('\n');
}
- sb.append(" features:");
+ if (hypervisorVendor != null) {
+ sb.append(" hyperv. : ");
+ sb.append(hypervisorVendor);
+ sb.append('\n');
+ }
+ sb.append(" features : ");
sb.append(getFeatureString());
- sb.append(" raw:");
+ sb.append('\n');
+
+ sb.append(" raw : ");
sb.append(NumberUtils.hex(data, 8));
+ sb.append('\n');
+
return sb.toString();
}
}
Modified: trunk/core/src/native/x86/jnode.asm
===================================================================
--- trunk/core/src/native/x86/jnode.asm 2013-11-12 08:49:28 UTC (rev 5994)
+++ trunk/core/src/native/x86/jnode.asm 2013-11-12 15:19:59 UTC (rev 5995)
@@ -133,7 +133,7 @@
%include "unsafe.asm"
%include "unsafe-binop.asm"
%include "unsafe-setmulti.asm"
-%include "unsafe-cpuid.asm"
+%include "unsafex86-cpuid.asm"
%include "unsafex86.asm"
%include "unsafex86-mm.asm"
%include "vm.asm"
Deleted: trunk/core/src/native/x86/unsafe-cpuid.asm
===================================================================
--- trunk/core/src/native/x86/unsafe-cpuid.asm 2013-11-12 08:49:28 UTC (rev 5994)
+++ trunk/core/src/native/x86/unsafe-cpuid.asm 2013-11-12 15:19:59 UTC (rev 5995)
@@ -1,66 +0,0 @@
-; -----------------------------------------------
-; $Id$
-;
-; Native method implementation for org.jnode.vm.Unsafe
-; of the CPU identification methods.
-;
-; Author : E. Prangsma
-; -----------------------------------------------
-
-; * Read CPU identification data.
-; *
-; * If id is null, this method will return the length of the id array
-; * that is required to fit all data.
-; * If id is not null and long enough, it is filled with all identification
-; * data.
-; *
-; * @param id
-; * @return The required length of id.
-; public static native int getCPUID(int[] id);
-GLABEL Q43org5jnode2vm6Unsafe23getCPUID2e285bI29I
- mov AAX,[ASP+SLOT_SIZE] ; Get id
- push ADI
- push ABX
- push ACX
- push ADX
-
- mov ADI,AAX ; edi = id
- xor eax,eax
- cpuid ; eax contains maximum input value
- lea ecx,[eax+1] ; Store maximum+1 for later
- lea eax,[eax*4+4] ; Calculate id.length (4 registers * (maximum input value+1))
-
- test ADI,ADI ; is id null?
- je cpuid_ret
- cmp eax,[ADI+VmArray_LENGTH_OFFSET*SLOT_SIZE]
- ja cpuid_ret ; id is not large enough?
-
- lea ADI,[ADI+VmArray_DATA_OFFSET*SLOT_SIZE] ; Load &id[0] into edi
- push AAX
- pushf
- cld
- xor eax,eax
-cpuid_loop:
- push AAX
- push ACX
- cpuid
- stosd ; store eax
- mov eax,ebx
- stosd ; store ebx
- mov eax,ecx
- stosd ; store ecx
- mov eax,edx
- stosd ; store edx
- pop ACX
- pop AAX
- inc eax
- loop cpuid_loop
- popf
- pop AAX
-
-cpuid_ret:
- pop ADX
- pop ACX
- pop ABX
- pop ADI
- ret SLOT_SIZE
Added: trunk/core/src/native/x86/unsafex86-cpuid.asm
===================================================================
--- trunk/core/src/native/x86/unsafex86-cpuid.asm (rev 0)
+++ trunk/core/src/native/x86/unsafex86-cpuid.asm 2013-11-12 15:19:59 UTC (rev 5995)
@@ -0,0 +1,51 @@
+; -----------------------------------------------
+; $Id: unsafe-cpuid.asm 1036 2005-01-30 10:41:32Z epr $
+;
+; Native method implementation for org.jnode.vm.x86.UnsafeX86
+; of the CPU identification methods.
+;
+; Author : E. Prangsma
+; -----------------------------------------------
+
+; * Read CPU identification data.
+; *
+; * @param input The number to put in EAX
+; * @param result An array of length 4 (or longer) where eax, ebx, ecx, edx is stored into.
+; * @return 1 on success, 0 otherwise (result == null or result.length less than 4).
+; public static native int getCPUID(Word input, int[] result);
+GLABEL Q53org5jnode2vm3x869UnsafeX8623getCPUID2e28Lorg2fvmmagic2funboxed2fWord3b5bI29I
+ push ADI
+ mov ADI,[ASP+(2*SLOT_SIZE)] ; Get result
+ mov AAX,[ASP+(3*SLOT_SIZE)] ; Get input
+ push ABX
+ push ACX
+ push ADX
+
+ test ADI,ADI ; is id null?
+ je cpuid_invalid_arg
+ mov ebx,4 ; We need an array of length 4 (or more)
+ cmp ebx,[ADI+VmArray_LENGTH_OFFSET*SLOT_SIZE]
+ ja cpuid_invalid_arg; id is not large enough?
+
+ lea ADI,[ADI+VmArray_DATA_OFFSET*SLOT_SIZE] ; Load &id[0] into edi
+ ; Execute CPUID
+ cpuid
+ mov [ADI+0],eax ; store eax
+ mov [ADI+4],ebx ; store ebx
+ mov [ADI+8],ecx ; store ecx
+ mov [ADI+12],edx ; store edx
+ ; Signal valid return
+ mov eax,1 ; Return 1
+ jmp cpuid_ret
+
+cpuid_invalid_arg:
+ xor eax,eax ; Return 0
+
+cpuid_ret:
+ pop ADX
+ pop ACX
+ pop ABX
+ pop ADI
+ ret SLOT_SIZE
+
+
\ No newline at end of file
Modified: trunk/core/src/test/org/jnode/test/IRTest.java
===================================================================
--- trunk/core/src/test/org/jnode/test/IRTest.java 2013-11-12 08:49:28 UTC (rev 5994)
+++ trunk/core/src/test/org/jnode/test/IRTest.java 2013-11-12 15:19:59 UTC (rev 5995)
@@ -161,7 +161,7 @@
cfg.deconstrucSSA();
cfg.fixupAddresses();
- final Map<Variable, Variable<T>> liveVariables = new BootableHashMap<Variable, Variable<T>>();
+ final Map<Variable<?>, Variable<T>> liveVariables = new BootableHashMap<Variable<?>, Variable<T>>();
for (IRBasicBlock<T> b : cfg) {
System.out.println();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ep...@us...> - 2013-11-12 08:49:31
|
Revision: 5994
http://sourceforge.net/p/jnode/svn/5994
Author: epr
Date: 2013-11-12 08:49:28 +0000 (Tue, 12 Nov 2013)
Log Message:
-----------
Added logging.
Added extra read of bootsector to work around an IDE transfer bug.
Modified Paths:
--------------
trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDriver.java
trunk/fs/src/driver/org/jnode/driver/bus/ide/command/IDEReadSectorsCommand.java
trunk/fs/src/fs/org/jnode/partitions/ibm/IBMPartitionTable.java
Modified: trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDriver.java
===================================================================
--- trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDriver.java 2013-11-12 08:47:18 UTC (rev 5993)
+++ trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDriver.java 2013-11-12 08:49:28 UTC (rev 5994)
@@ -105,6 +105,11 @@
// Find the devicemanager
DeviceManager devMan = InitialNaming.lookup(DeviceManager.NAME);
// Read the bootsector
+ final byte[] bs1 = new byte[SECTOR_SIZE];
+ read(0, ByteBuffer.wrap(bs1));
+
+ // Read the bootsector twice, since the first read seems to fail.
+ // todo: THIS IS A WORKAROUND
final byte[] bs = new byte[SECTOR_SIZE];
read(0, ByteBuffer.wrap(bs));
@@ -114,14 +119,18 @@
} catch (NamingException ex) {
throw new DriverException(ex);
}
+ log.debug("Creating partition table object on " + dev.getId());
this.pt = factory.createIBMPartitionTable(bs, dev);
+ log.debug("Created partition table object");
int partIndex = 0;
int i = 0;
for (IBMPartitionTableEntry pte : pt) {
+ log.debug("Processing partition " + i);
if (pte == null) {
BootLogInstance.get().warn("PartitionTableEntry #" + i + " is null");
} else if (pte.isValid()) {
+ log.debug("Partition " + i + " is valid");
registerPartition(devMan, dev, pte, partIndex);
}
partIndex++;
@@ -133,11 +142,17 @@
partIndex = registerExtendedPartition(devMan, dev, partIndex);
}
} catch (DeviceAlreadyRegisteredException ex) {
+ log.error("Partition device is already known");
throw new DriverException("Partition device is already known???? Probably a bug", ex);
} catch (IOException ex) {
+ log.error("Cannot read partition table", ex);
throw new DriverException("Cannot read partition table", ex);
} catch (NameNotFoundException ex) {
+ log.error("Cannot find DeviceManager", ex);
throw new DriverException("Cannot find DeviceManager", ex);
+ } catch (Throwable ex) {
+ log.error("Unknown error", ex);
+ throw new DriverException("Unknown error", ex);
}
}
@@ -210,20 +225,11 @@
final int partSectors = Math.min(length / SECTOR_SIZE, maxSectorCount);
final int partLength = partSectors * SECTOR_SIZE;
- final IDERWSectorsCommand cmd = isWrite ? new IDEWriteSectorsCommand(
- dev.isPrimary(),
- dev.isMaster(),
- is48bit,
- partLbaStart,
- partSectors,
- buf) : new IDEReadSectorsCommand(
- dev.isPrimary(),
- dev.isMaster(),
- is48bit,
- partLbaStart,
- partSectors,
- buf);
+ final IDERWSectorsCommand cmd = isWrite ?
+ new IDEWriteSectorsCommand(dev.isPrimary(), dev.isMaster(), is48bit, partLbaStart, partSectors, buf) :
+ new IDEReadSectorsCommand(dev.isPrimary(), dev.isMaster(), is48bit, partLbaStart, partSectors, buf);
try {
+ log.debug("bus.executeAndWait dev=" + dev.getId() + " start=" + partLbaStart + " sectors=" + partSectors + " len=" + partLength);
bus.executeAndWait(cmd, IDE_DATA_XFER_TIMEOUT);
} catch (InterruptedException ex) {
throw new IOException("IDE " + errorSource + " interrupted", ex);
Modified: trunk/fs/src/driver/org/jnode/driver/bus/ide/command/IDEReadSectorsCommand.java
===================================================================
--- trunk/fs/src/driver/org/jnode/driver/bus/ide/command/IDEReadSectorsCommand.java 2013-11-12 08:47:18 UTC (rev 5993)
+++ trunk/fs/src/driver/org/jnode/driver/bus/ide/command/IDEReadSectorsCommand.java 2013-11-12 08:49:28 UTC (rev 5994)
@@ -21,6 +21,9 @@
package org.jnode.driver.bus.ide.command;
import java.nio.ByteBuffer;
+
+import org.apache.log4j.Logger;
+import org.jnode.driver.block.ide.disk.IDEDiskDriver;
import org.jnode.driver.bus.ide.IDEBus;
import org.jnode.driver.bus.ide.IDEIO;
import org.jnode.util.TimeoutException;
Modified: trunk/fs/src/fs/org/jnode/partitions/ibm/IBMPartitionTable.java
===================================================================
--- trunk/fs/src/fs/org/jnode/partitions/ibm/IBMPartitionTable.java 2013-11-12 08:47:18 UTC (rev 5993)
+++ trunk/fs/src/fs/org/jnode/partitions/ibm/IBMPartitionTable.java 2013-11-12 08:49:28 UTC (rev 5994)
@@ -133,30 +133,36 @@
*/
public static boolean containsPartitionTable(byte[] bootSector) {
if (LittleEndian.getUInt16(bootSector, 510) != 0xaa55) {
+ log.debug("No aa55 magic");
return false;
}
if (LittleEndian.getUInt16(bootSector, 428) == 0x5678) {
// Matches the AAP MBR extra signature, probably an valid partition table
+ log.debug("Has AAP MBR extra signature");
return true;
}
if (LittleEndian.getUInt16(bootSector, 380) == 0xa55a) {
// Matches the AST/NEC MBR extra signature, probably an valid partition table
+ log.debug("Has AST/NEC MBR extra signature");
return true;
}
if (LittleEndian.getUInt16(bootSector, 252) == 0x55aa) {
// Matches the Disk Manager MBR extra signature, probably an valid partition table
+ log.debug("Has Dis Manager MBR extra signature");
return true;
}
if (LittleEndian.getUInt32(bootSector, 2) == 0x4c57454e) {
// Matches the NEWLDR MBR extra signature, probably an valid partition table
+ log.debug("Has NEWLDR MBR extra signature");
return true;
}
// Nothing matched, fall back to validating any specified partition entries
+ log.debug("Checking partitions");
IBMPartitionTableEntry lastValid = null;
boolean foundValidEntry = false;
for (int partitionNumber = 0; partitionNumber < TABLE_SIZE; partitionNumber++) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ep...@us...> - 2013-11-12 08:47:22
|
Revision: 5993
http://sourceforge.net/p/jnode/svn/5993
Author: epr
Date: 2013-11-12 08:47:18 +0000 (Tue, 12 Nov 2013)
Log Message:
-----------
Send output of compiler tests to a /core/build/compiler-test
Modified Paths:
--------------
trunk/core/src/test/org/jnode/test/core/CompilerTest.java
Modified: trunk/core/src/test/org/jnode/test/core/CompilerTest.java
===================================================================
--- trunk/core/src/test/org/jnode/test/core/CompilerTest.java 2013-11-12 08:25:00 UTC (rev 5992)
+++ trunk/core/src/test/org/jnode/test/core/CompilerTest.java 2013-11-12 08:47:18 UTC (rev 5993)
@@ -168,7 +168,9 @@
final String fname = cname + "#"
+ mname.replace('<', '_').replace('>', '_') + "." + c.getName()
+ ".method";
- final FileOutputStream out = new FileOutputStream(fname);
+ final File outDir = new File("./core/build/compiler-test");
+ outDir.mkdirs();
+ final FileOutputStream out = new FileOutputStream(new File(outDir, fname));
try {
if (!method.isAbstract()) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ep...@us...> - 2013-11-12 08:25:03
|
Revision: 5992
http://sourceforge.net/p/jnode/svn/5992
Author: epr
Date: 2013-11-12 08:25:00 +0000 (Tue, 12 Nov 2013)
Log Message:
-----------
Fixed NTFS plugin description export elements.
Modified Paths:
--------------
trunk/fs/descriptors/org.jnode.fs.ntfs.xml
Modified: trunk/fs/descriptors/org.jnode.fs.ntfs.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.ntfs.xml 2013-11-10 10:57:53 UTC (rev 5991)
+++ trunk/fs/descriptors/org.jnode.fs.ntfs.xml 2013-11-12 08:25:00 UTC (rev 5992)
@@ -35,6 +35,8 @@
<runtime>
<library name="jnode-fs.jar">
<export name="org.jnode.fs.ntfs.*"/>
+ <export name="org.jnode.fs.ntfs.attribute.*"/>
+ <export name="org.jnode.fs.ntfs.index.*"/>
</library>
</runtime>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-11-10 10:57:55
|
Revision: 5991
http://sourceforge.net/p/jnode/svn/5991
Author: lsantha
Date: 2013-11-10 10:57:53 +0000 (Sun, 10 Nov 2013)
Log Message:
-----------
Fixed pack200 memory issue.
Modified Paths:
--------------
classlib6/all/build.xml
Modified: classlib6/all/build.xml
===================================================================
--- classlib6/all/build.xml 2013-11-10 10:45:32 UTC (rev 5990)
+++ classlib6/all/build.xml 2013-11-10 10:57:53 UTC (rev 5991)
@@ -169,8 +169,8 @@
<property name="classlib.pack" value="${root.dir}/all/build/classlib.pack.gz" />
<delete file="${classlib.pack}"/>
<echo message="packing..."/>
- <exec executable="pack200">
- <arg value="-J-Xmx256m"/>
+ <exec executable="pack200" failonerror="true" >
+ <arg value="-J-Xmx1024m"/>
<arg file="${classlib.pack}"/>
<arg file="${classlib.jar}"/>
</exec>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-11-10 10:45:34
|
Revision: 5990
http://sourceforge.net/p/jnode/svn/5990
Author: lsantha
Date: 2013-11-10 10:45:32 +0000 (Sun, 10 Nov 2013)
Log Message:
-----------
Classlib updated to OpenJDK 6 b27.
Modified Paths:
--------------
trunk/all/lib/ftp.properties
Modified: trunk/all/lib/ftp.properties
===================================================================
--- trunk/all/lib/ftp.properties 2013-11-09 13:13:47 UTC (rev 5989)
+++ trunk/all/lib/ftp.properties 2013-11-10 10:45:32 UTC (rev 5990)
@@ -1,3 +1,3 @@
-classlib.url=http://jnode.ro//classlib/20120923084426
-classlib.md5=428d062b09531822195a2ae3d486e791
-classlib-src.md5=c9d1cc877354726fafdc463342de7453
\ No newline at end of file
+classlib.url=http://jnode.ro//classlib/20131110123248
+classlib.md5=be410c513d320bdc9425e66085e3d296
+classlib-src.md5=cdfec523cb986997f4ecbf6348a6b6bb
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ep...@us...> - 2013-11-09 13:13:49
|
Revision: 5989
http://sourceforge.net/p/jnode/svn/5989
Author: epr
Date: 2013-11-09 13:13:47 +0000 (Sat, 09 Nov 2013)
Log Message:
-----------
Added custom display name to .vmx VMWare file.
Modified Paths:
--------------
trunk/all/build-x86.xml
trunk/builder/src/builder/org/jnode/build/VMwareBuilderTask.java
Modified: trunk/all/build-x86.xml
===================================================================
--- trunk/all/build-x86.xml 2013-11-08 09:35:27 UTC (rev 5988)
+++ trunk/all/build-x86.xml 2013-11-09 13:13:47 UTC (rev 5989)
@@ -347,6 +347,7 @@
saveDir="${save.dir}"
vmdkImageFile="${vmware.vmx.vmdk.image}"
overrideFile="${vmware.vmx.overrides}"
+ name="JNode x86"
/>
</target>
@@ -362,6 +363,7 @@
saveDir="${save.dir}"
vmdkImageFile="${vmware.vmx.vmdk.image}"
overrideFile="${vmware.vmx.overrides}"
+ name="JNode x86 lite"
/>
</target>
@@ -376,6 +378,7 @@
saveDir="${save.dir}"
vmdkImageFile="${vmware.vmx.vmdk.image}"
overrideFile="${vmware.vmx.overrides}"
+ name="JNode x64 lite"
/>
</target>
Modified: trunk/builder/src/builder/org/jnode/build/VMwareBuilderTask.java
===================================================================
--- trunk/builder/src/builder/org/jnode/build/VMwareBuilderTask.java 2013-11-08 09:35:27 UTC (rev 5988)
+++ trunk/builder/src/builder/org/jnode/build/VMwareBuilderTask.java 2013-11-09 13:13:47 UTC (rev 5989)
@@ -42,8 +42,8 @@
/**
* This task builds a VMWare '.vmx' file to allow JNode to be run using VMWare player.
*
- * @author ...
* @author cr...@jn...
+ * @author ep...@jn...
*/
public class VMwareBuilderTask extends Task {
@@ -53,8 +53,23 @@
private String overrideFile;
private String vmdkImageFile;
private String saveDir;
+ private String name;
/**
+ * @return Returns the Virtual machine name
+ */
+ public final String getName() {
+ return name;
+ }
+
+ /**
+ * @Set the Virtual machine name
+ */
+ public final void setName(String name) {
+ this.name = name;
+ }
+
+ /**
* @return Returns the memory size.
*/
public final int getMemSize() {
@@ -272,7 +287,7 @@
props.put("usb.present", "TRUE");
props.put("sound.present", "FALSE");
props.put("sound.virtualDev", "es1371");
- props.put("displayName", "JNode");
+ props.put("displayName", (name != null) ? name : "JNode");
props.put("guestOS", "dos");
props.put("nvram", "JNode.nvram");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ep...@us...> - 2013-11-08 09:35:30
|
Revision: 5988
http://sourceforge.net/p/jnode/svn/5988
Author: epr
Date: 2013-11-08 09:35:27 +0000 (Fri, 08 Nov 2013)
Log Message:
-----------
Removed JRE-container library from Eclipse project settings. It is not needed and conflicts with newer JRE's
Modified Paths:
--------------
trunk/fs/.classpath
trunk/fs/.settings/org.eclipse.jdt.core.prefs
Modified: trunk/fs/.classpath
===================================================================
--- trunk/fs/.classpath 2013-06-24 18:33:20 UTC (rev 5987)
+++ trunk/fs/.classpath 2013-11-08 09:35:27 UTC (rev 5988)
@@ -4,7 +4,6 @@
<classpathentry excluding="**/.svn/**" kind="src" path="src/driver"/>
<classpathentry excluding="**/.svn/**" kind="src" path="src/test"/>
<classpathentry kind="src" path="/shell"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="lib/edtftpj-1.5.2.jar"/>
<classpathentry kind="lib" path="lib/jcifs-1.2.6.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/net"/>
Modified: trunk/fs/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/fs/.settings/org.eclipse.jdt.core.prefs 2013-06-24 18:33:20 UTC (rev 5987)
+++ trunk/fs/.settings/org.eclipse.jdt.core.prefs 2013-11-08 09:35:27 UTC (rev 5988)
@@ -1,6 +1,6 @@
-#Mon Jul 14 11:33:25 CEST 2008
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-06-24 18:33:23
|
Revision: 5987
http://sourceforge.net/p/jnode/svn/5987
Author: lsantha
Date: 2013-06-24 18:33:20 +0000 (Mon, 24 Jun 2013)
Log Message:
-----------
Fixed security exception during startup.
Modified Paths:
--------------
trunk/core/src/core/org/jnode/vm/classmgr/VmMethod.java
Modified: trunk/core/src/core/org/jnode/vm/classmgr/VmMethod.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/classmgr/VmMethod.java 2013-02-24 17:25:09 UTC (rev 5986)
+++ trunk/core/src/core/org/jnode/vm/classmgr/VmMethod.java 2013-06-24 18:33:20 UTC (rev 5987)
@@ -22,6 +22,7 @@
import java.lang.reflect.Member;
import org.jnode.annotation.MagicPermission;
+import org.jnode.annotation.PrivilegedActionPragma;
import org.jnode.vm.InternString;
import org.jnode.vm.LoadCompileService;
import org.jnode.vm.VmAddress;
@@ -184,6 +185,7 @@
*
* @return Method
*/
+ @PrivilegedActionPragma
public final Member asMember() {
if (javaMemberHolder == null) {
javaMemberHolder = new VmIsolateLocal<Member>();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-02-24 17:25:16
|
Revision: 5986
http://jnode.svn.sourceforge.net/jnode/?rev=5986&view=rev
Author: lsantha
Date: 2013-02-24 17:25:09 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Added support for XML headers in HeaderTask.
Modified Paths:
--------------
trunk/all/build.xml
trunk/builder/src/builder/org/jnode/ant/taskdefs/HeaderTask.java
Modified: trunk/all/build.xml
===================================================================
--- trunk/all/build.xml 2013-02-24 17:23:41 UTC (rev 5985)
+++ trunk/all/build.xml 2013-02-24 17:25:09 UTC (rev 5986)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode" default="help" basedir=".">
<property name="root.dir" value="${basedir}/.."/>
@@ -866,6 +886,31 @@
<fileset dir="${root.dir}/shell/src/shell" includes="**/*.java"/>
<fileset dir="${root.dir}/shell/src/test" includes="**/*.java"/>
</header>
+ <header update="on" xml="on" headerFile="${root.dir}/all/template/header.xml">
+ <fileset dir="${root.dir}/all" includes="*.xml"/>
+ <fileset dir="${root.dir}/all/conf" includes="*.xml"/>
+ <fileset dir="${root.dir}/all/conf-source" includes="*.xml"/>
+ <fileset dir="${root.dir}/all/lib" includes="*.xml"/>
+ <fileset dir="${root.dir}/builder" includes="*.xml"/>
+ <fileset dir="${root.dir}/cli" includes="*.xml"/>
+ <fileset dir="${root.dir}/cli/descriptors" includes="*.xml"/>
+ <fileset dir="${root.dir}/core" includes="*.xml"/>
+ <fileset dir="${root.dir}/core/descriptors" includes="*.xml"/>
+ <fileset dir="${root.dir}/distr" includes="*.xml"/>
+ <fileset dir="${root.dir}/distr/descriptors" includes="*.xml"/>
+ <fileset dir="${root.dir}/fs" includes="*.xml"/>
+ <fileset dir="${root.dir}/fs/descriptors" includes="*.xml"/>
+ <fileset dir="${root.dir}/gui" includes="*.xml"/>
+ <fileset dir="${root.dir}/gui/descriptors" includes="*.xml"/>
+ <fileset dir="${root.dir}/net" includes="*.xml"/>
+ <fileset dir="${root.dir}/net/descriptors" includes="*.xml"/>
+ <fileset dir="${root.dir}/shell" includes="*.xml"/>
+ <fileset dir="${root.dir}/shell/descriptors" includes="*.xml"/>
+ <fileset dir="${root.dir}/sound" includes="*.xml"/>
+ <fileset dir="${root.dir}/sound/descriptors" includes="*.xml"/>
+ <fileset dir="${root.dir}/textui" includes="*.xml"/>
+ <fileset dir="${root.dir}/textui/descriptors" includes="*.xml"/>
+ </header>
</target>
<target name="check-debugger-properties" depends="prepare">
Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/HeaderTask.java
===================================================================
--- trunk/builder/src/builder/org/jnode/ant/taskdefs/HeaderTask.java 2013-02-24 17:23:41 UTC (rev 5985)
+++ trunk/builder/src/builder/org/jnode/ant/taskdefs/HeaderTask.java 2013-02-24 17:25:09 UTC (rev 5986)
@@ -38,6 +38,7 @@
private String[] header;
private boolean update = false;
+ private boolean xml = false;
private boolean compareHeader(String[] lines, String[] header) {
final int linesCnt = lines.length;
@@ -63,6 +64,31 @@
return false;
}
+ private boolean compareXMLHeader(String[] lines, String[] header) {
+ final int linesCnt = lines.length;
+ final int hdrCnt = header.length;
+
+ for (int i = 0; i < linesCnt; i++) {
+ final String line = lines[i];
+ if (i < hdrCnt) {
+ if (!compareLine(line, header[i])) {
+ return false;
+ }
+ } else {
+ String trimmedLine = line.trim();
+ if (trimmedLine.startsWith("<")) {
+ return true;
+ }
+ if (trimmedLine.length() > 0) {
+ return false;
+ }
+ }
+ }
+
+ return false;
+ }
+
+
private boolean compareLine(String line, String hdrLine) {
if ((line.indexOf('$') >= 0) && (hdrLine.indexOf('$') >= 0)) {
return true;
@@ -93,13 +119,24 @@
@Override
protected void processFile(File file) throws IOException {
final String[] inp = readFile(file);
- if (!compareHeader(inp, header)) {
- if (update) {
- log("Updating " + file);
- writeUpdateFile(file, inp, header);
- } else {
- log("Wrong header in " + file);
+ if (xml) {
+ if (!compareXMLHeader(inp, header)) {
+ if (update) {
+ log("Updating " + file);
+ writeUpdateXMLFile(file, inp, header);
+ } else {
+ log("Wrong header in " + file);
+ }
}
+ } else {
+ if (!compareHeader(inp, header)) {
+ if (update) {
+ log("Updating " + file);
+ writeUpdateFile(file, inp, header);
+ } else {
+ log("Wrong header in " + file);
+ }
+ }
}
}
@@ -128,7 +165,48 @@
}
}
+ private void writeUpdateXMLFile(File file, String[] lines, String[] header) throws IOException {
+ PrintWriter out = new PrintWriter(new FileWriter(file));
+ try {
+ boolean write = true;
+ boolean headerAdded = false;
+ for (String line : lines) {
+ String trimmedLine = line.trim();
+ if (!headerAdded) {
+ if (!write) {
+ for (String aHeader : header) {
+ out.println(aHeader);
+ }
+ headerAdded = true;
+ if (!trimmedLine.startsWith("<!--")) {
+ write = true;
+ }
+ }
+ if (trimmedLine.startsWith("<?xml")) {
+ write = false;
+ } else if (!headerAdded) {
+ for (String aHeader : header) {
+ out.println(aHeader);
+ }
+ headerAdded = true;
+ }
+ }
+
+ if (write) {
+ out.println(line);
+ }
+
+ if (trimmedLine.endsWith("-->")) {
+ write = true;
+ }
+ }
+ } finally {
+ out.close();
+ }
+ }
+
+
private String[] readFile(File file) throws IOException {
final BufferedReader in = new BufferedReader(new FileReader(file));
try {
@@ -150,4 +228,8 @@
public final void setUpdate(boolean update) {
this.update = update;
}
+
+ public void setXml(boolean xml) {
+ this.xml = xml;
+ }
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-02-24 17:23:47
|
Revision: 5985
http://jnode.svn.sourceforge.net/jnode/?rev=5985&view=rev
Author: lsantha
Date: 2013-02-24 17:23:41 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Updated headers.
Modified Paths:
--------------
trunk/sound/build.xml
Modified: trunk/sound/build.xml
===================================================================
--- trunk/sound/build.xml 2013-02-24 17:23:11 UTC (rev 5984)
+++ trunk/sound/build.xml 2013-02-24 17:23:41 UTC (rev 5985)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-Sound" default="all" basedir=".">
<typedef file="${basedir}/../all/lib/jnode.xml"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-02-24 17:23:17
|
Revision: 5984
http://jnode.svn.sourceforge.net/jnode/?rev=5984&view=rev
Author: lsantha
Date: 2013-02-24 17:23:11 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Updated headers.
Modified Paths:
--------------
trunk/textui/build.xml
trunk/textui/descriptors/charva.xml
Modified: trunk/textui/build.xml
===================================================================
--- trunk/textui/build.xml 2013-02-24 17:21:07 UTC (rev 5983)
+++ trunk/textui/build.xml 2013-02-24 17:23:11 UTC (rev 5984)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-TextUI" default="all" basedir=".">
<typedef file="${basedir}/../all/lib/jnode.xml"/>
Modified: trunk/textui/descriptors/charva.xml
===================================================================
--- trunk/textui/descriptors/charva.xml 2013-02-24 17:21:07 UTC (rev 5983)
+++ trunk/textui/descriptors/charva.xml 2013-02-24 17:23:11 UTC (rev 5984)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="charva"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-02-24 17:21:26
|
Revision: 5983
http://jnode.svn.sourceforge.net/jnode/?rev=5983&view=rev
Author: lsantha
Date: 2013-02-24 17:21:07 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Updated headers.
Modified Paths:
--------------
trunk/shell/build-tests.xml
trunk/shell/build.xml
trunk/shell/descriptors/js.xml
trunk/shell/descriptors/net.n3.nanoxml.xml
trunk/shell/descriptors/org.beanshell.xml
trunk/shell/descriptors/org.jnode.shell.bjorne.xml
trunk/shell/descriptors/org.jnode.shell.command.bsh.xml
trunk/shell/descriptors/org.jnode.shell.command.driver.console.xml
trunk/shell/descriptors/org.jnode.shell.command.driver.system.acpi.xml
trunk/shell/descriptors/org.jnode.shell.command.driver.system.bus.xml
trunk/shell/descriptors/org.jnode.shell.command.driver.xml
trunk/shell/descriptors/org.jnode.shell.command.test.xml
trunk/shell/descriptors/org.jnode.shell.help.xml
trunk/shell/descriptors/org.jnode.shell.syntax.xml
trunk/shell/descriptors/org.jnode.shell.xml
trunk/shell/descriptors/org.jnode.test.shell.xml
Modified: trunk/shell/build-tests.xml
===================================================================
--- trunk/shell/build-tests.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/build-tests.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-Shell-Tests" default="all" basedir=".">
<import file="${basedir}/../all/build.xml"/>
Modified: trunk/shell/build.xml
===================================================================
--- trunk/shell/build.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/build.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-Shell" default="all" basedir=".">
<typedef file="${basedir}/../all/lib/jnode.xml"/>
Modified: trunk/shell/descriptors/js.xml
===================================================================
--- trunk/shell/descriptors/js.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/js.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="js"
@@ -27,4 +46,4 @@
<permission class="org.jnode.permission.JNodePermission" name="getVmClass" actions="*" />
<permission class="java.util.PropertyPermission" name="*" actions="read,write"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/shell/descriptors/net.n3.nanoxml.xml
===================================================================
--- trunk/shell/descriptors/net.n3.nanoxml.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/net.n3.nanoxml.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="net.n3.nanoxml"
@@ -17,4 +36,4 @@
<permission class="java.util.PropertyPermission" name="*" actions="read"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/shell/descriptors/org.beanshell.xml
===================================================================
--- trunk/shell/descriptors/org.beanshell.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.beanshell.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.beanshell"
@@ -23,4 +42,4 @@
<permission class="org.jnode.permission.JNodePermission" name="getVmClass" actions="*" />
<permission class="java.util.PropertyPermission" name="*" actions="read,write"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/shell/descriptors/org.jnode.shell.bjorne.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.shell.bjorne.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.shell.bjorne.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.shell.bjorne"
Modified: trunk/shell/descriptors/org.jnode.shell.command.bsh.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.shell.command.bsh.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.shell.command.bsh.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.shell.command.bsh"
Modified: trunk/shell/descriptors/org.jnode.shell.command.driver.console.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.shell.command.driver.console.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.shell.command.driver.console.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.shell.command.driver.console"
@@ -46,4 +65,4 @@
<permission class="java.net.SocketPermission" name="*:0-" actions="connect,resolve,listen"/>
<permission class="java.util.PropertyPermission" name="*" actions="read,write"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/shell/descriptors/org.jnode.shell.command.driver.system.acpi.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.shell.command.driver.system.acpi.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.shell.command.driver.system.acpi.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.shell.command.driver.system.acpi"
@@ -31,4 +50,4 @@
description="Display battery information for each ACPI device"/>
</syntax>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/shell/descriptors/org.jnode.shell.command.driver.system.bus.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.shell.command.driver.system.bus.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.shell.command.driver.system.bus.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.shell.command.driver.system.bus"
@@ -25,4 +44,4 @@
<extension point="org.jnode.shell.syntaxes">
<syntax alias="smbus" description="dump information from the system's SMBus controller"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/shell/descriptors/org.jnode.shell.command.driver.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.shell.command.driver.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.shell.command.driver.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.shell.command.driver"
@@ -38,4 +57,4 @@
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/shell/descriptors/org.jnode.shell.command.test.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.shell.command.test.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.shell.command.test.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.shell.command.test"
Modified: trunk/shell/descriptors/org.jnode.shell.help.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.shell.help.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.shell.help.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.shell.help"
Modified: trunk/shell/descriptors/org.jnode.shell.syntax.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.shell.syntax.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.shell.syntax.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.shell.syntax"
Modified: trunk/shell/descriptors/org.jnode.shell.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.shell.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.shell.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.shell"
@@ -48,4 +67,4 @@
<permission class="java.lang.reflect.ReflectPermission" name="suppressAccessChecks"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/shell/descriptors/org.jnode.test.shell.xml
===================================================================
--- trunk/shell/descriptors/org.jnode.test.shell.xml 2013-02-24 17:19:09 UTC (rev 5982)
+++ trunk/shell/descriptors/org.jnode.test.shell.xml 2013-02-24 17:21:07 UTC (rev 5983)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.test.shell"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-02-24 17:19:20
|
Revision: 5982
http://jnode.svn.sourceforge.net/jnode/?rev=5982&view=rev
Author: lsantha
Date: 2013-02-24 17:19:09 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Updated headers.
Modified Paths:
--------------
trunk/net/build.xml
trunk/net/descriptors/com.jcraft.jsch.xml
trunk/net/descriptors/org.acplt.oncrpc.xml
trunk/net/descriptors/org.jnode.driver.net.3c90x.xml
trunk/net/descriptors/org.jnode.driver.net.bcm570x.xml
trunk/net/descriptors/org.jnode.driver.net.eepro100.xml
trunk/net/descriptors/org.jnode.driver.net.ethernet.xml
trunk/net/descriptors/org.jnode.driver.net.lance.xml
trunk/net/descriptors/org.jnode.driver.net.loopback.xml
trunk/net/descriptors/org.jnode.driver.net.ne2k-pci.xml
trunk/net/descriptors/org.jnode.driver.net.prism2.xml
trunk/net/descriptors/org.jnode.driver.net.rtl8139.xml
trunk/net/descriptors/org.jnode.driver.net.usb.bluetooth.xml
trunk/net/descriptors/org.jnode.driver.net.via_rhine.xml
trunk/net/descriptors/org.jnode.driver.net.wireless.xml
trunk/net/descriptors/org.jnode.net.arp.xml
trunk/net/descriptors/org.jnode.net.ipv4.config.xml
trunk/net/descriptors/org.jnode.net.ipv4.core.xml
trunk/net/descriptors/org.jnode.net.ipv4.xml
trunk/net/descriptors/org.jnode.net.nfs.xml
trunk/net/descriptors/org.jnode.net.xml
trunk/net/descriptors/org.jnode.protocol.ftp.xml
trunk/net/descriptors/org.jnode.protocol.nfs.xml
trunk/net/descriptors/org.jnode.protocol.tftp.xml
trunk/net/descriptors/org.jnode.test.net.xml
trunk/net/descriptors/org.xbill.dns.xml
Modified: trunk/net/build.xml
===================================================================
--- trunk/net/build.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/build.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-Net" default="all" basedir=".">
<typedef file="${basedir}/../all/lib/jnode.xml"/>
Modified: trunk/net/descriptors/com.jcraft.jsch.xml
===================================================================
--- trunk/net/descriptors/com.jcraft.jsch.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/com.jcraft.jsch.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="com.jcraft.jsch"
@@ -24,4 +43,4 @@
<permission class="java.net.SocketPermission" name="*" actions="connect, resolve"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.acplt.oncrpc.xml
===================================================================
--- trunk/net/descriptors/org.acplt.oncrpc.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.acplt.oncrpc.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.acplt.oncrpc"
@@ -20,4 +39,4 @@
<permission class="java.net.SocketPermission" name="*" actions="connect,resolve"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.3c90x.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.3c90x.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.3c90x.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.3c90x"
Modified: trunk/net/descriptors/org.jnode.driver.net.bcm570x.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.bcm570x.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.bcm570x.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.bcm570x"
@@ -55,4 +74,4 @@
<permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.eepro100.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.eepro100.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.eepro100.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.eepro100"
@@ -33,4 +52,4 @@
<permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.ethernet.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.ethernet.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.ethernet.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.ethernet"
@@ -18,4 +37,4 @@
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.lance.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.lance.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.lance.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.lance"
@@ -27,4 +46,4 @@
<permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.loopback.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.loopback.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.loopback.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.loopback"
@@ -22,4 +41,4 @@
<finder class="org.jnode.driver.net.loopback.LoopbackFinder"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.ne2k-pci.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.ne2k-pci.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.ne2k-pci.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.ne2k-pci"
@@ -28,4 +47,4 @@
<permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.prism2.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.prism2.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.prism2.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.prism2"
@@ -27,4 +46,4 @@
<permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.rtl8139.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.rtl8139.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.rtl8139.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.rtl8139"
@@ -51,4 +70,4 @@
<permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.usb.bluetooth.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.usb.bluetooth.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.usb.bluetooth.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,24 +1,43 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plugin SYSTEM "jnode.dtd">
-
-<plugin id="org.jnode.driver.net.usb.bluetooth"
- name="JNode USB Bluetooth drivers"
- version="@VERSION@"
- license-name="lgpl"
- provider-name="JNode.org">
-
- <requires>
- <import plugin="org.jnode.driver.bus.usb"/>
- </requires>
-
- <runtime>
- <library name="jnode-net.jar">
- <export name="org.jnode.driver.net.usb.bluetooth.*"/>
- </library>
- </runtime>
-
- <extension point="org.jnode.driver.mappers">
- <mapper class="org.jnode.driver.net.usb.bluetooth.UsbBluetoothDeviceToDriverMapper"/>
- </extension>
-
-</plugin>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+<!DOCTYPE plugin SYSTEM "jnode.dtd">
+
+<plugin id="org.jnode.driver.net.usb.bluetooth"
+ name="JNode USB Bluetooth drivers"
+ version="@VERSION@"
+ license-name="lgpl"
+ provider-name="JNode.org">
+
+ <requires>
+ <import plugin="org.jnode.driver.bus.usb"/>
+ </requires>
+
+ <runtime>
+ <library name="jnode-net.jar">
+ <export name="org.jnode.driver.net.usb.bluetooth.*"/>
+ </library>
+ </runtime>
+
+ <extension point="org.jnode.driver.mappers">
+ <mapper class="org.jnode.driver.net.usb.bluetooth.UsbBluetoothDeviceToDriverMapper"/>
+ </extension>
+
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.via_rhine.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.via_rhine.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.via_rhine.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.via_rhine"
@@ -28,4 +47,4 @@
<permission class="org.jnode.system.resource.ResourcePermission" name="irq"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.driver.net.wireless.xml
===================================================================
--- trunk/net/descriptors/org.jnode.driver.net.wireless.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.driver.net.wireless.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.net.wireless"
@@ -17,4 +36,4 @@
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.net.arp.xml
===================================================================
--- trunk/net/descriptors/org.jnode.net.arp.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.net.arp.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.net.arp"
@@ -22,4 +41,4 @@
<layer class="org.jnode.net.arp.ARPNetworkLayer"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.net.ipv4.config.xml
===================================================================
--- trunk/net/descriptors/org.jnode.net.ipv4.config.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.net.ipv4.config.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.net.ipv4.config"
Modified: trunk/net/descriptors/org.jnode.net.ipv4.core.xml
===================================================================
--- trunk/net/descriptors/org.jnode.net.ipv4.core.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.net.ipv4.core.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.net.ipv4.core"
@@ -18,4 +37,4 @@
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.net.ipv4.xml
===================================================================
--- trunk/net/descriptors/org.jnode.net.ipv4.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.net.ipv4.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.net.ipv4"
Modified: trunk/net/descriptors/org.jnode.net.nfs.xml
===================================================================
--- trunk/net/descriptors/org.jnode.net.nfs.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.net.nfs.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.net.nfs" name="NFS" version="@VERSION@"
Modified: trunk/net/descriptors/org.jnode.net.xml
===================================================================
--- trunk/net/descriptors/org.jnode.net.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.net.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.net"
@@ -30,4 +49,4 @@
<extension-point id="networkLayers" name="JNode Network layers"/>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.protocol.ftp.xml
===================================================================
--- trunk/net/descriptors/org.jnode.protocol.ftp.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.protocol.ftp.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.protocol.ftp"
Modified: trunk/net/descriptors/org.jnode.protocol.nfs.xml
===================================================================
--- trunk/net/descriptors/org.jnode.protocol.nfs.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.protocol.nfs.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.protocol.nfs" name="JNode NFS protocol handler"
Modified: trunk/net/descriptors/org.jnode.protocol.tftp.xml
===================================================================
--- trunk/net/descriptors/org.jnode.protocol.tftp.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.protocol.tftp.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.protocol.tftp"
@@ -23,4 +42,4 @@
<permission class="java.net.SocketPermission" name="*" actions="connect,listen"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/net/descriptors/org.jnode.test.net.xml
===================================================================
--- trunk/net/descriptors/org.jnode.test.net.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.jnode.test.net.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.test.net"
Modified: trunk/net/descriptors/org.xbill.dns.xml
===================================================================
--- trunk/net/descriptors/org.xbill.dns.xml 2013-02-24 17:17:05 UTC (rev 5981)
+++ trunk/net/descriptors/org.xbill.dns.xml 2013-02-24 17:19:09 UTC (rev 5982)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.xbill.dns"
@@ -35,4 +54,4 @@
<permission class="java.net.SocketPermission" name="*" actions="resolve"/>
<permission class="java.net.SocketPermission" name="*:53" actions="resolve,accept,connect,listen"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-02-24 17:17:13
|
Revision: 5981
http://jnode.svn.sourceforge.net/jnode/?rev=5981&view=rev
Author: lsantha
Date: 2013-02-24 17:17:05 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Updated headers.
Modified Paths:
--------------
trunk/gui/build.xml
trunk/gui/descriptors/org.jnode.awt.command.xml
trunk/gui/descriptors/org.jnode.awt.font.bdf.xml
trunk/gui/descriptors/org.jnode.awt.font.truetype.xml
trunk/gui/descriptors/org.jnode.awt.font.xml
trunk/gui/descriptors/org.jnode.awt.swingpeers.xml
trunk/gui/descriptors/org.jnode.awt.xml
trunk/gui/descriptors/org.jnode.desktop.xml
trunk/gui/descriptors/org.jnode.driver.console.swing.xml
trunk/gui/descriptors/org.jnode.driver.input.usb.xml
trunk/gui/descriptors/org.jnode.driver.ps2.xml
trunk/gui/descriptors/org.jnode.driver.sound.command.xml
trunk/gui/descriptors/org.jnode.driver.sound.speaker.pc.xml
trunk/gui/descriptors/org.jnode.driver.sound.speaker.xml
trunk/gui/descriptors/org.jnode.driver.textscreen.fb.xml
trunk/gui/descriptors/org.jnode.driver.textscreen.swing.xml
trunk/gui/descriptors/org.jnode.driver.video.ati.mach64.xml
trunk/gui/descriptors/org.jnode.driver.video.ati.radeon.xml
trunk/gui/descriptors/org.jnode.driver.video.cirrus.xml
trunk/gui/descriptors/org.jnode.driver.video.cursor.xml
trunk/gui/descriptors/org.jnode.driver.video.nvidia.xml
trunk/gui/descriptors/org.jnode.driver.video.vesa.xml
trunk/gui/descriptors/org.jnode.driver.video.vga.xml
trunk/gui/descriptors/org.jnode.driver.video.vgahw.xml
trunk/gui/descriptors/org.jnode.driver.video.vmware.xml
trunk/gui/descriptors/org.jnode.driver.video.xml
trunk/gui/descriptors/org.jnode.font.bdf.xml
trunk/gui/descriptors/org.jnode.test.gui.xml
trunk/gui/descriptors/thinlet.xml
Modified: trunk/gui/build.xml
===================================================================
--- trunk/gui/build.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/build.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-GUI" default="all" basedir=".">
<typedef file="${basedir}/../all/lib/jnode.xml"/>
Modified: trunk/gui/descriptors/org.jnode.awt.command.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.awt.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.awt.command.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.awt.command"
Modified: trunk/gui/descriptors/org.jnode.awt.font.bdf.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.awt.font.bdf.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.awt.font.bdf.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.jnode.awt.font.bdf"
@@ -33,4 +52,4 @@
<permission class="java.util.PropertyPermission" name="jnode.font.renderer" actions="read"/>
</extension>
-</fragment>
\ No newline at end of file
+</fragment>
Modified: trunk/gui/descriptors/org.jnode.awt.font.truetype.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.awt.font.truetype.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.awt.font.truetype.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.jnode.awt.font.truetype"
@@ -28,4 +47,4 @@
<permission class="java.lang.reflect.ReflectPermission" name="suppressAccessChecks"/>
<permission class="java.util.PropertyPermission" name="jnode.font.renderer" actions="read"/>
</extension>
-</fragment>
\ No newline at end of file
+</fragment>
Modified: trunk/gui/descriptors/org.jnode.awt.font.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.awt.font.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.awt.font.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.awt.font"
@@ -30,4 +49,4 @@
</runtime>
<extension-point id="providers" name="JNode Font Providers"/>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.awt.swingpeers.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.awt.swingpeers.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.awt.swingpeers.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.awt.swingpeers"
@@ -24,4 +43,4 @@
<permission class="java.util.PropertyPermission" name="gnu.javax.swing.DebugGraphics" actions="read"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.awt.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.awt.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.awt.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.awt"
@@ -32,4 +51,4 @@
<permission class="java.util.PropertyPermission" name="gnu.javax.swing.DebugGraphics" actions="read"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.desktop.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.desktop.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.desktop.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.desktop"
@@ -42,4 +61,4 @@
<permission class="java.awt.AWTPermission" name="setWindowAlwaysOnTop" />
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.console.swing.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.console.swing.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.console.swing.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.console.swing"
@@ -28,4 +47,4 @@
<permission class="java.awt.AWTPermission" name="listenToAllAWTEvents"/>
<permission class="java.lang.RuntimePermission" name="exitVM"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.input.usb.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.input.usb.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.input.usb.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.input.usb"
Modified: trunk/gui/descriptors/org.jnode.driver.ps2.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.ps2.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.ps2.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.ps2"
Modified: trunk/gui/descriptors/org.jnode.driver.sound.command.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.sound.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.sound.command.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.sound.command"
Modified: trunk/gui/descriptors/org.jnode.driver.sound.speaker.pc.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.sound.speaker.pc.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.sound.speaker.pc.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.sound.speaker.pc"
Modified: trunk/gui/descriptors/org.jnode.driver.sound.speaker.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.sound.speaker.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.sound.speaker.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.sound.speaker"
Modified: trunk/gui/descriptors/org.jnode.driver.textscreen.fb.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.textscreen.fb.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.textscreen.fb.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.textscreen.fb"
@@ -31,4 +50,4 @@
<permission class="java.security.AllPermission" />
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.textscreen.swing.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.textscreen.swing.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.textscreen.swing.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.textscreen.swing"
@@ -22,4 +41,4 @@
<permission class="java.util.PropertyPermission" name="gnu.awt.dispatchthread.priority" actions="read"/>
<permission class="java.awt.AWTPermission" name="listenToAllAWTEvents"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.video.ati.mach64.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.video.ati.mach64.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.video.ati.mach64.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.video.ati.mach64"
@@ -28,4 +47,4 @@
<mapper id="1002:4755" name="3D RAGE II+ (GTB)" driver-class="org.jnode.driver.video.ati.mach64.Mach64Driver" class="org.jnode.driver.bus.pci.PCIDeviceToDriverMapper"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.video.ati.radeon.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.video.ati.radeon.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.video.ati.radeon.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.video.ati.radeon"
@@ -33,4 +52,4 @@
-->
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.video.cirrus.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.video.cirrus.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.video.cirrus.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.video.cirrus"
Modified: trunk/gui/descriptors/org.jnode.driver.video.cursor.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.video.cursor.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.video.cursor.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.video.cursor"
@@ -18,4 +37,4 @@
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.video.nvidia.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.video.nvidia.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.video.nvidia.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.video.nvidia"
@@ -37,4 +56,4 @@
<mapper id="10de:0286" architecture="NV28M" name="GeForce4 4200 Go" driver-class="org.jnode.driver.video.nvidia.NVidiaDriver" class="org.jnode.driver.bus.pci.PCIDeviceToDriverMapper"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.video.vesa.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.video.vesa.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.video.vesa.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,35 +1,54 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plugin SYSTEM "jnode.dtd">
-
-<plugin id="org.jnode.driver.video.vesa"
- name="JNode Video VESA driver"
- version="@VERSION@"
- license-name="lgpl"
- provider-name="JNode.org">
-
- <requires>
- <import plugin="org.jnode.driver.bus.pci"/>
- <import plugin="org.jnode.driver.video"/>
- <import plugin="org.jnode.awt"/>
- <import plugin="org.jnode.driver.video.cursor"/>
- </requires>
-
- <runtime>
- <library name="jnode-gui.jar">
- <export name="org.jnode.driver.video.vesa.*"/>
- </library>
- </runtime>
-
- <extension point="org.jnode.driver.mappers">
- <mapper class="org.jnode.driver.video.vesa.VESADeviceToDriverMapper"/>
- </extension>
-
- <extension point="org.jnode.security.permissions">
- <permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
- </extension>
-
- <extension point="org.jnode.shell.aliases">
- <alias name="vesa" class="org.jnode.driver.video.vesa.VESACommand"/>
- </extension>
-
-</plugin>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+<!DOCTYPE plugin SYSTEM "jnode.dtd">
+
+<plugin id="org.jnode.driver.video.vesa"
+ name="JNode Video VESA driver"
+ version="@VERSION@"
+ license-name="lgpl"
+ provider-name="JNode.org">
+
+ <requires>
+ <import plugin="org.jnode.driver.bus.pci"/>
+ <import plugin="org.jnode.driver.video"/>
+ <import plugin="org.jnode.awt"/>
+ <import plugin="org.jnode.driver.video.cursor"/>
+ </requires>
+
+ <runtime>
+ <library name="jnode-gui.jar">
+ <export name="org.jnode.driver.video.vesa.*"/>
+ </library>
+ </runtime>
+
+ <extension point="org.jnode.driver.mappers">
+ <mapper class="org.jnode.driver.video.vesa.VESADeviceToDriverMapper"/>
+ </extension>
+
+ <extension point="org.jnode.security.permissions">
+ <permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
+ </extension>
+
+ <extension point="org.jnode.shell.aliases">
+ <alias name="vesa" class="org.jnode.driver.video.vesa.VESACommand"/>
+ </extension>
+
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.video.vga.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.video.vga.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.video.vga.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.video.vga"
@@ -33,4 +52,4 @@
<permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.video.vgahw.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.video.vgahw.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.video.vgahw.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.video.vgahw"
@@ -17,4 +36,4 @@
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.video.vmware.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.video.vmware.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.video.vmware.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.video.vmware"
@@ -30,4 +49,4 @@
<permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.driver.video.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.driver.video.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.driver.video.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.video"
@@ -20,4 +39,4 @@
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.font.bdf.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.font.bdf.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.font.bdf.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.font.bdf"
@@ -13,4 +32,4 @@
<export name="org.jnode.font.bdf.*"/>
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/gui/descriptors/org.jnode.test.gui.xml
===================================================================
--- trunk/gui/descriptors/org.jnode.test.gui.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/org.jnode.test.gui.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.test.gui"
Modified: trunk/gui/descriptors/thinlet.xml
===================================================================
--- trunk/gui/descriptors/thinlet.xml 2013-02-24 17:13:39 UTC (rev 5980)
+++ trunk/gui/descriptors/thinlet.xml 2013-02-24 17:17:05 UTC (rev 5981)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="thinlet"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-02-24 17:13:57
|
Revision: 5980
http://jnode.svn.sourceforge.net/jnode/?rev=5980&view=rev
Author: lsantha
Date: 2013-02-24 17:13:39 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Updated headers.
Modified Paths:
--------------
trunk/fs/build-tests.xml
trunk/fs/build.xml
trunk/fs/descriptors/edtftpj.xml
trunk/fs/descriptors/jcifs.xml
trunk/fs/descriptors/org.jnode.driver.block.floppy.xml
trunk/fs/descriptors/org.jnode.driver.block.ide.disk.xml
trunk/fs/descriptors/org.jnode.driver.block.ramdisk.command.xml
trunk/fs/descriptors/org.jnode.driver.block.ramdisk.xml
trunk/fs/descriptors/org.jnode.driver.block.scsi.cdrom.xml
trunk/fs/descriptors/org.jnode.driver.block.usb.storage.scsi.xml
trunk/fs/descriptors/org.jnode.driver.block.usb.storage.xml
trunk/fs/descriptors/org.jnode.driver.block.xml
trunk/fs/descriptors/org.jnode.driver.bus.ide.atapi.xml
trunk/fs/descriptors/org.jnode.driver.bus.ide.xml
trunk/fs/descriptors/org.jnode.driver.bus.scsi.xml
trunk/fs/descriptors/org.jnode.fs.command.xml
trunk/fs/descriptors/org.jnode.fs.ext2.command.xml
trunk/fs/descriptors/org.jnode.fs.ext2.test.command.xml
trunk/fs/descriptors/org.jnode.fs.ext2.xml
trunk/fs/descriptors/org.jnode.fs.fat.command.xml
trunk/fs/descriptors/org.jnode.fs.fat.xml
trunk/fs/descriptors/org.jnode.fs.ftpfs.command.xml
trunk/fs/descriptors/org.jnode.fs.ftpfs.xml
trunk/fs/descriptors/org.jnode.fs.hfsplus.command.xml
trunk/fs/descriptors/org.jnode.fs.hfsplus.xml
trunk/fs/descriptors/org.jnode.fs.initrd.xml
trunk/fs/descriptors/org.jnode.fs.iso9660.xml
trunk/fs/descriptors/org.jnode.fs.jfat.command.xml
trunk/fs/descriptors/org.jnode.fs.jfat.xml
trunk/fs/descriptors/org.jnode.fs.jifs.command.xml
trunk/fs/descriptors/org.jnode.fs.jifs.def.xml
trunk/fs/descriptors/org.jnode.fs.jifs.example.xml
trunk/fs/descriptors/org.jnode.fs.jifs.xml
trunk/fs/descriptors/org.jnode.fs.nfs.command.xml
trunk/fs/descriptors/org.jnode.fs.nfs.xml
trunk/fs/descriptors/org.jnode.fs.ntfs.xml
trunk/fs/descriptors/org.jnode.fs.ramfs.def.xml
trunk/fs/descriptors/org.jnode.fs.ramfs.xml
trunk/fs/descriptors/org.jnode.fs.service.xml
trunk/fs/descriptors/org.jnode.fs.smbfs.command.xml
trunk/fs/descriptors/org.jnode.fs.smbfs.xml
trunk/fs/descriptors/org.jnode.fs.xml
trunk/fs/descriptors/org.jnode.partitions.apm.xml
trunk/fs/descriptors/org.jnode.partitions.command.xml
trunk/fs/descriptors/org.jnode.partitions.gpt.xml
trunk/fs/descriptors/org.jnode.partitions.ibm.xml
trunk/fs/descriptors/org.jnode.partitions.xml
trunk/fs/descriptors/org.jnode.test.fs.xml
Modified: trunk/fs/build-tests.xml
===================================================================
--- trunk/fs/build-tests.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/build-tests.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-FS-Tests" default="all" basedir=".">
<import file="${basedir}/../all/build.xml"/>
Modified: trunk/fs/build.xml
===================================================================
--- trunk/fs/build.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/build.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-FS" default="all" basedir=".">
<typedef file="${basedir}/../all/lib/jnode.xml"/>
Modified: trunk/fs/descriptors/edtftpj.xml
===================================================================
--- trunk/fs/descriptors/edtftpj.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/edtftpj.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="edtftpj"
@@ -24,4 +43,4 @@
<permission class="java.util.PropertyPermission" name="edtftp.log.log4j" actions="read"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/jcifs.xml
===================================================================
--- trunk/fs/descriptors/jcifs.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/jcifs.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="jcifs"
@@ -29,4 +48,4 @@
<handler protocol="smb" class="jcifs.smb.Handler" />
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.driver.block.floppy.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.block.floppy.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.block.floppy.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.block.floppy"
@@ -28,4 +47,4 @@
<permission class="org.jnode.system.resource.ResourcePermission" name="ioports"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.driver.block.ide.disk.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.block.ide.disk.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.block.ide.disk.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.block.ide.disk"
@@ -22,4 +41,4 @@
<mapper class="org.jnode.driver.block.ide.disk.IDEDiskDeviceToDriverMapper"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.driver.block.ramdisk.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.block.ramdisk.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.block.ramdisk.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.block.ramdisk.command"
Modified: trunk/fs/descriptors/org.jnode.driver.block.ramdisk.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.block.ramdisk.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.block.ramdisk.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.block.ramdisk"
Modified: trunk/fs/descriptors/org.jnode.driver.block.scsi.cdrom.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.block.scsi.cdrom.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.block.scsi.cdrom.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.block.scsi.cdrom"
@@ -23,4 +42,4 @@
<mapper class="org.jnode.driver.block.scsi.cdrom.CDROMDeviceToDriverMapper"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.driver.block.usb.storage.scsi.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.block.usb.storage.scsi.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.block.usb.storage.scsi.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,26 +1,45 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plugin SYSTEM "jnode.dtd">
-
-<plugin id="org.jnode.driver.block.usb.storage.scsi"
- name="JNode USB Mass Storage SCSI drivers"
- version="@VERSION@"
- license-name="lgpl"
- provider-name="JNode.org">
-
- <requires>
- <import plugin="org.jnode.driver.bus.usb"/>
- <import plugin="org.jnode.driver.block"/>
- <import plugin="org.jnode.driver.bus.scsi"/>
- <import plugin="org.jnode.driver.block.usb.storage"/>
- </requires>
-
- <runtime>
- <library name="jnode-fs.jar">
- <export name="org.jnode.driver.block.usb.storage.scsi.*"/>
- </library>
- </runtime>
-
- <extension point="org.jnode.driver.mappers">
- <mapper class="org.jnode.driver.block.usb.storage.scsi.USBStorageSCSIDeviceToDriverMapper"/>
- </extension>
-</plugin>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+<!DOCTYPE plugin SYSTEM "jnode.dtd">
+
+<plugin id="org.jnode.driver.block.usb.storage.scsi"
+ name="JNode USB Mass Storage SCSI drivers"
+ version="@VERSION@"
+ license-name="lgpl"
+ provider-name="JNode.org">
+
+ <requires>
+ <import plugin="org.jnode.driver.bus.usb"/>
+ <import plugin="org.jnode.driver.block"/>
+ <import plugin="org.jnode.driver.bus.scsi"/>
+ <import plugin="org.jnode.driver.block.usb.storage"/>
+ </requires>
+
+ <runtime>
+ <library name="jnode-fs.jar">
+ <export name="org.jnode.driver.block.usb.storage.scsi.*"/>
+ </library>
+ </runtime>
+
+ <extension point="org.jnode.driver.mappers">
+ <mapper class="org.jnode.driver.block.usb.storage.scsi.USBStorageSCSIDeviceToDriverMapper"/>
+ </extension>
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.driver.block.usb.storage.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.block.usb.storage.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.block.usb.storage.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.block.usb.storage"
Modified: trunk/fs/descriptors/org.jnode.driver.block.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.block.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.block.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.block"
@@ -21,4 +40,4 @@
<permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="read,write,delete"/>
<permission class="java.util.PropertyPermission" name="user.dir" actions="read"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.driver.bus.ide.atapi.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.bus.ide.atapi.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.bus.ide.atapi.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.bus.ide.atapi"
@@ -22,4 +41,4 @@
<mapper class="org.jnode.driver.bus.ide.atapi.ATAPIDeviceToDriverMapper"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.driver.bus.ide.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.bus.ide.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.bus.ide.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.bus.ide"
@@ -31,4 +50,4 @@
driver-class="org.jnode.driver.bus.ide.DefaultIDEControllerDriver"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.driver.bus.scsi.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.driver.bus.scsi.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.driver.bus.scsi.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.bus.scsi"
@@ -19,4 +38,4 @@
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.command"
Modified: trunk/fs/descriptors/org.jnode.fs.ext2.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.ext2.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.ext2.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.ext2.command"
Modified: trunk/fs/descriptors/org.jnode.fs.ext2.test.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.ext2.test.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.ext2.test.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.ext2.test.command"
Modified: trunk/fs/descriptors/org.jnode.fs.ext2.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.ext2.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.ext2.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.ext2"
Modified: trunk/fs/descriptors/org.jnode.fs.fat.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.fat.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.fat.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.fat.command"
@@ -31,4 +50,4 @@
</sequence>
</syntax>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.fat.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.fat.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.fat.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.fat"
@@ -22,4 +41,4 @@
<type class="org.jnode.fs.fat.FatFileSystemType"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.ftpfs.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.ftpfs.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.ftpfs.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.ftpfs.command"
Modified: trunk/fs/descriptors/org.jnode.fs.ftpfs.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.ftpfs.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.ftpfs.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.ftpfs"
Modified: trunk/fs/descriptors/org.jnode.fs.hfsplus.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.hfsplus.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.hfsplus.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.hfsplus.command"
@@ -31,4 +50,4 @@
</sequence>
</syntax>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.hfsplus.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.hfsplus.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.hfsplus.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.hfsplus"
Modified: trunk/fs/descriptors/org.jnode.fs.initrd.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.initrd.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.initrd.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.initrd"
@@ -21,4 +40,4 @@
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.iso9660.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.iso9660.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.iso9660.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,5 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.iso9660"
@@ -23,4 +42,4 @@
<type class="org.jnode.fs.iso9660.ISO9660FileSystemType"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.jfat.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.jfat.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.jfat.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.jfat.command"
@@ -42,4 +61,4 @@
<extension point="org.jnode.security.permissions">
<permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="read,write,delete"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.jfat.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.jfat.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.jfat.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.jfat"
Modified: trunk/fs/descriptors/org.jnode.fs.jifs.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.jifs.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.jifs.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.jifs.command"
@@ -34,4 +53,4 @@
<permission class="org.jnode.permission.JNodePermission" name="startPlugin"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.jifs.def.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.jifs.def.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.jifs.def.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.jifs.def"
@@ -27,4 +46,4 @@
<permission class="org.jnode.permission.JNodePermission" name="getVmThread"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.jifs.example.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.jifs.example.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.jifs.example.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.jifs.example"
@@ -18,4 +37,4 @@
<info class="org.jnode.fs.jifs.JIFSFile" name="testfile"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.jifs.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.jifs.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.jifs.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.jifs"
@@ -33,4 +52,4 @@
<permission class="org.jnode.permission.JNodePermission" name="getVmThread"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.nfs.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.nfs.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.nfs.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.nfs.command"
Modified: trunk/fs/descriptors/org.jnode.fs.nfs.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.nfs.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.nfs.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.nfs"
Modified: trunk/fs/descriptors/org.jnode.fs.ntfs.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.ntfs.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.ntfs.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,5 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.ntfs"
@@ -23,4 +42,4 @@
<type class="org.jnode.fs.ntfs.NTFSFileSystemType"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.ramfs.def.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.ramfs.def.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.ramfs.def.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.ramfs.def"
Modified: trunk/fs/descriptors/org.jnode.fs.ramfs.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.ramfs.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.ramfs.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.ramfs"
Modified: trunk/fs/descriptors/org.jnode.fs.service.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.service.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.service.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.service"
@@ -21,4 +40,4 @@
<permission class="java.util.PropertyPermission" name="user.dir" actions="read"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/fs/descriptors/org.jnode.fs.smbfs.command.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.smbfs.command.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.smbfs.command.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.smbfs.command"
Modified: trunk/fs/descriptors/org.jnode.fs.smbfs.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.smbfs.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.smbfs.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs.smbfs"
Modified: trunk/fs/descriptors/org.jnode.fs.xml
===================================================================
--- trunk/fs/descriptors/org.jnode.fs.xml 2013-02-24 17:10:10 UTC (rev 5979)
+++ trunk/fs/descriptors/org.jnode.fs.xml 2013-02-24 17:13:39 UTC (rev 5980)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.fs"
Modified: trunk/fs/descriptors/org.jnode.partitio...
[truncated message content] |
|
From: <ls...@us...> - 2013-02-24 17:10:20
|
Revision: 5979
http://jnode.svn.sourceforge.net/jnode/?rev=5979&view=rev
Author: lsantha
Date: 2013-02-24 17:10:10 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Updated headers.
Modified Paths:
--------------
trunk/distr/build.xml
trunk/distr/descriptors/derby.xml
trunk/distr/descriptors/jetty.xml
trunk/distr/descriptors/net.wimpi.telnetd.xml
trunk/distr/descriptors/org.apache.jakarta.commons.logging.xml
trunk/distr/descriptors/org.jawk.xml
trunk/distr/descriptors/org.jnode.apps.commander.xml
trunk/distr/descriptors/org.jnode.apps.console.xml
trunk/distr/descriptors/org.jnode.apps.debug.xml
trunk/distr/descriptors/org.jnode.apps.edit.xml
trunk/distr/descriptors/org.jnode.apps.editor.xml
trunk/distr/descriptors/org.jnode.apps.httpd.xml
trunk/distr/descriptors/org.jnode.apps.jpartition.xml
trunk/distr/descriptors/org.jnode.charvabsh.xml
trunk/distr/descriptors/org.jnode.games.xml
trunk/distr/descriptors/org.jnode.install.xml
Modified: trunk/distr/build.xml
===================================================================
--- trunk/distr/build.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/build.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-Distr" default="all" basedir=".">
<typedef file="${basedir}/../all/lib/jnode.xml"/>
Modified: trunk/distr/descriptors/derby.xml
===================================================================
--- trunk/distr/descriptors/derby.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/derby.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,67 +1,86 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plugin SYSTEM "jnode.dtd">
-
-<plugin id="derby"
- name="Derby"
- version="10.3.2.1"
- license-name="apache2.0"
- provider-name="apache DB"
- provider-url="http://db.apache.org/derby/">
-
-
- <requires>
- <import plugin="org.jnode.shell"/>
- </requires>
-
- <runtime>
- <library name="derby.jar">
- <export name="*"/>
- </library>
- <library name="derbynet.jar">
- <export name="org.apache.derby.drda.*"/>
- <export name="org.apache.derby.impl.drda.*"/>
- <export name="org.apache.derby.info.net*"/>
- <export name="org.apache.derby.loc.drda.*"/>
- </library>
- <library name="derbytools.jar">
- <export name="org.apache.derby.tools.*"/>
- <export name="org.apache.derby.impl.tools.*"/>
- <export name="org.apache.derby.iapi.reference.*"/>
- <export name="org.apache.derby.info.tools*"/>
- <export name="org.apache.derby.loc.toolsmessages*"/>
- </library>
- <library name="jnode-distr.jar">
- <export name="org.jnode.apps.derby.*"/>
- </library>
- </runtime>
-
- <extension point="org.jnode.shell.aliases">
- <alias name="derby" class="org.jnode.apps.derby.DerbyCommand"/>
- </extension>
-
- <extension point="org.jnode.shell.syntaxes">
- <syntax alias="derby">
- <sequence description="Start or stop the derby db server">
- <alternatives>
- <option argLabel="start" longName="start"/>
- <option argLabel="stop" longName="stop"/>
- </alternatives>
- <optionSet>
- <option argLabel="home" longName="home" shortName="h"/>
- <option argLabel="port" longName="port" shortName="p"/>
- </optionSet>
- </sequence>
- </syntax>
- </extension>
-
- <extension point="org.jnode.security.permissions">
- <permission class="java.util.PropertyPermission" name="*" actions="read"/>
- <permission class="java.lang.RuntimePermission" name="exitVM" actions="*" />
- <permission class="java.lang.RuntimePermission" name="writeFileDescriptor" actions="*" />
- <permission class="java.lang.RuntimePermission" name="readFileDescriptor" actions="*" />
- <permission class="java.lang.RuntimePermission" name="createClassLoader" actions="*" />
- <permission class="java.net.SocketPermission" name="*:1527" actions="accept,connect,listen"/>
- <permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="read,write"/>
- </extension>
-
-</plugin>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+<!DOCTYPE plugin SYSTEM "jnode.dtd">
+
+<plugin id="derby"
+ name="Derby"
+ version="10.3.2.1"
+ license-name="apache2.0"
+ provider-name="apache DB"
+ provider-url="http://db.apache.org/derby/">
+
+
+ <requires>
+ <import plugin="org.jnode.shell"/>
+ </requires>
+
+ <runtime>
+ <library name="derby.jar">
+ <export name="*"/>
+ </library>
+ <library name="derbynet.jar">
+ <export name="org.apache.derby.drda.*"/>
+ <export name="org.apache.derby.impl.drda.*"/>
+ <export name="org.apache.derby.info.net*"/>
+ <export name="org.apache.derby.loc.drda.*"/>
+ </library>
+ <library name="derbytools.jar">
+ <export name="org.apache.derby.tools.*"/>
+ <export name="org.apache.derby.impl.tools.*"/>
+ <export name="org.apache.derby.iapi.reference.*"/>
+ <export name="org.apache.derby.info.tools*"/>
+ <export name="org.apache.derby.loc.toolsmessages*"/>
+ </library>
+ <library name="jnode-distr.jar">
+ <export name="org.jnode.apps.derby.*"/>
+ </library>
+ </runtime>
+
+ <extension point="org.jnode.shell.aliases">
+ <alias name="derby" class="org.jnode.apps.derby.DerbyCommand"/>
+ </extension>
+
+ <extension point="org.jnode.shell.syntaxes">
+ <syntax alias="derby">
+ <sequence description="Start or stop the derby db server">
+ <alternatives>
+ <option argLabel="start" longName="start"/>
+ <option argLabel="stop" longName="stop"/>
+ </alternatives>
+ <optionSet>
+ <option argLabel="home" longName="home" shortName="h"/>
+ <option argLabel="port" longName="port" shortName="p"/>
+ </optionSet>
+ </sequence>
+ </syntax>
+ </extension>
+
+ <extension point="org.jnode.security.permissions">
+ <permission class="java.util.PropertyPermission" name="*" actions="read"/>
+ <permission class="java.lang.RuntimePermission" name="exitVM" actions="*" />
+ <permission class="java.lang.RuntimePermission" name="writeFileDescriptor" actions="*" />
+ <permission class="java.lang.RuntimePermission" name="readFileDescriptor" actions="*" />
+ <permission class="java.lang.RuntimePermission" name="createClassLoader" actions="*" />
+ <permission class="java.net.SocketPermission" name="*:1527" actions="accept,connect,listen"/>
+ <permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="read,write"/>
+ </extension>
+
+</plugin>
Modified: trunk/distr/descriptors/jetty.xml
===================================================================
--- trunk/distr/descriptors/jetty.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/jetty.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,78 +1,97 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plugin SYSTEM "jnode.dtd">
-
-<plugin id="jetty"
- name="jetty"
- version="6.1.5"
- license-name="asl"
- provider-name="mortbay.com"
- provider-url="http://jetty.mortbay.com/">
-
- <runtime>
-
- <library name="jetty.jar">
- <export name="*"/>
- </library>
-
- <library name="jetty-util.jar">
- <export name="*"/>
- </library>
-
- <library name="jsp.jar">
- <export name="*"/>
- </library>
-
- <library name="jsp-api.jar">
- <export name="*"/>
- </library>
-
- <library name="servlet.jar">
- <export name="*"/>
- </library>
-
- <library name="jnode-distr.jar">
- <export name="org.jnode.apps.jetty.*"/>
- </library>
-
- </runtime>
-
- <requires>
- <import plugin="com.sun.tools.javac"/>
- <import plugin="org.apache.jakarta.commons.logging"/>
- <import plugin="org.apache.jakarta.log4j"/>
- <import plugin="org.jnode.shell"/>
- <import plugin="org.jnode.shell.syntax"/>
- <import plugin="org.apache.tools.ant"/>
- </requires>
-
- <extension point="org.jnode.shell.aliases">
- <alias name="jetty" class="org.jnode.apps.jetty.JettyCommand"/>
- </extension>
-
- <extension point="org.jnode.shell.syntaxes">
- <syntax alias="jetty">
- <sequence description="Run a jetty server">
- <optionSet>
- <option argLabel="port" longName="port" shortName="p"/>
- </optionSet>
- <argument argLabel="webapp"/>
- </sequence>
- </syntax>
- </extension>
-
- <extension point="org.jnode.security.permissions">
- <permission class="java.util.PropertyPermission" name="*" actions="read,write"/>
- <permission class="java.util.PropertyPermission" name="org.mortbay.*" actions="read"/>
- <permission class="java.lang.RuntimePermission" name="createClassLoader"/>
- <permission class="java.lang.RuntimePermission" name="setContextClassLoader"/>
- <permission class="java.lang.RuntimePermission" name="readFileDescriptor"/>
- <permission class="java.lang.RuntimePermission" name="modifyThread"/>
- <permission class="java.lang.RuntimePermission" name="modifyThreadGroup"/>
- <permission class="java.lang.RuntimePermission" name="setIO"/>
- <permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="read,write"/>
- <permission class="java.net.SocketPermission" name="*" actions="resolve"/>
- <permission class="java.net.SocketPermission" name="*:1-" actions="resolve,listen"/>
- <permission class="java.security.SecurityPermission" name="getPolicy"/>
- </extension>
-
-</plugin>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+<!DOCTYPE plugin SYSTEM "jnode.dtd">
+
+<plugin id="jetty"
+ name="jetty"
+ version="6.1.5"
+ license-name="asl"
+ provider-name="mortbay.com"
+ provider-url="http://jetty.mortbay.com/">
+
+ <runtime>
+
+ <library name="jetty.jar">
+ <export name="*"/>
+ </library>
+
+ <library name="jetty-util.jar">
+ <export name="*"/>
+ </library>
+
+ <library name="jsp.jar">
+ <export name="*"/>
+ </library>
+
+ <library name="jsp-api.jar">
+ <export name="*"/>
+ </library>
+
+ <library name="servlet.jar">
+ <export name="*"/>
+ </library>
+
+ <library name="jnode-distr.jar">
+ <export name="org.jnode.apps.jetty.*"/>
+ </library>
+
+ </runtime>
+
+ <requires>
+ <import plugin="com.sun.tools.javac"/>
+ <import plugin="org.apache.jakarta.commons.logging"/>
+ <import plugin="org.apache.jakarta.log4j"/>
+ <import plugin="org.jnode.shell"/>
+ <import plugin="org.jnode.shell.syntax"/>
+ <import plugin="org.apache.tools.ant"/>
+ </requires>
+
+ <extension point="org.jnode.shell.aliases">
+ <alias name="jetty" class="org.jnode.apps.jetty.JettyCommand"/>
+ </extension>
+
+ <extension point="org.jnode.shell.syntaxes">
+ <syntax alias="jetty">
+ <sequence description="Run a jetty server">
+ <optionSet>
+ <option argLabel="port" longName="port" shortName="p"/>
+ </optionSet>
+ <argument argLabel="webapp"/>
+ </sequence>
+ </syntax>
+ </extension>
+
+ <extension point="org.jnode.security.permissions">
+ <permission class="java.util.PropertyPermission" name="*" actions="read,write"/>
+ <permission class="java.util.PropertyPermission" name="org.mortbay.*" actions="read"/>
+ <permission class="java.lang.RuntimePermission" name="createClassLoader"/>
+ <permission class="java.lang.RuntimePermission" name="setContextClassLoader"/>
+ <permission class="java.lang.RuntimePermission" name="readFileDescriptor"/>
+ <permission class="java.lang.RuntimePermission" name="modifyThread"/>
+ <permission class="java.lang.RuntimePermission" name="modifyThreadGroup"/>
+ <permission class="java.lang.RuntimePermission" name="setIO"/>
+ <permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="read,write"/>
+ <permission class="java.net.SocketPermission" name="*" actions="resolve"/>
+ <permission class="java.net.SocketPermission" name="*:1-" actions="resolve,listen"/>
+ <permission class="java.security.SecurityPermission" name="getPolicy"/>
+ </extension>
+
+</plugin>
Modified: trunk/distr/descriptors/net.wimpi.telnetd.xml
===================================================================
--- trunk/distr/descriptors/net.wimpi.telnetd.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/net.wimpi.telnetd.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,45 +1,64 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plugin SYSTEM "jnode.dtd">
-
-<plugin id="net.wimpi.telnetd"
- name="telnetd"
- version="2"
- license-name="bsd"
- provider-name="wimpi.net"
- provider-url="http://telnetd.sourceforge.net/">
-
- <runtime>
- <library name="telnetd.jar">
- <export name="*"/>
- </library>
-
- <library name="jnode-distr.jar">
- <export name="org.jnode.apps.telnetd.*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.apache.jakarta.commons.logging"/>
- <import plugin="org.apache.jakarta.log4j"/>
- <import plugin="org.jnode.shell"/>
- </requires>
-
- <extension point="org.jnode.security.permissions">
- <permission class="java.lang.RuntimePermission" name="modifyThreadGroup"/>
- <permission class="java.lang.RuntimePermission" name="exitVM"/>
-
- <permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="read,write"/>
- <permission class="java.lang.RuntimePermission" name="modifyThreadGroup"/>
- <permission class="java.lang.RuntimePermission" name="modifyThread"/>
- <permission class="java.lang.RuntimePermission" name="setIO"/>
- <permission class="java.net.SocketPermission" name="*" actions="resolve,listen,connect"/>
- <permission class="java.net.SocketPermission" name="*:0-" actions="connect,resolve,listen"/>
- <permission class="java.util.PropertyPermission" name="jnode.cmdline" actions="read"/>
- <permission class="java.util.PropertyPermission" name="*" actions="read,write"/>
- <permission class="java.util.PropertyPermission" name="user.dir" actions="read"/>
- </extension>
-
- <extension point="org.jnode.shell.aliases">
- <alias name="telnetd" class="org.jnode.apps.telnetd.TelnetServerCommand"/>
- </extension>
-</plugin>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+<!DOCTYPE plugin SYSTEM "jnode.dtd">
+
+<plugin id="net.wimpi.telnetd"
+ name="telnetd"
+ version="2"
+ license-name="bsd"
+ provider-name="wimpi.net"
+ provider-url="http://telnetd.sourceforge.net/">
+
+ <runtime>
+ <library name="telnetd.jar">
+ <export name="*"/>
+ </library>
+
+ <library name="jnode-distr.jar">
+ <export name="org.jnode.apps.telnetd.*"/>
+ </library>
+ </runtime>
+
+ <requires>
+ <import plugin="org.apache.jakarta.commons.logging"/>
+ <import plugin="org.apache.jakarta.log4j"/>
+ <import plugin="org.jnode.shell"/>
+ </requires>
+
+ <extension point="org.jnode.security.permissions">
+ <permission class="java.lang.RuntimePermission" name="modifyThreadGroup"/>
+ <permission class="java.lang.RuntimePermission" name="exitVM"/>
+
+ <permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="read,write"/>
+ <permission class="java.lang.RuntimePermission" name="modifyThreadGroup"/>
+ <permission class="java.lang.RuntimePermission" name="modifyThread"/>
+ <permission class="java.lang.RuntimePermission" name="setIO"/>
+ <permission class="java.net.SocketPermission" name="*" actions="resolve,listen,connect"/>
+ <permission class="java.net.SocketPermission" name="*:0-" actions="connect,resolve,listen"/>
+ <permission class="java.util.PropertyPermission" name="jnode.cmdline" actions="read"/>
+ <permission class="java.util.PropertyPermission" name="*" actions="read,write"/>
+ <permission class="java.util.PropertyPermission" name="user.dir" actions="read"/>
+ </extension>
+
+ <extension point="org.jnode.shell.aliases">
+ <alias name="telnetd" class="org.jnode.apps.telnetd.TelnetServerCommand"/>
+ </extension>
+</plugin>
Modified: trunk/distr/descriptors/org.apache.jakarta.commons.logging.xml
===================================================================
--- trunk/distr/descriptors/org.apache.jakarta.commons.logging.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.apache.jakarta.commons.logging.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,16 +1,35 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plugin SYSTEM "jnode.dtd">
-
-<plugin id="org.apache.jakarta.commons.logging"
- name="commons-logging"
- version="1.1.1"
- license-name="apache2.0"
- provider-name="apache commons"
- provider-url="http://commons.apache.org/logging/">
-
- <runtime>
- <library name="commons-logging.jar">
- <export name="*"/>
- </library>
- </runtime>
-</plugin>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+<!DOCTYPE plugin SYSTEM "jnode.dtd">
+
+<plugin id="org.apache.jakarta.commons.logging"
+ name="commons-logging"
+ version="1.1.1"
+ license-name="apache2.0"
+ provider-name="apache commons"
+ provider-url="http://commons.apache.org/logging/">
+
+ <runtime>
+ <library name="commons-logging.jar">
+ <export name="*"/>
+ </library>
+ </runtime>
+</plugin>
Modified: trunk/distr/descriptors/org.jawk.xml
===================================================================
--- trunk/distr/descriptors/org.jawk.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jawk.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,6 +1,25 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plugin SYSTEM "jnode.dtd">
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+<!DOCTYPE plugin SYSTEM "jnode.dtd">
+
<plugin id="org.jawk"
name="jawk"
version="1.02"
@@ -88,13 +107,13 @@
</syntax>
</extension>
- <extension point="org.jnode.security.permissions">
- <permission class="java.util.PropertyPermission" name="*" actions="read,write"/>
- <permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="read,write"/>
- <permission class="java.lang.RuntimePermission" name="modifyThread"/>
- <permission class="java.lang.RuntimePermission" name="modifyThreadGroup"/>
+ <extension point="org.jnode.security.permissions">
+ <permission class="java.util.PropertyPermission" name="*" actions="read,write"/>
+ <permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="read,write"/>
+ <permission class="java.lang.RuntimePermission" name="modifyThread"/>
+ <permission class="java.lang.RuntimePermission" name="modifyThreadGroup"/>
<permission class="java.lang.RuntimePermission" name="createClassLoader"/>
- <permission class="java.lang.RuntimePermission" name="getenv.*"/>
+ <permission class="java.lang.RuntimePermission" name="getenv.*"/>
<permission class="java.lang.RuntimePermission" name="setContextClassLoader"/>
<permission class="java.lang.RuntimePermission" name="exitVM"/>
</extension>
Modified: trunk/distr/descriptors/org.jnode.apps.commander.xml
===================================================================
--- trunk/distr/descriptors/org.jnode.apps.commander.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jnode.apps.commander.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.apps.commander"
Modified: trunk/distr/descriptors/org.jnode.apps.console.xml
===================================================================
--- trunk/distr/descriptors/org.jnode.apps.console.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jnode.apps.console.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.apps.console"
Modified: trunk/distr/descriptors/org.jnode.apps.debug.xml
===================================================================
--- trunk/distr/descriptors/org.jnode.apps.debug.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jnode.apps.debug.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.apps.debug"
Modified: trunk/distr/descriptors/org.jnode.apps.edit.xml
===================================================================
--- trunk/distr/descriptors/org.jnode.apps.edit.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jnode.apps.edit.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.apps.edit"
Modified: trunk/distr/descriptors/org.jnode.apps.editor.xml
===================================================================
--- trunk/distr/descriptors/org.jnode.apps.editor.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jnode.apps.editor.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.apps.editor"
Modified: trunk/distr/descriptors/org.jnode.apps.httpd.xml
===================================================================
--- trunk/distr/descriptors/org.jnode.apps.httpd.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jnode.apps.httpd.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.apps.httpd"
Modified: trunk/distr/descriptors/org.jnode.apps.jpartition.xml
===================================================================
--- trunk/distr/descriptors/org.jnode.apps.jpartition.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jnode.apps.jpartition.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,57 +1,76 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plugin SYSTEM "jnode.dtd">
-
-<plugin id="org.jnode.apps.jpartition"
- name="JPartition"
- version="@VERSION@"
- license-name="lgpl"
- provider-name="JNode.org">
-
- <runtime>
- <library name="jnode-distr.jar">
- <export name="org.jnode.apps.jpartition.*"/>
- <export name="org.jnode.apps.jpartition.commands.*"/>
- <export name="org.jnode.apps.jpartition.commands.framework.*"/>
- <export name="org.jnode.apps.jpartition.consoleview.*"/>
- <export name="org.jnode.apps.jpartition.consoleview.components.*"/>
- <export name="org.jnode.apps.jpartition.model.*"/>
- <export name="org.jnode.apps.jpartition.swingview.*"/>
- <export name="org.jnode.apps.jpartition.swingview.actions.*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.jnode.shell"/>
- <import plugin="org.jnode.shell.syntax"/>
- <import plugin="org.jnode.fs.ext2"/>
- <import plugin="org.jnode.fs.fat"/>
- <import plugin="org.jnode.fs.jfat"/>
- <import plugin="org.jnode.driver.bus.ide"/>
- </requires>
-
- <extension point="org.jnode.security.permissions">
- <permission class="java.lang.RuntimePermission" name="setIO"/>
- <permission class="java.lang.RuntimePermission" name="exitVM" actions="*" />
- <permission class="java.awt.AWTPermission" name="createRobot"/>
- <permission class="java.awt.AWTPermission" name="readDisplayPixels"/>
- <permission class="java.util.PropertyPermission" name="user.home" actions="read"/>
- <permission class="java.util.PropertyPermission" name="gnu.awt.dispatchthread.priority" actions="read"/>
- <permission class="java.util.PropertyPermission" name="gnu.javax.swing.DebugGraphics" actions="read"/>
- </extension>
-
- <extension point="org.jnode.shell.aliases">
- <alias name="jpartition" class="org.jnode.apps.jpartition.JPartitionCommand"/>
- </extension>
-
- <extension point="org.jnode.shell.syntaxes">
- <syntax alias="jpartition">
- <sequence description="interactive disk partitioning tool">
- <alternatives>
- <option argLabel="console" shortName="c" longName="console"/>
- <option argLabel="swing" shortName="s" longName="swing"/>
- </alternatives>
- <optional><option argLabel="install" shortName="i" longName="install"/></optional>
- </sequence>
- </syntax>
- </extension>
-</plugin>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
+<!DOCTYPE plugin SYSTEM "jnode.dtd">
+
+<plugin id="org.jnode.apps.jpartition"
+ name="JPartition"
+ version="@VERSION@"
+ license-name="lgpl"
+ provider-name="JNode.org">
+
+ <runtime>
+ <library name="jnode-distr.jar">
+ <export name="org.jnode.apps.jpartition.*"/>
+ <export name="org.jnode.apps.jpartition.commands.*"/>
+ <export name="org.jnode.apps.jpartition.commands.framework.*"/>
+ <export name="org.jnode.apps.jpartition.consoleview.*"/>
+ <export name="org.jnode.apps.jpartition.consoleview.components.*"/>
+ <export name="org.jnode.apps.jpartition.model.*"/>
+ <export name="org.jnode.apps.jpartition.swingview.*"/>
+ <export name="org.jnode.apps.jpartition.swingview.actions.*"/>
+ </library>
+ </runtime>
+
+ <requires>
+ <import plugin="org.jnode.shell"/>
+ <import plugin="org.jnode.shell.syntax"/>
+ <import plugin="org.jnode.fs.ext2"/>
+ <import plugin="org.jnode.fs.fat"/>
+ <import plugin="org.jnode.fs.jfat"/>
+ <import plugin="org.jnode.driver.bus.ide"/>
+ </requires>
+
+ <extension point="org.jnode.security.permissions">
+ <permission class="java.lang.RuntimePermission" name="setIO"/>
+ <permission class="java.lang.RuntimePermission" name="exitVM" actions="*" />
+ <permission class="java.awt.AWTPermission" name="createRobot"/>
+ <permission class="java.awt.AWTPermission" name="readDisplayPixels"/>
+ <permission class="java.util.PropertyPermission" name="user.home" actions="read"/>
+ <permission class="java.util.PropertyPermission" name="gnu.awt.dispatchthread.priority" actions="read"/>
+ <permission class="java.util.PropertyPermission" name="gnu.javax.swing.DebugGraphics" actions="read"/>
+ </extension>
+
+ <extension point="org.jnode.shell.aliases">
+ <alias name="jpartition" class="org.jnode.apps.jpartition.JPartitionCommand"/>
+ </extension>
+
+ <extension point="org.jnode.shell.syntaxes">
+ <syntax alias="jpartition">
+ <sequence description="interactive disk partitioning tool">
+ <alternatives>
+ <option argLabel="console" shortName="c" longName="console"/>
+ <option argLabel="swing" shortName="s" longName="swing"/>
+ </alternatives>
+ <optional><option argLabel="install" shortName="i" longName="install"/></optional>
+ </sequence>
+ </syntax>
+ </extension>
+</plugin>
Modified: trunk/distr/descriptors/org.jnode.charvabsh.xml
===================================================================
--- trunk/distr/descriptors/org.jnode.charvabsh.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jnode.charvabsh.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.apps.charvabsh"
@@ -26,4 +45,4 @@
<alias name="charvabsh" class="org.jnode.apps.charvabsh.CharvaBsh"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/distr/descriptors/org.jnode.games.xml
===================================================================
--- trunk/distr/descriptors/org.jnode.games.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jnode.games.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.games"
Modified: trunk/distr/descriptors/org.jnode.install.xml
===================================================================
--- trunk/distr/descriptors/org.jnode.install.xml 2013-02-24 17:07:24 UTC (rev 5978)
+++ trunk/distr/descriptors/org.jnode.install.xml 2013-02-24 17:10:10 UTC (rev 5979)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.install"
@@ -18,4 +37,4 @@
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ls...@us...> - 2013-02-24 17:07:37
|
Revision: 5978
http://jnode.svn.sourceforge.net/jnode/?rev=5978&view=rev
Author: lsantha
Date: 2013-02-24 17:07:24 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Updated headers.
Modified Paths:
--------------
trunk/core/build.xml
trunk/core/descriptors/com.sun.tools.javac.xml
trunk/core/descriptors/com.sun.tools.jdi.xml
trunk/core/descriptors/ejc.xml
trunk/core/descriptors/gnu.mauve.plugin.xml
trunk/core/descriptors/gnu.mauve.xml
trunk/core/descriptors/javax.ext.tools.xml
trunk/core/descriptors/nanoxml.xml
trunk/core/descriptors/net.sf.cglib.xml
trunk/core/descriptors/org.apache.jakarta.commons.net.xml
trunk/core/descriptors/org.apache.jakarta.log4j.xml
trunk/core/descriptors/org.apache.tools.ant-launcher.xml
trunk/core/descriptors/org.apache.tools.ant.xml
trunk/core/descriptors/org.classpath.core.vm.xml
trunk/core/descriptors/org.classpath.core.xml
trunk/core/descriptors/org.classpath.ext.awt.xml
trunk/core/descriptors/org.classpath.ext.corba.xml
trunk/core/descriptors/org.classpath.ext.core.vm.xml
trunk/core/descriptors/org.classpath.ext.core.xml
trunk/core/descriptors/org.classpath.ext.imageio.xml
trunk/core/descriptors/org.classpath.ext.jdwp.xml
trunk/core/descriptors/org.classpath.ext.management.xml
trunk/core/descriptors/org.classpath.ext.print.xml
trunk/core/descriptors/org.classpath.ext.security.xml
trunk/core/descriptors/org.classpath.ext.sql.xml
trunk/core/descriptors/org.classpath.ext.xml
trunk/core/descriptors/org.classpath.ext.xml.ws.tools.xml
trunk/core/descriptors/org.classpath.ext.xml.ws.xml
trunk/core/descriptors/org.classpath.ext.xml.xml
trunk/core/descriptors/org.classpath.tools.xml
trunk/core/descriptors/org.jmock.cglib.xml
trunk/core/descriptors/org.jmock.xml
trunk/core/descriptors/org.jnode.debug.xml
trunk/core/descriptors/org.jnode.debugger.xml
trunk/core/descriptors/org.jnode.driver.bus.firewire.xml
trunk/core/descriptors/org.jnode.driver.bus.pci.xml
trunk/core/descriptors/org.jnode.driver.bus.pcmcia.xml
trunk/core/descriptors/org.jnode.driver.bus.smbus.xml
trunk/core/descriptors/org.jnode.driver.bus.usb.hub.xml
trunk/core/descriptors/org.jnode.driver.bus.usb.uhci.xml
trunk/core/descriptors/org.jnode.driver.bus.usb.xml
trunk/core/descriptors/org.jnode.driver.character.xml
trunk/core/descriptors/org.jnode.driver.chipset.i440BX.xml
trunk/core/descriptors/org.jnode.driver.chipset.via.xml
trunk/core/descriptors/org.jnode.driver.chipset.xml
trunk/core/descriptors/org.jnode.driver.console.core.xml
trunk/core/descriptors/org.jnode.driver.console.textscreen.xml
trunk/core/descriptors/org.jnode.driver.console_x86.xml
trunk/core/descriptors/org.jnode.driver.finder.xml
trunk/core/descriptors/org.jnode.driver.input.l10n.xml
trunk/core/descriptors/org.jnode.driver.input.xml
trunk/core/descriptors/org.jnode.driver.serial.xml
trunk/core/descriptors/org.jnode.driver.system.acpi.xml
trunk/core/descriptors/org.jnode.driver.system.cmos.xml
trunk/core/descriptors/org.jnode.driver.system.firmware.bios.xml
trunk/core/descriptors/org.jnode.driver.system.firmware.xml
trunk/core/descriptors/org.jnode.driver.system.pnp.xml
trunk/core/descriptors/org.jnode.driver.system.ram.xml
trunk/core/descriptors/org.jnode.driver.textscreen.core.xml
trunk/core/descriptors/org.jnode.driver.textscreen_x86.xml
trunk/core/descriptors/org.jnode.driver.xml
trunk/core/descriptors/org.jnode.log4j.xml
trunk/core/descriptors/org.jnode.permission.xml
trunk/core/descriptors/org.jnode.plugin.impl.xml
trunk/core/descriptors/org.jnode.plugin.xml
trunk/core/descriptors/org.jnode.protocol.xml
trunk/core/descriptors/org.jnode.runtime.core.bootlog.xml
trunk/core/descriptors/org.jnode.runtime.core.resource.xml
trunk/core/descriptors/org.jnode.runtime.core.xml
trunk/core/descriptors/org.jnode.runtime_x86.xml
trunk/core/descriptors/org.jnode.security.xml
trunk/core/descriptors/org.jnode.system.repository.xml
trunk/core/descriptors/org.jnode.test.core.xml
trunk/core/descriptors/org.jnode.test.xml
trunk/core/descriptors/org.jnode.testrunner.xml
trunk/core/descriptors/org.jnode.util.xml
trunk/core/descriptors/org.jnode.vm.core.xml
trunk/core/descriptors/org.jnode.vm.memmgr.def.xml
trunk/core/descriptors/org.jnode.vm.memmgr.mmtk.genrc.xml
trunk/core/descriptors/org.jnode.vm.memmgr.mmtk.ms.xml
trunk/core/descriptors/org.jnode.vm.memmgr.mmtk.nogc.xml
trunk/core/descriptors/org.jnode.vm_x86.xml
trunk/core/descriptors/org.jnode.work.xml
trunk/core/descriptors/org.jtestserver.server.xml
trunk/core/descriptors/org.junit.xml
trunk/core/descriptors/org.objectweb.asm.xml
trunk/core/descriptors/sun.tools.xml
Modified: trunk/core/build.xml
===================================================================
--- trunk/core/build.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/build.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-Core" default="all" basedir=".">
<typedef file="${basedir}/../all/lib/jnode.xml"/>
Modified: trunk/core/descriptors/com.sun.tools.javac.xml
===================================================================
--- trunk/core/descriptors/com.sun.tools.javac.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/com.sun.tools.javac.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="com.sun.tools.javac"
Modified: trunk/core/descriptors/com.sun.tools.jdi.xml
===================================================================
--- trunk/core/descriptors/com.sun.tools.jdi.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/com.sun.tools.jdi.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="com.sun.tools.jdi"
Modified: trunk/core/descriptors/ejc.xml
===================================================================
--- trunk/core/descriptors/ejc.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/ejc.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="ejc"
@@ -21,4 +40,4 @@
<extension point="org.jnode.security.permissions">
<permission class="java.security.AllPermission"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/gnu.mauve.plugin.xml
===================================================================
--- trunk/core/descriptors/gnu.mauve.plugin.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/gnu.mauve.plugin.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="gnu.mauve.plugin"
Modified: trunk/core/descriptors/gnu.mauve.xml
===================================================================
--- trunk/core/descriptors/gnu.mauve.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/gnu.mauve.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="gnu.mauve"
Modified: trunk/core/descriptors/javax.ext.tools.xml
===================================================================
--- trunk/core/descriptors/javax.ext.tools.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/javax.ext.tools.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="javax.ext.tools"
@@ -25,4 +44,4 @@
</library>
</runtime>
-</fragment>
\ No newline at end of file
+</fragment>
Modified: trunk/core/descriptors/nanoxml.xml
===================================================================
--- trunk/core/descriptors/nanoxml.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/nanoxml.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="nanoxml"
@@ -14,4 +33,4 @@
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/net.sf.cglib.xml
===================================================================
--- trunk/core/descriptors/net.sf.cglib.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/net.sf.cglib.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="net.sf.cglib"
@@ -12,4 +31,4 @@
<export name="net.sf.cglib.*"/>
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.apache.jakarta.commons.net.xml
===================================================================
--- trunk/core/descriptors/org.apache.jakarta.commons.net.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.apache.jakarta.commons.net.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.apache.jakarta.commons.net"
@@ -21,4 +40,4 @@
<permission class="java.net.SocketPermission" name="*" actions="connect,listen"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.apache.jakarta.log4j.xml
===================================================================
--- trunk/core/descriptors/org.apache.jakarta.log4j.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.apache.jakarta.log4j.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.apache.jakarta.log4j"
@@ -23,4 +42,4 @@
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.apache.tools.ant-launcher.xml
===================================================================
--- trunk/core/descriptors/org.apache.tools.ant-launcher.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.apache.tools.ant-launcher.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.apache.tools.ant-launcher"
@@ -17,4 +36,4 @@
<extension point="org.jnode.security.permissions">
<permission class="java.util.PropertyPermission" name="ant.home" actions="read"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.apache.tools.ant.xml
===================================================================
--- trunk/core/descriptors/org.apache.tools.ant.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.apache.tools.ant.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.apache.tools.ant"
@@ -39,4 +58,4 @@
<permission class="org.jnode.permission.JNodePermission" name="getVmClass" actions="*" />
<permission class="java.util.PropertyPermission" name="*" actions="read,write"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.classpath.core.vm.xml
===================================================================
--- trunk/core/descriptors/org.classpath.core.vm.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.core.vm.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="rt.vm"
Modified: trunk/core/descriptors/org.classpath.core.xml
===================================================================
--- trunk/core/descriptors/org.classpath.core.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.core.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="rt"
Modified: trunk/core/descriptors/org.classpath.ext.awt.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.awt.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.awt.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.awt"
Modified: trunk/core/descriptors/org.classpath.ext.corba.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.corba.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.corba.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.corba"
Modified: trunk/core/descriptors/org.classpath.ext.core.vm.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.core.vm.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.core.vm.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.core.vm"
Modified: trunk/core/descriptors/org.classpath.ext.core.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.core.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.core.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.core"
Modified: trunk/core/descriptors/org.classpath.ext.imageio.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.imageio.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.imageio.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.imageio"
Modified: trunk/core/descriptors/org.classpath.ext.jdwp.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.jdwp.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.jdwp.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.jdwp"
Modified: trunk/core/descriptors/org.classpath.ext.management.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.management.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.management.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.management"
Modified: trunk/core/descriptors/org.classpath.ext.print.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.print.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.print.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.print"
Modified: trunk/core/descriptors/org.classpath.ext.security.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.security.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.security.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.security"
Modified: trunk/core/descriptors/org.classpath.ext.sql.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.sql.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.sql.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.sql"
Modified: trunk/core/descriptors/org.classpath.ext.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext"
Modified: trunk/core/descriptors/org.classpath.ext.xml.ws.tools.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.xml.ws.tools.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.xml.ws.tools.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.xml.ws.tools"
Modified: trunk/core/descriptors/org.classpath.ext.xml.ws.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.xml.ws.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.xml.ws.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.xml.ws"
Modified: trunk/core/descriptors/org.classpath.ext.xml.xml
===================================================================
--- trunk/core/descriptors/org.classpath.ext.xml.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.ext.xml.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.ext.xml"
Modified: trunk/core/descriptors/org.classpath.tools.xml
===================================================================
--- trunk/core/descriptors/org.classpath.tools.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.classpath.tools.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<fragment id="org.classpath.tools"
Modified: trunk/core/descriptors/org.jmock.cglib.xml
===================================================================
--- trunk/core/descriptors/org.jmock.cglib.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jmock.cglib.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jmock.cglib"
@@ -18,4 +37,4 @@
<export name="org.jmock.cglib.*"/>
</library>
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.jmock.xml
===================================================================
--- trunk/core/descriptors/org.jmock.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jmock.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jmock"
@@ -22,4 +41,4 @@
<extension point="org.jnode.security.permissions">
<permission class="java.io.FilePermission" name="<<ALL FILES>>" actions="delete"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.jnode.debug.xml
===================================================================
--- trunk/core/descriptors/org.jnode.debug.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.debug.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.debug"
@@ -17,4 +36,4 @@
<permission class="java.net.SocketPermission" name="*" actions="connect,resolve"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.jnode.debugger.xml
===================================================================
--- trunk/core/descriptors/org.jnode.debugger.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.debugger.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.debugger"
@@ -25,4 +44,4 @@
<permission class="org.jnode.permission.JNodePermission" name="getVmThread"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.jnode.driver.bus.firewire.xml
===================================================================
--- trunk/core/descriptors/org.jnode.driver.bus.firewire.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.driver.bus.firewire.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.bus.firewire"
Modified: trunk/core/descriptors/org.jnode.driver.bus.pci.xml
===================================================================
--- trunk/core/descriptors/org.jnode.driver.bus.pci.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.driver.bus.pci.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.bus.pci"
@@ -27,4 +46,4 @@
<permission class="org.jnode.permission.JNodePermission" name="getVmClass"/>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.jnode.driver.bus.pcmcia.xml
===================================================================
--- trunk/core/descriptors/org.jnode.driver.bus.pcmcia.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.driver.bus.pcmcia.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.bus.pcmcia"
Modified: trunk/core/descriptors/org.jnode.driver.bus.smbus.xml
===================================================================
--- trunk/core/descriptors/org.jnode.driver.bus.smbus.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.driver.bus.smbus.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.bus.smbus"
@@ -18,4 +37,4 @@
</runtime>
-</plugin>
\ No newline at end of file
+</plugin>
Modified: trunk/core/descriptors/org.jnode.driver.bus.usb.hub.xml
===================================================================
--- trunk/core/descriptors/org.jnode.driver.bus.usb.hub.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.driver.bus.usb.hub.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.bus.usb.hub"
Modified: trunk/core/descriptors/org.jnode.driver.bus.usb.uhci.xml
===================================================================
--- trunk/core/descriptors/org.jnode.driver.bus.usb.uhci.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.driver.bus.usb.uhci.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.bus.usb.uhci"
Modified: trunk/core/descriptors/org.jnode.driver.bus.usb.xml
===================================================================
--- trunk/core/descriptors/org.jnode.driver.bus.usb.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.driver.bus.usb.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.bus.usb"
Modified: trunk/core/descriptors/org.jnode.driver.character.xml
===================================================================
--- trunk/core/descriptors/org.jnode.driver.character.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.driver.character.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.driver.character"
Modified: trunk/core/descriptors/org.jnode.driver.chipset.i440BX.xml
===================================================================
--- trunk/core/descriptors/org.jnode.driver.chipset.i440BX.xml 2013-02-23 16:41:08 UTC (rev 5977)
+++ trunk/core/descriptors/org.jnode.driver.chipset.i440BX.xml 2013-02-24 17:07:24 UTC (rev 5978)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License...
[truncated message content] |
|
From: <ls...@us...> - 2013-02-23 16:41:20
|
Revision: 5977
http://jnode.svn.sourceforge.net/jnode/?rev=5977&view=rev
Author: lsantha
Date: 2013-02-23 16:41:08 +0000 (Sat, 23 Feb 2013)
Log Message:
-----------
Updated headers.
Modified Paths:
--------------
trunk/cli/build-tests.xml
trunk/cli/build.xml
trunk/cli/descriptors/org.apache.tools.archive.xml
trunk/cli/descriptors/org.jnode.command.archive.xml
trunk/cli/descriptors/org.jnode.command.argument.xml
trunk/cli/descriptors/org.jnode.command.common.xml
trunk/cli/descriptors/org.jnode.command.dev.ant.xml
trunk/cli/descriptors/org.jnode.command.dev.xml
trunk/cli/descriptors/org.jnode.command.file.xml
trunk/cli/descriptors/org.jnode.command.net.xml
trunk/cli/descriptors/org.jnode.command.system.xml
trunk/cli/descriptors/org.jnode.command.util.xml
Modified: trunk/cli/build-tests.xml
===================================================================
--- trunk/cli/build-tests.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/build-tests.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-CLI-Tests" default="all" basedir=".">
<import file="${basedir}/../all/build.xml"/>
Modified: trunk/cli/build.xml
===================================================================
--- trunk/cli/build.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/build.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,3 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<project name="JNode-CoreUtils" default="all" basedir=".">
<typedef file="${basedir}/../all/lib/jnode.xml"/>
Modified: trunk/cli/descriptors/org.apache.tools.archive.xml
===================================================================
--- trunk/cli/descriptors/org.apache.tools.archive.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/descriptors/org.apache.tools.archive.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.apache.tools.archive"
Modified: trunk/cli/descriptors/org.jnode.command.archive.xml
===================================================================
--- trunk/cli/descriptors/org.jnode.command.archive.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/descriptors/org.jnode.command.archive.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.command.archive"
Modified: trunk/cli/descriptors/org.jnode.command.argument.xml
===================================================================
--- trunk/cli/descriptors/org.jnode.command.argument.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/descriptors/org.jnode.command.argument.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.command.argument"
Modified: trunk/cli/descriptors/org.jnode.command.common.xml
===================================================================
--- trunk/cli/descriptors/org.jnode.command.common.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/descriptors/org.jnode.command.common.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.command.common"
Modified: trunk/cli/descriptors/org.jnode.command.dev.ant.xml
===================================================================
--- trunk/cli/descriptors/org.jnode.command.dev.ant.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/descriptors/org.jnode.command.dev.ant.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.command.dev.ant"
Modified: trunk/cli/descriptors/org.jnode.command.dev.xml
===================================================================
--- trunk/cli/descriptors/org.jnode.command.dev.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/descriptors/org.jnode.command.dev.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.command.dev"
Modified: trunk/cli/descriptors/org.jnode.command.file.xml
===================================================================
--- trunk/cli/descriptors/org.jnode.command.file.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/descriptors/org.jnode.command.file.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.command.file"
Modified: trunk/cli/descriptors/org.jnode.command.net.xml
===================================================================
--- trunk/cli/descriptors/org.jnode.command.net.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/descriptors/org.jnode.command.net.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.command.net"
Modified: trunk/cli/descriptors/org.jnode.command.system.xml
===================================================================
--- trunk/cli/descriptors/org.jnode.command.system.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/descriptors/org.jnode.command.system.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.command.system"
Modified: trunk/cli/descriptors/org.jnode.command.util.xml
===================================================================
--- trunk/cli/descriptors/org.jnode.command.util.xml 2013-02-23 16:39:45 UTC (rev 5976)
+++ trunk/cli/descriptors/org.jnode.command.util.xml 2013-02-23 16:41:08 UTC (rev 5977)
@@ -1,4 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ $Id$
+
+ Copyright (C) 2003-2013 JNode.org
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; If not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+-->
<!DOCTYPE plugin SYSTEM "jnode.dtd">
<plugin id="org.jnode.command.util"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|