Thanks, @Tuxology for the review.
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Apr 9 2019
Apr 8 2019
Apr 6 2019
Apr 3 2019
Apr 1 2019
Mar 31 2019
Mar 30 2019
Mar 20 2019
python pwb.py h[Enter] In this case, as harvest_template.py is the only script starting with "h", we can execute it, but what about the cases in which multiple scripts are present starting with the entered partial text. We can't execute any of them, as we don't know which one user wants. Further, the execution of pwb.py (because of [Enter]) will just display the MISSPELLED message. There is no autocompletion of script name.
In T175451#5040060, @Dvorapa wrote:It should work with tab key too in case of Linux (precisely tab + enter)
In T175451#5039684, @Xqt wrote:the basic is very simple: in pwb.py line 200 scripts contains all given scripts. global filename contains the given filename shortcut. You can then create a list of all matching scripts like
similar_scripts = [script for script in scripts if script.startswith(filename)]Maybe the patches of T217195 should be merged first.
@Dvorapa I looked at Python native modules, especially readline & cmd, but none seems to be useful in our use case.
Mar 16 2019
In T175451#5029182, @Xqt wrote:In T175451#5029100, @Nikhil07prakash wrote:Do I have to make any dependency changes or something to use argcomplete library or I can directly submit the patch?
No, directly submit the patch to gerrit but noto the github clone. Don't use any external libraries except the pyhton standard libaries.
Do I have to make any dependency changes or something to use argcomplete library or I can directly submit the patch?
Mar 13 2019
Mar 12 2019
@Dvorapa Can I take up this task?
Mar 11 2019
@Tuxology Thanks for the review. I have taken note of the minor change that you have suggested and will include it in the code.
Actually, I'm not starting with the UI/UX task now, as I'm working on some bugs on other projects, specifically Pywikibot, as suggested by @srishakatux. I'll get in touch with you, once I start working on my application.
Once again thanks for your time...
Mar 7 2019
Just to be clear,
Pywikibot comes packaged with a large number of scripts in the scripts directory, which can be executed using
python pwb.py [script.py]
Currently, if the [script.py] is misspelled it displays
@Dvorapa Hi, this is Nikhil, I'm interested in taking up this task. But I'm a newcomer and haven't contributed to any Wikimedia project yet. Can you please guide me, about what steps do I have to follow to configure Pywikibot on my local system so that I can start contributing.
Mar 5 2019
Hi, this is Nikhil. I'm interested in working on this project. I have completed the 2nd microtask, i.e. Task Statistics. The corresponding repo can be found here.