aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/memberlist_search.html
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/12539] Live member search improvementsmrgoldy2019-09-091-1/+1
| | | | PHPBB3-12539
* [ticket/13949] Replace colon with colon lang key in memberlist search pageRaphaël M2015-06-191-1/+1
| | | | | | | [ticket/13949] Replace colon with colon lang key in memberlist search page PHPBB3-13949
* [ticket/13220] Add template events to memberlist_search.htmlrxu2014-11-081-0/+3
| | | | PHPBB3-13220
* [ticket/12804] Hide Jabber from UCP & member search when disabledPayBas2014-07-071-8/+10
| | | | PHPBB3-12804
* [ticket/12553] Remove dropdown-trigger class from member search input.Cesar G2014-06-141-1/+1
| | | | PHPBB3-12553
* [ticket/12553] Fix dropdown position of live searchJoas Schilling2014-06-141-2/+2
| | | | PHPBB3-12553
* [ticket/10737] Remove loading indicator.Cesar G2014-04-231-1/+1
| | | | PHPBB3-10737
* [ticket/10737] Add config setting to disable live searches.Cesar G2014-04-231-2/+3
| | | | PHPBB3-10737
* [ticket/10737] Use dropdown for search results container.Cesar G2014-04-231-7/+12
| | | | PHPBB3-10737
* [ticket/10737] Adding delayed keyup and removing target_blank.Suhaib Khan2014-04-231-1/+1
| | | | PHPBB3-10737
* [ticket/10737] Removing obsolete code.Suhaib Khan2014-04-231-2/+2
| | | | PHPBB3-10737
* [ticket/10737] Avoid hard-coding table row and use case-insensitive search.Suhaib Khan2014-04-231-1/+7
| | | | PHPBB3-10737
* [ticket/10737] Using JQuery events and JSON response.Suhaib Khan2014-04-231-22/+1
| | | | PHPBB3-10737
* [ticket/10737] Code fixes in AJAX search featureSuhaib Khan2014-04-231-11/+9
| | | | PHPBB3-10737
* [ticket/10737] Improvements over last commitSuhaib Khan2014-04-231-20/+8
| | | | PHPBB3-10737
* [ticket/10737] Adding username suggestions in "Find a member" using AJAXSuhaib Khan2014-04-231-1/+36
| | | | PHPBB3-10737
* [ticket/12236] Fix layout of memberlist searchJoas Schilling2014-03-051-8/+8
| | | | PHPBB3-12236
* [ticket/12236] Move AOL Instant Messanger field to custom profile fieldJoas Schilling2014-03-051-4/+0
| | | | PHPBB3-12236
* [ticket/12237] Convert yahoo messanger to custom profile fieldJoas Schilling2014-03-051-4/+0
| | | | PHPBB3-12237
* [ticket/12235] Convert WLM to custom profile fieldJoas Schilling2014-03-041-4/+0
| | | | PHPBB3-12235
* [ticket/12234] Replace ICQ with custom profile fieldJoas Schilling2014-02-281-4/+0
| | | | PHPBB3-12234
* [ticket/11795] Move find user JS to forum_fnVjacheslav Trushkin2013-09-141-40/+0
| | | | | | Move JavaScript from user search results to forum_fn.js PHPBB3-11795
* [ticket/11800] Remove forum_fn from memberlist_search.htmlVjacheslav Trushkin2013-08-171-1/+0
| | | | PHPBB3-11800
* [feature/twig] INCLUDEJS behavior now supports local relative pathsNathaniel Guse2013-07-021-1/+1
| | | | | | | | | This was done because T_TEMPLATE_PATH is not always correct for js files (e.g. the inheriting style does not include these). Now we use the Twig Loader to find the correct file to link to (most specific file first, then parent styles). Also allows using @namespace convention PHPBB3-11598
* [feature/twig] Changing INCLUDEJS behavior slightlyNathaniel Guse2013-07-011-1/+1
| | | | | | | Automatically parsing inline variables the same way it is done for INCLUDE, INCLUDEPHP PHPBB3-11598
* Merge branch 'develop' of github.com:phpbb/phpbb3 into feature/twigNathan Guse2013-06-241-0/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # By Dhruv (35) and others # Via Andreas Fischer (15) and others * 'develop' of github.com:phpbb/phpbb3: (75 commits) [ticket/10776] update min php version 5.3.3 in readme [ticket/11503] similar implementation for mssql_native and odbc [ticket/11603] Fix out dated comment [ticket/11603] Fix usage note [ticket/11604] Skip installer step where config.php is created. [ticket/11603] Throw RuntimeExceptions instead of using exit() [ticket/11603] Avoid using cURL [ticket/11604] Fix case where config.php is not generated by phpBB. [ticket/11604] Use variables for config.php filesnames. [ticket/11561] Specify used tables in notification fixture, so they are emptied [ticket/11094] Add textbox for jabber while memberlist search [ticket/10820] fix if condition to check for IE [ticket/11603] Split api_request into two functions (query only vs. full url) [ticket/11603] Fix spacing and add some comments [ticket/10820] Add additional check for IE in condition [ticket/11603] Fix github API calls [ticket/11603] Rename network to forks and fix handling [ticket/11603] Fix github api url and use curl with valid user agent [ticket/10820] Fix function docblock [ticket/10820] Inject IE version in function ...
| * Merge branch 'develop-olympus' into developAndreas Fischer2013-06-201-0/+4
| |\ | | | | | | | | | | | | * develop-olympus: [ticket/11094] Add textbox for jabber while memberlist search
| | * [ticket/11094] Add textbox for jabber while memberlist searchDhruv2013-06-151-0/+4
| | | | | | | | | | | | PHPBB3-11094
* | | [feature/twig] Changing INCLUDEJS behaviorNathan Guse2013-06-241-1/+1
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Was: <!-- INCLUDEJS template/foo.js --> Now: <!-- INCLUDEJS T_TEMPLATE_PATH ~ '/foo.js' --> Reasons for this: 1. INCLUDEJS is 3.1-dev only 2. INCLUDEJS has odd behavior to begin with (arbitrary setting root path to styles/name/ directory) 3. INCLUDEJS could not include files from outside directories or anywhere else 4. It was easier to change INCLUDEJS behavior to something more flexible and useful than hack around it to make it work as it was with Twig. PHPBB3-11598
* | [ticket/11010] Fix email inputsVjacheslav Trushkin2013-05-201-1/+1
| | | | | | | | | | | | | | Add type="email" to fields that should be email fields Change back to type="text" fields that might have wildcards or not necessary email PHPBB3-11010
* | [ticket/11010] applying some of EXreaction notesSenky2013-05-201-2/+2
| | | | | | | | PHPBB3-11010
* | [ticket/11010] fixing inputs types in memberlist_search.htmlSenky2013-05-201-2/+2
| | | | | | | | PHPBB3-11010
* | [ticket/11010] adding type="number" to subsilver2Senky2013-05-201-1/+1
| | | | | | | | | | | | and removing it from prosilver wher it should not be. PHPBB3-11010
* | [ticket/11010] adding type="number" and type="date" to prosilverSenky2013-05-201-4/+4
| | | | | | | | PHPBB3-11010
* | [ticket/11010] yahoo and msn user search fields changed to email input typeVinny2013-05-201-2/+2
| | | | | | | | PHPBB3-11010
* | [ticket/11010] Changing email and url input types in prosilver templatesVinny2013-05-201-1/+1
| | | | | | | | PHPBB3-11010
* | [ticket/11201] Revert WLM dropping because it is still used in China.Andreas Fischer2013-02-041-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | Windows Live Messenger is still in use in china which accounts for ~20% of world population. Revert WLM dropping which has been merged under the assumption that WLM data and features are completely useless. This commit reverts commits - 460470229d972b93ef5a98b0d1d97a2a970d684f - 9affd6f7e7b95442f1ef14894858d8213f3fbd2a which have been merged by d59431691c27c73fba8ae9934b84b34a13280dd2. PHPBB3-11201
* | [ticket/10786] Javascript toggle member search panel in memberlist.phpDavid Colón2013-01-151-2/+1
| | | | | | | | PHPBB3-10786
* | [ticket/11201] Remove MSN/WLM fieldsJoas Schilling2013-01-111-4/+0
| | | | | | | | | | | | | | | | WLM will be shutdown in March 2013. Skype is the new replacement. But as Skype uses a different login ID and service, the values in this field are useless. So we can safely remove the field and the links/functions we create. PHPBB3-11201
* | [ticket/10780] Replace colon usage in template output with {L_COLON}Nathan Guse2012-11-101-12/+12
| | | | | | | | | | | | | | Replace all the instances (I could find) where the colon is displayed to the user with {L_COLON} so it can be localised. PHPBB3-10780
* | [ticket/10734] Removed unwanted span classesShibu Lijack2012-04-021-1/+1
| | | | | | | | | | | | Removed the corner and clear span classes PHPBB-10734
* | [ticket/10734] Fixed template filesShibu Lijack2012-03-311-2/+2
|/ | | | | | Removed unnecessary span from several other template files PHPBB3-10734
* [ticket/9980] URLs to javascript should be T_SUPER_TEMPLATE_PATH instead of ↵Raimon2011-01-081-1/+1
| | | | | | T_TEMPLATE_PATH PHPBB3-9980
* Make searching for members by YIM address work in prosilverChris Smith2008-11-231-2/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9090 89ea8834-ac86-4346-8a33-228a782c2dd0
* only allow users having the a_user permission to search by email address ↵Meik Sievertsen2008-03-231-0/+2
| | | | | | (later on there will most likely a new permission for general email visibility) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8460 89ea8834-ac86-4346-8a33-228a782c2dd0
* #15038Henry Sudhof2007-11-051-1/+2
| | | | | | | I'm very sorry. This should make W3C happy again. git-svn-id: file:///svn/phpbb/trunk@8227 89ea8834-ac86-4346-8a33-228a782c2dd0
* Ok, here comes a big one. Poor updater. Also requires testing.Henry Sudhof2007-10-031-1/+1
| | | | | | | | | | | | #i91 #i92 #i93 #i94 #i95 #i96 git-svn-id: file:///svn/phpbb/trunk@8120 89ea8834-ac86-4346-8a33-228a782c2dd0
* #i62 - #i65Meik Sievertsen2007-09-221-2/+2
| | | | | | | gone through every javascript invocation and making sure we adhere to our coding guidelines. git-svn-id: file:///svn/phpbb/trunk@8099 89ea8834-ac86-4346-8a33-228a782c2dd0
* fixing some bugsMeik Sievertsen2007-06-281-0/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@7805 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, mess around with the templates + fixing some bugs + adjusting headers ↵Meik Sievertsen2007-06-091-1/+1
| | | | | | for those files already modified to circumvent conflicts for those having their editor set to remove trailing spaces (not recommended!) git-svn-id: file:///svn/phpbb/trunk@7736 89ea8834-ac86-4346-8a33-228a782c2dd0