Skip to content

Commit

Permalink
update structure
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegDokuka committed Jul 24, 2015
1 parent db1133b commit 488df16
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 48 deletions.
6 changes: 4 additions & 2 deletions docs/getting-started/design/content-media-api.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Content - Media API
===================
.. include:: /common/stub-topic.txt

|stub-icon| Content - Media API
===============================

8 changes: 8 additions & 0 deletions docs/tag-engine/pager.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.. include:: /common/stub-topic.txt

|stub-icon| Pager Tag
=====================




8 changes: 8 additions & 0 deletions docs/tag-engine/search.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.. include:: /common/stub-topic.txt

|stub-icon| Search Tag
======================




4 changes: 1 addition & 3 deletions src/main/java/com/imcode/imcms/servlet/tags/SearchTag.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,7 @@ public int doEndTag() throws JspException {
String bodyContentString = null != getBodyContent() ? getBodyContent().getString() : "";
bodyContent = null;
pageContext.getOut().write(bodyContentString);
} catch (IOException e) {
throw new JspException(e);
} catch (RuntimeException e) {
} catch (IOException | RuntimeException e) {
throw new JspException(e);
}
return EVAL_PAGE;
Expand Down
36 changes: 0 additions & 36 deletions src/main/java/com/imcode/imcms/servlet/tags/SubMenuTag.java

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/java/com/imcode/imcms/servlet/tags/User.java

This file was deleted.

0 comments on commit 488df16

Please sign in to comment.