Skip to content

Commit c188c1a

Browse files
bugfix
1 parent 08250e2 commit c188c1a

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

src/main/java/org/woehlke/twitterwall/frontend/controller/CountedEntitiesController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@RequestMapping(path="/application/countedEntities")
1515
public class CountedEntitiesController {
1616

17-
private final static String PATH="/application/countedEntities";
17+
private final static String PATH="application/countedEntities";
1818

1919

2020
@RequestMapping(path="/tweet/hashtag")
@@ -93,7 +93,7 @@ private void setUpThisPage(String title,Model model){
9393
String symbol = Symbols.DATABASE.toString();
9494
model = controllerHelper.setupPage(model,title,subtitle,symbol);
9595
}
96-
96+
9797

9898
@Autowired
9999
public CountedEntitiesController(ControllerHelper controllerHelper) {

src/main/java/org/woehlke/twitterwall/frontend/controller/DomainController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public String domainCount(Model model) {
2727
model = controllerHelper.setupPage(model,title,subtitle,symbol);
2828
CountedEntities countedEntities =this.countedEntitiesService.countAll();
2929
model.addAttribute("countedEntities", countedEntities);
30-
return "/application/domain/count";
30+
return "application/domain/count";
3131
}
3232

3333
private final CountedEntitiesService countedEntitiesService;

src/main/java/org/woehlke/twitterwall/frontend/controller/MediaController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public String getAll(@RequestParam(name= "page" ,defaultValue=""+ ControllerHelp
3434
Pageable pageRequest = new PageRequest(page, twitterwallFrontendProperties.getPageSize(), Sort.Direction.ASC,"url");
3535
Page<Media> myPageContent = mediaService.getAll(pageRequest);
3636
model.addAttribute("myPageContent",myPageContent);
37-
return "/media/all";
37+
return "media/all";
3838
}
3939

4040
private final MediaService mediaService;

src/main/java/org/woehlke/twitterwall/frontend/controller/MentionController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public String getAll(@RequestParam(name= "page" ,defaultValue=""+ ControllerHelp
3333
Pageable pageRequest = new PageRequest(page, twitterwallFrontendProperties.getPageSize(), Sort.Direction.ASC,"screenName");
3434
Page<Mention> myPageContent = mentionService.getAll(pageRequest);
3535
model.addAttribute("myPageContent",myPageContent);
36-
return "/mention/all";
36+
return "mention/all";
3737
}
3838

3939
private final TwitterwallFrontendProperties twitterwallFrontendProperties;

src/main/java/org/woehlke/twitterwall/frontend/controller/TaskHistoryController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
@RequestMapping(path="/taskhistory")
2424
public class TaskHistoryController {
2525

26-
private final static String PATH="/taskhistory";
26+
private final static String PATH="taskhistory";
2727

2828
@RequestMapping(path="/all")
2929
public String getAll(@RequestParam(name= "page" ,defaultValue=""+ ControllerHelper.FIRST_PAGE_NUMBER) int page, Model model){

src/main/java/org/woehlke/twitterwall/frontend/controller/TestController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public String getTestData(Model model) {
4141
model.addAttribute("latestTweets",null);
4242
model.addAttribute("users",null);
4343
}
44-
return "/test/getTestData";
44+
return "test/getTestData";
4545
}
4646

4747
@RequestMapping("/user/onlist/renew")
@@ -56,7 +56,7 @@ public String getOnListRenew(@RequestParam(name= "page" ,defaultValue=""+ Contro
5656
String symbol = Symbols.LEAF.toString();
5757
String title = "Renew List of Users On List";
5858
model = controllerHelper.setupPage(model, title, "Users", symbol);
59-
return "/test/user/onlist/renew";
59+
return "test/user/onlist/renew";
6060
}
6161

6262
private static final Logger log = LoggerFactory.getLogger(TestController.class);

src/main/java/org/woehlke/twitterwall/frontend/controller/TickerSymbolController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
@RequestMapping("/tickersymbol")
2424
public class TickerSymbolController {
2525

26-
private final static String PATH="/tickersymbol";
26+
private final static String PATH="tickersymbol";
2727

2828
@RequestMapping(path="/all")
2929
public String getAll(@RequestParam(name= "page" ,defaultValue=""+ ControllerHelper.FIRST_PAGE_NUMBER) int page, Model model){

src/main/java/org/woehlke/twitterwall/frontend/controller/UrlCacheController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
@RequestMapping("/urlcache")
2424
public class UrlCacheController {
2525

26-
private final static String PATH="/urlcache";
26+
private final static String PATH="urlcache";
2727

2828
@RequestMapping(path="/all")
2929
public String getAll(@RequestParam(name= "page" ,defaultValue=""+ControllerHelper.FIRST_PAGE_NUMBER) int page, Model model){

src/main/java/org/woehlke/twitterwall/frontend/controller/UrlController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
@RequestMapping("/url")
2424
public class UrlController {
2525

26-
private final static String PATH="/url";
26+
private final static String PATH="url";
2727

2828
@RequestMapping(path="/all")
2929
public String getAll(@RequestParam(name= "page" ,defaultValue=""+ControllerHelper.FIRST_PAGE_NUMBER) int page, Model model){

src/main/java/org/woehlke/twitterwall/frontend/controller/UserController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
@RequestMapping("/user")
2929
public class UserController {
3030

31-
private final static String PATH="/user";
31+
private final static String PATH="user";
3232

3333
@RequestMapping("/all")
3434
public String getAll(@RequestParam(name= "page" ,defaultValue=""+ControllerHelper.FIRST_PAGE_NUMBER) int page, Model model) {

0 commit comments

Comments
 (0)