Changeset 53

Show
Ignore:
Timestamp:
07/08/04 01:51:57
Author:
DenisG
Message:

[SubversionSharp] Apply LGPL licence, may be relaxed later.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/SubversionSharp/dev/src/AssemblyInfo.cs

    r2 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
     
    1935// you compile. 
    2036 
    21 [assembly: AssemblyTitle("Wrapper classes for Subversion")] 
    22 [assembly: AssemblyDescription("Encapsulate Subversion client public API")] 
     37[assembly: AssemblyTitle("SubversionSharp, a Subversion client API wrapper")] 
     38[assembly: AssemblyDescription("A C# wrapper library around the Subversion client API")] 
    2339[assembly: AssemblyConfiguration("")] 
    2440[assembly: AssemblyCompany("SOFTEC sa")] 
    2541[assembly: AssemblyProduct("SubversionSharp")] 
    26 [assembly: AssemblyCopyright("Copyright 2004 by SOFTEC. All rights reserved.")] 
     42[assembly: AssemblyCopyright( 
     43@"  Copyright 2004 by SOFTEC sa 
     44 
     45  This library is free software; you can redistribute it and/or 
     46  modify it under the terms of the GNU Lesser General Public 
     47  License as published by the Free Software Foundation; either 
     48  version 2.1 of the License, or (at your option) any later version. 
     49 
     50  This library is distributed in the hope that it will be useful, 
     51  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     52  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     53  Lesser General Public License for more details. 
     54 
     55  You should have received a copy of the GNU Lesser General Public 
     56  License along with this library; if not, write to the Free Software 
     57  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA")] 
    2758[assembly: AssemblyTrademark("")] 
    2859[assembly: AssemblyCulture("")] 
  • trunk/SubversionSharp/dev/src/Svn.cs

    r50 r53  
    1 // 
    2 // Softec 
    3 // 
    4 // Contact: Support@softec.st 
    5 // 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
    8 // 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
     3// 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
     8// 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
     13// 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     17// 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnAuthBaton.cs

    r46 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnAuthCred.cs

    r50 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnAuthProvider.cs

    r46 r53  
    1 // 
    2 // Softec 
    3 // 
    4 // Contact: Support@softec.st 
    5 // 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
    8 // 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
     3// 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
     8// 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
     13// 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     17// 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnAuthSslServerCertInfo.cs

    r46 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnClient.cs

    r50 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnClientBase.cs

    r50 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnClientCommitInfo.cs

    r46 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnClientCommitItem.cs

    r50 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnClientContext.cs

    r46 r53  
    1 // 
    2 // Softec 
    3 // 
    4 // Contact: Support@softec.st 
    5 // 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
    8 // 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
     3// 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
     8// 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
     13// 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     17// 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnClientPropListItem.cs

    r46 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnConfig.cs

    r50 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnDelegate.cs

    r50 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnDirEnt.cs

    r46 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnError.cs

    r46 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnException.cs

    r18 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
    1022// 
    11  
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
     26// 
    1227using System; 
    1328using System.Runtime.Serialization; 
  • trunk/SubversionSharp/dev/src/SvnNullReferenceException.cs

    r31 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
    1022// 
    11  
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
     26// 
    1227using System; 
    1328using System.Runtime.Serialization; 
  • trunk/SubversionSharp/dev/src/SvnOptRevision.cs

    r46 r53  
    1 // 
    2 // Softec 
    3 // 
    4 // Contact: Support@softec.st 
    5 // 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
    8 // 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
     3// 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
     8// 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
     13// 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     17// 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnPath.cs

    r50 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnStream.cs

    r46 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnString.cs

    r46 r53  
    1 // 
    2 // Softec 
    3 // 
    4 // Contact: Support@softec.st 
    5 // 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
    8 // 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
     3// 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
     8// 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
     13// 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     17// 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnStringBuf.cs

    r46 r53  
    1 // 
    2 // Softec 
    3 // 
    4 // Contact: Support@softec.st 
    5 // 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
    8 // 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
     3// 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
     8// 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
     13// 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     17// 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnUrl.cs

    r50 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnWcEntry.cs

    r50 r53  
    1 // 
    2 // Softec 
    3 // 
    4 // Contact: Support@softec.st 
    5 // 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
    8 // 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
     3// 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
     8// 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
     13// 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     17// 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnWcNotify.cs

    r50 r53  
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
    13// 
    2 // Softec 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
    38// 
    4 // Contact: Support@softec.st 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
    513// 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    817// 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System; 
  • trunk/SubversionSharp/dev/src/SvnWcStatus.cs

    r50 r53  
    1 // 
    2 // Softec 
    3 // 
    4 // Contact: Support@softec.st 
    5 // 
    6 // Designed by Denis Gervalle and Olivier Desaive 
    7 // Written by Denis Gervalle 
    8 // 
    9 // Copyright 2004 by SOFTEC. All rights reserved. 
     1//  SubversionSharp, a wrapper library around the Subversion client API 
     2//  Copyright (C) 2004 SOFTEC sa. 
     3// 
     4//  This library is free software; you can redistribute it and/or 
     5//  modify it under the terms of the GNU Lesser General Public 
     6//  License as published by the Free Software Foundation; either 
     7//  version 2.1 of the License, or (at your option) any later version. 
     8// 
     9//  This library is distributed in the hope that it will be useful, 
     10//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     11//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
     12//  Lesser General Public License for more details. 
     13// 
     14//  You should have received a copy of the GNU Lesser General Public 
     15//  License along with this library; if not, write to the Free Software 
     16//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     17// 
     18//  Sources, support options and lastest version of the complete library 
     19//  is available from: 
     20//      http://www.softec.st/SubversionSharp 
     21//      Support@softec.st 
     22// 
     23//  Initial authors :  
     24//      Denis Gervalle 
     25//      Olivier Desaive 
    1026// 
    1127using System;