Thread: [Gitbro-develop] add a new text widget
Brought to you by:
happypeter
From: guosong z. <bil...@gm...> - 2010-02-01 09:32:55
|
Now, I add a new text widget with a vertical scrollbar and fix a few bugs last time, for example, 1. the GUI can display full screen 2. use pack geometry management instead of grid. Maybe grid method is better than pack, but I can not operate it well to make GUI full-screen display. 3. a little trick with entry widget, when click 'search' button, then the entry widget will appear in the right side of the 'search' button. It is also stupid, if click 'search' again, the entry will appear again. So, I need to fix the bug. Though this feature is not necessary, but I think it is interesting so I do not want to cancel it. But those are all decorations now. 4. the file button can work now. If click it, a file named '11.txt' in the current directory will be displayed in the right side text widget. This also can be rewritten to be more general. It is just a test in order to know how to read a file in text widget. 5. There is no necessary to add a horizontal scrollbar in text widget, because a option wrap with default value WORD forbids the functionality of the horizontal scrollbar, with the default value a line can be split by word when it reach the boundary of the text widget. Only configure wrap with NONE, the horizontal scrollbar will take effect. |
From: Peter K. <hap...@gm...> - 2010-02-01 12:10:55
Attachments:
search.diff
|
On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang <bil...@gm...>wrote: > Now, I add a new text widget with a vertical scrollbar and fix a few bugs > last time, for example, > 1. the GUI can display full screen > yes, I tested, and verified this. > 2. use pack geometry management instead of grid. Maybe grid method is > better than pack, but I can > not operate it well to make GUI full-screen display. > 3. a little trick with entry widget, when click 'search' button, then the > entry widget will appear in the > right side of the 'search' button. It is also stupid, if click 'search' > again, the entry will appear again. > So, I need to fix the bug. Though this feature is not necessary, but I > think it is interesting so I do not > want to cancel it. But those are all decorations now. > See my attached patch, I think it fixed this bug. > 4. the file button can work now. If click it, a file named '11.txt' in the > current directory will be displayed > in the right side text widget. This also can be rewritten to be more > general. It is just a test in order to > know how to read a file in text widget. > nice progress. > 5. There is no necessary to add a horizontal scrollbar in text widget, > because a option wrap with default > value WORD forbids the functionality of the horizontal scrollbar, with the > default value a line can be split > by word when it reach the boundary of the text widget. Only configure wrap > with NONE, the horizontal scrollbar > will take effect. > > good hacking, this is useful, thx. P.S: I've added you as a collaborator of our github:gitbro repository. This means you can clone the repo, and commit the current source code into the our upstream repo when you feel like. Plz commit the source and add as many comments as you can, maybe in the future you think part of the comments are out of date, you can simply delete them. we have git, all your write now will be in git history even they are deleted one day, but whenever we want to go back and check where we were started form, the comments will surely be of some help. > > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the > business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > _______________________________________________ > Gitbro-develop mailing list > Git...@li... > https://lists.sourceforge.net/lists/listinfo/gitbro-develop > > -- Regards Peter |
From: Peter K. <hap...@gm...> - 2010-02-01 14:37:54
|
On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang <bil...@gm...>wrote: > Now, I add a new text widget with a vertical scrollbar and fix a few bugs > last time, for example, > 1. the GUI can display full screen > yes, I tested, and verified this. > 2. use pack geometry management instead of grid. Maybe grid method is > better than pack, but I can > not operate it well to make GUI full-screen display. > 3. a little trick with entry widget, when click 'search' button, then the > entry widget will appear in the > right side of the 'search' button. It is also stupid, if click 'search' > again, the entry will appear again. > So, I need to fix the bug. Though this feature is not necessary, but I > think it is interesting so I do not > want to cancel it. But those are all decorations now. > See my attached patch, I think it fixed this bug. > 4. the file button can work now. If click it, a file named '11.txt' in the > current directory will be displayed > in the right side text widget. This also can be rewritten to be more > general. It is just a test in order to > know how to read a file in text widget. > nice progress. > 5. There is no necessary to add a horizontal scrollbar in text widget, > because a option wrap with default > value WORD forbids the functionality of the horizontal scrollbar, with the > default value a line can be split > by word when it reach the boundary of the text widget. Only configure wrap > with NONE, the horizontal scrollbar > will take effect. > > good hacking, this is useful, thx. P.S: I've added you as a collaborator of our github:gitbro repository. This means you can clone the repo, and commit the current source code into the our upstream repo when you feel like. Plz commit the source and add as many comments as you can, maybe in the future you think part of the comments are out of date, you can simply delete them. we have git, all your write now will be in git history even they are deleted one day, but whenever we want to go back and check where we were started form, the comments will surely be of some help. > On Mon, Feb 1, 2010 at 8:10 PM, Peter King <hap...@gm...> wrote: > > > On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang <bil...@gm... > > wrote: > >> Now, I add a new text widget with a vertical scrollbar and fix a few bugs >> last time, for example, >> 1. the GUI can display full screen >> > yes, I tested, and verified this. > >> 2. use pack geometry management instead of grid. Maybe grid method is >> better than pack, but I can >> not operate it well to make GUI full-screen display. >> 3. a little trick with entry widget, when click 'search' button, then the >> entry widget will appear in the >> right side of the 'search' button. It is also stupid, if click 'search' >> again, the entry will appear again. >> So, I need to fix the bug. Though this feature is not necessary, but I >> think it is interesting so I do not >> want to cancel it. But those are all decorations now. >> > See my attached patch, I think it fixed this bug. > >> 4. the file button can work now. If click it, a file named '11.txt' in the >> current directory will be displayed >> in the right side text widget. This also can be rewritten to be more >> general. It is just a test in order to >> know how to read a file in text widget. >> > nice progress. > >> 5. There is no necessary to add a horizontal scrollbar in text widget, >> because a option wrap with default >> value WORD forbids the functionality of the horizontal scrollbar, with >> the default value a line can be split >> by word when it reach the boundary of the text widget. Only configure >> wrap with NONE, the horizontal scrollbar >> will take effect. >> >> good hacking, this is useful, thx. > > P.S: > I've added you as a collaborator of our github:gitbro repository. This > means you can clone the repo, and commit the current source code into > the our upstream repo when you feel like. Plz commit the source and add as > many comments as you can, maybe in the future you think part of the > comments are out of date, you can simply delete them. we have git, all your > write now will be in git history even they are deleted one day, but whenever > we want to go back and check where we were started form, the comments will > surely be of some help. > >> >> >> ------------------------------------------------------------------------------ >> The Planet: dedicated and managed hosting, cloud storage, colocation >> Stay online with enterprise data centers and the best network in the >> business >> Choose flexible plans and management services without long-term contracts >> Personal 24x7 support from experience hosting pros just a phone call away. >> http://p.sf.net/sfu/theplanet-com >> _______________________________________________ >> Gitbro-develop mailing list >> Git...@li... >> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >> >> > > > -- > Regards > Peter > -- Regards Peter |
From: Peter K. <hap...@gm...> - 2010-02-01 14:30:23
|
plz commit your code into gitbro/gui/ On Mon, Feb 1, 2010 at 8:26 PM, Peter King <hap...@gm...> wrote: > > On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang <bil...@gm... > > wrote: > >> Now, I add a new text widget with a vertical scrollbar and fix a few bugs >> last time, for example, >> 1. the GUI can display full screen >> > yes, I tested, and verified this. > >> 2. use pack geometry management instead of grid. Maybe grid method is >> better than pack, but I can >> not operate it well to make GUI full-screen display. >> 3. a little trick with entry widget, when click 'search' button, then the >> entry widget will appear in the >> right side of the 'search' button. It is also stupid, if click 'search' >> again, the entry will appear again. >> So, I need to fix the bug. Though this feature is not necessary, but I >> think it is interesting so I do not >> want to cancel it. But those are all decorations now. >> > See my attached patch, I think it fixed this bug. > >> 4. the file button can work now. If click it, a file named '11.txt' in the >> current directory will be displayed >> in the right side text widget. This also can be rewritten to be more >> general. It is just a test in order to >> know how to read a file in text widget. >> > nice progress. > >> 5. There is no necessary to add a horizontal scrollbar in text widget, >> because a option wrap with default >> value WORD forbids the functionality of the horizontal scrollbar, with >> the default value a line can be split >> by word when it reach the boundary of the text widget. Only configure >> wrap with NONE, the horizontal scrollbar >> will take effect. >> >> good hacking, this is useful, thx. > > P.S: > I've added you as a collaborator of our github:gitbro repository. This > means you can clone the repo, and commit the current source code into > the our upstream repo when you feel like. Plz commit the source and add as > many comments as you can, maybe in the future you think part of the > comments are out of date, you can simply delete them. we have git, all your > write now will be in git history even they are deleted one day, but whenever > we want to go back and check where we were started form, the comments will > surely be of some help. > >> > > On Mon, Feb 1, 2010 at 8:10 PM, Peter King <hap...@gm...>wrote: > >> >> >> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >> bil...@gm...> wrote: >> >>> Now, I add a new text widget with a vertical scrollbar and fix a few bugs >>> last time, for example, >>> 1. the GUI can display full screen >>> >> yes, I tested, and verified this. >> >>> 2. use pack geometry management instead of grid. Maybe grid method is >>> better than pack, but I can >>> not operate it well to make GUI full-screen display. >>> 3. a little trick with entry widget, when click 'search' button, then the >>> entry widget will appear in the >>> right side of the 'search' button. It is also stupid, if click 'search' >>> again, the entry will appear again. >>> So, I need to fix the bug. Though this feature is not necessary, but I >>> think it is interesting so I do not >>> want to cancel it. But those are all decorations now. >>> >> See my attached patch, I think it fixed this bug. >> >>> 4. the file button can work now. If click it, a file named '11.txt' in >>> the current directory will be displayed >>> in the right side text widget. This also can be rewritten to be more >>> general. It is just a test in order to >>> know how to read a file in text widget. >>> >> nice progress. >> >>> 5. There is no necessary to add a horizontal scrollbar in text widget, >>> because a option wrap with default >>> value WORD forbids the functionality of the horizontal scrollbar, with >>> the default value a line can be split >>> by word when it reach the boundary of the text widget. Only configure >>> wrap with NONE, the horizontal scrollbar >>> will take effect. >>> >>> good hacking, this is useful, thx. >> >> P.S: >> I've added you as a collaborator of our github:gitbro repository. This >> means you can clone the repo, and commit the current source code into >> the our upstream repo when you feel like. Plz commit the source and add as >> many comments as you can, maybe in the future you think part of the >> comments are out of date, you can simply delete them. we have git, all your >> write now will be in git history even they are deleted one day, but whenever >> we want to go back and check where we were started form, the comments will >> surely be of some help. >> >>> >>> >>> ------------------------------------------------------------------------------ >>> The Planet: dedicated and managed hosting, cloud storage, colocation >>> Stay online with enterprise data centers and the best network in the >>> business >>> Choose flexible plans and management services without long-term contracts >>> Personal 24x7 support from experience hosting pros just a phone call >>> away. >>> http://p.sf.net/sfu/theplanet-com >>> _______________________________________________ >>> Gitbro-develop mailing list >>> Git...@li... >>> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >>> >>> >> >> >> -- >> Regards >> Peter >> > > > > -- > Regards > Peter > -- Regards Peter |
From: guosong z. <bil...@gm...> - 2010-02-02 11:58:46
|
Now, I can not push gitbro to github. why billie@billie-laptop:~/gitbro$ git push To gi...@gi...:happypeter/gitbro.git ! [rejected] master -> master (non-fast forward) error: failed to push some refs to 'gi...@gi...:happypeter/gitbro.git' On Mon, Feb 1, 2010 at 10:30 PM, Peter King <hap...@gm...>wrote: > > plz commit your code into gitbro/gui/ > > > > On Mon, Feb 1, 2010 at 8:26 PM, Peter King <hap...@gm...>wrote: > >> >> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >> bil...@gm...> wrote: >> >>> Now, I add a new text widget with a vertical scrollbar and fix a few bugs >>> last time, for example, >>> 1. the GUI can display full screen >>> >> yes, I tested, and verified this. >> >>> 2. use pack geometry management instead of grid. Maybe grid method is >>> better than pack, but I can >>> not operate it well to make GUI full-screen display. >>> 3. a little trick with entry widget, when click 'search' button, then the >>> entry widget will appear in the >>> right side of the 'search' button. It is also stupid, if click 'search' >>> again, the entry will appear again. >>> So, I need to fix the bug. Though this feature is not necessary, but I >>> think it is interesting so I do not >>> want to cancel it. But those are all decorations now. >>> >> See my attached patch, I think it fixed this bug. >> >>> 4. the file button can work now. If click it, a file named '11.txt' in >>> the current directory will be displayed >>> in the right side text widget. This also can be rewritten to be more >>> general. It is just a test in order to >>> know how to read a file in text widget. >>> >> nice progress. >> >>> 5. There is no necessary to add a horizontal scrollbar in text widget, >>> because a option wrap with default >>> value WORD forbids the functionality of the horizontal scrollbar, with >>> the default value a line can be split >>> by word when it reach the boundary of the text widget. Only configure >>> wrap with NONE, the horizontal scrollbar >>> will take effect. >>> >>> good hacking, this is useful, thx. >> >> P.S: >> I've added you as a collaborator of our github:gitbro repository. This >> means you can clone the repo, and commit the current source code into >> the our upstream repo when you feel like. Plz commit the source and add as >> many comments as you can, maybe in the future you think part of the >> comments are out of date, you can simply delete them. we have git, all your >> write now will be in git history even they are deleted one day, but whenever >> we want to go back and check where we were started form, the comments will >> surely be of some help. >> >>> >> >> On Mon, Feb 1, 2010 at 8:10 PM, Peter King <hap...@gm...>wrote: >> >>> >>> >>> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >>> bil...@gm...> wrote: >>> >>>> Now, I add a new text widget with a vertical scrollbar and fix a few >>>> bugs last time, for example, >>>> 1. the GUI can display full screen >>>> >>> yes, I tested, and verified this. >>> >>>> 2. use pack geometry management instead of grid. Maybe grid method is >>>> better than pack, but I can >>>> not operate it well to make GUI full-screen display. >>>> 3. a little trick with entry widget, when click 'search' button, then >>>> the entry widget will appear in the >>>> right side of the 'search' button. It is also stupid, if click 'search' >>>> again, the entry will appear again. >>>> So, I need to fix the bug. Though this feature is not necessary, but I >>>> think it is interesting so I do not >>>> want to cancel it. But those are all decorations now. >>>> >>> See my attached patch, I think it fixed this bug. >>> >>>> 4. the file button can work now. If click it, a file named '11.txt' in >>>> the current directory will be displayed >>>> in the right side text widget. This also can be rewritten to be more >>>> general. It is just a test in order to >>>> know how to read a file in text widget. >>>> >>> nice progress. >>> >>>> 5. There is no necessary to add a horizontal scrollbar in text widget, >>>> because a option wrap with default >>>> value WORD forbids the functionality of the horizontal scrollbar, with >>>> the default value a line can be split >>>> by word when it reach the boundary of the text widget. Only configure >>>> wrap with NONE, the horizontal scrollbar >>>> will take effect. >>>> >>>> good hacking, this is useful, thx. >>> >>> P.S: >>> I've added you as a collaborator of our github:gitbro repository. This >>> means you can clone the repo, and commit the current source code into >>> the our upstream repo when you feel like. Plz commit the source and add >>> as many comments as you can, maybe in the future you think part of the >>> comments are out of date, you can simply delete them. we have git, all your >>> write now will be in git history even they are deleted one day, but whenever >>> we want to go back and check where we were started form, the comments will >>> surely be of some help. >>> >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> The Planet: dedicated and managed hosting, cloud storage, colocation >>>> Stay online with enterprise data centers and the best network in the >>>> business >>>> Choose flexible plans and management services without long-term >>>> contracts >>>> Personal 24x7 support from experience hosting pros just a phone call >>>> away. >>>> http://p.sf.net/sfu/theplanet-com >>>> _______________________________________________ >>>> Gitbro-develop mailing list >>>> Git...@li... >>>> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >>>> >>>> >>> >>> >>> -- >>> Regards >>> Peter >>> >> >> >> >> -- >> Regards >> Peter >> > > > > -- > Regards > Peter > > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the > business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > _______________________________________________ > Gitbro-develop mailing list > Git...@li... > https://lists.sourceforge.net/lists/listinfo/gitbro-develop > > |
From: Peter K. <hap...@gm...> - 2010-02-02 12:06:06
|
the error happens when I pushed sth while you were editing, so when you want to push, there will be conflicts, so the error you get is natural. Just clone gitbro again, and try to run git pull before you commit your changes. # do the editing $git pull $git commit -a -m "my changes" $git push On Tue, Feb 2, 2010 at 7:58 PM, guosong zhang <bil...@gm...>wrote: > Now, I can not push gitbro to github. why > > billie@billie-laptop:~/gitbro$ git push > To gi...@gi...:happypeter/gitbro.git > ! [rejected] master -> master (non-fast forward) > error: failed to push some refs to 'gi...@gi...:happypeter/gitbro.git' > > > > On Mon, Feb 1, 2010 at 10:30 PM, Peter King <hap...@gm...>wrote: > >> >> plz commit your code into gitbro/gui/ >> >> >> >> On Mon, Feb 1, 2010 at 8:26 PM, Peter King <hap...@gm...>wrote: >> >>> >>> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >>> bil...@gm...> wrote: >>> >>>> Now, I add a new text widget with a vertical scrollbar and fix a few >>>> bugs last time, for example, >>>> 1. the GUI can display full screen >>>> >>> yes, I tested, and verified this. >>> >>>> 2. use pack geometry management instead of grid. Maybe grid method is >>>> better than pack, but I can >>>> not operate it well to make GUI full-screen display. >>>> 3. a little trick with entry widget, when click 'search' button, then >>>> the entry widget will appear in the >>>> right side of the 'search' button. It is also stupid, if click 'search' >>>> again, the entry will appear again. >>>> So, I need to fix the bug. Though this feature is not necessary, but I >>>> think it is interesting so I do not >>>> want to cancel it. But those are all decorations now. >>>> >>> See my attached patch, I think it fixed this bug. >>> >>>> 4. the file button can work now. If click it, a file named '11.txt' in >>>> the current directory will be displayed >>>> in the right side text widget. This also can be rewritten to be more >>>> general. It is just a test in order to >>>> know how to read a file in text widget. >>>> >>> nice progress. >>> >>>> 5. There is no necessary to add a horizontal scrollbar in text widget, >>>> because a option wrap with default >>>> value WORD forbids the functionality of the horizontal scrollbar, with >>>> the default value a line can be split >>>> by word when it reach the boundary of the text widget. Only configure >>>> wrap with NONE, the horizontal scrollbar >>>> will take effect. >>>> >>>> good hacking, this is useful, thx. >>> >>> P.S: >>> I've added you as a collaborator of our github:gitbro repository. This >>> means you can clone the repo, and commit the current source code into >>> the our upstream repo when you feel like. Plz commit the source and add >>> as many comments as you can, maybe in the future you think part of the >>> comments are out of date, you can simply delete them. we have git, all your >>> write now will be in git history even they are deleted one day, but whenever >>> we want to go back and check where we were started form, the comments will >>> surely be of some help. >>> >>>> >>> >>> On Mon, Feb 1, 2010 at 8:10 PM, Peter King <hap...@gm...>wrote: >>> >>>> >>>> >>>> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >>>> bil...@gm...> wrote: >>>> >>>>> Now, I add a new text widget with a vertical scrollbar and fix a few >>>>> bugs last time, for example, >>>>> 1. the GUI can display full screen >>>>> >>>> yes, I tested, and verified this. >>>> >>>>> 2. use pack geometry management instead of grid. Maybe grid method is >>>>> better than pack, but I can >>>>> not operate it well to make GUI full-screen display. >>>>> 3. a little trick with entry widget, when click 'search' button, then >>>>> the entry widget will appear in the >>>>> right side of the 'search' button. It is also stupid, if click >>>>> 'search' again, the entry will appear again. >>>>> So, I need to fix the bug. Though this feature is not necessary, but I >>>>> think it is interesting so I do not >>>>> want to cancel it. But those are all decorations now. >>>>> >>>> See my attached patch, I think it fixed this bug. >>>> >>>>> 4. the file button can work now. If click it, a file named '11.txt' in >>>>> the current directory will be displayed >>>>> in the right side text widget. This also can be rewritten to be more >>>>> general. It is just a test in order to >>>>> know how to read a file in text widget. >>>>> >>>> nice progress. >>>> >>>>> 5. There is no necessary to add a horizontal scrollbar in text widget, >>>>> because a option wrap with default >>>>> value WORD forbids the functionality of the horizontal scrollbar, with >>>>> the default value a line can be split >>>>> by word when it reach the boundary of the text widget. Only configure >>>>> wrap with NONE, the horizontal scrollbar >>>>> will take effect. >>>>> >>>>> good hacking, this is useful, thx. >>>> >>>> P.S: >>>> I've added you as a collaborator of our github:gitbro repository. This >>>> means you can clone the repo, and commit the current source code into >>>> the our upstream repo when you feel like. Plz commit the source and add >>>> as many comments as you can, maybe in the future you think part of the >>>> comments are out of date, you can simply delete them. we have git, all your >>>> write now will be in git history even they are deleted one day, but whenever >>>> we want to go back and check where we were started form, the comments will >>>> surely be of some help. >>>> >>>>> >>>>> >>>>> ------------------------------------------------------------------------------ >>>>> The Planet: dedicated and managed hosting, cloud storage, colocation >>>>> Stay online with enterprise data centers and the best network in the >>>>> business >>>>> Choose flexible plans and management services without long-term >>>>> contracts >>>>> Personal 24x7 support from experience hosting pros just a phone call >>>>> away. >>>>> http://p.sf.net/sfu/theplanet-com >>>>> _______________________________________________ >>>>> Gitbro-develop mailing list >>>>> Git...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >>>>> >>>>> >>>> >>>> >>>> -- >>>> Regards >>>> Peter >>>> >>> >>> >>> >>> -- >>> Regards >>> Peter >>> >> >> >> >> -- >> Regards >> Peter >> >> >> ------------------------------------------------------------------------------ >> The Planet: dedicated and managed hosting, cloud storage, colocation >> Stay online with enterprise data centers and the best network in the >> business >> Choose flexible plans and management services without long-term contracts >> Personal 24x7 support from experience hosting pros just a phone call away. >> http://p.sf.net/sfu/theplanet-com >> _______________________________________________ >> Gitbro-develop mailing list >> Git...@li... >> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >> >> > > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the > business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > _______________________________________________ > Gitbro-develop mailing list > Git...@li... > https://lists.sourceforge.net/lists/listinfo/gitbro-develop > > -- Regards Peter |
From: guosong z. <bil...@gm...> - 2010-02-02 12:47:21
|
You are right. The problem has been fixed. Thanx! You can run pygit so you will see its new appearance. On Tue, Feb 2, 2010 at 8:05 PM, Peter King <hap...@gm...> wrote: > the error happens when I pushed sth while you were editing, so when you > want to push, there will be conflicts, so the error you get is natural. > > Just clone gitbro again, and try to run git pull before you commit your > changes. > > # do the editing > $git pull > $git commit -a -m "my changes" > $git push > > > > On Tue, Feb 2, 2010 at 7:58 PM, guosong zhang <bil...@gm... > > wrote: > >> Now, I can not push gitbro to github. why >> >> billie@billie-laptop:~/gitbro$ git push >> To gi...@gi...:happypeter/gitbro.git >> ! [rejected] master -> master (non-fast forward) >> error: failed to push some refs to 'gi...@gi...:happypeter/gitbro.git' >> >> >> >> On Mon, Feb 1, 2010 at 10:30 PM, Peter King <hap...@gm...>wrote: >> >>> >>> plz commit your code into gitbro/gui/ >>> >>> >>> >>> On Mon, Feb 1, 2010 at 8:26 PM, Peter King <hap...@gm...>wrote: >>> >>>> >>>> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >>>> bil...@gm...> wrote: >>>> >>>>> Now, I add a new text widget with a vertical scrollbar and fix a few >>>>> bugs last time, for example, >>>>> 1. the GUI can display full screen >>>>> >>>> yes, I tested, and verified this. >>>> >>>>> 2. use pack geometry management instead of grid. Maybe grid method is >>>>> better than pack, but I can >>>>> not operate it well to make GUI full-screen display. >>>>> 3. a little trick with entry widget, when click 'search' button, then >>>>> the entry widget will appear in the >>>>> right side of the 'search' button. It is also stupid, if click >>>>> 'search' again, the entry will appear again. >>>>> So, I need to fix the bug. Though this feature is not necessary, but I >>>>> think it is interesting so I do not >>>>> want to cancel it. But those are all decorations now. >>>>> >>>> See my attached patch, I think it fixed this bug. >>>> >>>>> 4. the file button can work now. If click it, a file named '11.txt' in >>>>> the current directory will be displayed >>>>> in the right side text widget. This also can be rewritten to be more >>>>> general. It is just a test in order to >>>>> know how to read a file in text widget. >>>>> >>>> nice progress. >>>> >>>>> 5. There is no necessary to add a horizontal scrollbar in text widget, >>>>> because a option wrap with default >>>>> value WORD forbids the functionality of the horizontal scrollbar, with >>>>> the default value a line can be split >>>>> by word when it reach the boundary of the text widget. Only configure >>>>> wrap with NONE, the horizontal scrollbar >>>>> will take effect. >>>>> >>>>> good hacking, this is useful, thx. >>>> >>>> P.S: >>>> I've added you as a collaborator of our github:gitbro repository. This >>>> means you can clone the repo, and commit the current source code into >>>> the our upstream repo when you feel like. Plz commit the source and add >>>> as many comments as you can, maybe in the future you think part of the >>>> comments are out of date, you can simply delete them. we have git, all your >>>> write now will be in git history even they are deleted one day, but whenever >>>> we want to go back and check where we were started form, the comments will >>>> surely be of some help. >>>> >>>>> >>>> >>>> On Mon, Feb 1, 2010 at 8:10 PM, Peter King <hap...@gm...>wrote: >>>> >>>>> >>>>> >>>>> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >>>>> bil...@gm...> wrote: >>>>> >>>>>> Now, I add a new text widget with a vertical scrollbar and fix a few >>>>>> bugs last time, for example, >>>>>> 1. the GUI can display full screen >>>>>> >>>>> yes, I tested, and verified this. >>>>> >>>>>> 2. use pack geometry management instead of grid. Maybe grid method is >>>>>> better than pack, but I can >>>>>> not operate it well to make GUI full-screen display. >>>>>> 3. a little trick with entry widget, when click 'search' button, then >>>>>> the entry widget will appear in the >>>>>> right side of the 'search' button. It is also stupid, if click >>>>>> 'search' again, the entry will appear again. >>>>>> So, I need to fix the bug. Though this feature is not necessary, but >>>>>> I think it is interesting so I do not >>>>>> want to cancel it. But those are all decorations now. >>>>>> >>>>> See my attached patch, I think it fixed this bug. >>>>> >>>>>> 4. the file button can work now. If click it, a file named '11.txt' in >>>>>> the current directory will be displayed >>>>>> in the right side text widget. This also can be rewritten to be more >>>>>> general. It is just a test in order to >>>>>> know how to read a file in text widget. >>>>>> >>>>> nice progress. >>>>> >>>>>> 5. There is no necessary to add a horizontal scrollbar in text widget, >>>>>> because a option wrap with default >>>>>> value WORD forbids the functionality of the horizontal scrollbar, >>>>>> with the default value a line can be split >>>>>> by word when it reach the boundary of the text widget. Only configure >>>>>> wrap with NONE, the horizontal scrollbar >>>>>> will take effect. >>>>>> >>>>>> good hacking, this is useful, thx. >>>>> >>>>> P.S: >>>>> I've added you as a collaborator of our github:gitbro repository. This >>>>> means you can clone the repo, and commit the current source code into >>>>> the our upstream repo when you feel like. Plz commit the source and add >>>>> as many comments as you can, maybe in the future you think part of the >>>>> comments are out of date, you can simply delete them. we have git, all your >>>>> write now will be in git history even they are deleted one day, but whenever >>>>> we want to go back and check where we were started form, the comments will >>>>> surely be of some help. >>>>> >>>>>> >>>>>> >>>>>> ------------------------------------------------------------------------------ >>>>>> The Planet: dedicated and managed hosting, cloud storage, colocation >>>>>> Stay online with enterprise data centers and the best network in the >>>>>> business >>>>>> Choose flexible plans and management services without long-term >>>>>> contracts >>>>>> Personal 24x7 support from experience hosting pros just a phone call >>>>>> away. >>>>>> http://p.sf.net/sfu/theplanet-com >>>>>> _______________________________________________ >>>>>> Gitbro-develop mailing list >>>>>> Git...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >>>>>> >>>>>> >>>>> >>>>> >>>>> -- >>>>> Regards >>>>> Peter >>>>> >>>> >>>> >>>> >>>> -- >>>> Regards >>>> Peter >>>> >>> >>> >>> >>> -- >>> Regards >>> Peter >>> >>> >>> ------------------------------------------------------------------------------ >>> The Planet: dedicated and managed hosting, cloud storage, colocation >>> Stay online with enterprise data centers and the best network in the >>> business >>> Choose flexible plans and management services without long-term contracts >>> Personal 24x7 support from experience hosting pros just a phone call >>> away. >>> http://p.sf.net/sfu/theplanet-com >>> _______________________________________________ >>> Gitbro-develop mailing list >>> Git...@li... >>> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >>> >>> >> >> >> ------------------------------------------------------------------------------ >> The Planet: dedicated and managed hosting, cloud storage, colocation >> Stay online with enterprise data centers and the best network in the >> business >> Choose flexible plans and management services without long-term contracts >> Personal 24x7 support from experience hosting pros just a phone call away. >> http://p.sf.net/sfu/theplanet-com >> _______________________________________________ >> Gitbro-develop mailing list >> Git...@li... >> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >> >> > > > -- > Regards > Peter > > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the > business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > _______________________________________________ > Gitbro-develop mailing list > Git...@li... > https://lists.sourceforge.net/lists/listinfo/gitbro-develop > > |
From: guosong z. <bil...@gm...> - 2010-02-03 03:24:07
|
I want the entry widget to appear when you click the search button. It is not a bug. I like the effect which is fun. If not like the idea, you can modify it, but you can not think it as a bug. On Tue, Feb 2, 2010 at 8:05 PM, Peter King <hap...@gm...> wrote: > the error happens when I pushed sth while you were editing, so when you > want to push, there will be conflicts, so the error you get is natural. > > Just clone gitbro again, and try to run git pull before you commit your > changes. > > # do the editing > $git pull > $git commit -a -m "my changes" > $git push > > > > On Tue, Feb 2, 2010 at 7:58 PM, guosong zhang <bil...@gm... > > wrote: > >> Now, I can not push gitbro to github. why >> >> billie@billie-laptop:~/gitbro$ git push >> To gi...@gi...:happypeter/gitbro.git >> ! [rejected] master -> master (non-fast forward) >> error: failed to push some refs to 'gi...@gi...:happypeter/gitbro.git' >> >> >> >> On Mon, Feb 1, 2010 at 10:30 PM, Peter King <hap...@gm...>wrote: >> >>> >>> plz commit your code into gitbro/gui/ >>> >>> >>> >>> On Mon, Feb 1, 2010 at 8:26 PM, Peter King <hap...@gm...>wrote: >>> >>>> >>>> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >>>> bil...@gm...> wrote: >>>> >>>>> Now, I add a new text widget with a vertical scrollbar and fix a few >>>>> bugs last time, for example, >>>>> 1. the GUI can display full screen >>>>> >>>> yes, I tested, and verified this. >>>> >>>>> 2. use pack geometry management instead of grid. Maybe grid method is >>>>> better than pack, but I can >>>>> not operate it well to make GUI full-screen display. >>>>> 3. a little trick with entry widget, when click 'search' button, then >>>>> the entry widget will appear in the >>>>> right side of the 'search' button. It is also stupid, if click >>>>> 'search' again, the entry will appear again. >>>>> So, I need to fix the bug. Though this feature is not necessary, but I >>>>> think it is interesting so I do not >>>>> want to cancel it. But those are all decorations now. >>>>> >>>> See my attached patch, I think it fixed this bug. >>>> >>>>> 4. the file button can work now. If click it, a file named '11.txt' in >>>>> the current directory will be displayed >>>>> in the right side text widget. This also can be rewritten to be more >>>>> general. It is just a test in order to >>>>> know how to read a file in text widget. >>>>> >>>> nice progress. >>>> >>>>> 5. There is no necessary to add a horizontal scrollbar in text widget, >>>>> because a option wrap with default >>>>> value WORD forbids the functionality of the horizontal scrollbar, with >>>>> the default value a line can be split >>>>> by word when it reach the boundary of the text widget. Only configure >>>>> wrap with NONE, the horizontal scrollbar >>>>> will take effect. >>>>> >>>>> good hacking, this is useful, thx. >>>> >>>> P.S: >>>> I've added you as a collaborator of our github:gitbro repository. This >>>> means you can clone the repo, and commit the current source code into >>>> the our upstream repo when you feel like. Plz commit the source and add >>>> as many comments as you can, maybe in the future you think part of the >>>> comments are out of date, you can simply delete them. we have git, all your >>>> write now will be in git history even they are deleted one day, but whenever >>>> we want to go back and check where we were started form, the comments will >>>> surely be of some help. >>>> >>>>> >>>> >>>> On Mon, Feb 1, 2010 at 8:10 PM, Peter King <hap...@gm...>wrote: >>>> >>>>> >>>>> >>>>> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >>>>> bil...@gm...> wrote: >>>>> >>>>>> Now, I add a new text widget with a vertical scrollbar and fix a few >>>>>> bugs last time, for example, >>>>>> 1. the GUI can display full screen >>>>>> >>>>> yes, I tested, and verified this. >>>>> >>>>>> 2. use pack geometry management instead of grid. Maybe grid method is >>>>>> better than pack, but I can >>>>>> not operate it well to make GUI full-screen display. >>>>>> 3. a little trick with entry widget, when click 'search' button, then >>>>>> the entry widget will appear in the >>>>>> right side of the 'search' button. It is also stupid, if click >>>>>> 'search' again, the entry will appear again. >>>>>> So, I need to fix the bug. Though this feature is not necessary, but >>>>>> I think it is interesting so I do not >>>>>> want to cancel it. But those are all decorations now. >>>>>> >>>>> See my attached patch, I think it fixed this bug. >>>>> >>>>>> 4. the file button can work now. If click it, a file named '11.txt' in >>>>>> the current directory will be displayed >>>>>> in the right side text widget. This also can be rewritten to be more >>>>>> general. It is just a test in order to >>>>>> know how to read a file in text widget. >>>>>> >>>>> nice progress. >>>>> >>>>>> 5. There is no necessary to add a horizontal scrollbar in text widget, >>>>>> because a option wrap with default >>>>>> value WORD forbids the functionality of the horizontal scrollbar, >>>>>> with the default value a line can be split >>>>>> by word when it reach the boundary of the text widget. Only configure >>>>>> wrap with NONE, the horizontal scrollbar >>>>>> will take effect. >>>>>> >>>>>> good hacking, this is useful, thx. >>>>> >>>>> P.S: >>>>> I've added you as a collaborator of our github:gitbro repository. This >>>>> means you can clone the repo, and commit the current source code into >>>>> the our upstream repo when you feel like. Plz commit the source and add >>>>> as many comments as you can, maybe in the future you think part of the >>>>> comments are out of date, you can simply delete them. we have git, all your >>>>> write now will be in git history even they are deleted one day, but whenever >>>>> we want to go back and check where we were started form, the comments will >>>>> surely be of some help. >>>>> >>>>>> >>>>>> >>>>>> ------------------------------------------------------------------------------ >>>>>> The Planet: dedicated and managed hosting, cloud storage, colocation >>>>>> Stay online with enterprise data centers and the best network in the >>>>>> business >>>>>> Choose flexible plans and management services without long-term >>>>>> contracts >>>>>> Personal 24x7 support from experience hosting pros just a phone call >>>>>> away. >>>>>> http://p.sf.net/sfu/theplanet-com >>>>>> _______________________________________________ >>>>>> Gitbro-develop mailing list >>>>>> Git...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >>>>>> >>>>>> >>>>> >>>>> >>>>> -- >>>>> Regards >>>>> Peter >>>>> >>>> >>>> >>>> >>>> -- >>>> Regards >>>> Peter >>>> >>> >>> >>> >>> -- >>> Regards >>> Peter >>> >>> >>> ------------------------------------------------------------------------------ >>> The Planet: dedicated and managed hosting, cloud storage, colocation >>> Stay online with enterprise data centers and the best network in the >>> business >>> Choose flexible plans and management services without long-term contracts >>> Personal 24x7 support from experience hosting pros just a phone call >>> away. >>> http://p.sf.net/sfu/theplanet-com >>> _______________________________________________ >>> Gitbro-develop mailing list >>> Git...@li... >>> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >>> >>> >> >> >> ------------------------------------------------------------------------------ >> The Planet: dedicated and managed hosting, cloud storage, colocation >> Stay online with enterprise data centers and the best network in the >> business >> Choose flexible plans and management services without long-term contracts >> Personal 24x7 support from experience hosting pros just a phone call away. >> http://p.sf.net/sfu/theplanet-com >> _______________________________________________ >> Gitbro-develop mailing list >> Git...@li... >> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >> >> > > > -- > Regards > Peter > > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the > business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > _______________________________________________ > Gitbro-develop mailing list > Git...@li... > https://lists.sourceforge.net/lists/listinfo/gitbro-develop > > |
From: Peter K. <hap...@gm...> - 2010-02-03 06:45:32
|
BTW. Plz do not use mailing list in the future, I find it will be more clear, if we just talk about things here. gitbro/gui/debug.log On Wed, Feb 3, 2010 at 11:24 AM, guosong zhang <bil...@gm...>wrote: > I want the entry widget to appear when you click the search button. It is > not a bug. I like the effect which is fun. If not like the idea, you can > modify it, but you can not think it as a bug. > > > On Tue, Feb 2, 2010 at 8:05 PM, Peter King <hap...@gm...>wrote: > >> the error happens when I pushed sth while you were editing, so when you >> want to push, there will be conflicts, so the error you get is natural. >> >> Just clone gitbro again, and try to run git pull before you commit your >> changes. >> >> # do the editing >> $git pull >> $git commit -a -m "my changes" >> $git push >> >> >> >> On Tue, Feb 2, 2010 at 7:58 PM, guosong zhang < >> bil...@gm...> wrote: >> >>> Now, I can not push gitbro to github. why >>> >>> billie@billie-laptop:~/gitbro$ git push >>> To gi...@gi...:happypeter/gitbro.git >>> ! [rejected] master -> master (non-fast forward) >>> error: failed to push some refs to 'gi...@gi...: >>> happypeter/gitbro.git' >>> >>> >>> >>> On Mon, Feb 1, 2010 at 10:30 PM, Peter King <hap...@gm...>wrote: >>> >>>> >>>> plz commit your code into gitbro/gui/ >>>> >>>> >>>> >>>> On Mon, Feb 1, 2010 at 8:26 PM, Peter King <hap...@gm...>wrote: >>>> >>>>> >>>>> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >>>>> bil...@gm...> wrote: >>>>> >>>>>> Now, I add a new text widget with a vertical scrollbar and fix a few >>>>>> bugs last time, for example, >>>>>> 1. the GUI can display full screen >>>>>> >>>>> yes, I tested, and verified this. >>>>> >>>>>> 2. use pack geometry management instead of grid. Maybe grid method is >>>>>> better than pack, but I can >>>>>> not operate it well to make GUI full-screen display. >>>>>> 3. a little trick with entry widget, when click 'search' button, then >>>>>> the entry widget will appear in the >>>>>> right side of the 'search' button. It is also stupid, if click >>>>>> 'search' again, the entry will appear again. >>>>>> So, I need to fix the bug. Though this feature is not necessary, but >>>>>> I think it is interesting so I do not >>>>>> want to cancel it. But those are all decorations now. >>>>>> >>>>> See my attached patch, I think it fixed this bug. >>>>> >>>>>> 4. the file button can work now. If click it, a file named '11.txt' in >>>>>> the current directory will be displayed >>>>>> in the right side text widget. This also can be rewritten to be more >>>>>> general. It is just a test in order to >>>>>> know how to read a file in text widget. >>>>>> >>>>> nice progress. >>>>> >>>>>> 5. There is no necessary to add a horizontal scrollbar in text widget, >>>>>> because a option wrap with default >>>>>> value WORD forbids the functionality of the horizontal scrollbar, >>>>>> with the default value a line can be split >>>>>> by word when it reach the boundary of the text widget. Only configure >>>>>> wrap with NONE, the horizontal scrollbar >>>>>> will take effect. >>>>>> >>>>>> good hacking, this is useful, thx. >>>>> >>>>> P.S: >>>>> I've added you as a collaborator of our github:gitbro repository. This >>>>> means you can clone the repo, and commit the current source code into >>>>> the our upstream repo when you feel like. Plz commit the source and add >>>>> as many comments as you can, maybe in the future you think part of the >>>>> comments are out of date, you can simply delete them. we have git, all your >>>>> write now will be in git history even they are deleted one day, but whenever >>>>> we want to go back and check where we were started form, the comments will >>>>> surely be of some help. >>>>> >>>>>> >>>>> >>>>> On Mon, Feb 1, 2010 at 8:10 PM, Peter King <hap...@gm...>wrote: >>>>> >>>>>> >>>>>> >>>>>> On Mon, Feb 1, 2010 at 5:32 PM, guosong zhang < >>>>>> bil...@gm...> wrote: >>>>>> >>>>>>> Now, I add a new text widget with a vertical scrollbar and fix a few >>>>>>> bugs last time, for example, >>>>>>> 1. the GUI can display full screen >>>>>>> >>>>>> yes, I tested, and verified this. >>>>>> >>>>>>> 2. use pack geometry management instead of grid. Maybe grid method >>>>>>> is better than pack, but I can >>>>>>> not operate it well to make GUI full-screen display. >>>>>>> 3. a little trick with entry widget, when click 'search' button, then >>>>>>> the entry widget will appear in the >>>>>>> right side of the 'search' button. It is also stupid, if click >>>>>>> 'search' again, the entry will appear again. >>>>>>> So, I need to fix the bug. Though this feature is not necessary, but >>>>>>> I think it is interesting so I do not >>>>>>> want to cancel it. But those are all decorations now. >>>>>>> >>>>>> See my attached patch, I think it fixed this bug. >>>>>> >>>>>>> 4. the file button can work now. If click it, a file named '11.txt' >>>>>>> in the current directory will be displayed >>>>>>> in the right side text widget. This also can be rewritten to be more >>>>>>> general. It is just a test in order to >>>>>>> know how to read a file in text widget. >>>>>>> >>>>>> nice progress. >>>>>> >>>>>>> 5. There is no necessary to add a horizontal scrollbar in text >>>>>>> widget, because a option wrap with default >>>>>>> value WORD forbids the functionality of the horizontal scrollbar, >>>>>>> with the default value a line can be split >>>>>>> by word when it reach the boundary of the text widget. Only >>>>>>> configure wrap with NONE, the horizontal scrollbar >>>>>>> will take effect. >>>>>>> >>>>>>> good hacking, this is useful, thx. >>>>>> >>>>>> P.S: >>>>>> I've added you as a collaborator of our github:gitbro repository. >>>>>> This means you can clone the repo, and commit the current source code into >>>>>> the our upstream repo when you feel like. Plz commit the source and >>>>>> add as many comments as you can, maybe in the future you think part of the >>>>>> comments are out of date, you can simply delete them. we have git, all your >>>>>> write now will be in git history even they are deleted one day, but whenever >>>>>> we want to go back and check where we were started form, the comments will >>>>>> surely be of some help. >>>>>> >>>>>>> >>>>>>> >>>>>>> ------------------------------------------------------------------------------ >>>>>>> The Planet: dedicated and managed hosting, cloud storage, colocation >>>>>>> Stay online with enterprise data centers and the best network in the >>>>>>> business >>>>>>> Choose flexible plans and management services without long-term >>>>>>> contracts >>>>>>> Personal 24x7 support from experience hosting pros just a phone call >>>>>>> away. >>>>>>> http://p.sf.net/sfu/theplanet-com >>>>>>> _______________________________________________ >>>>>>> Gitbro-develop mailing list >>>>>>> Git...@li... >>>>>>> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> Regards >>>>>> Peter >>>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> Regards >>>>> Peter >>>>> >>>> >>>> >>>> >>>> -- >>>> Regards >>>> Peter >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> The Planet: dedicated and managed hosting, cloud storage, colocation >>>> Stay online with enterprise data centers and the best network in the >>>> business >>>> Choose flexible plans and management services without long-term >>>> contracts >>>> Personal 24x7 support from experience hosting pros just a phone call >>>> away. >>>> http://p.sf.net/sfu/theplanet-com >>>> _______________________________________________ >>>> Gitbro-develop mailing list >>>> Git...@li... >>>> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >>>> >>>> >>> >>> >>> ------------------------------------------------------------------------------ >>> The Planet: dedicated and managed hosting, cloud storage, colocation >>> Stay online with enterprise data centers and the best network in the >>> business >>> Choose flexible plans and management services without long-term contracts >>> Personal 24x7 support from experience hosting pros just a phone call >>> away. >>> http://p.sf.net/sfu/theplanet-com >>> _______________________________________________ >>> Gitbro-develop mailing list >>> Git...@li... >>> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >>> >>> >> >> >> -- >> Regards >> Peter >> >> >> ------------------------------------------------------------------------------ >> The Planet: dedicated and managed hosting, cloud storage, colocation >> Stay online with enterprise data centers and the best network in the >> business >> Choose flexible plans and management services without long-term contracts >> Personal 24x7 support from experience hosting pros just a phone call away. >> http://p.sf.net/sfu/theplanet-com >> _______________________________________________ >> Gitbro-develop mailing list >> Git...@li... >> https://lists.sourceforge.net/lists/listinfo/gitbro-develop >> >> > > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the > business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > _______________________________________________ > Gitbro-develop mailing list > Git...@li... > https://lists.sourceforge.net/lists/listinfo/gitbro-develop > > -- Regards Peter |