Skip to content

Commit da415d1

Browse files
committed
updated to latest changes
1 parent e712402 commit da415d1

30 files changed

+840
-1061
lines changed

LICENSE

+174-338
Large diffs are not rendered by default.

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,4 @@ See a real live YAF Forum by visiting the Yet Another Forum.NET community suppor
4040

4141
## License
4242

43-
[Yet Another Forum.NET is licensed under GPLv2](http://yetanotherforum.net/License.aspx).
44-
If this license does not fit your business, [please visit our site](http://yetanotherforum.net/purchase.aspx).
43+
Yet Another Forum.NET is licensed under the Apache 2.0 license.

yaf_dnn/Components/Controllers/Data.cs

+18-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
/* Yet Another Forum.NET
2+
* Copyright (C) 2003-2005 Bjørnar Henden
23
* Copyright (C) 2006-2013 Jaben Cargman
4+
* Copyright (C) 2014 Ingo Herbote
35
* http://www.yetanotherforum.net/
46
*
5-
* This program is free software; you can redistribute it and/or
6-
* modify it under the terms of the GNU General Public License
7-
* as published by the Free Software Foundation; either version 2
8-
* of the License, or (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7+
* Licensed to the Apache Software Foundation (ASF) under one
8+
* or more contributor license agreements. See the NOTICE file
9+
* distributed with this work for additional information
10+
* regarding copyright ownership. The ASF licenses this file
11+
* to you under the Apache License, Version 2.0 (the
12+
* "License"); you may not use this file except in compliance
13+
* with the License. You may obtain a copy of the License at
14+
15+
* http://www.apache.org/licenses/LICENSE-2.0
16+
17+
* Unless required by applicable law or agreed to in writing,
18+
* software distributed under the License is distributed on an
19+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20+
* KIND, either express or implied. See the License for the
21+
* specific language governing permissions and limitations
22+
* under the License.
1823
*/
1924

2025
namespace YAF.DotNetNuke.Components.Controllers

yaf_dnn/Components/Controllers/Profile.cs

+18-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
/* Yet Another Forum.NET
2+
* Copyright (C) 2003-2005 Bjørnar Henden
23
* Copyright (C) 2006-2013 Jaben Cargman
4+
* Copyright (C) 2014 Ingo Herbote
35
* http://www.yetanotherforum.net/
46
*
5-
* This program is free software; you can redistribute it and/or
6-
* modify it under the terms of the GNU General Public License
7-
* as published by the Free Software Foundation; either version 2
8-
* of the License, or (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7+
* Licensed to the Apache Software Foundation (ASF) under one
8+
* or more contributor license agreements. See the NOTICE file
9+
* distributed with this work for additional information
10+
* regarding copyright ownership. The ASF licenses this file
11+
* to you under the Apache License, Version 2.0 (the
12+
* "License"); you may not use this file except in compliance
13+
* with the License. You may obtain a copy of the License at
14+
15+
* http://www.apache.org/licenses/LICENSE-2.0
16+
17+
* Unless required by applicable law or agreed to in writing,
18+
* software distributed under the License is distributed on an
19+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20+
* KIND, either express or implied. See the License for the
21+
* specific language governing permissions and limitations
22+
* under the License.
1823
*/
1924

2025
namespace YAF.DotNetNuke.Components.Controllers

yaf_dnn/Components/Controllers/Search.cs

+18-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
/* Yet Another Forum.NET
2+
* Copyright (C) 2003-2005 Bjørnar Henden
23
* Copyright (C) 2006-2013 Jaben Cargman
4+
* Copyright (C) 2014 Ingo Herbote
35
* http://www.yetanotherforum.net/
46
*
5-
* This program is free software; you can redistribute it and/or
6-
* modify it under the terms of the GNU General Public License
7-
* as published by the Free Software Foundation; either version 2
8-
* of the License, or (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7+
* Licensed to the Apache Software Foundation (ASF) under one
8+
* or more contributor license agreements. See the NOTICE file
9+
* distributed with this work for additional information
10+
* regarding copyright ownership. The ASF licenses this file
11+
* to you under the Apache License, Version 2.0 (the
12+
* "License"); you may not use this file except in compliance
13+
* with the License. You may obtain a copy of the License at
14+
15+
* http://www.apache.org/licenses/LICENSE-2.0
16+
17+
* Unless required by applicable law or agreed to in writing,
18+
* software distributed under the License is distributed on an
19+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20+
* KIND, either express or implied. See the License for the
21+
* specific language governing permissions and limitations
22+
* under the License.
1823
*/
1924

2025
namespace YAF.DotNetNuke.Components.Controllers

yaf_dnn/Components/Integration/DnnRichEditor.cs

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
1-
/* YetAnotherForum.NET
1+
/* Yet Another Forum.NET
2+
* Copyright (C) 2003-2005 Bjørnar Henden
23
* Copyright (C) 2006-2013 Jaben Cargman
4+
* Copyright (C) 2014 Ingo Herbote
35
* http://www.yetanotherforum.net/
46
*
5-
* This program is free software; you can redistribute it and/or
6-
* modify it under the terms of the GNU General Public License
7-
* as published by the Free Software Foundation; either version 2
8-
* of the License, or (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7+
* Licensed to the Apache Software Foundation (ASF) under one
8+
* or more contributor license agreements. See the NOTICE file
9+
* distributed with this work for additional information
10+
* regarding copyright ownership. The ASF licenses this file
11+
* to you under the Apache License, Version 2.0 (the
12+
* "License"); you may not use this file except in compliance
13+
* with the License. You may obtain a copy of the License at
14+
15+
* http://www.apache.org/licenses/LICENSE-2.0
16+
17+
* Unless required by applicable law or agreed to in writing,
18+
* software distributed under the License is distributed on an
19+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20+
* KIND, either express or implied. See the License for the
21+
* specific language governing permissions and limitations
22+
* under the License.
1823
*/
1924

2025
namespace YAF.Editors

yaf_dnn/Components/Integration/Journal.cs

+18-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
/* Yet Another Forum.NET
2+
* Copyright (C) 2003-2005 Bjørnar Henden
23
* Copyright (C) 2006-2013 Jaben Cargman
4+
* Copyright (C) 2014 Ingo Herbote
35
* http://www.yetanotherforum.net/
46
*
5-
* This program is free software; you can redistribute it and/or
6-
* modify it under the terms of the GNU General Public License
7-
* as published by the Free Software Foundation; either version 2
8-
* of the License, or (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7+
* Licensed to the Apache Software Foundation (ASF) under one
8+
* or more contributor license agreements. See the NOTICE file
9+
* distributed with this work for additional information
10+
* regarding copyright ownership. The ASF licenses this file
11+
* to you under the Apache License, Version 2.0 (the
12+
* "License"); you may not use this file except in compliance
13+
* with the License. You may obtain a copy of the License at
14+
15+
* http://www.apache.org/licenses/LICENSE-2.0
16+
17+
* Unless required by applicable law or agreed to in writing,
18+
* software distributed under the License is distributed on an
19+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20+
* KIND, either express or implied. See the License for the
21+
* specific language governing permissions and limitations
22+
* under the License.
1823
*/
1924

2025
namespace YAF.DotNetNuke.Components.Integration

yaf_dnn/Components/Integration/SendMail.cs

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
1-
/* Yet Another Forum.net
1+
/* Yet Another Forum.NET
2+
* Copyright (C) 2003-2005 Bjørnar Henden
23
* Copyright (C) 2006-2013 Jaben Cargman
4+
* Copyright (C) 2014 Ingo Herbote
35
* http://www.yetanotherforum.net/
46
*
5-
* This program is free software; you can redistribute it and/or
6-
* modify it under the terms of the GNU General Public License
7-
* as published by the Free Software Foundation; either version 2
8-
* of the License, or (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7+
* Licensed to the Apache Software Foundation (ASF) under one
8+
* or more contributor license agreements. See the NOTICE file
9+
* distributed with this work for additional information
10+
* regarding copyright ownership. The ASF licenses this file
11+
* to you under the Apache License, Version 2.0 (the
12+
* "License"); you may not use this file except in compliance
13+
* with the License. You may obtain a copy of the License at
14+
15+
* http://www.apache.org/licenses/LICENSE-2.0
16+
17+
* Unless required by applicable law or agreed to in writing,
18+
* software distributed under the License is distributed on an
19+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20+
* KIND, either express or implied. See the License for the
21+
* specific language governing permissions and limitations
22+
* under the License.
1823
*/
1924

2025
namespace YAF.DotNetNuke.Components.Integration

yaf_dnn/Components/Objects/ForumAccess.cs

+18-14
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
/* Yet Another Forum.NET
2+
* Copyright (C) 2003-2005 Bjørnar Henden
23
* Copyright (C) 2006-2013 Jaben Cargman
4+
* Copyright (C) 2014 Ingo Herbote
35
* http://www.yetanotherforum.net/
46
*
5-
* This program is free software; you can redistribute it and/or
6-
* modify it under the terms of the GNU General Public License
7-
* as published by the Free Software Foundation; either version 2
8-
* of the License, or (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18-
*/
7+
* Licensed to the Apache Software Foundation (ASF) under one
8+
* or more contributor license agreements. See the NOTICE file
9+
* distributed with this work for additional information
10+
* regarding copyright ownership. The ASF licenses this file
11+
* to you under the Apache License, Version 2.0 (the
12+
* "License"); you may not use this file except in compliance
13+
* with the License. You may obtain a copy of the License at
1914
15+
* http://www.apache.org/licenses/LICENSE-2.0
16+
17+
* Unless required by applicable law or agreed to in writing,
18+
* software distributed under the License is distributed on an
19+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20+
* KIND, either express or implied. See the License for the
21+
* specific language governing permissions and limitations
22+
* under the License.
23+
*/
2024
namespace YAF.DotNetNuke.Components.Objects
2125
{
2226
using YAF.Types.Flags;

yaf_dnn/Components/Objects/Messages.cs

+18-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
/* Yet Another Forum.NET
2+
* Copyright (C) 2003-2005 Bjørnar Henden
23
* Copyright (C) 2006-2013 Jaben Cargman
4+
* Copyright (C) 2014 Ingo Herbote
35
* http://www.yetanotherforum.net/
46
*
5-
* This program is free software; you can redistribute it and/or
6-
* modify it under the terms of the GNU General Public License
7-
* as published by the Free Software Foundation; either version 2
8-
* of the License, or (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7+
* Licensed to the Apache Software Foundation (ASF) under one
8+
* or more contributor license agreements. See the NOTICE file
9+
* distributed with this work for additional information
10+
* regarding copyright ownership. The ASF licenses this file
11+
* to you under the Apache License, Version 2.0 (the
12+
* "License"); you may not use this file except in compliance
13+
* with the License. You may obtain a copy of the License at
14+
15+
* http://www.apache.org/licenses/LICENSE-2.0
16+
17+
* Unless required by applicable law or agreed to in writing,
18+
* software distributed under the License is distributed on an
19+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20+
* KIND, either express or implied. See the License for the
21+
* specific language governing permissions and limitations
22+
* under the License.
1823
*/
1924

2025
namespace YAF.DotNetNuke.Components.Objects

yaf_dnn/Components/Objects/Topics.cs

+18-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
/* Yet Another Forum.NET
2+
* Copyright (C) 2003-2005 Bjørnar Henden
23
* Copyright (C) 2006-2013 Jaben Cargman
4+
* Copyright (C) 2014 Ingo Herbote
35
* http://www.yetanotherforum.net/
46
*
5-
* This program is free software; you can redistribute it and/or
6-
* modify it under the terms of the GNU General Public License
7-
* as published by the Free Software Foundation; either version 2
8-
* of the License, or (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7+
* Licensed to the Apache Software Foundation (ASF) under one
8+
* or more contributor license agreements. See the NOTICE file
9+
* distributed with this work for additional information
10+
* regarding copyright ownership. The ASF licenses this file
11+
* to you under the Apache License, Version 2.0 (the
12+
* "License"); you may not use this file except in compliance
13+
* with the License. You may obtain a copy of the License at
14+
15+
* http://www.apache.org/licenses/LICENSE-2.0
16+
17+
* Unless required by applicable law or agreed to in writing,
18+
* software distributed under the License is distributed on an
19+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20+
* KIND, either express or implied. See the License for the
21+
* specific language governing permissions and limitations
22+
* under the License.
1823
*/
1924

2025
namespace YAF.DotNetNuke.Components.Objects

0 commit comments

Comments
 (0)