]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Merge branch '0.8.x' into userdesign
authorZach Copley <zach@controlyourself.ca>
Mon, 15 Jun 2009 18:50:08 +0000 (11:50 -0700)
committerZach Copley <zach@controlyourself.ca>
Mon, 15 Jun 2009 18:50:08 +0000 (11:50 -0700)
* 0.8.x: (32 commits)
  updates to Status_network
  makeadmin action
  make admins of groups
  show aliases when showing a group
  Link and distribute notices tagged for a group alias
  Code for adding and saving group aliases
  Styles for group block
  add correct li for css magic for block stuff
  typo in profileminilist class
  return count from show
  try to get the right class for profileminilist
  fix perms for classes/statusnet.ini
  fixup perms for classes
  Added Group_alias class
  add a table for group aliases
  Cross-browser notice_attach
  Allow users to be unblocked from a group
  Some UI improvements for blocking and unblocking
  The rest of the things necessary to make group block work
  Make group block work
  ...

Conflicts:
db/laconica.sql
lib/common.php

1  2 
classes/laconica.ini
db/laconica.sql
lib/common.php
lib/noticelist.php
lib/profileaction.php

index 07aa016fef9921e9736898d4d1b27e16c01aca1a,df292bbffd4f3485b4e95cff5f94a1ee8fd38691..c04ae758f4785a50f32b579b8618c9e542459f4f
mode 100755,100644..100755
diff --cc db/laconica.sql
index 2ca084e48df19b368c23596cb82fd1602732226e,b8c0824f5aa765b024a924c124142d5ac482aab7..bd95d1ade639063ccdbd1ac15cf6f2f11edc486d
@@@ -487,12 -484,22 +488,32 @@@ create table file_to_post 
      unique(file_id, post_id)
  ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
  
 +create table design (
 +    id integer primary key auto_increment comment 'design ID',
 +    backgroundcolor integer comment 'main background color',
 +    contentcolor integer comment 'content area background color',
 +    sidebarcolor integer comment 'sidebar background color',
 +    textcolor integer comment 'text color',
 +    linkcolor integer comment 'link color',
 +    backgroundimage varchar(255) comment 'background image, if any'
 +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
++
+ create table group_block (
+    group_id integer not null comment 'group profile is blocked from' references user_group (id),
+    blocked integer not null comment 'profile that is blocked' references profile (id),
+    blocker integer not null comment 'user making the block' references user (id),
+    modified timestamp comment 'date of blocking',
+    constraint primary key (group_id, blocked)
+ ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
+ create table group_alias (
+    alias varchar(64) primary key comment 'additional nickname for the group',
+    group_id integer not null comment 'group profile is blocked from' references user_group (id),
+    modified timestamp comment 'date alias was created',
+    index group_alias_group_id_idx (group_id)
+ ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
diff --cc lib/common.php
Simple merge
Simple merge
Simple merge