Exibir código-fonte para Módulo:ISBN
Ir para navegação
Ir para pesquisar
Você não possui permissão para editar esta página, pelos motivos a seguir:
Você pode ver e copiar o código desta página.
-- This Lua code was originally based on the Perl modules ISBN::Business and
-- ISBN::Business::Data by brian d foy <bdfoy@cpan.org>. The Lua version is
-- a complete rewrite with a simpler structure and much less code.
--
-- This software and documentation is Copyright (c) 2007 Geoff Richards
-- <geoff@geoffrichards.co.uk>. It is free software; you can redistribute it
-- and/or modify it under the terms of the S<Lua 5.0> license. The full terms
-- are given in the file I<COPYRIGHT> supplied with the source code package,
-- and are also available here: http://www.lua.org/license.html
-- More in: http://www.geoffrichards.co.uk/lua/isbn/
--
-- Objects of this class have the following private fields in (all of
-- which are required):
-- _isbn - string, 10 or 13 chars
-- _group_code, string, varying lengths
-- _publisher_code, sting, varying lengths
-- _article_code - string, varying lengths
-- From: https://geoffrichards.co.uk/lua/isbn/
local M = { _NAME = "isbn" }
M.__index = M
000
1:0
Predefinição usada nesta página:
Retornar para Módulo:ISBN.