You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by "tugalsan (via GitHub)" <gi...@apache.org> on 2023/03/02 11:21:22 UTC

[GitHub] [netbeans] tugalsan opened a new issue, #5588: When searching text inside editor, Capital Turkish character 'I' not working

tugalsan opened a new issue, #5588:
URL: https://github.com/apache/netbeans/issues/5588

   ### Apache NetBeans version
   
   Apache NetBeans 17
   
   ### What happened
   
   I cannot use find on editor for search-text that contains I.
   
   ### How to reproduce
   
   When editing a java file, with a line "... public static boolean is_FILENAME_START( ..."
   - I pressed CTRL+F to search a text, inside the java file.
   - I wrote a search-text with a capital turkish character. For example "FILE" that contains a big 'I'
   - When i press enter, the status bar says "file not found or taking too long to search"
   - When I wrote a search-text with "file", it founds.
   
   
   ### Did this work correctly in an earlier version?
   
   No / Don't know
   
   ### Operating System
   
   Microsoft Windows [Version 10.0.22621.1265] Turkish
   
   ### JDK
   
   OpenJDK 64-Bit Server VM Temurin-19.0.1+10 (build 19.0.1+10, mixed mode, sharing)
   
   ### Apache NetBeans packaging
   
   Apache NetBeans provided installer
   
   ### Anything else
   
   ![image](https://user-images.githubusercontent.com/12820361/222413955-88ff65e0-c957-4f5d-ae0b-13620ecf5be5.png)
   ![image](https://user-images.githubusercontent.com/12820361/222414056-a2be5f29-d719-47a4-9c7b-0bb541e5710a.png)
   
   
   ### Are you willing to submit a pull request?
   
   No


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] tugalsan commented on issue #5588: When searching text inside editor, Capital Turkish character 'I' not working

Posted by "tugalsan (via GitHub)" <gi...@apache.org>.
tugalsan commented on issue #5588:
URL: https://github.com/apache/netbeans/issues/5588#issuecomment-1453024772

   I would love to. But, I have never suggest any code change before. Let me try, If i can find a solution...


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] mbien commented on issue #5588: When searching text inside editor, Capital Turkish character 'I' not working

Posted by "mbien (via GitHub)" <gi...@apache.org>.
mbien commented on issue #5588:
URL: https://github.com/apache/netbeans/issues/5588#issuecomment-1453637949

   took a quick look and it might be a bit more difficult to fix since the implementation uses a mix of Strings and char arrays:
   https://github.com/apache/netbeans/blob/master/ide/editor.search/src/org/netbeans/modules/editor/search/DocumentFinder.java
   
   there is also a lot of `toLowerCase/toUpperCase` usage without `Locale.ROOT`, so it is probably not only one place which is causing this issue.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] tugalsan commented on issue #5588: When searching text inside editor, Capital Turkish character 'I' not working

Posted by "tugalsan (via GitHub)" <gi...@apache.org>.
tugalsan commented on issue #5588:
URL: https://github.com/apache/netbeans/issues/5588#issuecomment-1471424536

   - For two weeks, I am trying to compile netbeans, no luck. First I need to pass this milestone, to do any meaningful work. 😓
   - I wish it could fixed on jdk level with a fixer class like [this](https://github.com/tugalsan/com.tugalsan.api.charset/blob/main/src/main/java/com/tugalsan/api/charset/client/TGS_CharSetCast.java)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] mbien commented on issue #5588: When searching text inside editor, Capital Turkish character 'I' not working

Posted by "mbien (via GitHub)" <gi...@apache.org>.
mbien commented on issue #5588:
URL: https://github.com/apache/netbeans/issues/5588#issuecomment-1452323011

   this sounds like a `toLowerCase()` issue to me as described in the javadoc:
   https://docs.oracle.com/en/java/javase/19/docs/api/java.base/java/lang/String.html#toLowerCase()
   
   want to fix it?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists