summaryrefslogtreecommitdiff
path: root/lib/common.php
AgeCommit message (Collapse)Author
2009-06-15allow a configured base for cache keysEvan Prodromou
2009-06-15Merge branch '0.8.x' into userdesignZach Copley
* 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
2009-06-15Configurable avatar directoryEvan Prodromou
Avatar directory and path are configurable.
2009-06-14Code for adding and saving group aliasesEvan Prodromou
Added code to add and save group aliases. Like tags, aliases are free-texted in to the group admin page. configurable max number of aliases, default is three.
2009-06-14Reworked output for design settings pageZach Copley
2009-06-14Adds $config['invite']['enabled'] to enable/disable invites.Jeffery To
The invite function may not applicable for private and/or closed installs. This adds a configuration option to enable/disable invites (defaulting to enabled), hides the "Invite" nav item when necessary, and adds a check to actions/invite.php. Note that I haven't tried the Facebook application so I didn't add any checks to actions/facebookinvite.php.
2009-06-14Removed hanging skin crapolaSarven Capadisli
2009-06-09Improve file upload and attachment interface.Robin Millette
2009-06-01Attachments popups for supported files are now embedded with the object ↵Robin Millette
xhtml tag.
2009-05-31Merge branch '0.8.x' of git@gitorious.org:+laconica-developers/laconica/dev ↵Robin Millette
into upload Conflicts: js/util.js lib/attachmentlist.php
2009-05-31Added configurable options for attachments: supported mimetypes and quotas ↵Robin Millette
for uploads.
2009-05-29Merge branch '0.7.x' into 0.8.xSarven Capadisli
2009-05-27optionally use SET NAMES for utf8 to DBEvan Prodromou
2009-05-25Merge branch '0.8.x' into statsEvan Prodromou
Conflicts: README
2009-05-11Merge branch '0.8.x' of git@gitorious.org:laconica/dev into 0.8.xEvan Prodromou
Conflicts: config.php.sample
2009-05-07Added TwitterStatusFetcher into daemon startup and shutdown subsystemZach Copley
2009-05-01Merge branch '0.7.x' into 0.8.xSarven Capadisli
Resolved Conflicts: lib/queuehandler.php lib/util.php theme/base/css/display.css
2009-04-21Suppress errors when checking for the existence of files that might be ↵CiaranG
restricted by open_basedir - should resolve issue #1310
2009-04-16Revert "allow snapshots to be disabled easily"Evan Prodromou
This reverts commit 0838143d5855bb013b355d4abb7ec7a643ef37dc. Already handled with the 'never' option.
2009-04-16Merge branch '0.8.x' into statsEvan Prodromou
2009-04-16update version string for dev versionEvan Prodromou
2009-04-16allow snapshots to be disabled easilyEvan Prodromou
2009-04-16config options for snapshotsEvan Prodromou
2009-04-16initial snapshot stuffEvan Prodromou
2009-04-12Separation of themes (i.e., layout, typography) and skins (i.e., backgroundSarven Capadisli
images, colours). A theme can have multiple skins. Majority of the changes in this commit are due to restructuring the path/files for themes and skins. Both theme and skin will be set to 'default' if not set in config.php. This commit also allows each instance of this software to create its own theme without having to override any style from the default distribution. Added Cloudy theme.
2009-04-07Update README and common for new versionEvan Prodromou
Update versions in README, add the new song title, and update the version stamp in the common.php file.
2009-03-28welcome notice, default sub for new usersEvan Prodromou
2009-03-26Support SSL for some, all, or no pagesEvan Prodromou
Support SSL URLs either for all pages; no pages; or for sensitive pages accepting passwords, like login, registration, API, and others.
2009-03-12update version number to 0.7.2.10.7.2.1Evan Prodromou
2009-03-11Update README and version number0.7.2Evan Prodromou
Update the README and the version number for this release.
2009-03-11Document the site-logo configuration optionEvan Prodromou
The configuration option for site logo wasn't well documented, so I added it to the README file, config.php.sample, and common.php.
2009-03-10Updates to the API to improve Atom feedsZach Copley
2009-03-07Limit duplicate notices in a particular time period (default 60s)Evan Prodromou
We disallow posting a notice with duplicate content more than once a minute. Conflicts: config.php.sample
2009-03-05Merge branch 'ping' of /var/www/mublog.corrupt into corrupt/pingEvan Prodromou
Conflicts: lib/util.php
2009-03-04Merge branch '0.7.x' of git@gitorious.org:laconica/dev into 0.7.xEvan Prodromou
2009-03-04Check for config file when runningEvan Prodromou
When running the full system, check for a config file, and throw an error if none is found.
2009-03-04Additional (optional, defaults to off) logging of PEAR error details, which ↵CiaranG
allows database issues to be more easily diagnosed.
2009-02-28automatically handle non-laconica-named databasesEvan Prodromou
2009-02-28Add a flag for if there's no config fileEvan Prodromou
2009-02-14Optionally ignore some notice sources for public pageEvan Prodromou
We optionally ignore some notice sources from the public page. Typically these are automatic notice sources like twitterfeed that don't usually represent the community on the site very well.
2009-02-09Change action autoloading to allow actions in pluginsEvan Prodromou
Since plugins may define custom actions, we shouldn't require that there be a file in our actions/ subdir for every action. So, I changed the (admittedly hackish) auto-loading code in index.php so it instead checks whether a class exists with the expected name. This, in turn, uses the increasingly hacking __autoload() function, which I changed to auto-load stuff named "BlahblahAction" from the actions subdir if available.
2009-02-09include plugin.php early so config can use itEvan Prodromou
2009-02-09Add InitializePlugin and CleanupPlugin eventsEvan Prodromou
We add two events to allow plugins to initialize and cleanup.
2009-02-09Better exception handling in indexEvan Prodromou
Some better exception handling in Web entry point.
2009-02-09Add event.php before config.php is calledEvan Prodromou
2009-02-06Update README and version number0.7.1Evan Prodromou
README and version number.
2009-02-05Better fix for displaying max file size.Sean Murphy
2009-01-31Enable configuration files in /etc/laconica/Evan Prodromou
Enable storing config files in /etc/laconica/, which makes it much easier to have a single installation with multiple mublogs supported.
2009-01-24Initial support for ping serviceEvan Prodromou
It makes sense to use the weblogs.com ping service to alert people to changes on the site. So, we do. Includes an extra ping queue handler.
2009-01-23Update version numberEvan Prodromou