repo string | commit string | message string | diff string |
|---|---|---|---|
fujisho/meshdump | 7642abf4ee8cfe8d5d821e77113d3ebc81033ea3 | supported frame filter in the kernel. fixed a bug related to nfds of select(). added FD_ZERO() before select(). | diff --git a/Makefile b/Makefile
index 35153a6..ae99d28 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CFLAGS=-g
meshdump: main.o
$(CC) -o meshdump main.o -lpcap
clean:
- $(RM) meshdump *.o *~
\ No newline at end of file
+ $(RM) meshdump *.o *.dump *~
diff --git a/main.c b/main.c
index 34977c9..5b2adb4 100... |
fujisho/meshdump | 23222407a5b35c80e921eaa4855a2e0cc2e0821f | implemented basic functionalities. | diff --git a/Makefile b/Makefile
index ca1eb7c..35153a6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,6 @@
+CFLAGS=-g
+
meshdump: main.o
- $(CC) -o maindump main.o -lpcap
+ $(CC) -o meshdump main.o -lpcap
+clean:
+ $(RM) meshdump *.o *~
\ No newline at end of file
diff --git a/main.c b/main.c
index 8c667b9..34977c9 ... |
fujisho/meshdump | f2e5265833bc723075199682339fccf92cd8719a | added meshdump.h. implemented outline of program. | diff --git a/meshdump.h b/meshdump.h
new file mode 100644
index 0000000..8ca6986
--- /dev/null
+++ b/meshdump.h
@@ -0,0 +1,12 @@
+#ifndef MESHDUMP_H
+#define MESHDUMP_H
+
+#include <pcap.h>
+
+struct meshdump {
+ const char *ifname;
+ pcap_t *pcap;
+ pcap_dumper_t *dumper;
+};
+
+#endif
|
fujisho/meshdump | 82543fe58b7bc333e10357f7204a373c676779e1 | added Makefile. | diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ca1eb7c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,2 @@
+meshdump: main.o
+ $(CC) -o maindump main.o -lpcap
|
fujisho/meshdump | 3780c9ece036587a6e2fc86459b7ee740ca6f56f | added main.c. | diff --git a/main.c b/main.c
new file mode 100644
index 0000000..8c667b9
--- /dev/null
+++ b/main.c
@@ -0,0 +1,6 @@
+#include <pcap.h>
+
+int main()
+{
+ return 0;
+}
\ No newline at end of file
|
davcaffa/Mootools-Edit-In-Place | 192b74e2eb4162ae64c4a1f87ec34965fa839d98 | github generated gh-pages branch | diff --git a/index.html b/index.html
new file mode 100644
index 0000000..74cab8f
--- /dev/null
+++ b/index.html
@@ -0,0 +1,110 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head... |
basecode/Sketches | da713a9f1c839d4d28ef040263449b4372298a58 | - undo needs less memory and is faster, - added rubber functionality (without icon), - some minor changes | diff --git a/Sketches.html b/Sketches.html
index 813ec5f..74d853f 100644
--- a/Sketches.html
+++ b/Sketches.html
@@ -1,169 +1,242 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Sketches</title>
<meta name="viewport" content="width=device-w... |
basecode/Sketches | a77b873e46dcb9d8763405fe16092a19fac0ec18 | main html file | diff --git a/Sketches.html b/Sketches.html
new file mode 100644
index 0000000..813ec5f
--- /dev/null
+++ b/Sketches.html
@@ -0,0 +1,169 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+ <title>Sketches</title>
+ <meta name="viewport" content="width=de... |
kates/node-stomp | 61ccd891263f07e763633eb38a6456acb26ce2dd | add ack call to example of ack usage | diff --git a/README.md b/README.md
index b4a83ab..d48bfd1 100644
--- a/README.md
+++ b/README.md
@@ -1,42 +1,43 @@
node-stomp
==========
## Overview
A simple STOMP client.
## Usage
### Subscribing
**Basic**
var sys = require("sys"),
stomp = require("./stomp");
var client = new stomp.... |
kates/node-stomp | 3ac67632045a3038af5df73d60001b53782a5ffa | Added ability to callback when a message has been sent | diff --git a/stomp.js b/stomp.js
index 3c7f41b..f2f3b58 100644
--- a/stomp.js
+++ b/stomp.js
@@ -1,228 +1,236 @@
var sys = require("sys");
var tcp = require("net");
function Connection(host, port, login, password){
sys.puts("host " + host + " port " + port);
host = host || "127.0.0.1";
port = port || 6161... |
kates/node-stomp | 0cbeeae80d3f88ae62e34602720b1a0a14e5168e | Corrected indentation whitespace | diff --git a/stomp.js b/stomp.js
index 4bb1702..3c7f41b 100644
--- a/stomp.js
+++ b/stomp.js
@@ -1,228 +1,228 @@
var sys = require("sys");
var tcp = require("net");
function Connection(host, port, login, password){
sys.puts("host " + host + " port " + port);
host = host || "127.0.0.1";
port = port || 6161... |
kates/node-stomp | f0963296545040de5ce200b6930871e546ea98e5 | Allowed for headers with a : in them | diff --git a/stomp.js b/stomp.js
index aef31f1..4bb1702 100644
--- a/stomp.js
+++ b/stomp.js
@@ -1,227 +1,228 @@
var sys = require("sys");
var tcp = require("net");
function Connection(host, port, login, password){
sys.puts("host " + host + " port " + port);
host = host || "127.0.0.1";
port = port || 6161... |
kates/node-stomp | d38e8eedb9332e1bd87d33c396cd817ed7aafa99 | Enabled the message processing, not sure how else it was supposed to work | diff --git a/stomp.js b/stomp.js
index 9cb6ce7..aef31f1 100644
--- a/stomp.js
+++ b/stomp.js
@@ -1,227 +1,227 @@
var sys = require("sys");
var tcp = require("net");
function Connection(host, port, login, password){
sys.puts("host " + host + " port " + port);
host = host || "127.0.0.1";
port = port || 6161... |
kates/node-stomp | 086afc24905275cbf32adf4217263f7f21183aaa | Compatibility with node v0.3 | diff --git a/stomp.js b/stomp.js
index 80dc76c..9cb6ce7 100644
--- a/stomp.js
+++ b/stomp.js
@@ -1,227 +1,227 @@
var sys = require("sys");
-var tcp = require("tcp");
+var tcp = require("net");
function Connection(host, port, login, password){
sys.puts("host " + host + " port " + port);
host = host || "127.0.0... |
timknip/papervision3d | a99cef602095c1ef66ab4acdf4f19abf61e58155 | some updates | diff --git a/src/Main.as b/src/Main.as
index de5921c..4d073cf 100644
--- a/src/Main.as
+++ b/src/Main.as
@@ -1,176 +1,176 @@
package
{
import flash.display.BitmapData;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageQuality;
import flash.display.StageScaleMode;
imp... |
timknip/papervision3d | 2731145290f81a681b6eb460cf82c75aa2d1e499 | sorting for tris/lines | diff --git a/src/Main.as b/src/Main.as
index de5921c..d811aa6 100644
--- a/src/Main.as
+++ b/src/Main.as
@@ -1,176 +1,181 @@
package
{
import flash.display.BitmapData;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageQuality;
import flash.display.StageScaleMode;
imp... |
timknip/papervision3d | 1b7e23a93af7649a270ccfa79e116630b801efee | uvt fix | diff --git a/src/Main.as b/src/Main.as
index 9412ad8..de5921c 100644
--- a/src/Main.as
+++ b/src/Main.as
@@ -1,173 +1,176 @@
package
{
import flash.display.BitmapData;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageQuality;
import flash.display.StageScaleMode;
imp... |
timknip/papervision3d | f10e2099cf458560e639340c7586d757e72e3ac2 | not sure what i did :-) | diff --git a/src/org/papervision3d/core/geom/Triangle.as b/src/org/papervision3d/core/geom/Triangle.as
index 463dd03..faace15 100755
--- a/src/org/papervision3d/core/geom/Triangle.as
+++ b/src/org/papervision3d/core/geom/Triangle.as
@@ -1,65 +1,65 @@
package org.papervision3d.core.geom
{
import flash.geom.Vector3D;... |
timknip/papervision3d | 82480a5dd99985d7e2b71101a6951d6af6216651 | bitmap texture | diff --git a/src/org/papervision3d/core/render/draw/items/TriangleDrawable.as b/src/org/papervision3d/core/render/draw/items/TriangleDrawable.as
index 833811e..6f1d1b1 100755
--- a/src/org/papervision3d/core/render/draw/items/TriangleDrawable.as
+++ b/src/org/papervision3d/core/render/draw/items/TriangleDrawable.as
@@ ... |
timknip/papervision3d | 824bccc4ff3fab9cc0e9ecce396e0ceea686bb5e | bitmap texture | diff --git a/src/Main.as b/src/Main.as
index 81669d3..9412ad8 100644
--- a/src/Main.as
+++ b/src/Main.as
@@ -1,169 +1,173 @@
package
{
+ import flash.display.BitmapData;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageQuality;
import flash.display.StageScaleMode;
imp... |
timknip/papervision3d | e2d57a80152a63cc85fef2597d6ce5d62b4bfdca | prepping UVT | diff --git a/src/Main.as b/src/Main.as
index 967575e..81669d3 100644
--- a/src/Main.as
+++ b/src/Main.as
@@ -1,169 +1,169 @@
package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageQuality;
import flash.display.StageScaleMode;
import flash.events.Event;
import fl... |
timknip/papervision3d | 244d18ecd17b62ee72a9c2ace75f58fdcda732a8 | lines now work with azupko's merge | diff --git a/src/org/papervision3d/core/render/draw/items/LineDrawable.as b/src/org/papervision3d/core/render/draw/items/LineDrawable.as
new file mode 100644
index 0000000..d1d85ce
--- /dev/null
+++ b/src/org/papervision3d/core/render/draw/items/LineDrawable.as
@@ -0,0 +1,46 @@
+package org.papervision3d.core.render.dr... |
timknip/papervision3d | bd7e2eb830a74f64e98f84657171f457b15552c6 | prepping merge | diff --git a/src/Main.as b/src/Main.as
index 6237524..967575e 100644
--- a/src/Main.as
+++ b/src/Main.as
@@ -1,161 +1,169 @@
package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageQuality;
import flash.display.StageScaleMode;
import flash.events.Event;
import fl... |
timknip/papervision3d | 87f9dbdba0913aa508f85e9a84598bc649892f6a | culling beginnings | diff --git a/src/Main.as b/src/Main.as
index 80a7e23..6237524 100644
--- a/src/Main.as
+++ b/src/Main.as
@@ -1,169 +1,161 @@
-package {
+package
+{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageQuality;
import flash.display.StageScaleMode;
import flash.events.Event;
... |
timknip/papervision3d | 77689e9262eeac50c444fb896cd6b490805b71c5 | seperate renderer | diff --git a/src/org/papervision3d/core/geom/provider/VertexGeometry.as b/src/org/papervision3d/core/geom/provider/VertexGeometry.as
index cef05dc..da732a6 100755
--- a/src/org/papervision3d/core/geom/provider/VertexGeometry.as
+++ b/src/org/papervision3d/core/geom/provider/VertexGeometry.as
@@ -1,156 +1,164 @@
packag... |
timknip/papervision3d | 671f599ef19568e09a53716fc6c30c5bc7bceb6b | more optimizattion | diff --git a/README b/README
index 6718ddc..0992883 100644
--- a/README
+++ b/README
@@ -1,42 +1,8 @@
Papervision3D - 3.0
This code is for discussing the core architecture.
Your comments are welcome!
Discussion:
==============================================
-geometry:
-VertexGeometry holds a mesh's vertices... |
timknip/papervision3d | e1700f32e9d91e6e768820e8d7e1911a437b0ace | some optimizattion | diff --git a/src/Main.as b/src/Main.as
index 1a14b3f..d038d51 100644
--- a/src/Main.as
+++ b/src/Main.as
@@ -1,156 +1,167 @@
package {
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageQuality;
import flash.display.StageScaleMode;
import flash.events.Event;
- import flas... |
timknip/papervision3d | e2228100b28443b050cdd63f7e9165b2bfe76904 | lookat | diff --git a/src/Main.as b/src/Main.as
index 5011356..1a14b3f 100644
--- a/src/Main.as
+++ b/src/Main.as
@@ -1,150 +1,156 @@
package {
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageQuality;
import flash.display.StageScaleMode;
import flash.events.Event;
import flas... |
timknip/papervision3d | 6aa07f4ff084bd4a41471dded72afa606fd603e2 | branching | diff --git a/src/Main.as b/src/Main.as
index fcc463e..78b296c 100644
--- a/src/Main.as
+++ b/src/Main.as
@@ -1,155 +1,153 @@
package {
- import __AS3__.vec.Vector;
-
import flash.display.Graphics;
import flash.display.GraphicsTrianglePath;
import flash.display.IGraphicsData;
import flash.display.Sprite;
imp... |
timknip/papervision3d | 0164784fede4585dc1a8651c8db1442b5a38838f | all code is back | diff --git a/src/org/papervision3d/core/proto/DisplayObjectContainer3D.as b/src/org/papervision3d/core/proto/DisplayObjectContainer3D.as
index 17a235c..3e65ff2 100755
--- a/src/org/papervision3d/core/proto/DisplayObjectContainer3D.as
+++ b/src/org/papervision3d/core/proto/DisplayObjectContainer3D.as
@@ -1,346 +1,349 @@... |
timknip/papervision3d | 92857925ac00cebbd7764f16347a90ceaa824e51 | ascollada | diff --git a/src/org/ascollada/core/DaeAccessor.as b/src/org/ascollada/core/DaeAccessor.as
new file mode 100644
index 0000000..3d161a2
--- /dev/null
+++ b/src/org/ascollada/core/DaeAccessor.as
@@ -0,0 +1,55 @@
+package org.ascollada.core {
+ import org.ascollada.core.ns.collada;
+
+ /**
+ * @author Tim Knip / floo... |
timknip/papervision3d | fb84648d44c752d55cca6edcb0b2856312cfd183 | cleanup | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4a1b552
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+*.DS_Store
+.actionScriptProperties
+.flexLibProperties
+.project
+.settings/*
+bin/*
+bin-debug/*
+html-template/*
\ No newline at end of file
diff --git a/org/papervision3d/cameras/Camera3D... |
ches/plex-vimcasts | 9ea08fbe81c3905a9d4cd6b3192037aa42cf9959 | Document installation from official Channel Directory | diff --git a/README.rst b/README.rst
index 757723e..d4647f9 100644
--- a/README.rst
+++ b/README.rst
@@ -1,69 +1,75 @@
=============
Plex-Vimcasts
=============
A simple Plex_ plugin for vimcasts.org_, allowing you to view the
screencasts from the comfort of your media center.
Installation
============
-As... |
ches/plex-vimcasts | 960dc94bc673848e8a710254009fb8afdad08b9a | Use the JSON feed Drew kindly set up. Calling this 1.0.0 | diff --git a/README.rst b/README.rst
index 5f05fbc..757723e 100644
--- a/README.rst
+++ b/README.rst
@@ -1,73 +1,69 @@
=============
Plex-Vimcasts
=============
A simple Plex_ plugin for vimcasts.org_, allowing you to view the
screencasts from the comfort of your media center.
Installation
============
As... |
ches/plex-vimcasts | a514b23d4fd4587052b786294e6a084e880b8ad2 | Fix dumb build bugs | diff --git a/Rakefile b/Rakefile
index 8d290fc..fc6bb89 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,282 +1,285 @@
# Lifted and adapted from Rick Fletcher's MLB plugin, hat tip is due:
# http://github.com/rfletcher/plex-mlb
# Overkill for this plugin really, but it's a nice general example build setup.
require 'p... |
ches/plex-vimcasts | 556aed3a257d3dd148c9ea85a21f1bde47f9bae3 | Distinguish building from source versus packaging an installer. | diff --git a/README.rst b/README.rst
index 09389d1..5f05fbc 100644
--- a/README.rst
+++ b/README.rst
@@ -1,64 +1,73 @@
=============
Plex-Vimcasts
=============
A simple Plex_ plugin for vimcasts.org_, allowing you to view the
screencasts from the comfort of your media center.
Installation
============
As... |
ches/plex-vimcasts | 81e54808d6e454735256dc3c0ec50bf4119c98ed | Bump version to package with real artwork | diff --git a/bundle/Contents/config.yml b/bundle/Contents/config.yml
index bf5a1de..ccb38dc 100644
--- a/bundle/Contents/config.yml
+++ b/bundle/Contents/config.yml
@@ -1,43 +1,43 @@
# Plugin configuration
#
# This configuration setup allows for easy, environment-specific configuration.
# Its settings can be insert... |
ches/plex-vimcasts | fbb7d832ad5f08c548730d06e163cba9fdde89e9 | Proper Vimcasts artwork from Drew, woot | diff --git a/README.rst b/README.rst
index 18d400c..09389d1 100644
--- a/README.rst
+++ b/README.rst
@@ -1,64 +1,64 @@
=============
Plex-Vimcasts
=============
A simple Plex_ plugin for vimcasts.org_, allowing you to view the
screencasts from the comfort of your media center.
Installation
============
As... |
ches/plex-vimcasts | bce04fd5d4d9084a93afe16d1bedfa0c24a7bbc7 | Forcefully re-symlink in `install:dev` rake task | diff --git a/Rakefile b/Rakefile
index 2b050c2..f42216c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,281 +1,281 @@
# Lifted and adapted from Rick Fletcher's MLB plugin, hat tip is due:
# http://github.com/rfletcher/plex-mlb
# Overkill for this plugin really, but it's a nice general example build setup.
require 'p... |
ches/plex-vimcasts | 00b8d603f0503e0cfae4acda8cf6528163bfb795 | docs: explain how to install packaged build in README | diff --git a/README.rst b/README.rst
index c7b5bd4..18d400c 100644
--- a/README.rst
+++ b/README.rst
@@ -1,57 +1,64 @@
=============
Plex-Vimcasts
=============
A simple Plex_ plugin for vimcasts.org_, allowing you to view the
screencasts from the comfort of your media center.
+Installation
+============
+
+As... |
ches/plex-vimcasts | e32d5dc98b43f811cfcab38effe83b289f9e5ff3 | Alias `install` rake task to `install:release`, not `development` | diff --git a/Rakefile b/Rakefile
index 7870e01..2b050c2 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,281 +1,281 @@
# Lifted and adapted from Rick Fletcher's MLB plugin, hat tip is due:
# http://github.com/rfletcher/plex-mlb
# Overkill for this plugin really, but it's a nice general example build setup.
require 'p... |
ches/plex-vimcasts | aa52ff4f9343ccfb5bb557ace5972da59cbd0f4b | build config refactoring; ready for initial release 0.9.0 | diff --git a/.gitignore b/.gitignore
index 21304f0..6eee3e5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,9 +1,11 @@
.DS_Store
*.pyc
build
+dist
Framework
+bundle/Contents/env
# files generated from templates/
bundle/Contents/Info.plist
diff --git a/README.rst b/README.rst
index 0167af8..c7b5bd4 100644
---... |
fabiokr/cakephp-load_url-component | 3581db5327a4f092b0618e085f7544a9fae89642 | refactor as plugin | diff --git a/controllers/components/load_url.php b/controllers/components/load_url.php
new file mode 100644
index 0000000..6e04b27
--- /dev/null
+++ b/controllers/components/load_url.php
@@ -0,0 +1,214 @@
+<?php
+
+/**
+ * Load URL Component component
+ */
+
+class LoadUrlComponent extends Object {
+
+ /**
+ * S... |
fabiokr/cakephp-load_url-component | 52c44f04e0999e9da4b612dd8d8022eef4d608ad | Added http to address if don't exists | diff --git a/load_url.php b/load_url.php
index 39e208d..6e04b27 100644
--- a/load_url.php
+++ b/load_url.php
@@ -1,210 +1,214 @@
<?php
/**
* Load URL Component component
*/
class LoadUrlComponent extends Object {
/**
* See http://www.bin-co.com/php/scripts/load/
* Version : 2.00.A
*/
... |
fabiokr/cakephp-load_url-component | d1bd00c5d9653569b37843ac393f3ce11b2b1156 | Started component | diff --git a/load_url.php b/load_url.php
new file mode 100644
index 0000000..39e208d
--- /dev/null
+++ b/load_url.php
@@ -0,0 +1,210 @@
+<?php
+
+/**
+ * Load URL Component component
+ */
+
+class LoadUrlComponent extends Object {
+
+ /**
+ * See http://www.bin-co.com/php/scripts/load/
+ * Version : 2.00.A
+ ... |
raskhadafi/radiant-reservation-extension | 7e8d35093e5c4d5a0e18f0d2b24a45995879b63d | admin area works fine now | diff --git a/app/controllers/admin/reservations_controller.rb b/app/controllers/admin/reservations_controller.rb
index 72b79f4..8bdb9cd 100644
--- a/app/controllers/admin/reservations_controller.rb
+++ b/app/controllers/admin/reservations_controller.rb
@@ -1,41 +1,56 @@
class Admin::ReservationsController < Applicatio... |
raskhadafi/radiant-reservation-extension | aab58384187be58e41be4428705ed0e0f567ab25 | change the password to password_field | diff --git a/app/views/admin/reservation_subscribers/edit.html.haml b/app/views/admin/reservation_subscribers/edit.html.haml
index f0a8454..2d30676 100644
--- a/app/views/admin/reservation_subscribers/edit.html.haml
+++ b/app/views/admin/reservation_subscribers/edit.html.haml
@@ -1,42 +1,42 @@
- content_for 'page_css'... |
raskhadafi/radiant-reservation-extension | 770eaa2590259df73f4777cc8a975b1a5fc9bb79 | expanded the validation of reservation_subscriber model | diff --git a/app/models/reservation_subscriber.rb b/app/models/reservation_subscriber.rb
index 3127142..4a97e08 100644
--- a/app/models/reservation_subscriber.rb
+++ b/app/models/reservation_subscriber.rb
@@ -1,8 +1,9 @@
class ReservationSubscriber < ActiveRecord::Base
validates_presence_of :user_name
validates_... |
raskhadafi/radiant-reservation-extension | 1bc2e0292f791ed9aaa0cb40bd4710119f6fe088 | expanded the validation of reservation_subscriber model | diff --git a/public/javascripts/admin/reservation.js b/public/javascripts/admin/reservation.js
new file mode 100644
index 0000000..59b2ed2
--- /dev/null
+++ b/public/javascripts/admin/reservation.js
@@ -0,0 +1,10 @@
+document.observe("dom:loaded", function() {
+
+ $('a#new-reservation').observe('click', respondToClick... |
raskhadafi/radiant-reservation-extension | 2eeaed8994623167b010d25e6d9214681f7c00bd | new reservation model | diff --git a/app/models/reservation.rb b/app/models/reservation.rb
new file mode 100644
index 0000000..1969532
--- /dev/null
+++ b/app/models/reservation.rb
@@ -0,0 +1,9 @@
+class Reservation < ActiveRecord::Base
+ belongs_to :reservation_item
+ belongs_to :reservation_subscriber
+ validates_presence_of :reservation... |
raskhadafi/radiant-reservation-extension | 6c6e54d4294910a0b1b3bb9d462a436ba68329eb | new model reservation_item | diff --git a/app/models/reservation_item.rb b/app/models/reservation_item.rb
index fb4e165..04be701 100644
--- a/app/models/reservation_item.rb
+++ b/app/models/reservation_item.rb
@@ -1,12 +1,13 @@
class ReservationItem < ActiveRecord::Base
validates_presence_of :name
validates_uniqueness_of :name
+ has_many :... |
raskhadafi/radiant-reservation-extension | 590442c261efa23bbbf1bca6bf885d27431bde5a | new reserations controller | diff --git a/app/controllers/admin/reservations_controller.rb b/app/controllers/admin/reservations_controller.rb
index 9efb276..72b79f4 100644
--- a/app/controllers/admin/reservations_controller.rb
+++ b/app/controllers/admin/reservations_controller.rb
@@ -1,14 +1,41 @@
class Admin::ReservationsController < Applicatio... |
raskhadafi/radiant-reservation-extension | 1fc2c270130227c43caea8164ae1523f6d83a359 | new license and readme | diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..2a748ba
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,19 @@
+Copyright (c) 2009 Roman Simecek
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the... |
raskhadafi/radiant-reservation-extension | f932627f1b6559f150d962305d22dab7aa314b86 | new model reservation created | diff --git a/app/controllers/admin/reservations_controller.rb b/app/controllers/admin/reservations_controller.rb
index a25489b..9efb276 100644
--- a/app/controllers/admin/reservations_controller.rb
+++ b/app/controllers/admin/reservations_controller.rb
@@ -1,14 +1,14 @@
class Admin::ReservationsController < Applicatio... |
raskhadafi/radiant-reservation-extension | 8c36b6910cec9dc86a01de4d1ed54e06022a86fc | changed the tab name to Reservations | diff --git a/reservation_extension.rb b/reservation_extension.rb
index 9340bdc..e94cf51 100644
--- a/reservation_extension.rb
+++ b/reservation_extension.rb
@@ -1,23 +1,23 @@
# Uncomment this if you reference any of your controllers in activate
# require_dependency 'application'
class ReservationExtension < Radian... |
raskhadafi/radiant-reservation-extension | 08d9296295eebd391f885ac4de85acc4d14e3bb8 | reservation item & subscriber models added with functionality create, update and delete | diff --git a/app/controllers/admin/reservation_items_controller.rb b/app/controllers/admin/reservation_items_controller.rb
index a3f55e2..b9be20a 100644
--- a/app/controllers/admin/reservation_items_controller.rb
+++ b/app/controllers/admin/reservation_items_controller.rb
@@ -1,45 +1,38 @@
class Admin::ReservationItem... |
raskhadafi/radiant-reservation-extension | ba928e56bdce548bf22254d0687d31471481b222 | initial reservation extension commit | diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..1266576
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,120 @@
+# I think this is the one that should be moved to the extension Rakefile template
+
+# In rails 1.2, plugins aren't available in the path until they're loaded.
+# Check to see if the rspec plugin... |
raskhadafi/radiant-reservation-extension | 7453b456dc396695531530905848a70547ccc93e | added .gitignore | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5236e1e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*~
+
|
ngerakines/fcache | 6f9dff157c4055f4dbec5fada8ed001d424c8e4f | Cleaning build process and packages created. | diff --git a/Makefile b/Makefile
index 3aaa1b2..5376eb3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,23 @@
+include support/include.mk
+LIBDIR=`erl -eval 'io:format("~s~n", [code:lib_dir()])' -s init stop -noshell`
+VERSION=0.0.1
all:
- erlc src/fcache.erl
+ mkdir -p ./ebin
+ (cd src;$(MAKE))
+
+clean:
+ rm -rf e... |
ngerakines/fcache | df650bf7e157745c6ecbe75dd383f98c0c735e09 | initial code commit | diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3aaa1b2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,3 @@
+
+all:
+ erlc src/fcache.erl
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 0000000..e69de29
diff --git a/src/fcache.erl b/src/fcache.erl
new file mode 100644
index 0000000..1d... |
dotnet/android-samples | 9a7ddcd034eb846aa2c0dbdf94cbb4cb2ad90443 | Remove sample metadata. (#352) | diff --git a/Button/Button/README.md b/Button/Button/README.md
index 3389d8a..8a13c70 100644
--- a/Button/Button/README.md
+++ b/Button/Button/README.md
@@ -1,16 +1,3 @@
----
-name: .NET for Android - Button Widget
-description: "Shows how to use a simple button widget (UI)"
-page_type: sample
-languages:
-- csharp
-pr... |
dotnet/android-samples | 3e36a4a3627261a5ab4866faf337fcdd30c05222 | Replace "Xamarin.Android" references with ".NET for Android" | diff --git a/Button/Button/README.md b/Button/Button/README.md
index 9f26eb0..3389d8a 100644
--- a/Button/Button/README.md
+++ b/Button/Button/README.md
@@ -1,16 +1,16 @@
---
-name: Xamarin.Android - Button Widget
+name: .NET for Android - Button Widget
description: "Shows how to use a simple button widget (UI)"
pag... |
dotnet/android-samples | be4df1129909e69d0488c914b870c5ed512979f4 | Port UpdateUsersProfile sample to .NET (#339) | diff --git a/SwitchDemo/Metadata.xml b/SwitchDemo/Metadata.xml
deleted file mode 100644
index 8133d27..0000000
--- a/SwitchDemo/Metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<SampleMetadata>
- <ID>08f30733-d18b-4728-88ee-2a3002cbd782</ID>
- <IsFullApplication>false</IsFullApplicat... |
dotnet/android-samples | ba346015ae55810d3771224c6c36a7f660ae1491 | Port Phoneword and PopupMenu samples (#340) | diff --git a/Phoneword/Phoneword.sln b/Phoneword/Phoneword.sln
new file mode 100644
index 0000000..fc50f41
--- /dev/null
+++ b/Phoneword/Phoneword.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.3.32519.111
+MinimumVisualStudio... |
dotnet/android-samples | 75872227ad9c82ade8095982202f7e74ad88dca1 | Port Local Notification Sample to .NET 7 (#341) | diff --git a/LocalNotifications/LocalNotifications.sln b/LocalNotifications/LocalNotifications.sln
new file mode 100644
index 0000000..ea045b9
--- /dev/null
+++ b/LocalNotifications/LocalNotifications.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+Vis... |
dotnet/android-samples | 1c45b852b21cdcf2c95604641b134abae1827032 | Add URL to XA NET6 porting tips document | diff --git a/README.md b/README.md
index c780e6c..545c39e 100644
--- a/README.md
+++ b/README.md
@@ -1,170 +1,172 @@
# MonoDroid (Xamarin.Android) samples
_NOTE: see the [dotnet branch](https://github.com/xamarin/monodroid-samples/tree/dotnet) for a subset of samples that have been ported to .NET 6._
This reposi... |
dotnet/android-samples | 4092b3bdfc74732b537ef297909fcde2dee2fd00 | Add some NET6 porting tips | diff --git a/README.md b/README.md
index c6ad347..c780e6c 100644
--- a/README.md
+++ b/README.md
@@ -1,127 +1,170 @@
# MonoDroid (Xamarin.Android) samples
_NOTE: see the [dotnet branch](https://github.com/xamarin/monodroid-samples/tree/dotnet) for a subset of samples that have been ported to .NET 6._
This reposi... |
dotnet/android-samples | 959e3279a604174d02f9df426ed933f9bbb354f9 | Port AccelerometerPlay to NET6 | diff --git a/AccelerometerPlay/AccelerometerPlay.sln b/AccelerometerPlay/AccelerometerPlay.sln
index 91c20ac..aea3d2e 100644
--- a/AccelerometerPlay/AccelerometerPlay.sln
+++ b/AccelerometerPlay/AccelerometerPlay.sln
@@ -1,22 +1,22 @@
-
-Microsoft Visual Studio Solution File, Format Version 11.00
-# Visual Studio 20... |
dotnet/android-samples | 7ea1e34d17447a6491db50ffed36f6e9bbd5665b | Port Android Sample SwitchDemo (#337) | diff --git a/SwitchDemo/Metadata.xml b/SwitchDemo/Metadata.xml
new file mode 100644
index 0000000..8133d27
--- /dev/null
+++ b/SwitchDemo/Metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<SampleMetadata>
+ <ID>08f30733-d18b-4728-88ee-2a3002cbd782</ID>
+ <IsFullApplication>false</IsFullApplication>... |
dotnet/android-samples | a42b3065c75d761bb11ed169466efbc5308bfdd3 | Port Button sample (#336) | diff --git a/Button/Button.sln b/Button/Button.sln
new file mode 100644
index 0000000..10bd81b
--- /dev/null
+++ b/Button/Button.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.3.32519.111
+MinimumVisualStudioVersion = 10.0.402... |
dotnet/android-samples | c5e505e2cc1d723f9c77df9445679ac022a3dbd4 | Port TextSwitcher sample | diff --git a/TextSwitcher/TextSwitcher.sln b/TextSwitcher/TextSwitcher.sln
new file mode 100644
index 0000000..1f3c560
--- /dev/null
+++ b/TextSwitcher/TextSwitcher.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.3.32611.2
+Min... |
dotnet/android-samples | 32a22046ab6ad79854af20ea4597197b0c6a07ef | Port ActivityLifecycle sample (#332) | diff --git a/ActivityLifecycle/ActivityLifecycle.csproj b/ActivityLifecycle/ActivityLifecycle.csproj
new file mode 100644
index 0000000..5f07752
--- /dev/null
+++ b/ActivityLifecycle/ActivityLifecycle.csproj
@@ -0,0 +1,12 @@
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <TargetFramework>net6.0-android</Tar... |
dotnet/android-samples | f945d48fdd183c647ccf6e0b6e9316771f558c9d | Upgrade target .NET Framework to 4.8. | diff --git a/android5.0/Cheesesquare/Cheesesquare.UITests/Cheesesquare.UITests.csproj b/android5.0/Cheesesquare/Cheesesquare.UITests/Cheesesquare.UITests.csproj
index bae2e60..35ac6ce 100644
--- a/android5.0/Cheesesquare/Cheesesquare.UITests/Cheesesquare.UITests.csproj
+++ b/android5.0/Cheesesquare/Cheesesquare.UITests... |
dotnet/android-samples | 1f3796a90280b530e4be6f4e3f32fcf7d621557f | [Notepad] Bump TargetFrameworkVersion to v10.0 | diff --git a/NotePad-Mono.Data.Sqlite/Notepad.csproj b/NotePad-Mono.Data.Sqlite/Notepad.csproj
index dd3db37..e0b9fdc 100644
--- a/NotePad-Mono.Data.Sqlite/Notepad.csproj
+++ b/NotePad-Mono.Data.Sqlite/Notepad.csproj
@@ -1,98 +1,98 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="... |
dotnet/android-samples | a4d2b339b4dac6a2769bed3daad487ab9d3406e9 | Fix obsolete API usage (#315) | diff --git a/HoneycombGallery/CameraFragment.cs b/HoneycombGallery/CameraFragment.cs
index ff83804..7c6d91c 100644
--- a/HoneycombGallery/CameraFragment.cs
+++ b/HoneycombGallery/CameraFragment.cs
@@ -1,321 +1,320 @@
/*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed under the Apache License, V... |
dotnet/android-samples | eb0e85d2d675322ec7173eb676f6dbf5af93ab02 | Expose private nested types that are exposed in public API. (#316) | diff --git a/OsmDroidBindingExample/OsmDroidBinding/Transforms/Metadata.xml b/OsmDroidBindingExample/OsmDroidBinding/Transforms/Metadata.xml
index 9572f6b..a36df90 100755
--- a/OsmDroidBindingExample/OsmDroidBinding/Transforms/Metadata.xml
+++ b/OsmDroidBindingExample/OsmDroidBinding/Transforms/Metadata.xml
@@ -1,62 +1... |
dotnet/android-samples | 7bad1e2e99a2ed8af4cb40bcd759b55fed374985 | [Button] Add uses-sdk to manifest | diff --git a/Button/Properties/AndroidManifest.xml b/Button/Properties/AndroidManifest.xml
index 6c63bcd..fa0e6ab 100644
--- a/Button/Properties/AndroidManifest.xml
+++ b/Button/Properties/AndroidManifest.xml
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/ap... |
dotnet/android-samples | b7c57025a7395900f70da230b5a713d2884cf048 | [recyclerview] better OO, formatting (#310) | diff --git a/android5.0/RecyclerViewer/RecyclerViewer/MainActivity.cs b/android5.0/RecyclerViewer/RecyclerViewer/MainActivity.cs
index 89be8e0..a48de99 100644
--- a/android5.0/RecyclerViewer/RecyclerViewer/MainActivity.cs
+++ b/android5.0/RecyclerViewer/RecyclerViewer/MainActivity.cs
@@ -1,181 +1,181 @@
using System;
... |
dotnet/android-samples | 8833a661715d28652b01af1e2d52cd98bb99f7a9 | [ViewPagerIndicatorBinding] Bump minSdkVersion to 16 | diff --git a/ViewPagerIndicatorBinding/ViewPagerIndicator-Example/Properties/AndroidManifest.xml b/ViewPagerIndicatorBinding/ViewPagerIndicator-Example/Properties/AndroidManifest.xml
index 41b67de..12ba329 100644
--- a/ViewPagerIndicatorBinding/ViewPagerIndicator-Example/Properties/AndroidManifest.xml
+++ b/ViewPagerIn... |
dotnet/android-samples | 902fe83a3a0e9400077d85e7ad51f0cd0b449829 | [CalendarDemo] fix for aapt2 (which is now default) (#306) | diff --git a/CalendarDemo/Resources/layout/CalendarList.axml b/CalendarDemo/Resources/layout/CalendarList.axml
index 4296187..d08020d 100644
--- a/CalendarDemo/Resources/layout/CalendarList.axml
+++ b/CalendarDemo/Resources/layout/CalendarList.axml
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayou... |
dotnet/android-samples | 97fa7ebffdbbbe8512e738229cc582a2f6fa40da | [gridlayout] fix readme image link | diff --git a/GridLayoutDemo/README.md b/GridLayoutDemo/README.md
index 26b566c..b75f4be 100644
--- a/GridLayoutDemo/README.md
+++ b/GridLayoutDemo/README.md
@@ -1,18 +1,18 @@
---
name: Xamarin.Android - GridLayout Demo
description: "How to use a GridLayout (Android Ice Cream Sandwich)"
page_type: sample
languages:... |
dotnet/android-samples | 68f06e7a4d2584decb3889786761a5045623eb6b | [rotation] remove duplicate sample | diff --git a/RotationDemo/README.md b/RotationDemo/README.md
index 59769ca..e62d522 100644
--- a/RotationDemo/README.md
+++ b/RotationDemo/README.md
@@ -1,17 +1,5 @@
----
-name: Xamarin.Android - Rotation Demo
-description: This is the sample code for the article Handling Rotation. It shows various techniques for worki... |
dotnet/android-samples | 8a8356af920883a755d50e1c0afa00d359b5fa31 | [gl] disambiguate samples with same 'name' | diff --git a/TexturedCubeES30-1.0/README.md b/TexturedCubeES30-1.0/README.md
index 0a14b7d..3d12852 100644
--- a/TexturedCubeES30-1.0/README.md
+++ b/TexturedCubeES30-1.0/README.md
@@ -1,16 +1,16 @@
---
-name: Xamarin.Android - GL Textured Cube
+name: Xamarin.Android - GL Textured Cube ES30
description: "This sample ... |
dotnet/android-samples | cc191f34893796aa3012132ebeaa73ba09de21a3 | [local-notifications] fix screenshot link on samplepage | diff --git a/LocalNotifications/README.md b/LocalNotifications/README.md
index f948ca3..6c90ea3 100644
--- a/LocalNotifications/README.md
+++ b/LocalNotifications/README.md
@@ -1,20 +1,20 @@
---
name: Xamarin.Android - Android Local Notifications Sample
-description: This sample app accompanies the article, Walkthrou... |
dotnet/android-samples | 0da16a3fccbb26653ed034fe132e7ec8c1bc3e4a | Fix duplicate sample GUID | diff --git a/AccessoryViews/AccessoryViews.csproj b/AccessoryViews/AccessoryViews.csproj
index 2bdd6c4..6887204 100644
--- a/AccessoryViews/AccessoryViews.csproj
+++ b/AccessoryViews/AccessoryViews.csproj
@@ -1,84 +1,84 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmln... |
dotnet/android-samples | 306829655bb28daa980d2cef38826919ff8af2f3 | [samples] de-duplicate GUIDs (#301) | diff --git a/ApplicationFundamentals/RotationDemo/RotationDemo/RotationDemo.csproj b/ApplicationFundamentals/RotationDemo/RotationDemo/RotationDemo.csproj
index 1e07b02..8de1652 100755
--- a/ApplicationFundamentals/RotationDemo/RotationDemo/RotationDemo.csproj
+++ b/ApplicationFundamentals/RotationDemo/RotationDemo/Rot... |
dotnet/android-samples | 6056e81faeee8bb4a6d5d2613404a86037fd2920 | Solving #273 - Avoids multiple picture callbacks (#300) | diff --git a/android5.0/Camera2Basic/Camera2Basic/Listeners/CameraCaptureListener.cs b/android5.0/Camera2Basic/Camera2Basic/Listeners/CameraCaptureListener.cs
index 17466dd..16f294c 100644
--- a/android5.0/Camera2Basic/Camera2Basic/Listeners/CameraCaptureListener.cs
+++ b/android5.0/Camera2Basic/Camera2Basic/Listeners/... |
dotnet/android-samples | d348adfe3a3efe70396c28cbddd3a94f80b02aba | [yaml] update repo README | diff --git a/README.md b/README.md
index 9cea5db..51cd88b 100644
--- a/README.md
+++ b/README.md
@@ -1,129 +1,125 @@
-MonoDroid Samples
-=================
+# MonoDroid (Xamarin.Android) samples
This repository contains Mono for Android samples, showing usage of various
-Android API wrappers from C#. Visit the [Andro... |
dotnet/android-samples | 6492910fa90f5c4d73c7c1ab3d3fa0bdd4573b1a | [jnidemo] fix duplicates with case-different folder name | diff --git a/JniDemo/Assets/AboutAssets.txt b/JniDemo/Assets/AboutAssets.txt
new file mode 100644
index 0000000..a9b0638
--- /dev/null
+++ b/JniDemo/Assets/AboutAssets.txt
@@ -0,0 +1,19 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories) and given a ... |
dotnet/android-samples | a564d2e335bfa03e1b84243c096e2175161acc43 | [jnidemo] tweaks | diff --git a/JniDemo/README.md b/JniDemo/README.md
index 2c8b4c8..fd4e8af 100644
--- a/JniDemo/README.md
+++ b/JniDemo/README.md
@@ -1,72 +1,66 @@
---
name: Xamarin.Android - Java Native Invoke
description: "How to manually bind to a Java library so it can be consumed by a Xamarin.Android application"
page_type: sa... |
dotnet/android-samples | bfc00767c761f774b3ef0d4cfbf372d48fb36024 | onboard missing samples | diff --git a/ApplicationFundamentals/ServiceSamples/MessengerServiceDemo/README.md b/ApplicationFundamentals/ServiceSamples/MessengerServiceDemo/README.md
index dfc34da..f51d04f 100644
--- a/ApplicationFundamentals/ServiceSamples/MessengerServiceDemo/README.md
+++ b/ApplicationFundamentals/ServiceSamples/MessengerServi... |
dotnet/android-samples | fc4c9b87a52f08309447fa97712cf1e326a70886 | sample yaml updates | diff --git a/RemoteNotifications/Metadata.xml b/RemoteNotifications/Metadata.xml
deleted file mode 100755
index 15ed5b7..0000000
--- a/RemoteNotifications/Metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<SampleMetadata>
- <ID>96D227D3-5EB9-41F9-B641-CBB1759D944C</ID>
- <IsFullAppli... |
dotnet/android-samples | 105a9d4599be45afa8799ed283fc32560632f3d7 | remove GL samples from gallery eligibility | diff --git a/GLCube-1.0/Metadata.xml b/GLCube-1.0/Metadata.xml
deleted file mode 100644
index 3423d3a..0000000
--- a/GLCube-1.0/Metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<SampleMetadata>
- <ID>a50742de-aba9-45ea-989c-dca7b3e3456e</ID>
- <IsFullApplication>false</IsFullApplicat... |
dotnet/android-samples | cfc46737d670f36c4fd4622de12eacd2cc193f1c | onboard missing samples (inc Wear) | diff --git a/WalkingGameCompleteAndroid/README.md b/WalkingGameCompleteAndroid/README.md
index 8171e8c..a94d346 100644
--- a/WalkingGameCompleteAndroid/README.md
+++ b/WalkingGameCompleteAndroid/README.md
@@ -1,21 +1,20 @@
---
name: Xamarin.Android - MonoGame WalkingGame Project for Android
-description: This is a sm... |
dotnet/android-samples | 7f4c5b0e518c8e274c3f970de748f8281ad15dce | onboard missing samples | diff --git a/GridLayoutDemo/README.md b/GridLayoutDemo/README.md
index 7680ca1..26b566c 100644
--- a/GridLayoutDemo/README.md
+++ b/GridLayoutDemo/README.md
@@ -1,18 +1,18 @@
---
name: Xamarin.Android - GridLayout Demo
description: "How to use a GridLayout (Android Ice Cream Sandwich)"
page_type: sample
languages:... |
dotnet/android-samples | b213c51296b715eea87f6fc935e90dde3d86ef44 | onboard missing samples | diff --git a/LabelledSections/README.md b/LabelledSections/README.md
index 75a7752..36cd16a 100644
--- a/LabelledSections/README.md
+++ b/LabelledSections/README.md
@@ -1,37 +1,37 @@
---
name: Xamarin.Android - Labelled Sections
-description: The Labelled Sections demo is a port from the Alphabetically ordered ListVi... |
dotnet/android-samples | 057c07f3ec82d4913f40a8fc5b492f12e9c9dbdb | onboard missing samples: google-services | diff --git a/GridLayoutDemo/README.md b/GridLayoutDemo/README.md
index 897a1b9..7680ca1 100644
--- a/GridLayoutDemo/README.md
+++ b/GridLayoutDemo/README.md
@@ -1,13 +1,18 @@
---
name: Xamarin.Android - GridLayout Demo
-description: This example shows how to use a GridLayout with Ice Cream Sandwich.
+description: "Ho... |
dotnet/android-samples | a98d7f7f05f5a5369a80211be2fba9a88ac3385c | onboard missing samples (Android Fit) | diff --git a/HowsMyTls/README.md b/HowsMyTls/README.md
index ea5bcb0..fbbcf1a 100644
--- a/HowsMyTls/README.md
+++ b/HowsMyTls/README.md
@@ -1,15 +1,18 @@
---
name: Xamarin.Android - How's my TLS?
-description: 'This sample demonstrates how to make a basic TLS connection using different classes availbale for Xamarin.... |
dotnet/android-samples | 718e00107621ebb92f036a3008b3c3da0f160d0a | onboard missing samples | diff --git a/google-services/AdMobExample/README.md b/google-services/AdMobExample/README.md
index fdbf18c..7a63e35 100644
--- a/google-services/AdMobExample/README.md
+++ b/google-services/AdMobExample/README.md
@@ -1,31 +1,29 @@
---
name: Xamarin.Android - AdMobExample Sample
-description: This sample demonstrates ... |
dotnet/android-samples | a6752c694f0fae6014c2915383f7fd9968848726 | onboard missing samples | diff --git a/FragmentTransition/README.md b/FragmentTransition/README.md
index 4daf735..db66922 100644
--- a/FragmentTransition/README.md
+++ b/FragmentTransition/README.md
@@ -1,14 +1,16 @@
---
name: Xamarin.Android - Fragment Transition
-description: This sample demonstrates how to start a transition right after a ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.