User talk:Kunda: Difference between revisions

From Scribus Wiki
Jump to navigation Jump to search
 
(7 intermediate revisions by the same user not shown)
Line 16: Line 16:
* Weblate
* Weblate
* RSS-IRC bot to Scribus SimpleMachines Forums  
* RSS-IRC bot to Scribus SimpleMachines Forums  
* Maybe use Namespaces on Scribus wiki to designate the different sections. For example, this is the way GIMP wiki has it set up:
* It's hard to find things on the wiki, at least for me. Here are some ideas/suggestions to make that more seamless:
**Maybe use Namespaces on Scribus wiki to designate the different sections. For example, this is the way GIMP wiki has it set up:
====Namespaces====
====Namespaces====
Currently existing namespaces are  
Currently existing namespaces are  
Line 23: Line 24:
* [http://wiki.gimp.org/index.php?title=Special%3APrefixIndex&from=Specs&namespace=0 '''Specs'''] for attempts at writing specs,
* [http://wiki.gimp.org/index.php?title=Special%3APrefixIndex&from=Specs&namespace=0 '''Specs'''] for attempts at writing specs,
* [http://wiki.gimp.org/index.php?title=Special%3APrefixIndex&from=Mindstorm%3A&namespace=0 '''Mindstorm'''] for idea generation and planning.
* [http://wiki.gimp.org/index.php?title=Special%3APrefixIndex&from=Mindstorm%3A&namespace=0 '''Mindstorm'''] for idea generation and planning.
=HowTo Wiki formatting=
== wikitable template -- [[User:Kunda|Kunda]] ([[User talk:Kunda|talk]]) 22:00, 28 January 2014 (CET) ==
{| class="wikitable" style="text-align: left;"
!'''Module'''
! '''Description'''
|-
| [https://git.gnome.org/browse/babl babl] || Pixel format conversion library
|-
| [https://git.gnome.org/browse/gegl gegl] || Generic Graphical Library
|-
| [https://git.gnome.org/browse/gimp gimp] || GIMP and the standard set of plug-ins
|-
| [https://git.gnome.org/browse/gimp-data-extras gimp-data-extras] || GIMP Data files such as brushes, gradients, patterns and the like
|-
| [https://git.gnome.org/browse/gimp-gap gimp-gap]|| GIMP Animation Package, a set of plug-ins that provide video editing functionality
|-
| [https://git.gnome.org/browse/gimp-help-2 gimp-help-2]|| GIMP User Manual
|-
| [https://git.gnome.org/browse/gimp-perl gimp-perl] || GIMP Perl bindings and a bunch of nice gimp-perl scripts
|-
| [https://git.gnome.org/browse/gimp-plugin-template gimp-plugin-template] || GIMP Plug-In Template, a starting ground for plug-in developers
|-
| [https://git.gnome.org/browse/gimp-ruby gimp-ruby] || GIMP Ruby-based scripting plug-in
|-
| [https://git.gnome.org/browse/gimp-tiny-fu gimp-tiny-fu] || GIMP Tiny-Fu, a drop-in replacement for Script-Fu
|-
| [https://git.gnome.org/browse/gimp-web gimp-web]|| the GIMP web site, available at www.gimp.org
|-
| [https://git.gnome.org/browse/gimp-web-devel gimp-web-devel] || the source of developer.gimp.org (currently being migrated to this wiki)
|}
Another table:
{| class="wikitable"
|-
! scope="row" style="text-align:left; padding-left:5px; padding-right:5px;" |Parameter
| style="padding-left:5px; padding-right:5px;"                              |<code>header</code>
|-
! scope="row" style="text-align:left; padding-left:5px; padding-right:5px;" |Value(s)
| style="padding-left:5px; padding-right:5px;"                              |<code>true/yes/on, false/no/off</code>
|-
! scope="row" style="text-align:left; padding-left:5px; padding-right:5px;" | Default
| style="padding-left:5px; padding-right:5px;"                              | <code>true</code>
|}
== Adding Legend -- [[User:Kunda|Kunda]] ([[User talk:Kunda|talk]]) 01:42, 19 March 2014 (CET) ==
'''Legend'''
<u>Status Column:</u>
{|
! scope="col" width="50px" |
|-
| {{no|}} || work hasn't started yet
|-
| {{wip|  }} || work in progress
|-
| {{yes|  }} || implementation finished
|}
== Collapsible Content ==
<pre>
<div class="toccolours mw-collapsible mw-collapsed" style="width:800px;">
Title before collapsible content and pointer toward trigger ---->
<div class="mw-collapsible-content">
OhHai dere!
</div></div>
</pre>
Example:
<div class="toccolours mw-collapsible mw-collapsed" style="width:800px;">
''If it fits I sitz'' ---->
<div class="mw-collapsible-content">
OhHai dere!
</div></div>
== Building Scribus -- [[User:Kunda|Kunda]] ([[User talk:Kunda|talk]]) 23:44, 25 March 2015 (CET) ==
* 5:41 PM <MrB> follow my cmake wiki page and its easy :)
* 5:41 PM <MrB> but
* 5:41 PM <MrB> top level dir
* 5:41 PM <MrB> build dir under it
* 5:41 PM <MrB> check out to a source dir under the top level
* 5:41 PM <MrB> run your cmake command within the build dir
* 5:41 PM <MrB> run make install
* 5:41 PM <MrB> then for any changes, just run make install from the build dir again
== mantis plugin -- [[User:Kunda|Kunda]] ([[User talk:Kunda|talk]]) 18:26, 25 March 2016 (CET) ==
<pre>
<mantis>
bugid = 12985
comment#12985 = comment goes here
color = yes
header = yes
</mantis>
</pre>
Full reference: https://www.mediawiki.org/wiki/Extension:Mantis

Latest revision as of 17:27, 25 March 2016

Reference links for wiki modification -- Kunda (talk) 22:38, 11 November 2013 (CET)



TODO

  • Help clean up the wiki
  • How to make it very clear for interested people with different skill-sets to help contribute to the ongoing evolution of Scribus
  • Create an experimental template

IDEAS

  • Weblate
  • RSS-IRC bot to Scribus SimpleMachines Forums
  • It's hard to find things on the wiki, at least for me. Here are some ideas/suggestions to make that more seamless:
    • Maybe use Namespaces on Scribus wiki to designate the different sections. For example, this is the way GIMP wiki has it set up:

Namespaces

Currently existing namespaces are

  • Hacking for hacking related pages,
  • Users for user guides and the like,
  • Specs for attempts at writing specs,
  • Mindstorm for idea generation and planning.

HowTo Wiki formatting

wikitable template -- Kunda (talk) 22:00, 28 January 2014 (CET)

Module Description
babl Pixel format conversion library
gegl Generic Graphical Library
gimp GIMP and the standard set of plug-ins
gimp-data-extras GIMP Data files such as brushes, gradients, patterns and the like
gimp-gap GIMP Animation Package, a set of plug-ins that provide video editing functionality
gimp-help-2 GIMP User Manual
gimp-perl GIMP Perl bindings and a bunch of nice gimp-perl scripts
gimp-plugin-template GIMP Plug-In Template, a starting ground for plug-in developers
gimp-ruby GIMP Ruby-based scripting plug-in
gimp-tiny-fu GIMP Tiny-Fu, a drop-in replacement for Script-Fu
gimp-web the GIMP web site, available at www.gimp.org
gimp-web-devel the source of developer.gimp.org (currently being migrated to this wiki)

Another table:

Parameter header
Value(s) true/yes/on, false/no/off
Default true


Adding Legend -- Kunda (talk) 01:42, 19 March 2014 (CET)

Legend

Status Column:

work hasn't started yet
work in progress
implementation finished

Collapsible Content

<div class="toccolours mw-collapsible mw-collapsed" style="width:800px;">
Title before collapsible content and pointer toward trigger ---->
<div class="mw-collapsible-content">
OhHai dere!
</div></div>

Example:

If it fits I sitz ---->

OhHai dere!

Building Scribus -- Kunda (talk) 23:44, 25 March 2015 (CET)

  • 5:41 PM <MrB> follow my cmake wiki page and its easy :)
  • 5:41 PM <MrB> but
  • 5:41 PM <MrB> top level dir
  • 5:41 PM <MrB> build dir under it
  • 5:41 PM <MrB> check out to a source dir under the top level
  • 5:41 PM <MrB> run your cmake command within the build dir
  • 5:41 PM <MrB> run make install
  • 5:41 PM <MrB> then for any changes, just run make install from the build dir again

mantis plugin -- Kunda (talk) 18:26, 25 March 2016 (CET)

<mantis>
bugid = 12985
comment#12985 = comment goes here 
color = yes
header = yes
</mantis>

Full reference: https://www.mediawiki.org/wiki/Extension:Mantis