Yahoo: Auto Login
|
Jun. 29, 2013, 09:48 PM
Post: #1
|
|||
|
|||
Yahoo: Auto Login
has anyone else's "Yahoo: Auto Login 09.06.28 (edit! multi) [sd] (o.s)" stopped working in the last few days?
|
|||
Jun. 30, 2013, 03:22 PM
Post: #2
|
|||
|
|||
RE: Yahoo: Auto Login
Yahoo removed the </form> tag. cautionmetro16_1.gif lol.
I don't use it but following quick fix worked at login.yahoo.com/config/login_verify2 Code: [Patterns] HTH |
|||
Jul. 01, 2013, 02:42 PM
Post: #3
|
|||
|
|||
RE: Yahoo: Auto Login
that did the trick...
much appreciated |
|||
Jul. 05, 2013, 04:18 PM
Post: #4
|
|||
|
|||
RE: Yahoo: Auto Login
may I ask you a question?
why are you using '[^>]+' in outerHTML? for example here: (Jun. 30, 2013 03:22 PM)JJoe Wrote: <form([^>]++name=$AV '[^>]+' is used very often in Sidkis config. ... but it's flawed... it's one of the problems of this config I mentioned some weeks ago. just imagine a '>' in an attribute value. Code: <form onmouseover="A>0&&DoSomething()" name="login_form" just an example. |
|||
Jul. 06, 2013, 01:35 AM
Post: #5
|
|||
|
|||
RE: Yahoo: Auto Login
(Jul. 05, 2013 04:18 PM)neverwasinparis Wrote: may I ask you a question? http://prxbx.com/forums/showthread.php?tid=2064 (Jul. 05, 2013 04:18 PM)neverwasinparis Wrote: just imagine a '>' in an attribute value. If necessary, I could respond with something like Code: <form([^>]++=$AV(*))++ name Code: <form( \w=$AV(*))++ name However, $AV(*) and \w have quirks and are not infallible. I need to see live "examples" that cause real problems. This has never been a problem for this old Yahoo filter. BTW, the definition of "problem" is a problem. In the end, some people just want the page to load quickly and work. |
|||
Jul. 09, 2013, 07:47 PM
Post: #6
|
|||
|
|||
RE: Yahoo: Auto Login
I guess our styles of writing filters are 'different'.
(Jul. 06, 2013 01:35 AM)JJoe Wrote: However, $AV(*) and \w have quirks and are not infallible.I am interested in this. why are $AV(*) and \w not infallible? I am using something like Code: ((\s|)\w=$AV(*)|(\s|)\w)+ |
|||
Jul. 10, 2013, 05:09 AM
(This post was last modified: Jul. 10, 2013 02:45 PM by JJoe.)
Post: #7
|
|||
|
|||
RE: Yahoo: Auto Login
(Jul. 09, 2013 07:47 PM)neverwasinparis Wrote: I am interested in this. why are $AV(*) and \w not infallible? My memory is incomplete and a quick search didn't find the info for me to post. I have few examples or notes to share. After Scott left, I remember \w based filter not working as expected. Also, I believe [^>]++ is quicker. So I rarely use \w. Changes.txt shows Scott fixed some of the $AV and $AVQ problems I remember. Testing seems to show he also fixed another. Another may have been my non standard use. Consider *=$AV(\1)* against Code: onmouseover=\"A>0&&DoSomething()\" Code: [Patterns] Should it match? What do you expect to see in \1? Then remove the > and retest. Then add a line return between the quotes and retest. This is expected, however, on escaped quotes $AV will sometimes forget to collect the final quote. (Jul. 09, 2013 07:47 PM)neverwasinparis Wrote: I am using something like I would not expect these issues to affect your filter. I do see a typo. You forgot a +, ((\s|)\w=$AV(*)|(\s|)\w)++. Regarding (\s|), after the first leg fails the Proxomitron \s( \w=$AV(*)| \w)++ seems better to me. Have fun. Note: <form((\s|)\w=$AV(*)|(\s|)\w)+ name doesn't match <form onmouseover="A>0&&DoSomething()" name="login_form" because the single plus causes the expression to match all the attributes including the "name" attrib. Edit: changed "will" to "may" because it depends. |
|||
Jul. 14, 2013, 06:42 PM
Post: #8
|
|||
|
|||
RE: Yahoo: Auto Login
you mentioned some interesting points.
thanks a lot. |
|||
Aug. 05, 2013, 01:36 PM
Post: #9
|
|||
|
|||
RE: Yahoo: Auto Login
JJoe, the Yahoo Auto Login is broken as of a day or two ago...
Do you see what's happening and is it another easy fix? |
|||
Aug. 05, 2013, 11:19 PM
Post: #10
|
|||
|
|||
RE: Yahoo: Auto Login
(Aug. 05, 2013 01:36 PM)ProxRocks Wrote: Do you see what's happening and is it another easy fix? Maybe, I'll guess that they have increased the size of the styling code in the head. Try Code: [Patterns] HTH |
|||
Aug. 05, 2013, 11:31 PM
Post: #11
|
|||
|
|||
RE: Yahoo: Auto Login
Awesome! That did the trick...
Much appreciated |
|||
« Next Oldest | Next Newest »
|