Skip to content

Commit

Permalink
Issue OneBusAway#366: Fixed licences
Browse files Browse the repository at this point in the history
  • Loading branch information
AngeloAvv committed Sep 8, 2024
1 parent bb8944f commit 16d72e1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ public class StopsForAgencyIdController {
@RequestMapping()
public ModelAndView index(@RequestParam String agencyId) {
StopsBean stops = _service.getStopsForAgencyId(agencyId);
return new ModelAndView("stops-for-agency-id.jspx", "stops", stops);
return new ModelAndView("stops-for-agency-id.jsp", "stops", stops);
}
}
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
<%--
Copyright (C) 2011 Brian Ferris <[email protected]>
Copyright (C) 2011 Brian Ferris <[email protected]>
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
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
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.
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.
-->
--%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<jsp:directive.page contentType="text/html" />
Expand All @@ -27,4 +27,4 @@ limitations under the License.
<value>${stop.name}</value>
</c:forEach>
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* Copyright (C) 2024 Angelo Cassano
* <p>
*
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
*
* 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.
Expand Down

0 comments on commit 16d72e1

Please sign in to comment.