Author Topic: Plugins wiki-page cleanup  (Read 29890 times)

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Plugins wiki-page cleanup
« Reply #15 on: September 05, 2011, 07:20:32 am »
Is this plugin of enough importance for me to add a page for it on the wiki?
Yes, it should be considered.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Plugins wiki-page cleanup
« Reply #16 on: September 05, 2011, 07:21:34 am »
On further inspection, it appears to have become/merged into the Abbreviations plugin; is this correct?
No, these are two different plugins.

Keymacs allows for complex macros, including recording while abbreviations only accounts for a few (easy) macro replace operations, configured by hand.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #17 on: September 05, 2011, 06:51:42 pm »
Thanks.  (By the way, I moved KeyMacs to 3rd Party.)

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #18 on: September 10, 2011, 08:12:44 pm »
Most of the plugins on the main plugins page are named "<PluginName> plugin" (whereas on the announcements page they are simply named "<PluginName>"), however, some do not follow this.
I am giving people a heads up that I plan to rename the plugins on the main plugins page that do not follow the precedent.  I also plan to rename the ThreadSearchManual page to "ThreadSearch plugin".

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #19 on: September 11, 2011, 10:21:40 pm »
Done moving pages.

I think the SpellChecker plugin points towards SpellChecker; it will still get there through a redirect, but someone should probably change the internal link to SpellChecker plugin so it gets there directly.

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #20 on: September 18, 2011, 03:47:55 am »
In looking into writing a page for the TRACE32 Debugger plugin, "only" information I could find was posted here.  Does anyone know anything further?

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #21 on: October 03, 2011, 03:50:40 am »
I noticed the plugin Header Guard is included with the SVN source, but not built by default.  Should I add this as a Core/Contrib/3rd Party plugin?  If so, which category?

I think the SpellChecker plugin points towards SpellChecker; it will still get there through a redirect, but someone should probably change the internal link to SpellChecker plugin so it gets there directly.
Patch submitted (3216).

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #22 on: October 28, 2011, 04:09:49 am »
Header Guard added as 3rd Party.

Offline daniloz

  • Regular
  • ***
  • Posts: 268
Re: Plugins wiki-page cleanup
« Reply #23 on: October 28, 2011, 08:56:00 am »
Header Guard added as 3rd Party.

Maybe a little bit out of topic here, but these 4 plugins are in the src\plugin dir, but not built:
Code
src\plugins\headerguard\
src\plugins\loghacker\
src\plugins\modpoller\
src\plugins\tidycmt\

Are they update? What do they do? Should they be removed, moved to contrib?

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Plugins wiki-page cleanup
« Reply #24 on: October 28, 2011, 09:22:28 am »
Maybe a little bit out of topic here, but these 4 plugins are in the src\plugin dir, but not built:
Code
src\plugins\headerguard\
src\plugins\loghacker\
src\plugins\modpoller\
src\plugins\tidycmt\
Are they update? What do they do? Should they be removed, moved to contrib?
They build just fine for me, hence you've to manually select / open the project files.

1.) headerguard: Ensures you have a #ifndef H_FILE_INCLUDED #define H_FILE_INCLUDED #endif in each of your header files using a unique GUID
2.) loghacker: manipulate the loggers that have been created by several plugins / the core
3.) modpoller: polls for externally modified files in a certain interval (so C::b asks to re-load them if changed externally).
4.) tidycmt: formats comments of a certain style "nicely" when the file is saved

These are very specific and (if enabled by default) would most likely cause unexpected behaviour (imagine you are saving a file and it looks different afterwards). So these plugins are there for people who know how to use them and as tech-demo.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #25 on: October 28, 2011, 11:09:00 pm »
Code
src\plugins\headerguard\
src\plugins\loghacker\
src\plugins\modpoller\
src\plugins\tidycmt\
I had seen these before, but I could only figure out what Head Guard does. :)

So these plugins are there for people who know how to use them and as tech-demo.
These plugins are not exactly 3rd party (as I placed Header Guard), but nor are they core or contrib; is there another category I could place them in?

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Plugins wiki-page cleanup
« Reply #26 on: October 29, 2011, 11:14:39 am »
These plugins are not exactly 3rd party (as I placed Header Guard), but nor are they core or contrib; is there another category I could place them in?
They actually really belong to the core, just they are disabled.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #27 on: October 29, 2011, 03:04:42 pm »
OK, I have shifted them to core (and given them a note).

Offline Yoni

  • Single posting newcomer
  • *
  • Posts: 5
Re: Plugins wiki-page cleanup
« Reply #28 on: December 15, 2011, 11:50:28 am »
What's about Code Statistics plugin page?
There is no code, and no executable file(.cbplugin), no link to other place.
It's should be removed, or be reconstructed.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Plugins wiki-page cleanup
« Reply #29 on: December 15, 2011, 12:48:36 pm »
The code stat plugin is in svn -> src/plugins/contrib/
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]