From f22e0f1a629bcfe1b648bd892d5953f2f8249a65 Mon Sep 17 00:00:00 2001 From: koalyptus Date: Sat, 13 Sep 2014 07:50:46 +0000 Subject: [PATCH] Modidied gitignore file --- .gitignore | 3 ++- dist/filtergrid.css | 2 +- dist/tablefilter_all-uncompressed.js | 14 +++++++------- dist/tablefilter_all.js | 2 +- src/tablefilter_all.js | 14 +++++++------- 5 files changed, 18 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index c3865977..26c1c2db 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ # Dependency directory node_modules -npm-debug.log \ No newline at end of file +npm-debug.log +.codio \ No newline at end of file diff --git a/dist/filtergrid.css b/dist/filtergrid.css index 5b37b9e3..82980a81 100644 --- a/dist/filtergrid.css +++ b/dist/filtergrid.css @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------ - TableFilter stylesheet by Max Guglielmi - - (build date: Sun Sep 07 2014 20:05:59) + - (build date: Wed Sep 10 2014 22:52:00) - Edit below for your projects' needs ------------------------------------------------------------------------*/ diff --git a/dist/tablefilter_all-uncompressed.js b/dist/tablefilter_all-uncompressed.js index 8ddb012e..b5f144ed 100644 --- a/dist/tablefilter_all-uncompressed.js +++ b/dist/tablefilter_all-uncompressed.js @@ -25,7 +25,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------- - Special credit to: - Cedric Wartel, cnx.claude@free.fr, Florent Hirchy, Váry Péter, + Cedric Wartel, cnx.claude@free.fr, Florent Hirchy, V�ry P�ter, Anthony Maes, Nuovella Williams, Fuggerbit, Venkata Seshagiri Rao Raya, Piepiax, Manuel Kern, Baladhandayutham for active contribution and/or inspiration @@ -279,7 +279,7 @@ var TF = (function() { this.eqOperator = f.equal_operator!=undefined ? f.equal_operator : '='; this.stOperator = f.start_with_operator!=undefined ? f.start_with_operator : '{'; this.enOperator = f.end_with_operator!=undefined ? f.end_with_operator : '}'; - this.curExp = f.cur_exp!=undefined ? f.cur_exp : '^[¥£€$]'; + this.curExp = f.cur_exp!=undefined ? f.cur_exp : '^[���$]'; this.separator = f.separator!=undefined ? f.separator : ','; /*** rows counter ***/ @@ -2442,7 +2442,7 @@ var TF = (function() { && ((activeFlt==undefined || activeFlt==colIndex) || (activeFlt!=colIndex && this.validRowsIndex.tf_Has(k) ))) ))) { var cell_data = this.GetCellData(j, cell[j]); - var cell_string = cell_data.tf_MatchCase(this.matchCase);//Váry Péter's patch + var cell_string = cell_data.tf_MatchCase(this.matchCase);//V�ry P�ter's patch // checks if celldata is already in array if(!optArray.tf_Has(cell_string,this.matchCase)) optArray.push(cell_data); @@ -2685,7 +2685,7 @@ var TF = (function() { (this.paging && ((activeFlt==undefined || activeFlt==colIndex ) ||(activeFlt!=colIndex && this.validRowsIndex.tf_Has(k))) )))) { var cell_data = this.GetCellData(j, cells[j]); - var cell_string = cell_data.tf_MatchCase(this.matchCase);//Váry Péter's patch + var cell_string = cell_data.tf_MatchCase(this.matchCase);//V�ry P�ter's patch // checks if celldata is already in array if(!optArray.tf_Has(cell_string,this.matchCase)) optArray.push(cell_data); @@ -5147,7 +5147,7 @@ var TF = (function() { var regexp; var modifier = (this.matchCase) ? 'g' : 'gi'; var exactMatch = (forceMatch==undefined) ? this.exactMatch : forceMatch; - if(exactMatch || (fltType!=this.fltTypeInp && fltType!=undefined))//Váry Péter's patch + if(exactMatch || (fltType!=this.fltTypeInp && fltType!=undefined))//V�ry P�ter's patch regexp = new RegExp('(^\\s*)'+tf_RegexpEscape(arg)+'(\\s*$)', modifier); else regexp = new RegExp(tf_RegexpEscape(arg), modifier); @@ -5381,8 +5381,8 @@ function tf_RegexpEscape(s) - Many thanks to Cedric Wartel for this fn =====================================================*/ { - // traite les caractères spéciaux [\^$.|?*+() - //remplace le carctère c par \c + // traite les caract�res sp�ciaux [\^$.|?*+() + //remplace le carct�re c par \c function escape(e) { a = new RegExp('\\'+e,'g'); diff --git a/dist/tablefilter_all.js b/dist/tablefilter_all.js index ea13995e..67a0757d 100644 --- a/dist/tablefilter_all.js +++ b/dist/tablefilter_all.js @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------ - TableFilter v1.0 by Max Guglielmi - - build date: Sun Sep 07 2014 20:05:58 + - build date: Wed Sep 10 2014 22:51:59 - http://tablefilter.free.fr - Copyright (c) 2014, Licensed under the MIT License ------------------------------------------------------------------------*/ diff --git a/src/tablefilter_all.js b/src/tablefilter_all.js index 8ddb012e..b5f144ed 100644 --- a/src/tablefilter_all.js +++ b/src/tablefilter_all.js @@ -25,7 +25,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------- - Special credit to: - Cedric Wartel, cnx.claude@free.fr, Florent Hirchy, Váry Péter, + Cedric Wartel, cnx.claude@free.fr, Florent Hirchy, V�ry P�ter, Anthony Maes, Nuovella Williams, Fuggerbit, Venkata Seshagiri Rao Raya, Piepiax, Manuel Kern, Baladhandayutham for active contribution and/or inspiration @@ -279,7 +279,7 @@ var TF = (function() { this.eqOperator = f.equal_operator!=undefined ? f.equal_operator : '='; this.stOperator = f.start_with_operator!=undefined ? f.start_with_operator : '{'; this.enOperator = f.end_with_operator!=undefined ? f.end_with_operator : '}'; - this.curExp = f.cur_exp!=undefined ? f.cur_exp : '^[¥£€$]'; + this.curExp = f.cur_exp!=undefined ? f.cur_exp : '^[���$]'; this.separator = f.separator!=undefined ? f.separator : ','; /*** rows counter ***/ @@ -2442,7 +2442,7 @@ var TF = (function() { && ((activeFlt==undefined || activeFlt==colIndex) || (activeFlt!=colIndex && this.validRowsIndex.tf_Has(k) ))) ))) { var cell_data = this.GetCellData(j, cell[j]); - var cell_string = cell_data.tf_MatchCase(this.matchCase);//Váry Péter's patch + var cell_string = cell_data.tf_MatchCase(this.matchCase);//V�ry P�ter's patch // checks if celldata is already in array if(!optArray.tf_Has(cell_string,this.matchCase)) optArray.push(cell_data); @@ -2685,7 +2685,7 @@ var TF = (function() { (this.paging && ((activeFlt==undefined || activeFlt==colIndex ) ||(activeFlt!=colIndex && this.validRowsIndex.tf_Has(k))) )))) { var cell_data = this.GetCellData(j, cells[j]); - var cell_string = cell_data.tf_MatchCase(this.matchCase);//Váry Péter's patch + var cell_string = cell_data.tf_MatchCase(this.matchCase);//V�ry P�ter's patch // checks if celldata is already in array if(!optArray.tf_Has(cell_string,this.matchCase)) optArray.push(cell_data); @@ -5147,7 +5147,7 @@ var TF = (function() { var regexp; var modifier = (this.matchCase) ? 'g' : 'gi'; var exactMatch = (forceMatch==undefined) ? this.exactMatch : forceMatch; - if(exactMatch || (fltType!=this.fltTypeInp && fltType!=undefined))//Váry Péter's patch + if(exactMatch || (fltType!=this.fltTypeInp && fltType!=undefined))//V�ry P�ter's patch regexp = new RegExp('(^\\s*)'+tf_RegexpEscape(arg)+'(\\s*$)', modifier); else regexp = new RegExp(tf_RegexpEscape(arg), modifier); @@ -5381,8 +5381,8 @@ function tf_RegexpEscape(s) - Many thanks to Cedric Wartel for this fn =====================================================*/ { - // traite les caractères spéciaux [\^$.|?*+() - //remplace le carctère c par \c + // traite les caract�res sp�ciaux [\^$.|?*+() + //remplace le carct�re c par \c function escape(e) { a = new RegExp('\\'+e,'g');