Sorin Marian Nasoi has proposed merging 
lp:~zorba-coders/zorba/project_tag_image into lp:zorba/image-module.

Commit message:
- updated project TAG

Requested reviews:
  Sorin Marian Nasoi (sorin.marian.nasoi)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/project_tag_image/+merge/169640
-- 
https://code.launchpad.net/~zorba-coders/zorba/project_tag_image/+merge/169640
Your team Zorba Coders is subscribed to branch lp:zorba/image-module.
=== modified file 'src/com/zorba-xquery/www/modules/image/animation.xq'
--- src/com/zorba-xquery/www/modules/image/animation.xq	2011-08-13 00:08:33 +0000
+++ src/com/zorba-xquery/www/modules/image/animation.xq	2013-06-15 17:10:37 +0000
@@ -21,7 +21,7 @@
 
  : @author Daniel Thomas
  : @library <a href="http://www.imagemagick.org/Magick++/";>Magick++ C++ Library</a>
- : @project image
+ : @project Zorba/Image/Animation
  :)
 module namespace anim = 'http://www.zorba-xquery.com/modules/image/animation';
 

=== modified file 'src/com/zorba-xquery/www/modules/image/basic.xq'
--- src/com/zorba-xquery/www/modules/image/basic.xq	2012-11-09 08:41:54 +0000
+++ src/com/zorba-xquery/www/modules/image/basic.xq	2013-06-15 17:10:37 +0000
@@ -40,7 +40,7 @@
  :
  : @author Daniel Thomas
  : @library <a href="http://www.imagemagick.org/Magick++/";>Magick++ C++ Library</a>
- : @project image
+ : @project Zorba/Image/Basic
  :
  :)
 module namespace basic = 'http://www.zorba-xquery.com/modules/image/basic';

=== removed file 'src/com/zorba-xquery/www/modules/image/graphviz.xq'
--- src/com/zorba-xquery/www/modules/image/graphviz.xq	2011-08-01 11:26:35 +0000
+++ src/com/zorba-xquery/www/modules/image/graphviz.xq	1970-01-01 00:00:00 +0000
@@ -1,82 +0,0 @@
-xquery version "1.0";
-
-(:
- : Copyright 2006-2009 The FLWOR Foundation.
- :
- : Licensed under the Apache License, Version 2.0 (the "License");
- : you may not use this file except in compliance with the License.
- : You may obtain a copy of the License at
- :
- : http://www.apache.org/licenses/LICENSE-2.0
- :
- : Unless required by applicable law or agreed to in writing, software
- : distributed under the License is distributed on an "AS IS" BASIS,
- : WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- : See the License for the specific language governing permissions and
- : limitations under the License.
- :)
-
-(:~
- : <p>Module that provides functions for generating SVG graphs.</p> 
- : 
- : <p>The module provides two function for generating graphs given in the :
- : <ul><li>DOT language (see <a href="http://www.graphviz.org/";>
- : http://www.graphviz.org</a>)</li><li>or in the XML-based Graph eXchange
- : Language (see <a href="http://www.gupro.de/GXL/";>http://www.gupro.de/GXL/</a>),
- : respectively.</li></ul>
- : Both functions use the Graphviz Visualization Library in order to
- : layout and render the graphs. As a result, both return a sequence
- : of (document)-nodes (one for each input graph). 
- : These nodes are instances of the Scalable Vector Graphics (SVG) format. 
- : SVG is a language for describing two-dimensional graphics and
- : graphical applications in XML. More information about SVG can
- : be found at <a href="http://www.w3.org/Graphics/SVG/";>http://www.w3.org/Graphics/SVG/</a>.
- : As second parameters, both functions take a sequence of strings that
- : are parameters for the graph generation and rendering algorithms.
- : Currently, only the empty-sequence is allowed here. 
- : These parameters exist for future use.</p>
- : <p>Please note that this feature is only available on Unix-based 
- : platforms (i.e. not on Windows).</p>
- :
- : @author <a href="http://www.28msec.com/home/index";>28msec</a>
- : @library <a href="http://www.graphviz.org/";>Graphviz - Graph Visualization Software</a>
- : @project image
- :)
-module namespace gr = "http://www.zorba-xquery.com/modules/image/graphviz";;
-
-declare namespace ver = "http://www.zorba-xquery.com/options/versioning";;
-declare option ver:module-version "1.0";
-
-(:~
- : Layout one ore more graphs given in the DOT language and render
- : them as SVG. For example,
- :
- : <p><code>
- : dot("digraph mygraph { p -> q }", ())
- : </code></p>
- :
- : @param $dot A dot description of the graph to render.
- : @param $params Parameters to configure the layout and rendering
- :        process. Currently, only the empty-sequence is allowed here.
- : @return A graph for each item in the sequence given using the first
- :         parameter. The result sequence consists of items which are
- :         instance of the SVG data model.
- :)
-declare function gr:dot(
-    $dot as xs:string*,
-    $params as xs:string*) as node()* external;
-
-(:~
- : Layout one ore more graphs given in the GXL language and render
- : them as SVG.
- :
- : @param $gxl A GXL description of the graph to render.
- : @param $params Parameters to configure the layout and rendering
- :        process. Currently, only the empty-sequence is allowed here.
- : @return A graph for each item in the sequence given using the first
- :         parameter. The result sequence consists of items which are
- :         instance of the SVG data model.
- :)
-declare function gr:gxl(
-    $gxl as node()*,
-    $params as xs:string*) as node()* external;

=== modified file 'src/com/zorba-xquery/www/modules/image/manipulation.xq'
--- src/com/zorba-xquery/www/modules/image/manipulation.xq	2011-08-18 21:23:27 +0000
+++ src/com/zorba-xquery/www/modules/image/manipulation.xq	2013-06-15 17:10:37 +0000
@@ -41,7 +41,7 @@
  :
  : @author Daniel Thomas
  : @library <a href="http://www.imagemagick.org/Magick++/";>Magick++ C++ Library</a>
- : @project image
+ : @project Zorba/Image/Manipulation
  :
  :)
 module namespace man = 'http://www.zorba-xquery.com/modules/image/manipulation';

=== modified file 'src/com/zorba-xquery/www/modules/image/paint.xq'
--- src/com/zorba-xquery/www/modules/image/paint.xq	2011-08-07 00:38:36 +0000
+++ src/com/zorba-xquery/www/modules/image/paint.xq	2013-06-15 17:10:37 +0000
@@ -33,7 +33,7 @@
  :
  : @author Daniel Thomas
  : @library <a href="http://www.imagemagick.org/Magick++/";>Magick++ C++ Library</a>
- : @project image
+ : @project Zorba/Image/Paint
  :
  :)
 module namespace paint = 'http://www.zorba-xquery.com/modules/image/paint';

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to     : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp

Reply via email to