/lenasys/0.1

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/0.1

« back to all changes in this revision

Viewing changes to trunk/Code Viewer Alt/Codeviewer/showsource.php

  • Committer: gustav.hartvigsson at gmail
  • Date: 2013-04-02 12:13:01 UTC
  • mfrom: (4.2.7 hitlerhorabajs)
  • Revision ID: gustav.hartvigsson@gmail.com-20130402121301-ytfzuo7y6cku9s3o
Merge from implemenation group 2:s branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
        </head>
6
6
        <body>
7
7
        <?php
8
 
        include("showcode.php");
9
 
        
10
 
        menulayout("innan.php","efter.php","test.txt","Example 1: Execution of AJAX API","Ponyo.txt");
11
 
        
12
 
        $interestingrows=array(array(16,21,"Ajax function"),array(23,37,"Ajax return function"));
13
 
        $keywords=array("showCustomer","ResultCustomer");
14
 
        $highlight=array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"));
15
 
 
16
 
        showfile($interestingrows,$keywords,$highlight);
17
 
 
18
 
        menulayoutend();
19
 
?>
20
 
</body>
 
8
                include("showcode.php");
 
9
                menulayout("innan.php","efter.php","test.txt","Example 1: Execution of AJAX API","Ponyo.txt");
 
10
                $interestingrows = array(array(16,21,"Ajax function"),array(23,37,"Ajax return function"));
 
11
                $keywords = array("showCustomer","ResultCustomer");
 
12
                $highlight = array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"));
 
13
                showfile($interestingrows,$keywords,$highlight);
 
14
                menulayoutend();
 
15
        ?>
 
16
        </body>
21
17
</html>