| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
Interesting... It's the 1000th PR! PARTY! |
Sorry, something went wrong.
There was a problem hiding this comment.
What is the initial value? If initial value is empty and user is required to enter 0, I don't think this is acceptable.
Sorry, something went wrong.
There was a problem hiding this comment.
Initial value is 0. Also, if you post a blank string, it gets replaced by 0. So that is why.
Sorry, something went wrong.
|
Two questions:
|
Sorry, something went wrong.
|
Just noticed that subsilver2 received some of these changes, 1) do we really want that and 2) I seem to recall subsilver staying html4, is this going to be an issue? |
Sorry, something went wrong.
|
Inputs of unknown types falls back to type="text", so no harm is made. It was discussed in RFC. I am not sure about subsilver2 then. Vinny did the original changes and included subsilver2, but if you want, I can delete commits that change subsilver2. |
Sorry, something went wrong.
What happens if an older browser encounters this markup? And by "older" I mean 1) firefox 3 and 2) links/lynx. @p the field will be analyzed as normal, ie as a simple text input. Just noticed that subsilver2 received some of these changes, 1) do we really want that and 2) I seem to recall subsilver staying html4, is this going to be an issue? The current subsilver2 is with HTML5 (<!DOCTYPE html>), however the new HTML5 input types usually work, only need the browser support. |
Sorry, something went wrong.
|
OK then, sounds like you have all the bases covered. Please take out the .orig file. |
Sorry, something went wrong.
|
In 3b2c53d: second line of commit message is not space: and removing it from prosilver wher it should not be. |
Sorry, something went wrong.
|
There were 2 failures:
/home/phpdev/test-phpbb/tests/functions_acp/build_cfg_template_test.php:89
/home/phpdev/test-phpbb/tests/functions_acp/build_cfg_template_test.php:89 |
Sorry, something went wrong.
|
Someone needs to fix the test suite, the rest of it looks a-ok to me. |
Sorry, something went wrong.
|
I would like to reword 3b2c53d, but when I do git rebase, with its parent, it wants me to rebase more than 200 commits, more of them with problems which interupts rebasing process. Could you lead me on how to reword that old commit without that much pain using git rebase? I could not find anything on the internet... |
Sorry, something went wrong.
|
That is probably anywhere between difficult and impossible, you can leave it alone. |
Sorry, something went wrong.
|
The simplest thing probably would be to start on current develop and cherry-pick each commit in this PR. If you get major conflicts, again, you can leave it be. |
Sorry, something went wrong.
|
Actually it doesn't look so bad. git checkout ticket/11010 Delete any commits not listed in this PR. Fix conflicts, there should only be 1 or 2. If you do this please squash the commit deleting the orig file into the commit that added it. After you do this, rebase again and reword the offending commit. |
Sorry, something went wrong.
|
In fact it is a problem. I did everything according to your instructions. There were 2 conflicts. I resloved them. I could not squash commit, because I cannot find commit adding .orig file. Whatsmore, After I finished rebasing, it resulted in error, that ref cannot be updatet because it should be on another commit that it is: error: Ref refs/heads/ticket/11010 is at 9bcd9bbd5bf97d824a53735de3ceca82540dfea 5 but expected 9c7afaaf8576482b034def672bae4ca783b3a960 fatal: Cannot lock the ref 'refs/heads/ticket/11010'. I fixed it by modifying commit ID in .git/refs/heads/ticket/11010, but after I tried to rebase it again to reword the commit, it gave me hute lost of commits again. Well, I do not know it it is possible to reword it. I have another idea: I can just simply copy all files and create new PR, include only one commit adding everything in this PR. |
Sorry, something went wrong.
|
Most likely you did not start with a clean tree/staging area/rebase state etc. and that is why you received that error. Make sure you completely cancel out any rebases in progress and your repository is in good shape. Then rebase this branch on develop without any changes to commits. Only fix the conflicts. Checkpoint the result. Then rebase and reword the commit. Then rebase and squash orig delete. To find out which commit added it: git blame HEAD^ path.orig after you do all the other steps. |
Sorry, something went wrong.
|
Ok I give up. I tried to do it with your instructions, but after I fixed conflicts and ran rebase again, the same conflicts appeared (any yes, I used git add .). I have given you collab access to my fork, so if you have time, I would be glad to see it fixed and merged. |
Sorry, something went wrong.
There was a problem hiding this comment.
This was an API change. The first parameter was size and is now min.
I don't see dimension being used anywhere in phpbb tree, therefore you may be able to do this but you need to get approval from more developers.
Sorry, something went wrong.
There was a problem hiding this comment.
It's okay with me.
Sorry, something went wrong.
There was a problem hiding this comment.
This is still not right.
min/max refer to the magnitude of the value, maxlength refers to the number of digits in the value. For a max=1000, maxlength=4.
maxlength could perhaps be a ceil(log10(max)).
Sorry, something went wrong.
There was a problem hiding this comment.
Behavior like this should not change, it will break any mod that uses this in the ACP and it will probably not be the easiest to recognize why this changed.
Doesn't number do what you changed dimension to?
Sorry, something went wrong.
|
I did the first rebase, you can now reword that commit. Tests fail due to an API change - see my previous comment. |
Sorry, something went wrong.
|
In 5a936918d1c6a8b912553486cda7d2ebf49249eb: second line of commit message is not space: and removing it from prosilver wher it should not be. |
Sorry, something went wrong.
|
Ok I tried, even though some problems occured. I hope it is fine now. And about your comment to dimension: you have already fixed the problem with a14aaee or am I to fix it? |
Sorry, something went wrong.
git checkout ticket/11010
|
Sorry, something went wrong.
|
Here is the RFC: |
Sorry, something went wrong.
|
This massively conflicted with the colon merge. |
Sorry, something went wrong.
|
@senky please merge or rebase on develop to deal with the colon conflicts. |
Sorry, something went wrong.
|
Ok I will try. If it will be too problematic, I will maybe rewrite all changes to newest source and push it here. |
Sorry, something went wrong.
|
I have successfully rebased on develop and resolved all conflicts with L_COLON. I hope it is ready to merge now. |
Sorry, something went wrong.
PHPBB3-11010
PHPBB3-11010
PHPBB3-11010
PHPBB3-11010
PHPBB3-11010
Add new HTML5 input types to installer PHPBB3-11010
Add all new HTML5 input types to functions_acp.php, handle them as text for now PHPBB3-11010
Change input type to search for search forms Replace search placeholder JS with placeholder attribute Add style for search placeholder PHPBB3-11010
PHPBB3-11010
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
PHPBB3-11010
PHPBB3-11010
|
@EXreaction tests are failing, but after inspection, you can see, that the problem is in downloading dependencies, so travis problem. Tests should pass. |
Sorry, something went wrong.
There was a problem hiding this comment.
What happened to this setting?
Sorry, something went wrong.
|
Besides the config setting that went missing, I think everything looks acceptable. If someone else would please review all the changes as well and respond back if they think everything looks good that would be very helpful since there were so many changes here and it's easy to miss something. |
Sorry, something went wrong.
There was a problem hiding this comment.
done twice
Sorry, something went wrong.
PHPBB3-11010
|
Thanks for your comments. Problems have been resolved. I hope now it is ok. |
Sorry, something went wrong.
|
Looks good. Can't find any errors |
Sorry, something went wrong.
|
Merged, thanks for all the hard work! |
Sorry, something went wrong.
|
Yeah! Finally after 8 months :). Thanks to all collaborators! |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
The proposal is to use the new input types for form fields(new HTML5 feature). The idea is to use types like email and url to the browser automatically validate the fields.
RFC & discussion: http://area51.phpbb.com/phpBB/viewtopic.php?f=108&t=43159
http://tracker.phpbb.com/browse/PHPBB3-11010
PHPBB3-11010