Skip to content

Commit

Permalink
SAK-32521 Fix the oauth admin tool. (sakaiproject#4454)
Browse files Browse the repository at this point in the history
* SAK-32521 Remove execute permission from files.

Lots of the files in the oauth directory incorrectly had execute permission on them.

* SAK-32521 Fix so that the oauth admin tool works.

This looks to be a bit of a hack, but it means that the standard portal URL gets redirected to one with a trailing slash that then allows the portal to work correctly.
  • Loading branch information
buckett authored Jun 8, 2017
1 parent e8028b2 commit 0cab6f7
Show file tree
Hide file tree
Showing 62 changed files with 6 additions and 0 deletions.
Empty file modified oauth/README.md
100755 → 100644
Empty file.
Empty file modified oauth/api/pom.xml
100755 → 100644
Empty file.
Empty file modified oauth/api/src/java/org/sakaiproject/oauth/dao/AccessorDao.java
100755 → 100644
Empty file.
Empty file modified oauth/api/src/java/org/sakaiproject/oauth/dao/ConsumerDao.java
100755 → 100644
Empty file.
Empty file modified oauth/api/src/java/org/sakaiproject/oauth/domain/Accessor.java
100755 → 100644
Empty file.
Empty file modified oauth/api/src/java/org/sakaiproject/oauth/domain/Consumer.java
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified oauth/dao-hbm/pom.xml
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified oauth/impl/pom.xml
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified oauth/impl/src/java/org/sakaiproject/oauth/service/Util.java
100755 → 100644
Empty file.
Empty file modified oauth/impl/src/webapp/WEB-INF/components.xml
100755 → 100644
Empty file.
Empty file modified oauth/pom.xml
100755 → 100644
Empty file.
Empty file modified oauth/tool/pom.xml
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified oauth/tool/src/webapp/WEB-INF/applicationContext.xml
100755 → 100644
Empty file.
Empty file modified oauth/tool/src/webapp/WEB-INF/tools/sakai.oauth.admin.xml
100755 → 100644
Empty file.
6 changes: 6 additions & 0 deletions oauth/tool/src/webapp/WEB-INF/web.xml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@
<param-name>applicationClassName</param-name>
<param-value>org.sakaiproject.oauth.tool.admin.OauthAdminApplication</param-value>
</init-param>
<!-- This gets the initial URL to the tool that doesn't include a trailing slash redirected to
the same URL with a trailing slash. Seems like a bit of a quirk, but it works. -->
<init-param>
<param-name>filterMappingUrlPattern</param-name>
<param-value>/*</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
Expand Down
Empty file modified oauth/tool/src/webapp/authorise.jsp
100755 → 100644
Empty file.

0 comments on commit 0cab6f7

Please sign in to comment.