~ubuntu-branches/debian/sid/ledgersmb/sid

« back to all changes in this revision

Viewing changes to sql/modules/admin.sql

  • Committer: Package Import Robot
  • Author(s): Robert James Clay
  • Date: 2014-04-21 17:56:33 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140421175633-q2xenfj302awfiln
Tags: 1.3.39-1
* New upstream release. (Closes: #732997)
* Changes to debian/copyright:
  - Update the LedgerSMB Core Team related information.
  - Add a file stanza for the locale/po/es_AR.po file.
  - Add an entry for utils/notify_short/.*pl and it README file.
  - Add an entry for the tools/prepare-company-database.* scripts.
* Changes to debian/control:
  - Update Standards-Version in debian/control.
  - Add the libplack-perl package as a Suggests.
  - Update the Vcs-Svn base URL from 'svn.debian.org' to 'anomscm.debian.org'.
* Changes to debian/rules:
  - Add line to make tools/system/lsmb* scripts executables.
  - Remove the line used to copy the ledgersmb.conf.template file as it is
    no longer needed.
* Changes to debian/patches/:
  - Add usage of 'Last-Update' field in all *.patch files.
  - Update default 'contrib-dir' to be for Postgresql 9.3 in 05_confdir.patch.
  - Add 20_BashPath.patch to resolve bash path issues in tools/ scripts.
  - Add 21_lsmb_13-fcgi-conf.patch for setting its directory paths.
* Update packaging for installation of ledgersmb-httpd configuration for
  Apache v2.2 and v2.4. (Closes: #725758) 
* Changes to debian/ledgersmb.docs:
 - Add README.git to the installed documents list.
 - Add README.plack to the installed documents list.
* Register the release notes using debian/ledgersmb.doc-base.notes.
* Add empty directory 'UI/logout/' to ledgersmb.lintian-overrides file.
* Update README.Debian, TODO.Debian, and NEWS.Debian files for new release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
301
301
within on week.$$;
302
302
 
303
303
CREATE OR REPLACE FUNCTION user__change_password(in_new_password text)
304
 
returns int as
 
304
returns int SET datestyle = 'ISO, YMD' as
305
305
$$
306
306
DECLARE
307
307
        t_expires timestamp;
336
336
    in_username text, 
337
337
    in_password TEXT,
338
338
    in_import BOOL
339
 
) returns int AS $$
 
339
) returns int 
 
340
SET datestyle = 'ISO, YMD'
 
341
AS $$
340
342
    DECLARE
341
343
    
342
344
        a_user users;