Code Monkey home page Code Monkey logo

openbiz-cubi's Introduction

This is a Subversion repository; use the 'svnadmin' tool to examine
it.  Do not add, delete, or modify files here unless you know how
to avoid corrupting the repository.

Visit http://subversion.tigris.org/ for more information.

openbiz-cubi's People

Contributors

hellojixian avatar agussuhartono avatar gte451f avatar rhossis avatar

Watchers

James Cloos avatar

openbiz-cubi's Issues

openbiz does not work with Postgresql

Already discussed at[0]

[0] https://groups.google.com/d/topic/openbiz-cubi/4KdlKRQ9-ng/discussion

I think this is not possible because of the use of backticks in the querys 
produced by BizDataSql class.

svn/trunk/cubi/openbiz/bin/data/BizDataSql.php

    /**
     * Add main table in the sql statement T0 alias
     *
     * @param string $mainTable main table name
     * @return void
     **/
    public function addMainTable($mainTable)
    {
        $this->_mainTable = "$mainTable";
        $this->_tableJoins = " `$mainTable` T0 ";
    }

This produces sql querys like:
"SELECT COUNT(*) FROM `help` T0 INNER JOIN `help_category` T1 ON T1.id = 
T0.category_id WHERE T0.category_id=''"
that do not work with postgresql.

Original issue reported on code.google.com by victor.seva on 18 Jul 2012 at 8:45

Report Admin - Manage Databases - not saved new Data Source

What steps will reproduce the problem?
1. empty table report_db
2. Crete new data data source
3. save 

What is the expected output? What do you see instead?
Not exist new record in report_db

What version of the product are you using? On what operating system?
Release 312

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 16 Sep 2011 at 9:47

日程管理bug

1. 
日历视图下还是不弹出黄色的标签,好像还是jquery引起的,��
�为这版安装包所有的向导都没有被加载上。

Original issue reported on code.google.com by [email protected] on 10 Jan 2013 at 8:57

Attachments:

Wizard doesn't handle database work correctly.

What steps will reproduce the problem?
1. Download latest SVN ( r127 )
2. Install and begin wizard.
3. Enter database login and password.
4. Ask cubi to load modules.

I expect the application.xml file to contain the username/password I submitted 
via the wizard.  I also expect the load modules button to add tables.

Neither thing happens.  Application.xml holds the default credentials (root) 
and no module tables are created.




Original issue reported on code.google.com by [email protected] on 11 Jul 2011 at 7:44

DatePicker (InputDate) not work in System

In last SVN, I found that DatePicker can not display if calendar icon clicked.

Original issue reported on code.google.com by agus.suhartono on 4 Oct 2012 at 1:48

Infinite llop

What steps will reproduce the problem?
1. Create new module as per instructions in 
https://code.google.com/p/openbiz-cubi/wiki/CubiQuickStart
2. Try accessing <rootapacheurl>/cubdev/index/document/documentList
3. It gets into infinite lool
4.Check the error generated in html file using "view source", you will see
 Fatal error: Maximum function nesting level of '100' reached, aborting! in D:\wamp\www\cubidev\openbiz\bin\service\cacheService.php

What is the expected output? What do you see instead?
The demo should work as listed in the quick start guid

What version of the product are you using? On what operating system?
Cubi v2.0

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 19 Nov 2012 at 6:03

Permission Issue In Collab

What steps will reproduce the problem?
1. Attempt to create a new calendar event.
http://dev.openbiz.me/index.php/collab/event_manage

2. Click either "Next" or "Quick Finish"

3. Get error about permissions.
You don't have enough permission to do this opeation.

Operation is misspelled as well.



Original issue reported on code.google.com by [email protected] on 2 Aug 2011 at 12:38

新安装包bug

1. 
最新的安装包默认的第一次安装的时候系统初始化弹出的页��
�是英文的
2. 所有的新手向导都没有被发现

Original issue reported on code.google.com by [email protected] on 10 Jan 2013 at 8:49

Attachments:

render function in excelService does maintain structure of table that allows and contains NULL fields

What steps will reproduce the problem?
1. Create a table that allows null fields e.g.
    {{{
 CREATE  TABLE `teams` (

  `id` INT NOT NULL AUTO_INCREMENT ,

  `name` VARCHAR(45) NOT NULL ,

  `nickname` VARCHAR(45) NULL ,

  `coach` VARCHAR(45) NOT NULL,

  PRIMARY KEY (`id`) );
    }}}
2. Create some inputs with all the fields e.g
  {{{
    INSERT INTO `teams` (`id`,`name`,`nickname`,`coach`)
      VALUES(1,'Arsenal','Gunners','Wenger'),
            (2,'Chelsea','Blues','AVB');
  }}}
3. Create an input which has NULL field e.g.
  {{{
    INSERT INTO `teams` (`id`,`name`,`coach`)
      VALUES(3,'Barcelona','Pep');
  }}}

4. Using gen_meta.php utility on your cubi installation, create a component 
whose DataObject references this table created

5. Access the list view of this component and click export button to export to 
CSV

What is the expected output? What do you see instead?
Expected output is that the structure of the table should be maintained as some 
business rules allow for NULL fields in some scenarios. Output produced is that 
NULL field is truncated and fields in the records with NULL fields to not 
appear in the correct position e.g. as per output below, the cell "Pep" is now 
in field nickname and not coach.

--------------------------------------
"Id","Name","Nickname","Coach"
"1","Arsenal","Gunners","Wenger"
"2","Chelsea","Blues","AVB"
"3","Barcelona","Pep"
--------------------------------------

Original issue reported on code.google.com by [email protected] on 7 Nov 2011 at 10:52

Easyform Tree includes Html entities in values prior to rendering phase

What steps will reproduce the problem?
1. Create a tree form using class EasyFormTree
2. The title field of the child nodes should have indents led by dashes e.g
    Root Node
       ---- Child Node 1
       ---- Child Node 2
          --------Child Node2

What is the expected output? What do you see instead?
  The expected output is a tree structure as above. Instead,
  the indenting dashes are separated by &nbsp; as below
    Root Node
       &nbsp;-&nbsp;-&nbsp;-&nbsp;- Child Node 1
       &nbsp;-&nbsp;-&nbsp;-&nbsp;- Child Node 2
          &nbsp;-&nbsp;-&nbsp;-&nbsp;-&nbsp;-&nbsp;-&nbsp;-&nbsp;-Child Node2


Solution:
  Because the implementing element for this nodes (LabelText) will
  call htmlentities and thus add the &nbsp; in place of spaces, there is no need to include &nbsp; prior to a rendering phase which causes
  this issue.

  Line 104 of EasyFormTree recommended to be as follows:
  $treeNodeArray[$this->m_TitleField] = "+ ".str_repeat(" - - - -", $level)." ".$treeNodeArray[$this->m_TitleField];


Original issue reported on code.google.com by [email protected] on 10 Apr 2012 at 6:25

upload photo

i have a grid photo,i wanna add many photos (upload photos) in time.
Please give me some advices,

Thanks,

Original issue reported on code.google.com by [email protected] on 6 Jul 2012 at 4:58

Error - Manage UI Translation

What steps will reproduce the problem?
1. Open Translation
2. Manage UI Translation
3. Edit (Default Language English US)

What is the expected output? What do you see instead?
 [2012-11-13 17:18:22 (GMT)] An exception occurred while executing this script:
Error message: #2, file_get_contents() [function.file-get-contents]: Filename 
cannot be empty
Script name and line number of error: 
/home2/bmcintra/public_html/modules/translation/form/TranslationForm.php:49

function: errorHandler ( 2, "file_get_contents() [<a 
href='function.file-get-contents'>functi...", 
"/home2/bmcintra/public_html/modules/translation/form/Translation...", 49, 
Array(10) ) @ /home2/bmcintra/public_html/openbiz/bin/sysheader_inc.php 123
function: userErrorHandler ( 2, "file_get_contents() [<a 
href='function.file-get-contents'>functi...", 
"/home2/bmcintra/public_html/modules/translation/form/Translation...", 49, 
Array(10) ) @
function: file_get_contents ( "" ) @ 
/home2/bmcintra/public_html/modules/translation/form/TranslationForm.php 49
function: fetchData ( ) @ 
/home2/bmcintra/public_html/openbiz/bin/easy/FormRenderer.php 78
function: buildTemplateAttributes ( Object(TranslationForm) ) @ 
/home2/bmcintra/public_html/openbiz/bin/easy/FormRenderer.php 38
function: render ( Object(TranslationForm) ) @ 
/home2/bmcintra/public_html/openbiz/bin/easy/EasyForm.php 2057
function: renderHTML ( ) @ 
/home2/bmcintra/public_html/openbiz/bin/easy/EasyForm.php 1931
function: render ( ) @ 
/home2/bmcintra/public_html/openbiz/bin/easy/EasyForm.php 1279
function: _showForm ( "translation.form.TranslationEditForm", "", Array(1) ) @ 
/home2/bmcintra/public_html/openbiz/bin/easy/EasyForm.php 2259
function: processPostAction ( ) @ 
/home2/bmcintra/public_html/openbiz/bin/easy/EasyForm.php 1189
function: editRecord ( ) @ 
/home2/bmcintra/public_html/openbiz/bin/BizController.php 302
function: invoke ( ) @ 
/home2/bmcintra/public_html/openbiz/bin/BizController.php 418
function: _dispatchRPC ( ) @ 
/home2/bmcintra/public_html/openbiz/bin/BizController.php 96
function: dispatchRequest ( ) @ 
/home2/bmcintra/public_html/openbiz/bin/BizController.php 34
function: include_once ( 
"/home2/bmcintra/public_html/openbiz/bin/BizController.php" ) @ 
/home2/bmcintra/public_html/bin/controller.php 5
Please ask system administrator for help...


What version of the product are you using? On what operating system?
CUBI 2.1.0  || CentOs 64Bit with PHP5.3.18

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 13 Nov 2012 at 5:24

openbiz-cubi-2.0.0.exe doesn't display "next" button when install on the third step

What steps will reproduce the problem?
1. click next,next
2. the third step,I can't see the "back" and "next" button,so I can't direct to 
"finish" step.


What is the expected output? What do you see instead?
It should display the "Next" Button. There are no any button show.

What version of the product are you using? On what operating system?
openbiz-cubi 2.0.0. OS:XP Browser:IE8 and Chrome 18

Please provide any additional information below.
N/A

Original issue reported on code.google.com by [email protected] on 19 May 2012 at 12:57

日程安排错误

1. 
第一次使用日程安排软件的时候,无法弹出黄色的日程标签��
�重新点过其他页面后回来就可以看到这个黄色的日程标签了
2.  黄色的日程标签下面的几个图标无法显示
3.   单击提醒、通知都会弹出jquery错误
4   新建日程视图显示变形
以上错误都是在winxp IE8 下发生的



Original issue reported on code.google.com by [email protected] on 8 Jan 2013 at 11:14

  • Merged into: #38

Attachments:

Apps from Market

It will be good to see the next one:

When Featured App already downloaded and installed successfully from the Market 
to see Installed or Deinstall App button.
Now we see the same Install button like before the installation.


Original issue reported on code.google.com by [email protected] on 7 Apr 2012 at 9:03

日程管理的提醒和通知报错

What steps will reproduce the problem?
1. 在windows 7 
IE8下目前我没有看到提醒和通知的报错,但是昨天在rocky的电
脑上也是win7 
IE就在这个地方报错。我明天在我的winxp下面再次测试,看看�
��否能看见这个地方的报错。而且这个地方rocky的电脑还有显�
��变形,我不知道是不是rocky的网页显示不是100%,明天我换win
xp再测测。

Original issue reported on code.google.com by [email protected] on 6 Jan 2013 at 3:47

  • Merged into: #38

Attachments:

On exporting of a component with no records CSV file prints error and debug information

What steps will reproduce the problem?
1. Attempt to export data using default excelService from a component with no 
records under list view

What is the expected output? What do you see instead?

Expected Output
Expected output is that it should recognize there are no records and not 
attempt to export preferably, or if exporting, should generate a blank csv file.

Actual Output
The system attempts to generate a html view of the error output and ends
up dumping this and saving it along with the CSV file.

Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 7 Dec 2011 at 1:34

In event's contact edit view, the save button doesnt works

What steps will reproduce the problem?
1. edit a event's contact
2. click the bottom save button,
3. nothing will happy, but it should switch the form to deatil of current event

Original issue reported on code.google.com by [email protected] on 2 Dec 2011 at 12:04

Attachments:

System Internal Error

What steps will reproduce the problem?
1. open admin panel
2. set country, time zone 
3. save - appeared successful
4. navigate anywhere produces warning:

System Internal Error warning
 function: errorHandler ( 2, "Invalid argument supplied for foreach()", "/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/servic...", 382, Array(2) ) @ /var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/sysheader_inc.php 123 
function: userErrorHandler ( 2, "Invalid argument supplied for foreach()", 
"/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/servic...", 382, Array(2) 
) @ /var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/1/log1.php 382 
function: _getPath ( Null ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/1/log1.php 149 
function: log ( 7, "DATAOBJ", "Query Sql = SELECT T0.`id`, T0.`user_id`, 
T0.`section`, T0.`name..." ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/BizSystem.php 621 
function: log ( 7, "DATAOBJ", "Query Sql = SELECT T0.`id`, T0.`user_id`, 
T0.`section`, T0.`name..." ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/data/BizDataObj_Lite.php 
469 
function: _run_search ( Null ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/data/BizDataObj_Lite.php 
295 
function: directFetch ( "[user_id]='0' AND ([section]='Login' OR 
[section]='Register' )" ) @ 
/var/www/vhosts/1best.net/httpdocs/base/modules/user/form/LoginForm.php 49 
function: readMetadata ( Array(1) ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/easy/EasyForm.php 138 
function: __construct ( Array(1) ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/ObjectFactory.php 170 
function: constructObject ( "user.form.LoginForm" ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/ObjectFactory.php 56
function: getObject ( "user.form.LoginForm" ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/easy/EasyView.php 350 
function: initAllForms ( ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/easy/EasyView.php 241 
function: render ( ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/BizController.php 207 
function: renderView ( "user.view.LoginView", "", "", Null, "" ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/BizController.php 403 
function: _dispatchView ( ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/BizController.php 86 
function: dispatchRequest ( ) @ 
/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/BizController.php 34 
function: include_once ( 
"/var/www/vhosts/1best.net/httpdocs/base/openbiz/bin/BizCon..." ) @ 
/var/www/vhosts/1best.net/httpdocs/base/bin/controller.php 5 
function: include ( 
"/var/www/vhosts/1best.net/httpdocs/base/bin/controller.php" ) @ 
/var/www/vhosts/1best.net/httpdocs/base/bin/_forward.php 108 
function: include ( "/var/www/vhosts/1best.net/httpdocs/base/bin/_forward.php" 
) @ /var/www/vhosts/1best.net/httpdocs/base/index.php 18

What version of the product are you using? 
3.0.0 Beta5

On what operating system?
Centos 6

Original issue reported on code.google.com by [email protected] on 22 Dec 2012 at 10:57

Error in Gen_Meta Tool

What steps will reproduce the problem?
1. Create a new module using gen_meta tool on a simple table.  In my case, the 
table was called "firm".
   # php gen_meta.php dbname table

2. Choose the following options: 1, 3, y, y, y, y, y, y


What is the expected output? What do you see instead?

There error lies in the mod.xml file.  It should create menu entries as 
follows...

<MenuItem Name="Firm" Title="Firm Group" Description="Firm Group Descrip" 
URL="" Order="10">
  <MenuItem Name="Firm.List" Title="Firm List" Description="Firm List Descrip"  URL="{@home:url}/firm/firm_list" Order="10"/>
</MenuItem>


Instead, it creates the following...

<MenuItem Name="Firm" Title="Firm" Description="Firm Description" 
URL="{@home:url}/firm/dashboard" Parent="" Order="10">
  <MenuItem Name="Firm" Title="Firm" Description="Firm description" URL="" Parent="" Order="10">
     <MenuItem Name="Firm.List" Title="Firm Manage" Description=""  URL="{@home:url}/firm/firm_list" Order="10"/>
  </MenuItem>   
</MenuItem>

This 2nd menu set creates an infinite loop in MenuTreeDO->fetchNodePath() when 
rendering the LIST form.  fetchNodePath() calls itself over and over at line 94.

Original issue reported on code.google.com by [email protected] on 9 Jul 2011 at 7:30

installation step 3 : Loading modulers error

What steps will reproduce the problem?
1.
2.
3. press 'next' button

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.

a new page popup and show 'can't open cmp file to write'

Original issue reported on code.google.com by [email protected] on 22 Feb 2012 at 6:37

日程管理 日历视图弹窗bug

What steps will reproduce the problem?
1. 
在日程管理的日历视图中双击创建日程会创建出多个日程。��
�该是第一个日程的创建弹窗弹出来之前,不允许弹出第二个�
��窗。



Original issue reported on code.google.com by [email protected] on 6 Jan 2013 at 3:38

Attachments:

资产管理bug

1. 在资产管理 添加新资产的表单中 
随机生成的资产条码有时候会有负值



Original issue reported on code.google.com by [email protected] on 10 Jan 2013 at 8:53

Attachments:

No access after fullwidth

After the installation of v2.0 seems all working good.
But when I trying to switch the theme to fullwidth - the site is crashed (no 
possibility to open any page).

Browser: Chrome 18.0.1025


Original issue reported on code.google.com by [email protected] on 7 Apr 2012 at 8:56

Error in _forward.php Unknown modifier 'n'

Error message: #2, preg_match(): Unknown modifier 'n'
Script name and line number of error: 
/home/k6/public_html/cubi/bin/_forward.php:36

Original issue reported on code.google.com by agus.suhartono on 14 Oct 2012 at 7:38

Owner Field Select BizForm Fails

What steps will reproduce the problem?
1. Log into Ticket application on dev.openbiz.com
http://dev.openbiz.me/index.php/trac/ticket_list


2. Click Add button.

3. Attempt to select an "Owner" for the new trac_ticket.


What is the expected output? What do you see instead?
When you choose an owner from the list, you selection isn't remembered on the 
parent form.


The pick biz form works as expected on the detail view.
http://dev.openbiz.me/index.php/trac/ticket_detail/2


Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 2 Aug 2011 at 12:27

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.