Skip to content

Commit

Permalink
Adding headers to missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmpp committed Mar 7, 2024
1 parent dfe79e3 commit 97712d7
Show file tree
Hide file tree
Showing 17 changed files with 356 additions and 16 deletions.
37 changes: 22 additions & 15 deletions scalastyle-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,28 @@
</check>
<check level="warning" class="org.scalastyle.file.HeaderMatchesChecker" enabled="true">
<parameters>
<parameter name="header"><![CDATA[// Copyright (C) 2011-2012 the original author or authors.
// See the LICENCE.txt file distributed with this work for additional
// information regarding copyright ownership.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.]]></parameter>
<parameter name="header"><![CDATA[/* *\
* ____ ____ ___ __ *
* / __ \____ ___ ____ / __ \/ (_) /_____ _____ *
* / / / / __ \/ _ \/ __ \/ / / / / / __/ __ \/ ___/ OpenOlitor *
* / /_/ / /_/ / __/ / / / /_/ / / / /_/ /_/ / / contributed by tegonal *
* \____/ .___/\___/_/ /_/\____/_/_/\__/\____/_/ http://openolitor.ch *
* /_/ *
* *
* This program is free software: you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, *
* or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *
* more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program. If not, see http://www.gnu.org/licenses/ *
* *
\* */]]></parameter>
</parameters>
</check>
<check level="warning" class="org.scalastyle.scalariform.SpacesAfterPlusChecker" enabled="true"></check>
Expand Down
22 changes: 22 additions & 0 deletions src/main/scala/ch/openolitor/core/ExecutionContextAware.scala
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/* *\
* ____ ____ ___ __ *
* / __ \____ ___ ____ / __ \/ (_) /_____ _____ *
* / / / / __ \/ _ \/ __ \/ / / / / / __/ __ \/ ___/ OpenOlitor *
* / /_/ / /_/ / __/ / / / /_/ / / / /_/ /_/ / / contributed by tegonal *
* \____/ .___/\___/_/ /_/\____/_/_/\__/\____/_/ http://openolitor.ch *
* /_/ *
* *
* This program is free software: you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, *
* or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *
* more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program. If not, see http://www.gnu.org/licenses/ *
* *
\* */
package ch.openolitor.core

import scala.concurrent.ExecutionContext
Expand Down
22 changes: 22 additions & 0 deletions src/main/scala/ch/openolitor/core/FileStoreReference.scala
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/* *\
* ____ ____ ___ __ *
* / __ \____ ___ ____ / __ \/ (_) /_____ _____ *
* / / / / __ \/ _ \/ __ \/ / / / / / __/ __ \/ ___/ OpenOlitor *
* / /_/ / /_/ / __/ / / / /_/ / / / /_/ /_/ / / contributed by tegonal *
* \____/ .___/\___/_/ /_/\____/_/_/\__/\____/_/ http://openolitor.ch *
* /_/ *
* *
* This program is free software: you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, *
* or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *
* more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program. If not, see http://www.gnu.org/licenses/ *
* *
\* */
package ch.openolitor.core

import ch.openolitor.core.filestore.FileStore
Expand Down
22 changes: 22 additions & 0 deletions src/main/scala/ch/openolitor/core/StartingServices.scala
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/* *\
* ____ ____ ___ __ *
* / __ \____ ___ ____ / __ \/ (_) /_____ _____ *
* / / / / __ \/ _ \/ __ \/ / / / / / __/ __ \/ ___/ OpenOlitor *
* / /_/ / /_/ / __/ / / / /_/ / / / /_/ /_/ / / contributed by tegonal *
* \____/ .___/\___/_/ /_/\____/_/_/\__/\____/_/ http://openolitor.ch *
* /_/ *
* *
* This program is free software: you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, *
* or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *
* more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program. If not, see http://www.gnu.org/licenses/ *
* *
\* */
package ch.openolitor.core

import akka.actor.{ ActorRef, ActorSystem }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/* *\
* ____ ____ ___ __ *
* / __ \____ ___ ____ / __ \/ (_) /_____ _____ *
* / / / / __ \/ _ \/ __ \/ / / / / / __/ __ \/ ___/ OpenOlitor *
* / /_/ / /_/ / __/ / / / /_/ / / / /_/ /_/ / / contributed by tegonal *
* \____/ .___/\___/_/ /_/\____/_/_/\__/\____/_/ http://openolitor.ch *
* /_/ *
* *
* This program is free software: you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, *
* or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *
* more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program. If not, see http://www.gnu.org/licenses/ *
* *
\* */
package ch.openolitor.core.db.evolution.scripts.v2

import ch.openolitor.core.SystemConfig
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* *
* This program is free software: you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either versiON 3 of the License, *
* the Free Software Foundation, either version 3 of the License, *
* or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/* *\
* ____ ____ ___ __ *
* / __ \____ ___ ____ / __ \/ (_) /_____ _____ *
* / / / / __ \/ _ \/ __ \/ / / / / / __/ __ \/ ___/ OpenOlitor *
* / /_/ / /_/ / __/ / / / /_/ / / / /_/ /_/ / / contributed by tegonal *
* \____/ .___/\___/_/ /_/\____/_/_/\__/\____/_/ http://openolitor.ch *
* /_/ *
* *
* This program is free software: you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, *
* or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *
* more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program. If not, see http://www.gnu.org/licenses/ *
* *
\* */
package ch.openolitor.core.security

import akka.http.scaladsl.model.headers.{ BasicHttpCredentials, HttpChallenges }
Expand Down
22 changes: 22 additions & 0 deletions src/main/scala/ch/openolitor/core/security/LoginService.scala
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/* *\
* ____ ____ ___ __ *
* / __ \____ ___ ____ / __ \/ (_) /_____ _____ *
* / / / / __ \/ _ \/ __ \/ / / / / / __/ __ \/ ___/ OpenOlitor *
* / /_/ / /_/ / __/ / / / /_/ / / / /_/ /_/ / / contributed by tegonal *
* \____/ .___/\___/_/ /_/\____/_/_/\__/\____/_/ http://openolitor.ch *
* /_/ *
* *
* This program is free software: you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, *
* or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *
* more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program. If not, see http://www.gnu.org/licenses/ *
* *
\* */
package ch.openolitor.core.security

import akka.http.caching.scaladsl.{Cache, CachingSettings}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/* *\
* ____ ____ ___ __ *
* / __ \____ ___ ____ / __ \/ (_) /_____ _____ *
* / / / / __ \/ _ \/ __ \/ / / / / / __/ __ \/ ___/ OpenOlitor *
* / /_/ / /_/ / __/ / / / /_/ / / / /_/ /_/ / / contributed by tegonal *
* \____/ .___/\___/_/ /_/\____/_/_/\__/\____/_/ http://openolitor.ch *
* /_/ *
* *
* This program is free software: you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, *
* or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *
* more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program. If not, see http://www.gnu.org/licenses/ *
* *
\* */
package ch.openolitor.core.ws

import akka.actor.{ ActorRef, ActorSystem }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/* *\
* ____ ____ ___ __ *
* / __ \____ ___ ____ / __ \/ (_) /_____ _____ *
* / / / / __ \/ _ \/ __ \/ / / / / / __/ __ \/ ___/ OpenOlitor *
* / /_/ / /_/ / __/ / / / /_/ / / / /_/ /_/ / / contributed by tegonal *
* \____/ .___/\___/_/ /_/\____/_/_/\__/\____/_/ http://openolitor.ch *
* /_/ *
* *
* This program is free software: you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, *
* or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *
* more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program. If not, see http://www.gnu.org/licenses/ *
* *
\* */
package ch.openolitor.mailtemplates

import akka.actor.ActorSystem
Expand Down
Loading

0 comments on commit 97712d7

Please sign in to comment.