GSoC 2009- "Search and Replace" by Meetanshu: Difference between revisions

From Scribus Wiki
Jump to navigation Jump to search
 
(9 intermediate revisions by 2 users not shown)
Line 10: Line 10:
==='''Rationale'''===
==='''Rationale'''===


Text comprises a substantial part of many Scribus documents. 'Search and Replace' is one of the most fundamental and widely used text manipulation operations. The current implementation lacks many features while having a non modular coding implementation.
Text is a substantial part of many Scribus documents. 'Search and Replace' is one of the most fundamental and widely used text manipulation operations. The current implementation lacks many features while having a non-modular UI.
Reimplementing it with new features will increase both the usability and popularity of Scribus.  
Reimplementing it with new features will increase both the usability and popularity of Scribus.  


Line 17: Line 17:
==='''Motivation'''===  
==='''Motivation'''===  


Scribus is the leading the Open Source Desktop Publishing software. However, commercial programs seem to be getting ahead in features like 'Search and Replace'. Being widely used, this feature has to be improved. Having a long programming experience in C and desire to write something from scratch is a 'Developer's Dream'. I want to fulfill mine and also help to improve Scribus.
Scribus is the leading the Open Source Desktop Publishing software. However, commercial programs seem to be getting ahead in features like 'Search and Replace'. Being widely used, this feature has to be improved. Having a long programming experience in C and desire to write something from scratch is a 'Developer's Dream'. I want to fulfill mine and also help to improve Scribus.Interacting with the Scribus team has been an absolute pleasure. Plus the 'Scribus Culture' has impressed me so much that I am no longer trying for any other organizations.  


----
----
Line 23: Line 23:
==='''Overview'''===
==='''Overview'''===


:After discussing with the scribus developers, these goals are to be met, by the time of completion of the project -
:After discussing my plans with the Scribus developers, the following goals are to be met by the time of completion of the project -
#Rewriting the source code to make it more modular like separate GUI from the search logic.
#Rewriting the source code to make it more modular, like separate GUI from the search logic.
#Support for Regular Expressions in the search using Qregex.
#Support for Regular Expressions in the search using Qregex.
#Search and replace for multiple documents
#Search and replace for multiple documents
#Better User Interface separating Basic Search and Advanced Search.
#Better user interface separating Basic Search and Advanced Search.


----
----
Line 36: Line 36:


:Following features have to be implemented by end of GSoC 2009:-
:Following features have to be implemented by end of GSoC 2009:-
#The new 'Search and Replace' will have two 'Search and Replace'.First, would search in a particular text region. Second, will prompt user to search whole document or parts of it, that will appear as a checkbox list.It will first look the whole ScribusDoc to find individual parts and then invoke the first 'Search and Replace' on all of them or the checked items.
#The new 'Search and Replace' will have two 'Search and Replace' dialogs. The first, would search in a particular text region. The second will offer the user to search the whole document or parts of it. It will first look up the whole Scribus document to find individual parts and then invoke the first 'Search and Replace' on all or only selected items.
#The new 'Search and Replace' will have to modes. One, to do basic 'Search and Replace' just using text based matching. Second the full fledged as we have of today. The second one can be invoked from the first after clicking an 'Advanced Search' Button or can be directly invoked.  
#The new 'Search and Replace' dialog will have to modes. One to do basic 'Search and Replace' just using text based matching. Second the full fledged dialog that we have of today. The second one can be invoked from the first after clicking an 'Advanced Search' Button or can be directly invoked.  
#It will support Regular Expressions that means we can find all words starting containing a particular string or character at a particular location.
#It will support Regular Expressions. That means we can find all words starting containing a particular string or character at a particular location.
#The code will be divided in two components, the GUI and the actual code logic. This would allow 'Search and Replace' to be extended easily later on.As any feature would need a corresponding addition in the UI part and a separate code backend. Change in one can be done independently of the other.
#The code will be divided in two components, the GUI and the actual code logic. This would allow 'Search and Replace' to be extended easily later on. As any feature would need a corresponding addition in the UI part and a separate code backend, change in one can be done independently of the other.


===='''Optional'''====
===='''Optional'''====


:If time is left, I would also like to implement the following ideas :-
:If any time is left, I would also like to implement the following ideas:
#To make the 'Search and Replace' dialog more informative, proper windows would be prompted like 'Match not Found' in the center unlike 'Search Complete'.
#To make the 'Search and Replace' dialog more informative, proper windows would be prompted like 'Match not Found' in the center, unlike the current 'Search Complete'.
#Depending on the 'textbox' support by Qt, we can have a real-time search, that is searching and highlighting as user is typing. This would need a mechanism from textbox to send the characters as soon as they are being typed in textbox rather than only after 'Return' key is hit.
#Depending on the 'textbox' support by Qt, we can have a real-time search, that is searching and highlighting as user is typing. This would need a mechanism in text frames to send the characters as soon as they are being typed rather than only after pressing the 'Return' key.
#To have 'Search and replace' automatically take input from some portion highlighted by user when it is invoked(From the buglist).
#To have 'Search and Replace' automatically take input from some portion highlighted by user when it is invoked (From the bugtracker).
#To have 'Warp Around' feature. That is if user wants, he can enable it so that when end of document is reached, search starts from the beginning again. This would be just for search.  
#To have a 'Warp Around' feature. That is if user wants, he can enable it, so that when end of document is reached, search starts from the beginning again. This would be just for search.  
#To shift the 'Search and replace' Dialog to side when user is having a look at the searched documents.  
#To shift the 'Search and replace' Dialog to side when user is having a look at the searched documents.  


Line 54: Line 54:
==='''TimeLine'''===  
==='''TimeLine'''===  


*May 23      – June 10     :   Basic 'Search and Replace' without Regular Expressions
*May 23      – June 10: Basic 'Search and Replace' without Regular Expressions
*June 10      – June 23     :   Basic 'Search and Replace' with Regular Expressions
*June 10      – June 23: Basic 'Search and Replace' with Regular Expressions
*June 23      - July 6         :   Advanced 'Search and Replace'
*June 23      - July 6: Advanced 'Search and Replace'
*July 6          – July 21       :  global 'Search and replace'
*July 6          – July 21 Global 'Search and Replace'
*July 21      - August 10 :   Exploiting bugs and patching them,Additional Ideas Implementation,If we are for some reasons not on schedule
*July 21      - August 10 : Exploiting bugs and patching them; implementation of additional ideas if time permits.
*August 10 - August 17 : Documenting the source code, Writing about ideas that can be implemented
*August 10 - August 17 : Documenting the source code, writing about other ideas that can be implemented.


----
----
                             
 
==='''Deliverables'''===
==='''Deliverables'''===
   
   
#A new 'Search and Replace Dialog', rather two ;) with all the features mentioned under the 'Essential' portion of  “Implementation”.
#A new "Search and Replace" UI with all the features mentioned under the "Essential" portion of  “Implementation”.
#Documentation of the work done.  
#Documentation of the work done.  
#Some/all features from the “Optional portion” of “Implementation”
#Some or all features from the “Optional" portion of “Implementation”


----
----


==='''BIO'''===
==='''BIO'''===
:I am a final year Undergraduate student in Computer Engineering from Malaviya National Institute of Technology, Jaipur, India. I have been programming in C since Class 6th and C++ since Class 11th . I have worked on Qt2 to create an UI for a C++ project 'Department Management Software'.I have done many projects in C, C++ for academics, competitions and at college level. My interests include Coding (C/C++/Java/C#) , Algorithms , Network Programming. Past summer I did two moths intern at Microsoft IDC,Hyderabad India and got some hands on experience on real world projects. Since then I have taken interest in reading and understanding the codebase (Scribus, Vim,  Open office), learning debugging techniques and amicably working in teams.
:I am a final year Undergraduate student in Computer Engineering at the Malaviya National Institute of Technology, Jaipur, India. I have been programming in C since Class 6 and C++ since Class 11. I have worked on Qt2 to create a UI for the C++ project "Department Management Software." I have done many projects in C, C++ for academics, competitions and at college level. My interests include programming (C/C++/Java/C#), algorithms, network programming. Last summer I had a two-months internship at Microsoft IDC, Hyderabad, India and got some hands on experience on real world projects. Since then I have taken interest in reading and understanding Open Source codebase (Scribus, Vim,  OpenOffice.org), learning debugging techniques and amicably working in teams.

Latest revision as of 07:09, 28 March 2009

Search and Replace


Meetanshu Gupta : meetanshu.gupta@gmail.com


Rationale

Text is a substantial part of many Scribus documents. 'Search and Replace' is one of the most fundamental and widely used text manipulation operations. The current implementation lacks many features while having a non-modular UI. Reimplementing it with new features will increase both the usability and popularity of Scribus.


Motivation

Scribus is the leading the Open Source Desktop Publishing software. However, commercial programs seem to be getting ahead in features like 'Search and Replace'. Being widely used, this feature has to be improved. Having a long programming experience in C and desire to write something from scratch is a 'Developer's Dream'. I want to fulfill mine and also help to improve Scribus.Interacting with the Scribus team has been an absolute pleasure. Plus the 'Scribus Culture' has impressed me so much that I am no longer trying for any other organizations.


Overview

After discussing my plans with the Scribus developers, the following goals are to be met by the time of completion of the project -
  1. Rewriting the source code to make it more modular, like separate GUI from the search logic.
  2. Support for Regular Expressions in the search using Qregex.
  3. Search and replace for multiple documents
  4. Better user interface separating Basic Search and Advanced Search.

Implementation

Essential

Following features have to be implemented by end of GSoC 2009:-
  1. The new 'Search and Replace' will have two 'Search and Replace' dialogs. The first, would search in a particular text region. The second will offer the user to search the whole document or parts of it. It will first look up the whole Scribus document to find individual parts and then invoke the first 'Search and Replace' on all or only selected items.
  2. The new 'Search and Replace' dialog will have to modes. One to do basic 'Search and Replace' just using text based matching. Second the full fledged dialog that we have of today. The second one can be invoked from the first after clicking an 'Advanced Search' Button or can be directly invoked.
  3. It will support Regular Expressions. That means we can find all words starting containing a particular string or character at a particular location.
  4. The code will be divided in two components, the GUI and the actual code logic. This would allow 'Search and Replace' to be extended easily later on. As any feature would need a corresponding addition in the UI part and a separate code backend, change in one can be done independently of the other.

Optional

If any time is left, I would also like to implement the following ideas:
  1. To make the 'Search and Replace' dialog more informative, proper windows would be prompted like 'Match not Found' in the center, unlike the current 'Search Complete'.
  2. Depending on the 'textbox' support by Qt, we can have a real-time search, that is searching and highlighting as user is typing. This would need a mechanism in text frames to send the characters as soon as they are being typed rather than only after pressing the 'Return' key.
  3. To have 'Search and Replace' automatically take input from some portion highlighted by user when it is invoked (From the bugtracker).
  4. To have a 'Warp Around' feature. That is if user wants, he can enable it, so that when end of document is reached, search starts from the beginning again. This would be just for search.
  5. To shift the 'Search and replace' Dialog to side when user is having a look at the searched documents.

TimeLine

  • May 23 – June 10: Basic 'Search and Replace' without Regular Expressions
  • June 10 – June 23: Basic 'Search and Replace' with Regular Expressions
  • June 23 - July 6: Advanced 'Search and Replace'
  • July 6 – July 21 Global 'Search and Replace'
  • July 21 - August 10 : Exploiting bugs and patching them; implementation of additional ideas if time permits.
  • August 10 - August 17 : Documenting the source code, writing about other ideas that can be implemented.

Deliverables

  1. A new "Search and Replace" UI with all the features mentioned under the "Essential" portion of “Implementation”.
  2. Documentation of the work done.
  3. Some or all features from the “Optional" portion of “Implementation”

BIO

I am a final year Undergraduate student in Computer Engineering at the Malaviya National Institute of Technology, Jaipur, India. I have been programming in C since Class 6 and C++ since Class 11. I have worked on Qt2 to create a UI for the C++ project "Department Management Software." I have done many projects in C, C++ for academics, competitions and at college level. My interests include programming (C/C++/Java/C#), algorithms, network programming. Last summer I had a two-months internship at Microsoft IDC, Hyderabad, India and got some hands on experience on real world projects. Since then I have taken interest in reading and understanding Open Source codebase (Scribus, Vim, OpenOffice.org), learning debugging techniques and amicably working in teams.