remove pre-defined munges

the new code has been so successful at detecting them successfully, it seems pointless keeping them up to date manually all the time
if a site update breaks the regular expressions, it would surely change the munges too, breaking any defined in the code
This commit is contained in:
Jon Atkins 2013-12-20 07:16:23 +00:00
parent 4a70638750
commit 79b0a3b88a

View File

@ -14,52 +14,56 @@
var requestParameterMunges = [ var requestParameterMunges = [
// all old munge sets deleted - there's no sign that any old ones will become active again // all old munge sets deleted - there's no sign that any old ones will become active again
// set 11 - 2013-12-06 // the current munge set auto-detection code is working very well. as any site update that breaks that detection
{ // code will also, almost certainly, change the munges in use, it seems pointless keeping this set up to date by hand
'dashboard.getArtifactInfo': 'artifacts', // GET_ARTIFACT_INFO // at this time. If that auto-detection breaks, it may be easier to quicky add a munge set by hand than update
'dashboard.getGameScore': '4oid643d9zc168hs', // GET_GAME_SCORE // the regular expressions, so the list-based code remains available for the future
'dashboard.getPaginatedPlexts': 's1msyywq51ntudpe', // GET_PAGINATED_PLEXTS // // set 11 - 2013-12-06
'dashboard.getThinnedEntities': '4467ff9bgxxe4csa', // GET_THINNED_ENTITIES // {
'dashboard.getPortalDetails': 'c00thnhf1yp3z6mn', // GET_PORTAL_DETAILS // 'dashboard.getArtifactInfo': 'artifacts', // GET_ARTIFACT_INFO
'dashboard.redeemReward': 'ivshfv9zvyfxyqcd', // REDEEM_REWARD // 'dashboard.getGameScore': '4oid643d9zc168hs', // GET_GAME_SCORE
'dashboard.sendInviteEmail': '1rsx15vc0m8wwdax', // SEND_INVITE_EMAIL // 'dashboard.getPaginatedPlexts': 's1msyywq51ntudpe', // GET_PAGINATED_PLEXTS
'dashboard.sendPlext': 'tods2imd0xcfsug6', // SEND_PLEXT // 'dashboard.getThinnedEntities': '4467ff9bgxxe4csa', // GET_THINNED_ENTITIES
// 'dashboard.getPortalDetails': 'c00thnhf1yp3z6mn', // GET_PORTAL_DETAILS
// common parameters // 'dashboard.redeemReward': 'ivshfv9zvyfxyqcd', // REDEEM_REWARD
method: '0wvzluo8av4sk17f', // 'dashboard.sendInviteEmail': '1rsx15vc0m8wwdax', // SEND_INVITE_EMAIL
version: 'paeh4g353xu06kfg', // 'dashboard.sendPlext': 'tods2imd0xcfsug6', // SEND_PLEXT
version_parameter: '4acc1e3230c3fd66be3422c0df8dc637336bbd7c', //
// // common parameters
// GET_THINNED_ENTITIES // method: '0wvzluo8av4sk17f',
quadKeys: 'ilgv0w4dlldky1yh', // version: 'paeh4g353xu06kfg',
// version_parameter: '4acc1e3230c3fd66be3422c0df8dc637336bbd7c',
// GET_PORTAL_DETAILS //
guid: '7o8tzmj6oxz1n5w3', // // GET_THINNED_ENTITIES
// quadKeys: 'ilgv0w4dlldky1yh',
// REDEEM_REWARD //
passcode: 'passcode', // no munging on this parameter // // GET_PORTAL_DETAILS
// guid: '7o8tzmj6oxz1n5w3',
// SEND_INVITE_EMAIL //
inviteeEmailAddress: 'p4rwszdfovuwfdgp', // // REDEEM_REWARD
// passcode: 'passcode', // no munging on this parameter
// GET_PAGINATED_PLEXTS //
desiredNumItems: 'kxsbuvc90l6f40xn', // // SEND_INVITE_EMAIL
minLatE6: 'llizye3i5dbapxac', // inviteeEmailAddress: 'p4rwszdfovuwfdgp',
minLngE6: 'w01zpiba1mn5tsab', //
maxLatE6: 'd5phhqzj2tbsq599', // // GET_PAGINATED_PLEXTS
maxLngE6: 'avq5srnvg431aehn', // desiredNumItems: 'kxsbuvc90l6f40xn',
minTimestampMs: 'mhsav5by25wi4s46', // minLatE6: 'llizye3i5dbapxac',
maxTimestampMs: 'hpu7l8h7eccwytyt', // minLngE6: 'w01zpiba1mn5tsab',
chatTab: 'q9343nem7hs1v37b', // maxLatE6: 'd5phhqzj2tbsq599',
ascendingTimestampOrder: '7pc5c9ggh03pig1b', // maxLngE6: 'avq5srnvg431aehn',
// minTimestampMs: 'mhsav5by25wi4s46',
// SEND_PLEXT // maxTimestampMs: 'hpu7l8h7eccwytyt',
message: '8exta9k7y8huhqmc', // chatTab: 'q9343nem7hs1v37b',
latE6: '7ffwyf3zd2yf8xam', // ascendingTimestampOrder: '7pc5c9ggh03pig1b',
lngE6: 'n7ewiach2v22iy20', //
// chatTab: 'q9343nem7hs1v37b', // duplicate from GET_PAGINATED_PLEXTS // // SEND_PLEXT
// message: '8exta9k7y8huhqmc',
}, // latE6: '7ffwyf3zd2yf8xam',
// lngE6: 'n7ewiach2v22iy20',
//// chatTab: 'q9343nem7hs1v37b', // duplicate from GET_PAGINATED_PLEXTS
//
// },
]; ];