You can subscribe to this list here.
| 2007 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
|
Feb
(58) |
Mar
(126) |
Apr
(96) |
May
(42) |
Jun
(59) |
Jul
(80) |
Aug
(95) |
Sep
(99) |
Oct
(137) |
Nov
(54) |
Dec
(138) |
| 2009 |
Jan
(174) |
Feb
(83) |
Mar
(36) |
Apr
(22) |
May
(16) |
Jun
(11) |
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <dor...@us...> - 2008-02-04 17:24:26
|
Revision: 41
http://andro.svn.sourceforge.net/andro/?rev=41&view=rev
Author: dorgan1983
Date: 2008-02-04 09:24:26 -0800 (Mon, 04 Feb 2008)
Log Message:
-----------
Property Changed:
----------------
trunk/andro/application/
Property changes on: trunk/andro/application
___________________________________________________________________
Name: svn:ignore
+ AndroBuild-pre4.23.07.php
AndroBuild.php.orig
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dor...@us...> - 2008-02-01 22:26:02
|
Revision: 36
http://andro.svn.sourceforge.net/andro/?rev=36&view=rev
Author: dorgan1983
Date: 2008-02-01 13:26:33 -0800 (Fri, 01 Feb 2008)
Log Message:
-----------
Modified Paths:
--------------
trunk/andro/lib/androPageSmarty.php
Modified: trunk/andro/lib/androPageSmarty.php
===================================================================
--- trunk/andro/lib/androPageSmarty.php 2008-02-01 21:26:18 UTC (rev 35)
+++ trunk/andro/lib/androPageSmarty.php 2008-02-01 21:26:33 UTC (rev 36)
@@ -54,7 +54,6 @@
foreach( $yamlP2['options'] as $option=>$val ) {
$smarty->assign( $option, $val );
}
-
$smarty->display( $yamlP2['template'] );
} catch ( Exception $e ) {
echo( 'Unable to create Smarty Object for the following reason: ' .$e->getMessage() );
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dor...@us...> - 2008-02-01 22:09:13
|
Revision: 37
http://andro.svn.sourceforge.net/andro/?rev=37&view=rev
Author: dorgan1983
Date: 2008-02-01 13:42:40 -0800 (Fri, 01 Feb 2008)
Log Message:
-----------
Added onerow property to Smarty Page Dispatcher so that template will not have to be wrapped in foreach.
This was done here because Smarty expect anything in a foreach to be a multi level arrow with each row as an array.
Modified Paths:
--------------
trunk/andro/lib/androPageSmarty.php
Modified: trunk/andro/lib/androPageSmarty.php
===================================================================
--- trunk/andro/lib/androPageSmarty.php 2008-02-01 21:26:33 UTC (rev 36)
+++ trunk/andro/lib/androPageSmarty.php 2008-02-01 21:42:40 UTC (rev 37)
@@ -49,7 +49,16 @@
$smarty->caching = false;
foreach( $yamlP2['section'] as $section=>$props ) {
- $smarty->assign( $section, $props['rows'] );
+ if(isset( $yamlP2['section'][$section]['onerow'] ) ) {
+ $'section'][$section]['onerow'];
+ } else {
+ $;
+ }
+ if ( $ 'N' ) {
+ $smarty->assign( $section, $props['rows'] );
+ } elseif ( $ 'Y' ) {
+ $smarty->assign( $section, $props['rows']['0'] );
+ }
}
foreach( $yamlP2['options'] as $option=>$val ) {
$smarty->assign( $option, $val );
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dor...@us...> - 2008-02-01 21:29:03
|
Revision: 35
http://andro.svn.sourceforge.net/andro/?rev=35&view=rev
Author: dorgan1983
Date: 2008-02-01 13:26:18 -0800 (Fri, 01 Feb 2008)
Log Message:
-----------
Removed onerow property, it cannot be used as everything but be returned in a the way SQL_AllRows returns it and all smarty pages will have to be wrapped in {foreach} for now
Modified Paths:
--------------
trunk/andro/lib/androPage.php
Modified: trunk/andro/lib/androPage.php
===================================================================
--- trunk/andro/lib/androPage.php 2008-02-01 20:34:51 UTC (rev 34)
+++ trunk/andro/lib/androPage.php 2008-02-01 21:26:18 UTC (rev 35)
@@ -260,18 +260,8 @@
// Execute SQL and return all rows for all sections
$sections = $this->yamlP2['section'];
foreach($sections as $secname=>$secinfo) {
- if ( isset( $yamlP2['section'][$secname]['singlerecord'] ) ) {
- $'section'][$secname]['singlerecord'];
- } else {
- $'section'][$secname]['singlerecord'] = "N";
- }
- if ( $onerow ) {
- $this->yamlP2['section'][$secname]['rows']
- = SQL_OneRow( $secinfo['sql'] );
- } else {
- $this->yamlP2['section'][$secname]['rows']
- =SQL_AllRows($secinfo['sql']);
- }
+ $this->yamlP2['section'][$secname]['rows']
+ =SQL_AllRows($secinfo['sql']);
}
// Create the Smarty handler and call out to that
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dor...@us...> - 2008-02-01 20:34:50
|
Revision: 34
http://andro.svn.sourceforge.net/andro/?rev=34&view=rev
Author: dorgan1983
Date: 2008-02-01 12:34:51 -0800 (Fri, 01 Feb 2008)
Log Message:
-----------
Added nofilter option to options for Andor Page/Report
Modified Paths:
--------------
trunk/andro/lib/androPage.php
Modified: trunk/andro/lib/androPage.php
===================================================================
--- trunk/andro/lib/androPage.php 2008-02-01 20:33:33 UTC (rev 33)
+++ trunk/andro/lib/androPage.php 2008-02-01 20:34:51 UTC (rev 34)
@@ -98,17 +98,37 @@
}
}
- if ( gp( 'gp_post' ) == '' ) {
- $this->x3HTML();
+ // Check to see if nofilter option is set
+ if ( ArraySafe( $this->yamlP2['options'], 'nofilter') != '' ) {
+ $this->yamlP2['options']['nofilter'] = $this->yamlP2['options']['nofilter'];
} else {
- $this->genSQL();
- if ( $this->yamlP2['template'] == '' ) {
+ $this->yamlP2['options']['nofilter'] = 'N';
+ }
+
+ //If nofilter option is set to Y then display without filter
+ if ( $this->yamlP2['options']['nofilter'] == 'Y' ) {
+ $this->PassPage();
+ } else {
+ if ( gp( 'gp_post' ) == '' ) {
+ $this->x3HTML();
+ } else {
+ $this->PassPage();
+ }
+ }
+ }
+
+ /**
+ * This function determines whether it should make the page a report or a Smarty template
+ * @access private
+ */
+ private function PassPage() {
+ $this->genSQL();
+ if ( $this->yamlP2['template'] == '' ) {
$this->pageReport();
- } else {
+ } else {
$this->pageSmarty();
- }
- }
- }
+ }
+ }
/**
* Part of the YAML Processing arrangement.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dor...@us...> - 2008-02-01 19:17:35
|
Revision: 32
http://andro.svn.sourceforge.net/andro/?rev=32&view=rev
Author: dorgan1983
Date: 2008-02-01 11:17:39 -0800 (Fri, 01 Feb 2008)
Log Message:
-----------
Changed case statement on AndroPage_x dispatcher to an If statement and optimized
Modified Paths:
--------------
trunk/andro/lib/androPage.php
Modified: trunk/andro/lib/androPage.php
===================================================================
--- trunk/andro/lib/androPage.php 2008-02-01 19:08:38 UTC (rev 31)
+++ trunk/andro/lib/androPage.php 2008-02-01 19:17:39 UTC (rev 32)
@@ -77,6 +77,10 @@
);
}
+ if (!isset($this->yamlP2['template'] ) ) {
+ $this->yamlP2['template'] = '';
+ }
+
// Go through filters and make them all uniform
$filters = ArraySafe($this->yamlP2,'uifilter',array());
foreach($filters as $id=>$info) {
@@ -94,19 +98,16 @@
}
}
- switch(gp('gp_post')) {
- case '':
+ if ( gp( 'gp_post' ) == '' ) {
$this->x3HTML();
- break;
- case 'pdf':
+ } else {
$this->genSQL();
- $this->pageReport();
- break;
- case 'smarty':
- $this->genSQL();
- $this->pageSmarty();
- break;
- }
+ if ( $this->yamlP2['template'] == '' ) {
+ $this->pageReport();
+ } else {
+ $this->pageSmarty();
+ }
+ }
}
/**
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dor...@us...> - 2008-02-01 16:51:30
|
Revision: 29
http://andro.svn.sourceforge.net/andro/?rev=29&view=rev
Author: dorgan1983
Date: 2008-02-01 08:51:35 -0800 (Fri, 01 Feb 2008)
Log Message:
-----------
Fixed index_hidden_template to ignore .svn directory
Modified Paths:
--------------
trunk/andro/lib/index_hidden.php
Modified: trunk/andro/lib/index_hidden.php
===================================================================
--- trunk/andro/lib/index_hidden.php 2008-02-01 15:54:39 UTC (rev 28)
+++ trunk/andro/lib/index_hidden.php 2008-02-01 16:51:35 UTC (rev 29)
@@ -1013,6 +1013,8 @@
if ($filename=='.') continue;
if ($filename=='..') continue;
if ($filename=='andro_classic') continue;
+ // DO 2-1-2008 Added to ignore SVN directory
+ if ($filename=='.svn') continue;
if (is_dir($dir.$filename)) {
SessionSet('TEMPLATE',scFileName($filename));
break;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <j-...@us...> - 2008-02-01 15:44:52
|
Revision: 27
http://andro.svn.sourceforge.net/andro/?rev=27&view=rev
Author: j-pimp
Date: 2008-02-01 07:44:56 -0800 (Fri, 01 Feb 2008)
Log Message:
-----------
Added folder as per Ken's request.
Added Paths:
-----------
releases/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: Donald J O. IV <do...@do...> - 2007-12-31 22:07:26
|
Adding a flag to a table to make it so that none of the fields are allowed to have a default value of null. |
|
From: Donald J O. IV <do...@do...> - 2007-12-31 21:22:47
|
Does Andromeda have knowledge of transactions?? If not I propose the creations of a function SQL_Trans that takes an array of queries, that its roles into a transaction. |
|
From: Kenneth D. <ke...@se...> - 2007-02-08 22:29:33
|
First test message of andro-hacker |