Changeset 53
- Timestamp:
- 07/08/04 01:51:57
- Files:
-
- trunk/SubversionSharp/dev/src/AssemblyInfo.cs (modified) (2 diffs)
- trunk/SubversionSharp/dev/src/Svn.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnAuthBaton.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnAuthCred.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnAuthProvider.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnAuthSslServerCertInfo.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnClient.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnClientBase.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnClientCommitInfo.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnClientCommitItem.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnClientContext.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnClientPropListItem.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnConfig.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnDelegate.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnDirEnt.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnError.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnException.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnNullReferenceException.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnOptRevision.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnPath.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnStream.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnString.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnStringBuf.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnUrl.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnWcEntry.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnWcNotify.cs (modified) (1 diff)
- trunk/SubversionSharp/dev/src/SvnWcStatus.cs (modified) (1 diff)
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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using System; … … 19 35 // you compile. 20 36 21 [assembly: AssemblyTitle(" Wrapper classes for Subversion")]22 [assembly: AssemblyDescription(" Encapsulate Subversion client publicAPI")]37 [assembly: AssemblyTitle("SubversionSharp, a Subversion client API wrapper")] 38 [assembly: AssemblyDescription("A C# wrapper library around the Subversion client API")] 23 39 [assembly: AssemblyConfiguration("")] 24 40 [assembly: AssemblyCompany("SOFTEC sa")] 25 41 [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")] 27 58 [assembly: AssemblyTrademark("")] 28 59 [assembly: AssemblyCulture("")] trunk/SubversionSharp/dev/src/Svn.cs
r50 r53 1 // 2 // Softec 3 // 4 // Contact: 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using System; trunk/SubversionSharp/dev/src/SvnAuthProvider.cs
r46 r53 1 // 2 // Softec 3 // 4 // Contact: 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using System; trunk/SubversionSharp/dev/src/SvnClientContext.cs
r46 r53 1 // 2 // Softec 3 // 4 // Contact: 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 10 22 // 11 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 26 // 12 27 using System; 13 28 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 10 22 // 11 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 26 // 12 27 using System; 13 28 using System.Runtime.Serialization; trunk/SubversionSharp/dev/src/SvnOptRevision.cs
r46 r53 1 // 2 // Softec 3 // 4 // Contact: 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using System; trunk/SubversionSharp/dev/src/SvnString.cs
r46 r53 1 // 2 // Softec 3 // 4 // Contact: 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using System; trunk/SubversionSharp/dev/src/SvnStringBuf.cs
r46 r53 1 // 2 // Softec 3 // 4 // Contact: 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using System; trunk/SubversionSharp/dev/src/SvnWcEntry.cs
r50 r53 1 // 2 // Softec 3 // 4 // Contact: 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using 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. 1 3 // 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. 3 8 // 4 // Contact: 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. 5 13 // 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 8 17 // 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using System; trunk/SubversionSharp/dev/src/SvnWcStatus.cs
r50 r53 1 // 2 // Softec 3 // 4 // Contact: 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 // 22 // 23 // Initial authors : 24 // Denis Gervalle 25 // Olivier Desaive 10 26 // 11 27 using System;