Giter Club home page Giter Club logo

atk-community's People

Contributors

badpenguin avatar dalers avatar phrozenbyte avatar wayneh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

atk-community's Issues

Rebase atkphpframework/ATK_7_1_DEV

Issue by PhrozenByte from 2014-04-18 04:17:57 +0200
Originally opened as https://github.com/atkphpframework/ATK_7_1_DEV/issues/5
Original title: Rebase to atkphpframework/atk@develop


Your initial code commit (af1f8aeba2) is exactly the same as https://github.com/atkphpframework/atk/tree/develop - apart from dalers doc changes (I've reviewed that with diff). I appreciate new development, but why are you not using the existing repo? This also applies to your ATK_7_0_DEV repo.

atkdgsession

Issue by PhrozenByte from 2012-08-23 15:45:30 +0200
Originally opened as https://github.com/atkphpframework/atk-history/issues/6


Storing data grids in session is not a good idea when many grids are displayed within a page - the size of the session explodes. Sessions with > 1 MB aren't unusual when you have 100 grids on a page. The performance impact is crazy, a session of 1 MB results in a additional memory-usage of ~ 10-20 MB (per request!).

Record loading of atkOneToManyRelation

Issue by PhrozenByte from 2012-08-03 13:47:25 +0200
Originally opened as https://github.com/atkphpframework/atk-history/issues/5


Currently the grid records of a atkOneToManyRelation are loaded within the display() and edit() methods. It's a kind of funny that $grid->loadRecords() is both times commented as "early loading"... That's not "early" - the contrary is the case. The record loading should be implemented within the regular load() method, the whole grid should be created within the init() method.

patch to apply: ATK winxp theme error in PHP: 5.3.8 and higher (Deprecated functions)

Issue by Jacob2007 from 2012-07-17 12:32:59 +0200
Originally opened as https://github.com/atkphpframework/atk-history/issues/4


ERRORS when login

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\atk65\demo\app.php on line 58
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\atk65\demo\app.php on line 59
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\atk65\demo\app.php on line 60
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\atk65\demo\app.php on line 63
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\atk65\demo\app.php on line 66
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\atk65\demo\app.php on line 78

SOLUTION:
In PHP5 '&new' is deprecated should be 'new'

IN app.php REPLACE LINES

    $topframe = &new atkFrame($frame_top_height?$frame_top_height:"75", "top", "top.php", FRAME_SCROLL_NO, true);
    $mainframe = &new atkFrame("*", "main", $destination, FRAME_SCROLL_AUTO, true);
    $menuframe = &new atkFrame(($position==MENU_LEFT||$position==MENU_RIGHT?($frame_menu_width?$frame_menu_width:190):$menu->getHeight()), "menu", "menu.php", $scrolling);
    $root = &new atkRootFrameset();
    $outer = &new atkFrameSet("*", FRAMESET_VERTICAL, 0, $noframes);
    $wrapper = &new atkFrameSet("*", $orientation);

WITH

    $topframe = new atkFrame($frame_top_height?$frame_top_height:"75", "top", "top.php", FRAME_SCROLL_NO, true);
    $mainframe = new atkFrame("*", "main", $destination, FRAME_SCROLL_AUTO, true);
    $menuframe = new atkFrame(($position==MENU_LEFT||$position==MENU_RIGHT?($frame_menu_width?$frame_menu_width:190):$menu->getHeight()), "menu", "menu.php", $scrolling);
    $root = new atkRootFrameset();
    $outer = new atkFrameSet("*", FRAMESET_VERTICAL, 0, $noframes);
    $wrapper = new atkFrameSet("*", $orientation);

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.