Skip to content

Commit 6747350

Browse files
ManssourBlhseboo
authored andcommitted
LUT-27822: Resolved reset button display inconsistency upon returning to blog management after a search, removed trailing spaces
1 parent 31275dd commit 6747350

File tree

5 files changed

+65
-65
lines changed

5 files changed

+65
-65
lines changed

src/java/fr/paris/lutece/plugins/blog/business/BlogSearchFilter.java

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class BlogSearchFilter
5151

5252
/**
5353
* Get the id of the filter
54-
*
54+
*
5555
* @return The id of the filter
5656
*/
5757
public int getIdFilter( )
@@ -61,7 +61,7 @@ public int getIdFilter( )
6161

6262
/**
6363
* Set the id of the filter
64-
*
64+
*
6565
* @param nIdFilter
6666
* The id of the filter
6767
*/
@@ -72,7 +72,7 @@ public void setIdFilter( int nIdFilter )
7272

7373
/**
7474
* Get the keywords of the filter
75-
*
75+
*
7676
* @return The keywords of the filter
7777
*/
7878
public String getKeywords( )
@@ -82,7 +82,7 @@ public String getKeywords( )
8282

8383
/**
8484
* Set the keywords of the filter
85-
*
85+
*
8686
* @param strKeywords
8787
* The keywords of the filter
8888
*/
@@ -93,7 +93,7 @@ public void setKeywords( String strKeywords )
9393

9494
/**
9595
* Get the tag of the filter
96-
*
96+
*
9797
* @return The tag of the filter
9898
*/
9999
public String [ ] getTag( )
@@ -103,7 +103,7 @@ public void setKeywords( String strKeywords )
103103

104104
/**
105105
* Set the strTag of the filter
106-
*
106+
*
107107
* @param strTag
108108
* The tag of the filter
109109
*/
@@ -114,7 +114,7 @@ public void setTag( String [ ] strTag )
114114

115115
/**
116116
* Sets the User
117-
*
117+
*
118118
* @param strUser
119119
* The User
120120
*/
@@ -125,7 +125,7 @@ public void setUser( String strUser )
125125

126126
/**
127127
* Returns the strUser
128-
*
128+
*
129129
* @return The strUser
130130
*/
131131
public String getUser( )
@@ -135,7 +135,7 @@ public String getUser( )
135135

136136
/**
137137
* Sets the User Edited blog
138-
*
138+
*
139139
* @param strUser
140140
* The User edited Blog
141141
*/
@@ -146,7 +146,7 @@ public void setUserEditedBlogVersion( String userEditedBlogVersion )
146146

147147
/**
148148
* Returns the strUser
149-
*
149+
*
150150
* @return The strUser
151151
*/
152152
public String getUserEditedBlogVersion( )
@@ -156,10 +156,10 @@ public String getUserEditedBlogVersion( )
156156

157157
/**
158158
* Returns the isUnpulished
159-
*
159+
*
160160
* @return The isUnpulished
161161
*/
162-
public boolean getIsUnpulished( )
162+
public Boolean getIsUnpulished( )
163163
{
164164
return _bIsUnpulished;
165165
}
@@ -174,7 +174,7 @@ public void setIsUnpulished( boolean isUnpulished )
174174

175175
/**
176176
* Returns the UpdateDateAfter
177-
*
177+
*
178178
* @return The UpdateDateAfter
179179
*/
180180
public Date getUpdateDateAfter( )
@@ -184,7 +184,7 @@ public Date getUpdateDateAfter( )
184184

185185
/**
186186
* Sets the UpdateDateAfter
187-
*
187+
*
188188
* @param dateUpdateDateAfter
189189
* The UpdateDateAfter
190190
*/
@@ -195,7 +195,7 @@ public void setUpdateDateAfter( Date dateUpdateDateAfter )
195195

196196
/**
197197
* Returns the UpdateDateBefor
198-
*
198+
*
199199
* @return The UpdateDateBefor
200200
*/
201201
public Date getUpdateDateBefor( )
@@ -205,7 +205,7 @@ public Date getUpdateDateBefor( )
205205

206206
/**
207207
* Sets the UpdateDateBefor
208-
*
208+
*
209209
* @param dateUpdateDateBefor
210210
* The UpdateDateBefor
211211
*/

src/java/fr/paris/lutece/plugins/blog/service/docsearch/BlogSearchService.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private BlogSearchService( )
136136

137137
/**
138138
* Get the HelpdeskSearchService instance
139-
*
139+
*
140140
* @return The {@link BlogSearchService}
141141
*/
142142
public static BlogSearchService getInstance( )
@@ -150,7 +150,7 @@ public static BlogSearchService getInstance( )
150150

151151
/**
152152
* Return search results
153-
*
153+
*
154154
* @param filter
155155
* The search filter
156156
* @param listIdBlog
@@ -186,7 +186,7 @@ public int getSearchResults( BlogSearchFilter filter, List<Integer> listIdBlog )
186186

187187
/**
188188
* Process indexing
189-
*
189+
*
190190
* @param bCreate
191191
* true for start full indexing false for begin incremental indexing
192192
* @return the log
@@ -269,7 +269,7 @@ public String processIndexing( boolean bCreate )
269269

270270
/**
271271
* Get search results
272-
*
272+
*
273273
* @param filter
274274
* The filter
275275
* @param listSearchResult
@@ -411,7 +411,7 @@ private Query prepareQueryForFilter( BlogSearchFilter filter ) throws org.apache
411411

412412
/**
413413
* Add Indexer Action to perform on a record
414-
*
414+
*
415415
* @param nIdBlog
416416
* Blog id
417417
* @param nIdTask
@@ -427,7 +427,7 @@ public void addIndexerAction( int nIdBlog, int nIdTask )
427427

428428
/**
429429
* Remove a Indexer Action
430-
*
430+
*
431431
* @param nIdAction
432432
* the key of the action to remove
433433
*/
@@ -438,7 +438,7 @@ public void removeIndexerAction( int nIdAction )
438438

439439
/**
440440
* return a list of IndexerAction by task key
441-
*
441+
*
442442
* @param nIdTask
443443
* the task key
444444
* @return a list of IndexerAction
@@ -453,7 +453,7 @@ public List<IndexerAction> getAllIndexerActionByTask( int nIdTask )
453453

454454
/**
455455
* Convert the SearchItem list on SearchResult list
456-
*
456+
*
457457
* @param listSource
458458
* The source list
459459
* @param listSearchResult

src/java/fr/paris/lutece/plugins/blog/web/BlogJspBean.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,9 +1199,9 @@ public String getDiffBlog( HttpServletRequest request )
11991199
}
12001200

12011201
/**
1202-
*
1202+
*
12031203
* Added docContent to the htmlDoc content list
1204-
*
1204+
*
12051205
* @param request
12061206
* The Http request
12071207
* @return
@@ -1292,7 +1292,7 @@ public String addContent( HttpServletRequest request )
12921292

12931293
/**
12941294
* delete docContent in the htmlDoc content list
1295-
*
1295+
*
12961296
* @param request
12971297
* The Http request
12981298
* @return
@@ -1407,7 +1407,7 @@ public String doUpdatePriorityContent( HttpServletRequest request )
14071407
}
14081408

14091409
/**
1410-
*
1410+
*
14111411
* @param request
14121412
* @return
14131413
*/
@@ -1452,7 +1452,7 @@ public String updateContentType( HttpServletRequest request )
14521452

14531453
/**
14541454
* Set content of the blog
1455-
*
1455+
*
14561456
* @param mRequest
14571457
* @param locale
14581458
* @return the content of the blog
@@ -1487,7 +1487,7 @@ public DocContent setContent( MultipartHttpServletRequest mRequest, Locale local
14871487
}
14881488

14891489
/**
1490-
*
1490+
*
14911491
* @return
14921492
*/
14931493
private ReferenceList getBlogFilterList( )
@@ -1501,7 +1501,7 @@ private ReferenceList getBlogFilterList( )
15011501
}
15021502

15031503
/**
1504-
*
1504+
*
15051505
* @return BlogList
15061506
*/
15071507
private ReferenceList getTageList( )
@@ -1519,7 +1519,7 @@ private ReferenceList getTageList( )
15191519

15201520
/**
15211521
* Check if the blog is locked
1522-
*
1522+
*
15231523
* @param nIdBlog
15241524
* The Id blog
15251525
* @param strIdSession
@@ -1533,7 +1533,7 @@ private boolean checkLockBlog( int nIdBlog, String strIdSession )
15331533

15341534
/**
15351535
* Lock blog
1536-
*
1536+
*
15371537
* @param nIdBlog
15381538
* The Id blog
15391539
* @param strIdSession
@@ -1549,7 +1549,7 @@ private void lockBlog( int nIdBlog, String strIdSession )
15491549

15501550
/**
15511551
* Unlock Blog
1552-
*
1552+
*
15531553
* @param nIdBlog
15541554
* The id Blog
15551555
*/
@@ -1562,7 +1562,7 @@ private void unLockBlog( int nIdBlog )
15621562

15631563
/**
15641564
* Unlock Blogs By Session Id
1565-
*
1565+
*
15661566
* @param strIdSession
15671567
* The Id session
15681568
*/
@@ -1574,7 +1574,7 @@ public static void unLockedBlogByIdSession( String strIdSession )
15741574

15751575
/**
15761576
* Unlock the blog if the lock clearance time has passed
1577-
*
1577+
*
15781578
* @param nTime
15791579
* the clearance time
15801580
*/

src/java/fr/paris/lutece/plugins/blog/web/portlet/BlogListPortletJspBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public String getPropertiesPrefix( )
161161

162162
/**
163163
* Return a model that contains the list and paginator infos
164-
*
164+
*
165165
* @param request
166166
* The HTTP request
167167
* @return The map

0 commit comments

Comments
 (0)