Foxtrott has submitted this change and it was merged.

Change subject: Preparing version 0.1
......................................................................


Preparing version 0.1

Change-Id: Icf9584fba8623c9863cd9785813627cbf5eb80eb
---
M chameleon.php
M components/Component.php
M components/FooterPlaces.php
M components/Logo.php
M components/MainContent.php
M components/NavbarHorizontal.php
M components/NewtalkNotifier.php
M components/PersonalTools.php
M components/SearchForm.php
M components/SiteNotice.php
M components/TabList.php
M components/ToolbarHorizontal.php
12 files changed, 22 insertions(+), 22 deletions(-)

Approvals:
  Foxtrott: Verified; Looks good to me, approved



diff --git a/chameleon.php b/chameleon.php
index 38ab3a7..19be672 100644
--- a/chameleon.php
+++ b/chameleon.php
@@ -5,7 +5,7 @@
  * @see https://www.mediawiki.org/wiki/Skin:Chameleon
  *
  * @author Stephan Gambke
- * @version 0.1 alpha
+ * @version 0.1
  *
  */
 
@@ -42,7 +42,7 @@
 }
 
 // define the skin's version
-define( 'CHAMELEON_VERSION', '0.1 alpha' );
+define( 'CHAMELEON_VERSION', '0.1' );
 
 // set extension credits
 $wgExtensionCredits['skin'][] = array(
diff --git a/components/Component.php b/components/Component.php
index e05ce82..a4bc212 100644
--- a/components/Component.php
+++ b/components/Component.php
@@ -30,7 +30,7 @@
 /**
  * Component class
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 abstract class Component {
 
diff --git a/components/FooterPlaces.php b/components/FooterPlaces.php
index 81f89f7..b4d10e1 100644
--- a/components/FooterPlaces.php
+++ b/components/FooterPlaces.php
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @file
- * @ingroup   Chameleon
+ * @ingroup   Skins
  */
 
 namespace skins\chameleon\components;
@@ -31,7 +31,7 @@
  *
  * A inline list containing links to places (about, privacy policy, and 
disclaimer links): <ul id="footer-places">
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 class FooterPlaces extends Component {
 
diff --git a/components/Logo.php b/components/Logo.php
index 81f604b..3c7f136 100644
--- a/components/Logo.php
+++ b/components/Logo.php
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @file
- * @ingroup   Chameleon
+ * @ingroup   Skins
  */
 
 namespace skins\chameleon\components;
@@ -33,7 +33,7 @@
  *
  * The logo image as a link to the wiki main page wrapped in a div: <div 
id="p-logo" role="banner">
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 class Logo extends Component {
 
diff --git a/components/MainContent.php b/components/MainContent.php
index 7200dc0..5438187 100644
--- a/components/MainContent.php
+++ b/components/MainContent.php
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @file
- * @ingroup   Chameleon
+ * @ingroup   Skins
  */
 
 namespace skins\chameleon\components;
@@ -33,7 +33,7 @@
  *
  * The navbar is a list of lists wrapped in a nav element: <nav 
role="navigation" id="p-navbar" >
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 class MainContent extends Component {
 
diff --git a/components/NavbarHorizontal.php b/components/NavbarHorizontal.php
index 11a8193..b58cb71 100644
--- a/components/NavbarHorizontal.php
+++ b/components/NavbarHorizontal.php
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @file
- * @ingroup   Chameleon
+ * @ingroup   Skins
  */
 
 namespace skins\chameleon\components;
@@ -37,7 +37,7 @@
  *
  * The navbar is a list of lists wrapped in a nav element: <nav 
role="navigation" id="p-navbar" >
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 class NavbarHorizontal extends Component {
 
diff --git a/components/NewtalkNotifier.php b/components/NewtalkNotifier.php
index 262027b..2259fea 100644
--- a/components/NewtalkNotifier.php
+++ b/components/NewtalkNotifier.php
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @file
- * @ingroup   Chameleon
+ * @ingroup   Skins
  */
 
 namespace skins\chameleon\components;
@@ -30,7 +30,7 @@
  *
  * A message to a user about new messages on their talkpage
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 class NewtalkNotifier extends Component {
 
diff --git a/components/PersonalTools.php b/components/PersonalTools.php
index b720db1..8416d85 100644
--- a/components/PersonalTools.php
+++ b/components/PersonalTools.php
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @file
- * @ingroup   Chameleon
+ * @ingroup   Skins
  */
 
 namespace skins\chameleon\components;
@@ -30,7 +30,7 @@
  *
  * An unordered list of personal tools: <ul id="p-personal" >...
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 class PersonalTools extends Component {
 
diff --git a/components/SearchForm.php b/components/SearchForm.php
index abfb908..036ff8e 100644
--- a/components/SearchForm.php
+++ b/components/SearchForm.php
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @file
- * @ingroup   Chameleon
+ * @ingroup   Skins
  */
 
 namespace skins\chameleon\components;
@@ -32,7 +32,7 @@
  *
  * The search form wrapped in a div: <div id="p-search" role="search" >
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 class SearchForm extends Component {
 
diff --git a/components/SiteNotice.php b/components/SiteNotice.php
index ad3b709..f52f241 100644
--- a/components/SiteNotice.php
+++ b/components/SiteNotice.php
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @file
- * @ingroup   Chameleon
+ * @ingroup   Skins
  */
 
 namespace skins\chameleon\components;
@@ -30,7 +30,7 @@
  *
  * A simple div containing the site notice text: <div id="siteNotice" >
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 class SiteNotice extends Component {
 
diff --git a/components/TabList.php b/components/TabList.php
index ab962f6..db83e7f 100644
--- a/components/TabList.php
+++ b/components/TabList.php
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @file
- * @ingroup   Chameleon
+ * @ingroup   Skins
  */
 
 namespace skins\chameleon\components;
@@ -36,7 +36,7 @@
  *
  * The tab list is a list of lists: '<ul id="p-contentnavigation">
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 class TabList extends Component {
 
diff --git a/components/ToolbarHorizontal.php b/components/ToolbarHorizontal.php
index f23234c..d168d3f 100644
--- a/components/ToolbarHorizontal.php
+++ b/components/ToolbarHorizontal.php
@@ -34,7 +34,7 @@
  *
  * The toolbar is an unordered list in a nav element: <nav role="navigation" 
id="p-tb" >
  *
- * @ingroup Chameleon
+ * @ingroup Skins
  */
 class ToolbarHorizontal extends Component {
 

-- 
To view, visit https://gerrit.wikimedia.org/r/89542
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Icf9584fba8623c9863cd9785813627cbf5eb80eb
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/chameleon
Gerrit-Branch: master
Gerrit-Owner: Foxtrott <s7ep...@gmail.com>
Gerrit-Reviewer: Foxtrott <s7ep...@gmail.com>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to