Skip to content

Commit 7aa44be

Browse files
committed
fixed links back to old google code wiki
1 parent 13a34f6 commit 7aa44be

11 files changed

+42
-43
lines changed

wiki/Ajax.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Ajax, standing for _Asynchronous JavaScript and XML_ is combination of HTTP Clie
1313

1414
**phpQuery** also offers such functionality, making use of solid quality [Zend\_Http\_Client](http://framework.zend.com/manual/en/zend.http.html). Unfortunately requests aren't asynchronous, but nothing is impossible. For today, instead of [XMLHttpRequest](http://en.wikipedia.org/wiki/XMLHttpRequest) you always get Zend\_Http\_Client instance. API unification is [planned](http://code.google.com/p/phpquery/issues/detail?id=44).
1515
## Cross Domain Ajax
16-
For security reasons, by default **phpQuery** doesn't allow connections to hosts other than actual `$_SERVER['HTTP_HOST']`. Developer needs to grant rights to other hosts before making an [Ajax](http://code.google.com/p/phpquery/wiki/Ajax) request.
16+
For security reasons, by default **phpQuery** doesn't allow connections to hosts other than actual `$_SERVER['HTTP_HOST']`. Developer needs to grant rights to other hosts before making an [Ajax](Ajax.md) request.
1717

1818
There are 2 methods for allowing other hosts
1919
* phpQuery::**ajaxAllowURL**($url)

wiki/Basics.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ $ul = pq('ul');
1313
* phpQuery::**newDocumentHTML**($html, $charset = 'utf-8')
1414
* phpQuery::**newDocumentXHTML**($html, $charset = 'utf-8')
1515
* phpQuery::**newDocumentXML**($html, $charset = 'utf-8')
16-
* phpQuery::**newDocumentPHP**($html, $contentType = null) Read more about it on [PHPSupport page](http://code.google.com/p/phpquery/wiki/PHPSupport)
16+
* phpQuery::**newDocumentPHP**($html, $contentType = null) Read more about it on [PHPSupport page](PHPSupport.md)
1717
* phpQuery::**newDocumentFileHTML**($file, $charset = 'utf-8')
1818
* phpQuery::**newDocumentFileXHTML**($file, $charset = 'utf-8')
1919
* phpQuery::**newDocumentFileXML**($file, $charset = 'utf-8')
20-
* phpQuery::**newDocumentFilePHP**($file, $contentType) Read more about it on [PHPSupport page](http://code.google.com/p/phpquery/wiki/PHPSupport)
20+
* phpQuery::**newDocumentFilePHP**($file, $contentType) Read more about it on [PHPSupport page](PHPSupport.md)
2121
## pq function
2222
**`pq($param, $context = null);`**
2323

wiki/Callbacks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* [CallbackReference class](#CallbackReference.md)
77
* [Scope Pseudo-Inheritance](#Scope_Pseudo_Inheritance.md)
88
## What are callbacks
9-
Callbacks are functions _called back_ by other functions in proper moment (eg on [Ajax](http://code.google.com/p/phpquery/wiki/Ajax) request error).
9+
Callbacks are functions _called back_ by other functions in proper moment (eg on [Ajax](Ajax.md) request error).
1010

1111
In **JavaScript** this pattern can be very flexible due to [Closures](http://en.wikipedia.org/wiki/Closure_(computer_science)) support, which can be inline (no code break) and inherits scope (no need to passing params).
1212

wiki/Events.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function submitHandler($e) {
1818
## Server Side Events
1919
phpQuery support **server-side** events, same as jQuery handle client-side ones. On server there isn't, of course, events such as _mouseover_ (but they can be triggered).
2020

21-
By default, phpQuery automatically fires up only **change** event for form elements. If you load WebBrowser plugin, **submit** and **click** will be handled properly - eg submitting form with inputs' data to action URL via new [Ajax](http://code.google.com/p/phpquery/wiki/Ajax) request.
21+
By default, phpQuery automatically fires up only **change** event for form elements. If you load WebBrowser plugin, **submit** and **click** will be handled properly - eg submitting form with inputs' data to action URL via new [Ajax](Ajax.md) request.
2222

2323
$this (`this` in JS) context for handler scope **isn't available**. You have to use one of following manually:
2424
* $event->**target**

wiki/LibrarySections.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Renamed to [Manual](http://code.google.com/p/phpquery/wiki/Manual).
1+
Renamed to [Manual](Manual.md).

wiki/PHPSupport.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Although **phpQuery** is a [jQuery port](http://code.google.com/p/phpquery/wiki/jQueryPortingState), there is extensive PHP-specific support.
1+
Although **phpQuery** is a [jQuery port](jQueryPortingState.md), there is extensive PHP-specific support.
22

33
# Table of Contents
44
* [Class Interfaces](#Class_Interfaces.md)
55
* [Iterator Interface](#Iterator.md)
66
* [ArrayAccess](#Array_Access.md)
77
* [Countable Interface](#Countable.md)
8-
* [Callbacks](http://code.google.com/p/phpquery/wiki/Callbacks)
8+
* [Callbacks](Callbacks.md)
99
* [PHP Code Support](#PHP_Code_Support.md)
1010
* [Opening PHP files as DOM](#Opening_PHP_files_as_DOM.md)
1111
* [Inputting PHP code](#Inputting_PHP_code.md)
@@ -42,7 +42,7 @@ If used to do `count($something)` you can still do this that way, instead of eg
4242
print count(pq('ul:first > li'));
4343
```
4444
## Callbacks
45-
There is a special [Callbacks](http://code.google.com/p/phpquery/wiki/Callbacks) wiki section, to which you should refer to.
45+
There is a special [Callbacks](Callbacks.md) wiki section, to which you should refer to.
4646
## PHP Code Support
4747
#### Opening PHP files as DOM
4848
PHP files can be opened using **phpQuery::newDocumentPHP($markup)** or **phpQuery::newDocumentFilePHP($file)**. Such files are visible as DOM, where:

wiki/README.md

+18-19
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
1-
1. [Basics](http://code.google.com/p/phpquery/wiki/Basics)
2-
1. [Ported jQuery sections](http://code.google.com/p/phpquery/wiki/jQueryPortingState)
3-
1. [Selectors](http://code.google.com/p/phpquery/wiki/Selectors)
4-
1. [Attributes](http://code.google.com/p/phpquery/wiki/Attributes)
5-
1. [Traversing](http://code.google.com/p/phpquery/wiki/Traversing)
6-
1. [Manipulation](http://code.google.com/p/phpquery/wiki/Manipulation)
7-
1. [Ajax](http://code.google.com/p/phpquery/wiki/Ajax)
8-
1. [Events](http://code.google.com/p/phpquery/wiki/Events)
9-
1. [Utilities](http://code.google.com/p/phpquery/wiki/Utilities)
10-
1. [Plugin ports](http://code.google.com/p/phpquery/wiki/PluginsClientSidePorts)
11-
1. [PHP Support](http://code.google.com/p/phpquery/wiki/PHPSupport)
12-
1. [Command Line Interface](http://code.google.com/p/phpquery/wiki/CommandLineInterface)
13-
1. [Multi document support](http://code.google.com/p/phpquery/wiki/MultiDocumentSupport)
14-
1. [Plugins](http://code.google.com/p/phpquery/wiki/PluginsServerSide)
15-
1. [WebBrowser](http://code.google.com/p/phpquery/wiki/WebBrowser)
16-
1. [Scripts](http://code.google.com/p/phpquery/wiki/ScriptsPlugin)
17-
1. [jQueryServer](http://code.google.com/p/phpquery/wiki/jQueryServer)
18-
1. [Debugging](http://code.google.com/p/phpquery/wiki/Debugging)
1+
1. [Basics](Basics.md)
2+
1. [Ported jQuery sections](jQueryPortingState.md)
3+
1. [Selectors](Selectors.md)
4+
1. [Attributes](Attributes.md)
5+
1. [Traversing](Traversing.md)
6+
1. [Manipulation](Manipulation.md)
7+
1. [Ajax](Ajax.md)
8+
1. [Events](Events.md)
9+
1. [Utilities](Utilities.md)
10+
1. [Plugin ports](PluginsClientSidePorts.md)
11+
1. [PHP Support](PHPSupport.md)
12+
1. [Command Line Interface](CommandLineInterface.md)
13+
1. [Multi document support](MultiDocumentSupport.md)
14+
1. [Plugins](PluginsServerSide.md)
15+
1. [WebBrowser](WebBrowser.md)
16+
1. [Scripts](ScriptsPlugin.md)
17+
1. [jQueryServer](jQueryServer.md)
18+
1. [Debugging](Debugging.md)
1919
1. Bootstrap file
2020

21-
**[API Reference](http://meta20.net/phpquery-api/)** is also available.

wiki/WebBrowser.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
**WebBrowser** is a phpQuery [plugin](http://code.google.com/p/phpquery/wiki/PluginsServerSide) that mimics behaviors of web browser. Thanks to that developer can simulate user's behavior inside a PHP script.
1+
**WebBrowser** is a phpQuery [plugin](PluginsServerSide.md) that mimics behaviors of web browser. Thanks to that developer can simulate user's behavior inside a PHP script.
22

33
## Supported
44
* Link navigation (click event)

wiki/jQueryDifferences.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Renamed to [jQueryPortingState](http://code.google.com/p/phpquery/wiki/jQueryPortingState).
1+
Renamed to [jQueryPortingState](jQueryPortingState.md).

wiki/jQueryPortingState.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
phpQuery is almost a full port of the [jQuery JavaScript Library](http://jquery.com/).
22

33
## Ported Sections
4-
1. [Selectors](http://code.google.com/p/phpquery/wiki/Selectors)
5-
1. [Attributes](http://code.google.com/p/phpquery/wiki/Attributes)
6-
1. [Traversing](http://code.google.com/p/phpquery/wiki/Traversing)
7-
1. [Manipulation](http://code.google.com/p/phpquery/wiki/Manipulation)
8-
1. [Ajax](http://code.google.com/p/phpquery/wiki/Ajax)
9-
1. [Events](http://code.google.com/p/phpquery/wiki/Events)
10-
1. [Utilities](http://code.google.com/p/phpquery/wiki/Utilities)
11-
1. [Plugin ports](http://code.google.com/p/phpquery/wiki/PluginsClientSidePorts)
4+
1. [Selectors](Selectors.md)
5+
1. [Attributes](Attributes.md)
6+
1. [Traversing](Traversing.md)
7+
1. [Manipulation](Manipulation.md)
8+
1. [Ajax](Ajax.md)
9+
1. [Events](Events.md)
10+
1. [Utilities](Utilities.md)
11+
1. [Plugin ports](PluginsClientSidePorts.md)
1212

1313
## Additional methods
1414
phpQuery features many additional methods comparing to jQuery:
@@ -21,9 +21,9 @@ phpQuery features many additional methods comparing to jQuery:
2121
* reverse()
2222
* contentsUnwrap()
2323
* switchWith()
24-
* all from [PHPSupport](http://code.google.com/p/phpquery/wiki/PHPSupport)
25-
* all from [Basic](http://code.google.com/p/phpquery/wiki/Basic)
26-
* all from [MultiDocumentSupport](http://code.google.com/p/phpquery/wiki/MultiDocumentSupport)
24+
* all from [PHPSupport](PHPSupport.md)
25+
* all from [Basic](Basic.md)
26+
* all from [MultiDocumentSupport](MultiDocumentSupport.md)
2727

2828
## Other Differences
2929
* [Server Side Events](http://code.google.com/p/phpquery/wiki/Events?ts=1225458859&updated=Events#Server_Side_Events)

wiki/jQueryServer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
**jQueryServer** is a jQuery plugin giving unobstrusive, client-side bindings to server-side implementation of jQuery.
22

33
## Example scenario
4-
1. Connect to server and make an [Ajax](http://code.google.com/p/phpquery/wiki/Ajax) request to somewhere ([crossdomain allowed](http://code.google.com/p/phpquery/wiki/CrossDomainAjax))
4+
1. Connect to server and make an [Ajax](Ajax.md) request to somewhere ([crossdomain allowed](CrossDomainAjax.md))
55
1. Do some manipulations, you can even trigger a [server-side event](http://code.google.com/p/phpquery/wiki/Events#Server_Side_Events)
66
1. Get processed date back to the browser
77

@@ -13,4 +13,4 @@ $.server({url: 'http://somesite.com'})
1313
$('.destination').html(response);
1414
});
1515
```
16-
Since version **0.5.1** (this is **not** phpQuery release version number) there is a support for config file which **authorizes** [Ajax](http://code.google.com/p/phpquery/wiki/Ajax) hosts and referers.
16+
Since version **0.5.1** (this is **not** phpQuery release version number) there is a support for config file which **authorizes** [Ajax](Ajax.md) hosts and referers.

0 commit comments

Comments
 (0)